‎2005 Dec 07 4:37 AM
The standard selection-options are provided for the logical database. i need to supress the standard selection-options and include my own selection-options. I neeed a sample program how to do it.
‎2005 Dec 07 4:44 AM
Is this your custom program where you assigned the LDB in the attributes?
If so, you can do this in your AT SELECTION-SCREEN OUTPUT event.
LOOP AT SCREEN.
IF SCREEN-NAME = <LDB SELECTION-SCREEN FIELDNAME>.
SCREEN-ACTIVE = 0.
ENDIF.
ENDLOOP.If your LDB selection parameters have a MODIF ID xyz option addition, then instead of the above SCREEN-NAME, you can replace it with SCREEN-GROUP1 and do the same thing.
Srinivas
‎2005 Dec 07 6:27 AM