Question:
Hello all,
How can I do ALV which can pick up several lines at the same time.
I created a ALV(ABAP list),but just can select single line.
and boss want to pick up several lines in ALV.
Your help is very appreciated.
Maxk
Answer:
If you use an ALV grid (and why shouldn't you?) you could set SEL_MODE to be 'A' in the layout structure, and it would add pushbutton-selection to your ALV...
Try it, you might like it!
Also, try searching, there's a lot of info here on ALV...
_________________
The Doc
Magna Grand Docot of the Tuly Idiot Order
2007 Basic Rules
Answer:
Hello all,
Following text is my code.Could you please tell me what and where I need to add sth.
Or give me a sample?
Thanks a lot,
Maxk
*******************************************
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
EXPORTING
* I_INTERFACE_CHECK = ' '
* I_BYPASSING_BUFFER = 'X'
* I_BUFFER_ACTIVE =
I_CALLBACK_PROGRAM = GV_REPID
I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'
I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
* I_CALLBACK_TOP_OF_PAGE = ' '
* I_CALLBACK_HTML_TOP_OF_PAGE = ' '
* I_CALLBACK_HTML_END_OF_LIST = ' '
* I_STRUCTURE_NAME =
* I_BACKGROUND_ID = ' '
* I_GRID_TITLE = lv_grid_title
* I_GRID_SETTINGS =
* IS_LAYOUT_LVC =
IT_FIELDCAT_LVC = gt_fieldcat
* IT_EXCLUDING =
* IT_SPECIAL_GROUPS_LVC =
* IT_SORT_LVC =
* IT_FILTER_LVC =
* IS_SEL_HIDE =
* I_DEFAULT = 'X'
I_SAVE = 'A'
IS_VARIANT = gs_variant
* IT_EVENTS =
IT_EVENT_EXIT = gt_event_exit
* IS_PRINT_LVC =
* IS_REPREP_ID_LVC =
* I_SCREEN_START_COLUMN = 0
* I_SCREEN_START_LINE = 0
* I_SCREEN_END_COLUMN = 0
* I_SCREEN_END_LINE = 0
* IT_HYPERLINK =
* I_HTML_HEIGHT_TOP =
* I_HTML_HEIGHT_END =
* IMPORTING
* E_EXIT_CAUSED_BY_CALLER =
* ES_EXIT_CAUSED_BY_USER =
TABLES
T_OUTTAB = gt_itab
EXCEPTIONS
PROGRAM_ERROR = 1
OTHERS = 2
Answer:
This problem was solved.
Thank you all.
Answer:
This problem was solved.
Thank you all.
ALL...
_________________
The Doc
Magna Grand Docot of the Tuly Idiot Order
2007 Basic Rules