patwanirav
5th December 2013, 13:42
How to display date on form as Jan-2014 (Mon-yyyy) in ERPLN FP7 ?

bhushanchanda
5th December 2013, 14:00
Hi,

There can be multiple ways to do it.

If you just want to display current date in this format:-


You can set a form field say result with domain tcmcs.str50


In your script, you can declare the result variable.

field.result:
before.display:
result = sprintf$("%D(%-20H %04Y)", date.num()) | It will display the current date as your required format.