2014 Nov 27 10:40 AM
hello all,
how to skip initial screen when calling a parameter transaction.....
i tried with call Transaction (tcode) and skip first screen,
but its not working.....
hello all,
how to skip initial screen when calling a parameter transaction.....
i tried with call Transaction (tcode) and skip first screen,
but its not working.....
2014 Nov 27 10:45 AM
Hi.
Please put before... SET PARAMETER ID.
As example:
PARAMETERS: p_matnr TYPE mara-matnr.
SET PARAMETER ID 'MAT' FIELD p_matnr.
CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.
Hope to help
Bye
2014 Nov 27 10:52 AM
hi roberto,
i tried like this, but its not working...
my code,
READ TABLE it_prps2 INTO wa_prps2 INDEX rs_selfield-tabindex.
lv_posid = wa_prps2-posid.
set PARAMETER ID 'PRO' FIELD lv_posid.
SET PARAMETER ID 'KVS' FIELD '0'.
call TRANSACTION 'ZPS106' AND SKIP FIRST SCREEN . (here ZPS106 is my parameter transaction)...
2014 Nov 27 10:57 AM
Hi.
SET PARAMETER ID 'KVS' FIELD '0' <- 0 stands for initial?
Cause 0 is a particular value and this could be a problem. Try another value.... What's your situation after calling your custom transaction ZPS106? Some errors message?
2014 Nov 27 11:05 AM
roberto,
my intention is to skip initial screen and directly display the output for the WBS which i have passed by using SET parameter ID...
here the possible values for SET PARAMEETER ID 'KVS' FIELD are
2014 Nov 27 11:46 AM
Hi.
Well '0' is OK as value PARAMETER field is a simple char parameter, with MODIF ID set inside the declaration part of the program.
There's something more to analyze on your transaction type. Did you create a transaction with selection parameters or what?
How's declared your transaction code?
Hope to help.
2014 Nov 27 10:52 AM
Hi Vinay,
Can you please paste your code for the click event .
first you need to set parameter to the particular field name and then call transaction.
SET PARAMETER ID : 'ANR' FIELD wa_data-<filedname>.
CALL TRANSACTION 'CO03' AND SKIP FIRST SCREEN.
2014 Nov 27 10:55 AM
hi tharaka,
i tried in the same way,
***************************************
FORM user_command2 USING r_ucomm type sy-ucomm
rs_selfield type slis_selfield.
case r_ucomm.
when '&IC1'.
if rs_selfield-fieldname = 'STRING'.
clear : wa_prps2.
READ TABLE it_prps2 INTO wa_prps2 INDEX rs_selfield-tabindex.
lv_posid = wa_prps2-posid.
set PARAMETER ID 'PRO' FIELD lv_posid.
SET PARAMETER ID 'KVS' FIELD '0'.
call TRANSACTION 'ZPS106' AND SKIP FIRST SCREEN .
********************************************************************************
but the initial screen is displayed ,its not executing directly,....
2014 Nov 27 11:11 AM
Hi Vinay,
I thought you are calling a standard tcode for this ? as per your explanation what is ZPS106 program?
ALV ? Module Pool ?
2014 Nov 27 11:15 AM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |