Hi Ramanjaneyulu,
As u said
ARCHIVFILE_SERVER_TO_CLIENT FM i used for below logic
DATA:
l_pcfile LIKE sapb-sappfad, "Desktop file & path
l_serfil LIKE sapb-sappfad. "Server File & path
l_serfil = 'ZCUST_LOC.CSV' .
l_pcfile = 'SALES_PLANNING_SIL_2\DATAMANAGER\DATAFILES\MASTER DATA\ZCUST_LOC.CSV'.
CALL FUNCTION 'ARCHIVFILE_SERVER_TO_CLIENT'
EXPORTING
path = l_serfil
targetpath = l_pcfile
EXCEPTIONS
error_file = 1
OTHERS = 2.
when i executing above program it is showing 40000 bytes are transferred but later im checking in
UJFS T CODE im not able to find CSV file which i transferred in that path.
so how can i see where it is storing (im checking the path which i gave target only) .