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 is the difference between Selection Screen on Request and Selection screen on input?
Select option?
What is bdc? : abap bdc
Explain the advantage of structures?
what is a binary search ? and how it is useful in a sorted internal table ?
What is the difference between select single and select upto 1 rows?
How many secondary indexes can we create in a table?
what is the diffrence between driver program and print program in sap script
what is the purpose of BAPI BAPI_CUSTMATINFO_GETLIST What is input and output of this BAPI.
How to handle table control in BDC?
What is the difference between synchronous and asynchronous update?
What is the function of the transport system and workbench organiser?