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: 

f4 help for date column in the ALV Editable

Former Member
0 Kudos
7,615

Hi,

In the output of ALV, there is a date column which is one of the editable fields.

when i presses  f4 help it should popup the calender to select the date as such we do for standard screens in the alv output.....

pls provide me with the code for the f4 help for the date field in the alv output editable column...I generated alv using function modules......

1 ACCEPTED SOLUTION

Former Member
1,916

Hi,

In your fieldcatalog add the following :

lt_fieldcatalog-f4availabl = 'X'.

lt_fieldcatalog-ref_table = 'SYST'.

lt_fieldcatalog-ref_field  = 'DATUM'.

Regards,

Jake

4 REPLIES 4

Former Member
0 Kudos
1,916

Hi Somasundaram,

Populate reference table and reference field name in field catalog for your date field. Then f4 help will automatically comes from the standard field that your have mentioned.

lw_fieldcatalog-ref_field   = 'DATE'.

lw_fieldcatalog-ref_table  = 'TABLE'.

Regards,

Rajesh

Former Member
1,917

Hi,

In your fieldcatalog add the following :

lt_fieldcatalog-f4availabl = 'X'.

lt_fieldcatalog-ref_table = 'SYST'.

lt_fieldcatalog-ref_field  = 'DATUM'.

Regards,

Jake

0 Kudos
1,916

Thanks a lot Jake....

naveen_k1
Product and Topic Expert
Product and Topic Expert
0 Kudos
1,916

Thanks Jake.