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 List in ALV CELL for DATE SELECTION

prabhu_s2
Active Contributor
0 Kudos

Hi All

Is it possible to have a drop down list in Classical ALV CELL that makes DATE SELECTION ?

Thkx

Prabhu

7 REPLIES 7

apoorva_singh
Active Participant
0 Kudos

Hi Prabhu,

Yeah it's possible. Refer to following sample code:

<< cut and paste without attribution from http://www.sap technical.com/Tutorials/ALV/Dropdown/list.htmremoved >>

Edited by: Rob Burbank on Apr 30, 2009 4:33 PM

Former Member
0 Kudos

Yes,

it is possible,

for coding see somre sap sites with classical reports.

Regards

I355602
Advisor
Advisor
0 Kudos

Hi,

Refer:

BCALV_EDIT_06 Dropdown Listbox at Column Level

BCALV_EDIT_07 Dropdown Listbox at Cell Level

Hope this helps you.

Regards,

Tarun

prabhu_s2
Active Contributor
0 Kudos

Hi

I do know on how to get the drop down list in ALV cell but pls read my question...its all abt drop down selection for DATE (CALENDAR)

thkx

Prabhu

Former Member
0 Kudos

Hi Prabhu,

please try below code it is working.

CLEAR alv_fieldcatalog.

alv_fieldcatalog-tabname = 'IT_FINAL'.

alv_fieldcatalog-fieldname = 'INVOICE_DATE'.

alv_fieldcatalog-seltext_l = 'Invoice Date'.

alv_fieldcatalog-ref_fieldname = 'BLDAT'. "Changes By Yogesh CHG03

alv_fieldcatalog-ref_tabname = 'MKPF'. "Changes By Yogesh CHG03

alv_fieldcatalog-outputlen = '10'.

alv_fieldcatalog-edit = 'X'.

APPEND alv_fieldcatalog.

Regards,

Yog

0 Kudos

hi

this makes the cell editable but will not provide a dropdown box thru which the user can select a date. Pls note tht i'm NOT ASKING for F4 help in DATE.

thkx

Prabhu

prabhu_s2
Active Contributor
0 Kudos

Closing. Not anwsered. Opening a new thread on "DROP DOWN List in Table control for DATE picklist using Calendar"