‎2007 Apr 20 11:38 AM
I HAVE PARAMETER OF TYPE RLGRAP-FILENAME TYPR CHAR ..HW TO CONVERT IT TO STRING SO THAT I CAN PASS IT TO GUI_UPLOAD AS A STRING
‎2007 Apr 20 11:39 AM
‎2007 Apr 20 11:40 AM
Hi
declare another variable like string.
Move RLGRAP-FILENAME to that variable and pass it to the fun module.
reward if useful
regards,
ANJI
‎2007 Apr 20 11:42 AM
Hi chaitanya,
p_file has file name in char.
Data lv_string tyep string.
lv_string = p_file.
now export lv_string as file name into gui_download.
plz reward points if helpful.
Thnaks,
Suma.
‎2007 Apr 20 11:43 AM
hi,
chk out the foll code..
parameters: p_file like rlgrap-filename memory id fnm obligatory.
data: p_file1 type string.
p_file1 = p_file.
regards,
Navneeth.K
‎2007 Apr 20 11:47 AM
Hi,
Did the above piece of code sove your purpose.
regards,
Navneeth.K