2014 Nov 27 7:02 AM
hello all ,
in the below screen ,
i want hide the red colored portion when call this program using SUBMIT statement.(program name : GP4W3I7I8R7FXR220XTGLI0ZE70)
how do i achieve this,
thanks in advance....
2014 Nov 27 8:06 AM
You can do this by coding 2 selection screens in your called program, and then the usual SUBMIT statement from your calling program i.e. SUBMIT USING SELECTION SCREEN dynnr.
2014 Nov 27 8:24 AM
Hi,
If you know the calling program, put a condition accordingly in the called program to hide the selection. I hope if there are mandatory input in the portion which you want to hide, you will be passing some default values.
2014 Nov 27 10:27 AM
hi ,
my code,
************************************
REFRESH it_rspar[].
CLEAR wa_rspar.
clear wa_rspar.
wa_rspar-selname = 'POSID'.
wa_rspar-kind = 'S'.
wa_rspar-sign = 'I'.
wa_rspar-option = 'EQ'.
wa_rspar-low = lv_posid.
APPEND wa_rspar to it_rspar.
clear wa_rspar.
clear wa_rspar.
wa_rspar-selname = 'VERSN'.
wa_rspar-kind = 'S'.
wa_rspar-sign = 'I'.
wa_rspar-option = 'EQ'.
wa_rspar-low = '0'.
APPEND wa_rspar to it_rspar.
clear wa_rspar.
SUBMIT GP4W3I7I8R7FXR220XTGLI0ZE70 WITH SELECTION-TABLE it_rspar AND RETURN.
*********************************
giving an error like below,
2014 Nov 27 10:36 AM
i also tried with call transaction by creating parameter transaction in se93 like below,
i also checked with D_SREPOVARI-NOSELSCRN = 'X'..either way its not working....
written code in the called program as,
SET PARAMETER ID 'PRO' FIELD lv_posid.
SET PARAMETER ID 'KVS' FIELD '0'.
call TRANSACTION 'ZPS106' AND SKIP FIRST SCREEN .
still initial screen is displayed...