Hi Guys,
Requirement:
I have a list displayed thro' ALV. User can modify some of the fields( fieldcatalog-input is set to x for that field). If one field(for ex. flag) is set, then user should not be allowed to change any of the fields on that row.
Question: How do I change field properties of individual rows or cells on the ALV list?
Come on Guru's.
Guest
ALV - field input mode
Moderators: Snowy, thx4allthefish, YuriT, Gothmog
reference.........
You can reference Dev Class Slis....
'Slis' has a many exam program...
So you can find it....
good luck..
'Slis' has a many exam program...
So you can find it....
good luck..
Thanks very much
Guys,
Thank you both a lot. It's a very relevant one. I'll go thro' and get back to you if i come across any problems.
Thanks again,
Guest_SA
Thank you both a lot. It's a very relevant one. I'll go thro' and get back to you if i come across any problems.
Thanks again,
Guest_SA
Hi forum,
As alternative, I am evaluating to send a message to the user making him to fill the editable field but the event DATA_CHANGED of CL_GUI_ALV_GRID does not work if the user does not fill any editable field
I will be grateful for any help
thanks in advance
In addition, I need that the editable field be obligatory ...anybody knows how I can do that?...I have checked the structure LVC_S_FCAT but I could not find a proper attribute!Change the field catalog's edit property as
data: ft_cat type lvc_s_fcat. Create field catalog.
If ft_cat-fieldname = 'MATNR'.
ft_cat-edit = 'X'.
endif.
As alternative, I am evaluating to send a message to the user making him to fill the editable field but the event DATA_CHANGED of CL_GUI_ALV_GRID does not work if the user does not fill any editable field
I will be grateful for any help
thanks in advance