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

calling a program

Former Member
0 Likes
783

I need to call a program Y from my program X. The program Y should return an internal table to the calling program X. Which command should I be using to call the program Y?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
760

Hi,

Check the Command

"SUBMIT and RETURN'

Regards,

Bhupal

7 REPLIES 7
Read only

Former Member
0 Likes
761

Hi,

Check the Command

"SUBMIT and RETURN'

Regards,

Bhupal

Read only

Former Member
0 Likes
760

use submit program <program name>

using <.........>

returning <..........>.

check in sap help library for correct syntax.

Edited by: Ramesh Babu Chirumamilla on Aug 14, 2008 1:23 PM

Read only

Former Member
0 Likes
760

Hi

Type submit and press f1 u will get the ans

regards

vivek

Read only

Former Member
0 Likes
760

hi,

use keyword SUBMIT to call another executable program in ur program.

for more detail check out F1.

Read only

Former Member
0 Likes
760

Hi,

SUBMIT report2 WITH parameter1 = parameter1

WITH selectoption IN selectoption1

AND RETURN.

Hope it is helps.

Read only

Former Member
0 Likes
760
Read only

Former Member
0 Likes
760

Thanks for the valuable information. Got my answer now.