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

execute a program from another program

Former Member
0 Likes
671

Hi, All,

I would like to execute a program from another program. Also I need to pass a internal table to second program. I tried EXPORT/IMPORT and CALL TRANSACTION. But sounds like CALL TRANSACTION did not execute the program. Could anyone provide a sample program? Useful answer will be << removed >> appreciated.

Meiying

Edited by: Rob Burbank on Feb 25, 2009 4:14 PM

Please do not offer rewards.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
626

Check the SUBMIT command to call a separate program

you can use IMPORT/EXPORT to pass data in memory from one program to another.

3 REPLIES 3
Read only

Former Member
0 Likes
626

Hi again.

Use Submit, see the info of submit pressing "F1" under that word in an abap code.

Regards

Read only

Former Member
0 Likes
627

Check the SUBMIT command to call a separate program

you can use IMPORT/EXPORT to pass data in memory from one program to another.

Read only

0 Likes
626

Thank you for the answer. I tried submit. It works.