Application Development 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: 

Regarding LDB Selection Screen

Former Member
0 Kudos
90

Hi,

I am using LDB for the program.

LDB - PNPCE.

It will give the standard selection screen.

I dont want some of the fields to appear on the selection screen.

What needs to be done?

3 REPLIES 3

Former Member
0 Kudos
61

Hi

You can click on selections and you can comment the fields in the LDB which you dont want to appear and also accordingly change the select query in source code of LDB, and activate that. The fields will not be appeared.

Regards

Haritha.

Former Member
0 Kudos
61

Hi sandeep,

1. simple

2. Suppose u do not want WERKS field to appear.

3. Just copy paste in the program code.

4.

*----


NO WERKS FIELD

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME CS 'WERKS'.

SCREEN-INVISIBLE = 1.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

regards,

amit m.