2006 Nov 30 10:43 AM
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?
2006 Nov 30 10:52 AM
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.
2006 Nov 30 10:53 AM
Hi,
have a look at the SAP HELP link
http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9b8535c111d1829f0000e829fbfe/content.htm
Regards
Sudheer
2006 Nov 30 12:02 PM
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.