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 program with Selection table

former_member213475
Participant
0 Likes
1,463

Hi Experts,

In my requirement i am using job launcher program for my child program..

In my selection screen application server file path need to give and this should be more than 50 character length.

For this i am using the structure RSPARAMSL....But it goes to dump...

the message is 'Error when attempting to IMPORT object "%_SELTAB"..

Please help me, how to proceed further.

Regards,

Saran.'

1 ACCEPTED SOLUTION
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
1,264

Saran

Can you please attach the dump file and selection screen of child program highlighting field which is causing dump.

Nabheet

7 REPLIES 7
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
1,265

Saran

Can you please attach the dump file and selection screen of child program highlighting field which is causing dump.

Nabheet

Read only

0 Likes
1,264

Hi nabheet madan,

Thanks for your reply.Please find the Dump file and do needful help.

Read only

0 Likes
1,264

Do one thing you can call RS_REFRESH_FROM_SELECTOPTIONS and pass the child program name and it will return you the parameter table. You can then update the values of the field in parameter table and then use it to submit your report.

Nabheet

Read only

0 Likes
1,264

Hi Nabheet,

we have to give file path as >=50 Char length.is it possible to give like that by using the above function module mentioned by you.

Read only

0 Likes
1,264

Do you have SELECTION_TABLE_255 parameter in the function module. If yes then we can do it till 255 characters.  Just press and F1 on submit and it clearly states the details

NAbehet

Read only

0 Likes
1,264

Hi Saran,

What you can do is call the function module RS_REFRESH_FROM_SELECTOPTIONS in your child program, keep a break point at that FM, execute only the child program. Once the FM logic is executed, see how the SELECTION_TABLE table is filled.

Make a note of that table entries, Now remove the function module logic in the child program.

Add the logic to populate the SELECTION_TABLE similarly how the FM populated in Job launcher program.

Thanks & Regards

Bala Krishna

Read only

former_member213475
Participant
0 Likes
1,264

Thanks all for your replies