Skip to main content

Java Function for %%xxxx%% translation

Comments

1 comment

  • David Paras

    To achieve your scenario we request you to use the following Java Custom Code.

    import java.text.*;
    import java.util.*;

    Date dateTime = new Date();
    SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
    String dateTimeString = sdf.format(dateTime);
    System.out.println(dateTimeString);

    0

Please sign in to leave a comment.