Dynamic File Name Generation for Fusion HCM
Sometimes there are requirements to create dynamic file names for fusion reports. This is usually the case where the file has to be placed on an SFTP folder. Dynamic file names help to identify on what date the file was generated even without looking at the contents inside the file.
The expressions below can be used to get dynamic file names
%d - Date will be displayed in 2 digits
%m - Month will be displayed in 2 digits
%y - Year will be displayed in 4 digits
%S - Seconds will be displayed in 2 digits
%M - Minutes will be displayed in 2 digits
%H - Hour will be displayed in 2 digits
Examples
we want to generate the file name as 02_03_2021_TestFile_010101.pdf
%d_%m_%y_TestFile_%H%M%S.pdf
Comments
Post a Comment