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

call transaction with parameter values

Former Member
0 Likes
1,076

HI all,

I would just like to ask if there's a way to call a transaction with values on the parameters. I have an error message flagged on a certain transaction and after clicking on the error message, it exits the transaction. The requirement is to go back to the transaction and correct the field value which has an error. Please help.

thanks in advance,

3 REPLIES 3
Read only

Former Member
0 Likes
466

Hello,

Difficult to suggest with the information provided. Is it a standard or a customized transaction? If standard which one? Also check if BDC helps the cause .

Vikranth

Read only

Faaiez
Product and Topic Expert
Product and Topic Expert
0 Likes
466

Hi

You can call a transaction passing it values for the screen:

Addition 2

... USING bdc_tab [bdc_options]

Effect

Use this addition to pass an internal table bdc_tab of row type BDCDATA from the ABAP Dictionary to a dialog transaction. The additions bdc_options control the batch input processing. When a transaction with addition USING is called, the system field sy-binpt is set to value "X" in the called program - while this transaction is running, no other transaction can be called with this addition.

OR

You could call the program that the transaction calls directly using the submit statement as follows:

SUBMIT {rep|(name)} [selscreen_options]

[ list_options ]

[ job_options]

[AND RETURN].

Your full requirement however is unclear as you do not specify whether you are working with SAP Standard programs or custom programs etc. I think you should elaborate on your requirement.

Regards

Read only

Former Member
0 Likes
466

thanks for your prompt reply.

i am using sap standard transaction.