‎2011 Jun 14 6:23 AM
Hi,
I'm using FM REUSE_ALV_POPUP_TO_SELECT to display an ALV.
I want to make one column editable in this. Is it possible?
How to make editable column for the ALV pop-up. Please do help me.
Above Function Module displays in ALV List format. Is there any pop alv function module that displays in Grid Format?
Please do help.
Thanks & Regards,
Sowmya
‎2011 Jun 14 7:14 AM
Yes, It is posible, Similar to REUSE_ALV_GRID_DISPLAY. You have define the fields as EDIT = 'X' while filling the field catlog.
‎2011 Jun 14 6:59 AM
Hi Sowmya,
1st Requirment:
You can pass the field EDIT in the field catalog as X for the field that has to be editable and call the function module REUSE_ALV_POPUP_TO_SELECT.
2dn Requirment:
Try using the function module VIEW_MAINTENANCE_CALL to display the pop up in the GRID format.
But i am not sure about your requirment of displaying the POP UP. The VIEW_MAINTENANCE_CALL function module will displal the GRID as normal format, like standard transaction.
Regards
HM
‎2011 Jun 14 7:56 AM
Thanks for the reply Hareesh.
I tried by providing edit = 'X' in fieldcatalog, but it is not working
ls_fieldcat-row_pos = '1'.
ls_fieldcat-col_pos = '8'.
ls_fieldcat-fieldname = 'DAYS'.
ls_fieldcat-tabname = 'G_T_SIMULATED'.
ls_fieldcat-seltext_m = '# of Days'.
ls_fieldcat-outputlen = 10.
ls_fieldcat-edit = c_on.
APPEND ls_fieldcat TO lt_fieldcat.
CLEAR ls_fieldcat.Please provide your inputs.
Thanks & Regards,
Sowmya
‎2011 Jun 14 7:14 AM
Yes, It is posible, Similar to REUSE_ALV_GRID_DISPLAY. You have define the fields as EDIT = 'X' while filling the field catlog.
‎2011 Jun 14 8:14 AM
I provided the values for:
I_SCREEN_START_COLUMN
I_SCREEN_START_LINE
I_SCREEN_END_COLUMN
I_SCREEN_END_LINEin REUSE_ALV_GRID_DISPLAY.
Now, it is appearing in Grid Format, but Checkbox is not appearing.
‎2011 Jun 14 8:33 AM
Hi,
Add this code in Field catalog
ls_fieldcatlog-CHECKBOX = 'X'.
ls_fieldcatlog-edit = 'X'.
refer the below link
www dot saptechnical dot com/Tutorials/ALV/Popup/demo dot htm
www dot kerum dot pl/infodepot/00008
Regards,
Dhina..
Edited by: Dhina DMD on Jun 14, 2011 9:35 AM
‎2011 Jun 14 9:37 AM
Hi Sowmya,
Can you pls give me your code snippet ?
So that i can get more details regarding the issue.
Regards
HM
‎2011 Jun 14 11:02 AM
It is working with REUSE_ALV_GRID_DISPLAY after providing:
ls_fieldcat-checkbox = c_on.
ls_fieldcat-edit = c_on.
i_screen_start_column =
i_screen_start_line =
i_screen_end_column =
i_screen_end_line =
Thanks & Regards,
Sowmya
‎2014 May 30 11:14 AM
Hi Sowmya,
You shouldn't say "pleas do help" or "please do help me" it's incorrect and wrong.
‎2020 Mar 12 10:11 AM
hi,
just do that,
loop at lt_fieldcatalog into ls_fieldcatalog.
ls_fieldcatalog-edit = 'X'
ls_fieldcatalog-input = 'X' * When you don't do this, then your list is not editable!
modify lt_fieldcatalog from ls_fieldcatalog.
endloop.
That's it.
‎2023 Mar 31 8:23 AM
Hi ,
Hope this will help you.
DATA: kna1 TYPE kna1.
TYPES: BEGIN OF ty_kna1,