‎2007 Nov 01 3:11 PM
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
‎2007 Nov 01 3:43 PM
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
‎2007 Nov 01 3:13 PM
use SUBMIT command to run another program.
http://www.sapdevelopment.co.uk/reporting/rep_submit.htm
Cheers
VJ
Message was edited by:
Vijayendra Rao
‎2007 Nov 01 3:26 PM
With this you execute zreport and send the parameters of selection screen
SUBMIT zreport with p_param1 = 'value'
with p_param2 = 'value'.
‎2007 Nov 01 3:29 PM
Hi,
If i execute the program then wnat to get another program selection screen.
Thanks & regards
Vallamuthu.M
‎2007 Nov 01 3:29 PM
Hi,
If i execute the program then i wnat to get another program selection screen.
Thanks & regards
Vallamuthu.M
‎2007 Nov 01 3:32 PM
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
‎2007 Nov 01 3:39 PM
Please tell me what is SELTAB i'll give you full marks.
Thanks & regards,
vallamuthu.M
‎2007 Nov 01 3:43 PM
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
‎2007 Nov 01 3:54 PM
Can any one tell me hoe to find FSV NODE Results,
Thanks to all