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

About Submit programs

Former Member
0 Likes
556

I did a Zprog that's gonna call a standard program. My first idea has made a batch input and then a call transaction. However, what i really need is load one of screen of this standard program with some "pre-configured" fields. The user is gonna say if he wants do execute or not the program. In other words, in fact, i don't want to a submit in a program, just load a screen with a something like a variant.

I appreciate all help.

Sry about my poor english.

1 ACCEPTED SOLUTION
Read only

alejandro_bindi
Active Contributor
0 Likes
537

I assume you're referring to loading the selection screen. If so, check this link.

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

Options listed there are the ones you can use together with SUBMIT for filling selection screen.

Regards

Please reward points if helpful.

4 REPLIES 4
Read only

alejandro_bindi
Active Contributor
0 Likes
538

I assume you're referring to loading the selection screen. If so, check this link.

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

Options listed there are the ones you can use together with SUBMIT for filling selection screen.

Regards

Please reward points if helpful.

Read only

Former Member
0 Likes
537

Are the values you need to default pre-set?

Perhaps you could use either a Parameter Transaction (set up in SE93) or a Transaction / Screen Variant (Transaction SHD0).

The second of these is the most flexible - see documentation in SAP help:

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/67/232037ebf1cc09e10000009b38f889/content.htm">Transaction Variants and Screen Variants</a>

Andrew

Read only

Former Member
0 Likes
537

Hi !

If you're callesd program is a report, you can use

SUBMIT .... via selection screen

by setting the values in the SUBMIT statement.

"Via selection screen" allways shows the initial screen of the report and does no immediate submit of it.

Regards

Rainer

Some points would be nice if that helped...

Read only

Former Member
0 Likes
537

Thx everyone. Helps a lot.