Application Development and Automation 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: 
Read only

sample program to remove standard selection-options & replace user defined.

Former Member
0 Likes
331

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.

2 REPLIES 2
Read only

Former Member
0 Likes
308

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

Read only

andreas_mann3
Active Contributor
0 Likes
308

Hi,

or look here:

Andreas