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: 

select option in LDB

Former Member
0 Kudos

hi i am using a LDB in my report whcih had 3 fields.i dont want the third field to be displayed on the selection screen.how can i do that,plz suggest.it does not have modifid to changes the status in the at selection screen output.

regards

1 ACCEPTED SOLUTION

g_srivastava
Active Contributor
0 Kudos

Hi Kiran,

Hope this link will be a bit help for the query.

http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9c2e35c111d1829f0000e829fbfe/frameset.htm

Have a best day ahead.

6 REPLIES 6

g_srivastava
Active Contributor
0 Kudos

Hi Kiran,

Hope this link will be a bit help for the query.

http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9c2e35c111d1829f0000e829fbfe/frameset.htm

Have a best day ahead.

Former Member
0 Kudos

Hi Kiran,

Check with this link

hope it helps you.

Regards!

Former Member
0 Kudos

Hi,

Check this link

Amresh

Former Member
0 Kudos

Hi Kiran kumar,

Just check it out this Code in your abap editor.

At selection-screen initially it displays the two fields and if any one if the field is initial it will display the third field.

TABLES

spfli.

SELECT-OPTIONS:

s_carrid FOR spfli-carrid MODIF ID gr1,

s_connid FOR spfli-connid MODIF ID gr1,

s_cityfr FOR spfli-cityfrom MODIF ID gr2.

AT SELECTION-SCREEN OUTPUT.

IF s_carrid IS INITIAL AND s_connid IS INITIAL.

LOOP AT SCREEN.

IF screen-group1 CS 'GR2'.

screen-active = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

ENDIF.

Regards

Kiran

Edited by: Kiran Saka on Feb 5, 2009 4:49 AM

Former Member
0 Kudos

Hi

if LDB used in SAP Query it comes with default selection screen.Only if

LDB is called with FM LDB_PROCESS the default screen will be suppressed.

Regards

Hari

faisal_altaf2
Active Contributor
0 Kudos

Hi,

First of all to find the Screen Field name follow the steps bellow.

1. --> Display the Screen With all the fields

2. --> Place you Muse Courser on the Field you want to hide using the Loop at Screen

3. --> Press 'F1' Key and on the display Window

4. --> From the Tool bar select the Technical Information Button

5 ---> From here you will be able to find the name of the Field

Now Please Have a Look at the following Thead, hope it will solve out your problem

[Hide Fields in LDB|]

Please Reply if any Problem,

Kind Regards,

Faisal

Edited by: Faisal Altaf on Feb 5, 2009 9:55 AM