Finding Next screen of transaction in batch mode
Overview
In case of SAP-Batch data load programs we are determining next screens by calling the base transaction( e.g. 'F-02')  in Batch mode.

How to do it ?
Following source code calls a transaction in batch mode. Try it out.
000010 REPORT ZTRAN .  
000011 * Programmer: Shrikant Saitwadekar 
000020 DATA : BEGIN OF BDCDATA OCCURS 5.  
000030        INCLUDE STRUCTURE BDCDATA.  
000040 DATA: END OF BDCDATA.  
000050 PARAMETERS TRCODE LIKE RSEUX-CT_VALUE OBLIGATORY.  
000060  
000070 CALL TRANSACTION TRCODE  USING BDCDATA MODE 'A'.  
000080 LEAVE PROGRAM.          
 
 
 
 
 

Finding navigational codes for the next screen
 
Overview
In case of SAP-Batch data load programs we are determining navigation codes for next screens( in Batch mode) as follows.

How to do it ?
 
 
finding navigational codes corresponding to push buttons:

Step 1: press the push button.
Step 2: keeping it pressed press 'F1'.
Step 3. Release Push button.

A window appears indicating the program name and navigational code related to the push button.
 

Try it out.

This suggestion is only valid for SAP and will change depending on the programming environment. Please e-mail me any suggestion, Improvements that you have explored to achieve it.

 

 

If you have comments or suggestions, email us at gssoft@goplay.com
Screens pasted above are from SAP R/3 software
Copyright ©, 1998, GS Software, Last modified  Jan 1,1998