CRM and CX Blogs by SAP
Stay up-to-date on the latest developments and product news about intelligent customer experience and CRM technologies through blog posts from SAP experts.
cancel
Showing results for 
Search instead for 
Did you mean: 
todor_boyadzhiev
Participant
0 Kudos
262
If you are struggling to find it here it is: %=date()%

Here is an example of setting a value with the current date.

Using the function: CBTA_IF_SETVALUE

image.png

Now this will return the current date into dd/mm/yy format.

If you want to use dot-delimited one you can use the following VB script:

%=day(now())&"."&month(now())&"."&year(now())%

and you can decide which goes first and which goes last and what is the delimiter.

Hope this is useful.