Hi folks.
My client requirement is they want reversal entry posting date should be the date on day they are posting,
For e.g. My payment posting date is 3/08/2020 and i am reversing it on 19/08/2020, so my reverse entry posting date should be 19/08/2020.
Kindly Suggest
0
Comments
Blog - rockwithnav.wordpress.com/
Twitter - https://twitter.com/RockwithNav
Facebook - https://facebook.com/rockwithnav/
Does your client have a special case for this scenario? Maybe a customized reversal option is what you need?
In Russian localization we have function on Page 179 (Reverse Entries) Reverse On Date.
PostOnDate()
RESET;
SETFILTER("Entry Type",'<>%1&<>%2',"Entry Type"::"G/L Account","Entry Type"::VAT);
IF FINDFIRST THEN
FIELDERROR("Entry Type",
STRSUBSTNO(Text12400,GLEntry.TABLECAPTION,VATEntry.TABLECAPTION));
PostingDate := "Posting Date";
CLEAR(PostingDateForm);
PostingDateForm.SetDate(PostingDate);
IF PostingDateForm.RUNMODAL = ACTION::Yes THEN BEGIN
PostingDate := PostingDateForm.GetDate;
RESET;
IF PostingDate <> "Posting Date" THEN BEGIN
IF PostingDate < "Posting Date" THEN
ERROR(Text12402);
GenJnlLine."Posting Date" := PostingDate;
GenJnlCheckLine.CheckDateAllowed(GenJnlLine);
MODIFYALL("Corrected Period Date","Posting Date");
MODIFYALL("Posting Date",PostingDate);
FINDFIRST;
ReversalEntry := Rec;
END;
Post(FALSE);
END;