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

ABAP Command

vallamuthu_madheswaran2
Active Contributor
0 Likes
972

Hi friends,

is there any ABAP command or Function module to run the another ABAP Program(not Transaction code or area menu).

Thanks & Good regards,

vallamuthu.M

1 ACCEPTED SOLUTION
Read only

ferry_lianto
Active Contributor
0 Likes
947

Hi,

SELTAB is a ranges which is used to pass values to select-options (called program) from calling program.

Please check this link for sample codes in detail.

http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba51a35c111d1829f0000e829fbfe/content.htm

Regards,

Ferry Lianto

8 REPLIES 8
Read only

Former Member
0 Likes
947

use SUBMIT command to run another program.

http://www.sapdevelopment.co.uk/reporting/rep_submit.htm

Cheers

VJ

Message was edited by:

Vijayendra Rao

Read only

Former Member
0 Likes
947

With this you execute zreport and send the parameters of selection screen

SUBMIT zreport with p_param1 = 'value'

with p_param2 = 'value'.

Read only

0 Likes
947

Hi,

If i execute the program then wnat to get another program selection screen.

Thanks & regards

Vallamuthu.M

Read only

0 Likes
947

Hi,

If i execute the program then i wnat to get another program selection screen.

Thanks & regards

Vallamuthu.M

Read only

ferry_lianto
Active Contributor
0 Likes
947

Hi,

You can use SUBMIT statement with VIA SELECTION-SCREEN option. Please check this sample code.


SUBMIT demo_program_submit_rep1 VIA SELECTION-SCREEN
                      WITH paramet eq 'Selection 1'
                      WITH selecto IN seltab
                      WITH selecto ne 3
                      AND RETURN.

Regards,

Ferry Lianto

Read only

0 Likes
947

Please tell me what is SELTAB i'll give you full marks.

Thanks & regards,

vallamuthu.M

Read only

ferry_lianto
Active Contributor
0 Likes
948

Hi,

SELTAB is a ranges which is used to pass values to select-options (called program) from calling program.

Please check this link for sample codes in detail.

http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba51a35c111d1829f0000e829fbfe/content.htm

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
947

Can any one tell me hoe to find FSV NODE Results,

Thanks to all