Application Development 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: 

Call transaction

Former Member
0 Kudos

Hi,

I have set parameter id and called transaction using CALL TRANSACTION 'KXH3' AND SKIP FIRST SCREEN . It is not showing the second screen. Will this statement only works for a some transactions. When I press ENTER it is going for second screen. Please suggest me.

Regards,

Satya

1 ACCEPTED SOLUTION

Former Member
0 Kudos

u can check the where-used-list of KXH3, its not used anywhere , may be for some other purpose it was created ,

GS03 is working fine

REPORT YCHATEST.

TABLES : SETLEAF.

DATA : SET LIKE SETLEAF-SETNAME VALUE '0B-PERIODS.GLT0'.
SET PARAMETER ID 'GSE' FIELD SET.
CALL TRANSACTION 'GS03' AND SKIP FIRST SCREEN.

U can check in transaction KXH3 , its first screen is 2100 which is a dummy screen , internally it will call GS03 i think

Message was edited by: Chandrasekhar Jagarlamudi

6 REPLIES 6

Former Member
0 Kudos

call GS03.

Regards

Prabhu

Former Member
0 Kudos

hi

good

go throgh this detail about the call transaction.

Basic form

CALL TRANSACTION tcod.

Additions

1. ... AND SKIP FIRST SCREEN

2. ... USING itab

2a. ... MODE mode

2b. ... UPDATE upd

2c. ... MESSAGES INTO messtab

Effect

Calls the SAP Transaction tcod ; tcod can be a literal or a variable. To return from the called transaction, you use the key word LEAVE PROGRAM .

Example

CALL TRANSACTION 'SP01'.

Addition 1

... AND SKIP FIRST SCREEN

Effect

Skips the first screen in the transaction (provided all the required fields have been assigned values by the SPA/GPA process).

Addition 2

... USING itab

Effect

Calls the Transaction tcod and passes the internal table itab , which contains one or several screens in batch input format.

If necessary, one of the messages output by the Transaction is returned to the fields SY-MSGID , SY-MSGTY SY-MSGNO , SY-MSGV1 , ..., SY-MSGV4 .

The return code value is set as follows:

SY-SUBRC = 0 Processing was successful.

SY-SUBRC <> 0 Transaction ended with an error.

Note

A called Transaction ends successfully for the following reasons:

COMMIT WORK Next screen = 0 LEAVE TO TRANSACTION ' '

Addition 2a

... MODE mode

Effect

The specified processing mode can accept the following values:

'A' Display screen

'E' Display screen only if an error occurs

'N' No display

If the addition MODE is not specified, the processing mode is set to 'A' .

Addition 2b

... UPDATE upd

Effect

The specified update mode upd defines the update type. This can have one of the following values:

'A' Asynchronous update

'S' Synchronous update

If the addition UPDATE is not specified, the processing mode is set to 'A' .

Addition 2c

... MESSAGES INTO messtab

Effect

The specified internal table contains all system messages that occur during CALL TRANSACTION USING ... . The internal table messtab must have the structure BDCMSGCOLL .

Example

DATA BEGIN OF BDCDATA OCCURS 100.

INCLUDE STRUCTURE BDCDATA.

DATA END OF BDCDATA.

DATA BEGIN OF MESSTAB OCCURS 10.

INCLUDE STRUCTURE BDCMSGCOLL.

DATA END OF MESSTAB.

DATA REPORT(8).

BDCDATA-PROGRAM = 'SAPMS38M'.

BDCDATA-DYNPRO = '0100'.

BDCDATA-DYNBEGIN = 'X'.

APPEND BDCDATA.

CLEAR BDCDATA.

BDCDATA-FNAM = 'RS38M-PROGRAMM'.

BDCDATA-FVAL = REPORT.

APPEND BDCDATA.

...

CALL TRANSACTION 'SE38' USING BDCDATA MODE 'N'

MESSAGES INTO MESSTAB.

Notes

Runtime errors

CALL_TRANSACTION_NOT_FOUND : Transaction is unknown.

CALL_TRANSACTION_IS_MENU : Transaction is a menu.

CALL_TRANSACTION_USING_NESTED : Recursive CALL TRANSACTION USING

http://www.geocities.com/SiliconValley/Campus/6345/call_tra.htm

thanks

mrutyun

Former Member
0 Kudos

u can check the where-used-list of KXH3, its not used anywhere , may be for some other purpose it was created ,

GS03 is working fine

REPORT YCHATEST.

TABLES : SETLEAF.

DATA : SET LIKE SETLEAF-SETNAME VALUE '0B-PERIODS.GLT0'.
SET PARAMETER ID 'GSE' FIELD SET.
CALL TRANSACTION 'GS03' AND SKIP FIRST SCREEN.

U can check in transaction KXH3 , its first screen is 2100 which is a dummy screen , internally it will call GS03 i think

Message was edited by: Chandrasekhar Jagarlamudi

Former Member
0 Kudos

hi can u show me the code .

This statement works .

Former Member
0 Kudos

Hi Satya

Try this code .

parameter : p_dat like RGSBM-SHORTNAME default '0001'.

SET PARAMETER ID 'GSE' FIELD p_dat.

call transaction '<b>GS03</b>' AND SKIP FIRST SCREEN.

Regards

Naval

Former Member
0 Kudos

Make sure that u have values for all parameters in ur first screen, if u have any....

for more details see SAP help....

regards