2007 Aug 02 8:22 AM
Hi Experts,
I have a problem when i am pressing the variants button in the selection-screen of a report, Find Variants subscreen is coming with parameters Variant, Environment, Created by, Changed by and Original Language. My requirement is to suppress this Find Variants screen. How can it possible please suggest.
Cheers,
Bujji.......
2007 Aug 02 8:24 AM
you can make use of the 'excluding' option for the pf-status.
Regards
Gopi
2007 Aug 02 8:28 AM
DATA: IT_EXTAB TYPE SLIS_T_EXTAB.
DATA: WA_EXTAB LIKE LINE OF IT_EXTAB.
WA_EXTAB-FCODE = 'APEN'.
APPEND WA_EXTAB TO IT_EXTAB.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
I_BUFFER_ACTIVE = ' '
I_CALLBACK_PROGRAM = G_PROGRAM
I_CALLBACK_PF_STATUS_SET = G_PF_STATUS
I_CALLBACK_USER_COMMAND = G_USER_COMMAND
IS_LAYOUT = GS_LAYOUT
I_SAVE = 'X'
I_GRID_TITLE = G_TITULO
IT_FIELDCAT = I_FIELDCAT
IT_EXCLUDING = IT_EXTAB
IT_SORT = GS_SORT[]
TABLES
T_OUTTAB = OPERATIONS_DATA
EXCEPTIONS
PROGRAM_ERROR = 1
OTHERS = 2.
IT_EXCLUDING = IT_EXTAB is the key for exclude buttons -:)
2007 Aug 02 9:19 AM
Hi Experts,
No need to suppress the selection-screen fields or buttons in the selection-screen, when i am pressing the variants button next another pop-up screen is coming, just want to suppress that pop-up screen. Can any one suggest......