‎2007 May 03 9:25 AM
hi,
how do i put a date stamp for my output file path " /tmp/file_receipts.txt" ex: it should be " /tmp/file_receipts05032007.txt".. thank in advance
‎2007 May 03 9:27 AM
Hi,
Split the sy-datum field to Date, month and year and
concatenate Date month year to a string
and concatenate the file name and the string(date) and use it.
Reward points if useful
Regards
Anji
‎2007 May 03 9:27 AM
Hi,
Split the sy-datum field to Date, month and year and
concatenate Date month year to a string
and concatenate the file name and the string(date) and use it.
Reward points if useful
Regards
Anji
‎2007 May 03 9:28 AM
Hi,
While populating the name just add sy-datum with the remaining name.
Regards,
Ranjit Thakur.
<b>Please Mark The Helpful Answer.</b>
‎2007 May 03 9:31 AM
Hi,
Use
CONCATENATE gv_date lc_txt INTO gv_filename.
Declare gv_date in your specified format.
Regards
Kannaiah
‎2007 May 03 9:36 AM
Hi,
See the code below,
data: g_file type RLGRAP-FILENAME value '/tmp/file_receipts',
g_date type sy-datum value sy-datum.
Intialization.
concatenate g_file g_date '.txt' into g_file.
Reward if its helpful
Regards,
Kasi S