Hello,
Can I know in a way the exact real date when a user clicked the post from the value entry "Entry no.", can you explain to me how I can get it?
Thanks
in the value entry there isn't a field for that, but you can edit the value entry table and the posting method.
If you have a developer license, then integrate a new field into the value entry table, named "Creation Date" of the type date. Then add the following line to codeunit 22 method "InsertValueEntry":
in the value entry there isn't a field for that, but you can edit the value entry table and the posting method.
If you have a developer license, then integrate a new field into the value entry table, named "Creation Date" of the type date. Then add the following line to codeunit 22 method "InsertValueEntry":
Answers
in the value entry there isn't a field for that, but you can edit the value entry table and the posting method.
If you have a developer license, then integrate a new field into the value entry table, named "Creation Date" of the type date. Then add the following line to codeunit 22 method "InsertValueEntry":
Before the line:
ValueEntry.INSERT;
you have to insert this line:
ValueEntry."Creation Date" := TODAY;
ValueEntry.INSERT;
Also you have to integrate the new field in the value entry page/form.
If you are an endcustomer of dynamics nav, then ask you partner to do this. After this little change all new value entries will have an creation date!
best regards
Robert
Robert's Dynamics NAV Blog - Vom NAV Entwickler für NAV (Navision) Interessierte