‎2008 Jun 25 2:14 PM
Hi Gurus,
I am using the following code :
SUBMIT ymayfe_159631_mass_create_proj VIA SELECTION-SCREEN WITH SELECTION-TABLE i_sel AND RETURN.
where I am putting the selection screen parametes in the i_sel table. The table is of type rsparams.
The code is running fine but the problem is that the table type rsparams takes maximum value of 45 chars and the length of the filename entered is more than 45 char.
Can you please give me a solution for this?
Thanks.
‎2008 Jun 25 2:18 PM
Use memory id for this case....
Export from main prog....
Import in the submitted prog.....
Reward point if helpful
‎2008 Jun 25 2:21 PM
The only problem is lying with the filename. The table only accepts 45 chars. Is there any other way to use the submit command?
‎2008 Jun 25 2:23 PM
Hi,
try using
SUBMIT ymayfe_159631_mass_create_proj
with s_fname = i_sel[].
here s_fname is the field name in ymayfe_159631_mass_create_proj
and i_sel[] is the range table type s_fname.
Hope this wud help you.
Regards
Raj.