Where the data captured data is stored in ALV Interactive
Reports using usercommand??
I_callback_usercommand
Answers were Sorted based on User's Feedback
Answer / dilip
We need pass a value to user command parameter i.e.
I_callback_user command = 'USER_COMMAND'.
Then we need to explicitly create Form ( subroutine ) with name USER_COMMAND.
FORM USER_COMMAND USING OK_CODE LIKE SY-UCOMM
SELFIELD TYPE SLIS_SELFIELD.
.
CASE COMMAND.
WHEN '&IC1'. " When ever user click on the action will be
" stored under this sy-ucomm value
*--- selfield structure will actually hold the table index of internal table/value base on which we can build our logic furter.
READ TABLE T_EKKO INTO LWA_EKKO INDEX SELFIELD-TABINDEX.
IF SY-SUBRC = 0.
ENDIF.
WHEN OTHERS.
ENDCASE.
ENDFORM
Is This Answer Correct ? | 17 Yes | 0 No |
captured records are stored in SELFIELD TYPE SLIS_SELFIELD.
by using SELFIELD-VALUE we can go to next step.
Is This Answer Correct ? | 1 Yes | 0 No |
what "types" can be assigned to a data object in an abap
what is protect and endprotect?
What are the layers of data description in r/3? : abap data dictionary
Why don’t use LSMW method instead of BDC methods, if the data is master data?
What are ranges?
What will happen if we write “WRITE” statement in the TOP_OF_PAGE? Can we write?
What are the various types of BDC's?
What are Pull and Push Methods?
WHAT ARE THE MANDATORY FIELDS TO BE FILLED FROM TABLES BAPIITEMIN, BAPIPARTNR, BAPIITEMEX, BAPICUCFG, BAPICUINS, BAPICUPRT, AND BAPICUVAL IN BAPI 'BAPI_QUOTATION_CREATEFROMDATA
After the SESSION is created where is it stored?
How to set an Enhancement point for a custom report?
what is the use of search help exit?