<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://in.compucrete.com/index.php?action=history&amp;feed=atom&amp;title=Identify_and_Fix_bad_Transaction_Times</id>
	<title>Identify and Fix bad Transaction Times - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://in.compucrete.com/index.php?action=history&amp;feed=atom&amp;title=Identify_and_Fix_bad_Transaction_Times"/>
	<link rel="alternate" type="text/html" href="http://in.compucrete.com/index.php?title=Identify_and_Fix_bad_Transaction_Times&amp;action=history"/>
	<updated>2026-05-15T17:03:05Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>http://in.compucrete.com/index.php?title=Identify_and_Fix_bad_Transaction_Times&amp;diff=272&amp;oldid=prev</id>
		<title>WikiAdmin: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="http://in.compucrete.com/index.php?title=Identify_and_Fix_bad_Transaction_Times&amp;diff=272&amp;oldid=prev"/>
		<updated>2023-07-14T12:58:50Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 12:58, 14 July 2023&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key my_wiki:diff::1.12:old-271:rev-272 --&gt;
&lt;/table&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>http://in.compucrete.com/index.php?title=Identify_and_Fix_bad_Transaction_Times&amp;diff=271&amp;oldid=prev</id>
		<title>Chanson: Created page with &quot;How to update bad times in inventory transactions.  Some programs do not properly protect HHMM to ensure hours are between 00 and 23 and minutes between 00 and 59.  Diagnose b...&quot;</title>
		<link rel="alternate" type="text/html" href="http://in.compucrete.com/index.php?title=Identify_and_Fix_bad_Transaction_Times&amp;diff=271&amp;oldid=prev"/>
		<updated>2017-12-22T16:11:37Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;How to update bad times in inventory transactions.  Some programs do not properly protect HHMM to ensure hours are between 00 and 23 and minutes between 00 and 59.  Diagnose b...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;How to update bad times in inventory transactions.  Some programs do not properly protect HHMM to ensure hours are between 00 and 23 and minutes between 00 and 59.&lt;br /&gt;
&lt;br /&gt;
Diagnose bad times:&lt;br /&gt;
&amp;lt;PRE&amp;gt;&lt;br /&gt;
select *&lt;br /&gt;
from artprtrx&lt;br /&gt;
where (cast(trx_time / 100 as integer) &amp;gt; 23) or (cast(mod(trx_time, 100) as integer) &amp;gt; 59)&lt;br /&gt;
&amp;lt;/PRE&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Diagnose bad times with sample fixes:&lt;br /&gt;
&amp;lt;PRE&amp;gt;&lt;br /&gt;
select &lt;br /&gt;
trx_time, 100*(trx_time/100) &amp;quot;Hrs&amp;quot;,&lt;br /&gt;
trx_time - 100*(trx_time/100) &amp;quot;Wrong Min&amp;quot;,&lt;br /&gt;
100*(trx_time/100)+59 &amp;quot;New Time&amp;quot;&lt;br /&gt;
 from artprtrx &lt;br /&gt;
where&lt;br /&gt;
trx_time - 100*(trx_time/100) &amp;gt;59&lt;br /&gt;
&amp;lt;/PRE&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update minutes &amp;gt;59:&lt;br /&gt;
&amp;lt;PRE&amp;gt;&lt;br /&gt;
update artprtrx&lt;br /&gt;
set trx_time = 100*(trx_time/100)+59&lt;br /&gt;
where&lt;br /&gt;
trx_time - 100*(trx_time/100) &amp;gt;59&lt;br /&gt;
and trx_date &amp;gt;= :&amp;quot;Starting&amp;quot;&lt;br /&gt;
&amp;lt;/PRE&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update times &amp;gt;2359:&lt;br /&gt;
&amp;lt;PRE&amp;gt;&lt;br /&gt;
update artprtrx&lt;br /&gt;
set trx_time = 2359&lt;br /&gt;
where&lt;br /&gt;
trx_time &amp;gt;2359&lt;br /&gt;
and trx_date &amp;gt;= :&amp;quot;Starting&amp;quot;&lt;br /&gt;
&amp;lt;/PRE&amp;gt;&lt;/div&gt;</summary>
		<author><name>Chanson</name></author>
	</entry>
</feed>