Hi,
I have a Ztable with a field ZSTATUS,this field contains fixed values
1 Pending with Approver 1
2 Pending with Approver 2
3 Approved
0 Rejected
The data is displayed using ALV Table in WebDynpro ABAP
My requirement is now am getting the output for the coulmn ZSTATUS as 1 or 2 or 3 etc
But the values of the field ZSTATUS should be if ZSTATUS = '1' then it should contain this text Pending with Approver1 ,
if ZSTATUS = '2' then it should contain this text Pending with Approver2. etc...........
The values for the ZSTATUS field should be dynamically changed.
I have retrieved the coulmn by this logic,
*lr_column_settings ?= l_value.
*lr_column = lr_column_settings->get_column( 'ZSTATUS' ).
After this I need the cell value if it is 1 then the text should be Pending with Approver 1.
How to retrieve the cell value for a field in WebDynpro ABAP ALV.
Thanks in advance,
Jyoti