Hi all..
NAV Standard report 116 (Statement) have aging band by Due date & Posting Date
can we add by Document Date?
please advice how to do that
thanks
1) add Document date option to DateChoice global variable
2) Add new parameter document date in function
GetDate(PostingDate : Date;DueDate : Date) : Date
and Change code to
IF DateChoice = DateChoice::"Posting Date" THEN
EXIT(PostingDate)
ELSE
IF DateChoice = DateChoice::"Due Date" THEN
EXIT(DueDate)
ELSE
EXIT(DocumentDate);
3) in CustLedgEntry2 - OnAfterGetRecord() Change the below code to
Thanks
but the datechoice must have 3rd parameter is it?
because i have error message saying the current value is 3
the permitted range is 1 until 2
thanks
Comments
2) Add new parameter document date in function and Change code to
3) in CustLedgEntry2 - OnAfterGetRecord() Change the below code to
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
but the datechoice must have 3rd parameter is it?
because i have error message saying the current value is 3
the permitted range is 1 until 2
thanks
Add it in requeest form Datechoice OptionCaption also.
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
but when i want to preview, it will prompt me an error like i said before
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
beside global variable
we should add document date at text013
Thanks