We can create the destination file names like CSV,TXT,XML with dynamic date names in SAP BODS.Create a job with Script > Data flowScript Code:$G_CurrentDate= sysdate();print($G_CurrentDate);$G_Filename = 'Dynamic_File_Name_'||substr(sysdate(),0,10)||...