2012 Jun 05 2:22 AM
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......
2012 Jun 05 3:21 AM
Hi,
In your fieldcatalog add the following :
lt_fieldcatalog-f4availabl = 'X'.
lt_fieldcatalog-ref_table = 'SYST'.
lt_fieldcatalog-ref_field = 'DATUM'.
Regards,
Jake
2012 Jun 05 3:18 AM
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
2012 Jun 05 3:21 AM
Hi,
In your fieldcatalog add the following :
lt_fieldcatalog-f4availabl = 'X'.
lt_fieldcatalog-ref_table = 'SYST'.
lt_fieldcatalog-ref_field = 'DATUM'.
Regards,
Jake
2012 Jun 05 4:42 AM
2015 May 20 7:15 PM