[ 1686176 ] Payment allocation issues
Integrate fix and improvements from Paul
This commit is contained in:
parent
afc7ff7c82
commit
fb081de3ff
|
@ -0,0 +1,19 @@
|
||||||
|
INSERT INTO AD_MESSAGE
|
||||||
|
(AD_Message_ID, AD_Client_ID, AD_Org_ID, IsActive,
|
||||||
|
Created, CreatedBy,
|
||||||
|
Updated, UpdatedBy,
|
||||||
|
VALUE, MsgText, MsgType
|
||||||
|
)
|
||||||
|
VALUES (53006, 0, 0, 'Y',
|
||||||
|
TO_DATE ('10/26/2007 01:01:50', 'MM/DD/YYYY HH24:MI:SS'), 100,
|
||||||
|
TO_DATE ('10/26/2007 01:01:50', 'MM/DD/YYYY HH24:MI:SS'), 100,
|
||||||
|
'OverUnderAmt','Over/Under Payment','I'
|
||||||
|
);
|
||||||
|
|
||||||
|
UPDATE AD_SEQUENCE
|
||||||
|
SET CurrentNextSys = (SELECT MAX (AD_Message_ID) + 1
|
||||||
|
FROM AD_MESSAGE
|
||||||
|
WHERE AD_message_ID < 1000000)
|
||||||
|
WHERE NAME = 'AD_Message';
|
||||||
|
|
||||||
|
COMMIT;
|
|
@ -0,0 +1,19 @@
|
||||||
|
INSERT INTO AD_MESSAGE
|
||||||
|
(AD_Message_ID, AD_Client_ID, AD_Org_ID, IsActive,
|
||||||
|
Created, CreatedBy,
|
||||||
|
Updated, UpdatedBy,
|
||||||
|
VALUE, MsgText, MsgType
|
||||||
|
)
|
||||||
|
VALUES (53006, 0, 0, 'Y',
|
||||||
|
TO_TIMESTAMP ('10/26/2007 01:01:50', 'MM/DD/YYYY HH24:MI:SS'), 100,
|
||||||
|
TO_TIMESTAMP ('10/26/2007 01:01:50', 'MM/DD/YYYY HH24:MI:SS'), 100,
|
||||||
|
'OverUnderAmt','Over/Under Payment','I'
|
||||||
|
);
|
||||||
|
|
||||||
|
UPDATE AD_SEQUENCE
|
||||||
|
SET CurrentNextSys = (SELECT MAX (AD_Message_ID) + 1
|
||||||
|
FROM AD_MESSAGE
|
||||||
|
WHERE AD_message_ID < 1000000)
|
||||||
|
WHERE NAME = 'AD_Message';
|
||||||
|
|
||||||
|
COMMIT;
|
Loading…
Reference in New Issue