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: 

drop down in ALV grid

0 Kudos

I am able to display the editable ALV. I am able to edit and save into my ztable. now, the issue is in editable cells I am able to enter through keyboard, but I want data for particular field from standard tables i.e. I am not getting dropdown as we get in normal ALV display. if this is solved my entire issue is solved.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Create the serach help for the field in the ALV fieldcatalog.

If you were using OO ALV, then you need to register the field for F4.

it_f4-fieldname = 'Field name'

it_f4-register = 'X'.

it_f4-chngeafter = 'X'

APPEND it_f4 .

CALL METHOD grid->register_f4_for_fields

EXPORTING

it_f4 = it_f4[].

Regards,

Satish Kanteti

4 REPLIES 4

Former Member
0 Kudos

Hi,

Create the serach help for the field in the ALV fieldcatalog.

If you were using OO ALV, then you need to register the field for F4.

it_f4-fieldname = 'Field name'

it_f4-register = 'X'.

it_f4-chngeafter = 'X'

APPEND it_f4 .

CALL METHOD grid->register_f4_for_fields

EXPORTING

it_f4 = it_f4[].

Regards,

Satish Kanteti

0 Kudos

i am not using OOALV. It is normal .

0 Kudos

In that case you have to create a Search Help for the data element on which the ALV column is build. You can do this in SE11 transaction.

Former Member
0 Kudos

Hi,

To solve your problem you can create a structure (Data Type) for your FIELDCAT, and associate to your field the standard Data element or Domain that you want display.

Best Regards,

Rodrigo Crespo.