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

INPUT BATCH Simulation

Former Member
0 Likes
1,352

Hi Experts!!!

Is there any way to run a simulated form INPUT BATCH? That is:

CALL TRANSACTION tcode USING bdcdata

MODE p_mode

UPDATE c_update

MESSAGES INTO messtab.

I want you to do one they would return to collect silumación MESSTAB, but without reaching changes occur in the SAP system.

Thaks.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
868

Some transactions have a "check" or "simulate" function. If your transaction doesn't have one of these, you can press the "back" button instead of 'save". This will give you some validations.

Rob

2 REPLIES 2
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
868

Generally what we do is validate the records before a call to transaction is made.

But you can also go for an option like do a recording without a SAVE and one with SAVE.

So if the simulate option is choosed then execute the first one else the second one.

Here is an example

Edited by: Keshav.T on May 19, 2010 9:36 PM

Read only

Former Member
0 Likes
869

Some transactions have a "check" or "simulate" function. If your transaction doesn't have one of these, you can press the "back" button instead of 'save". This will give you some validations.

Rob