Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Submit command

Former Member
0 Likes
496

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.

3 REPLIES 3
Read only

Former Member
0 Likes
476

Use memory id for this case....

Export from main prog....

Import in the submitted prog.....

Reward point if helpful

Read only

Former Member
0 Likes
476

The only problem is lying with the filename. The table only accepts 45 chars. Is there any other way to use the submit command?

Read only

Former Member
0 Likes
476

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.