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 |
Explain the session method? : abap bdc
What is a subscreen? How can we use a subscreen?
In SAP Script,How to display a single field(like matnr)at the right end of the form.
what is the signification of AT EXIT-COMMAND ?
Which database object is used for storing the system variables? : abap data dictionary
Among the Call Transaction and Session Method, which is faster?
What are different data types in ABAP?
What is the meaning of table buffer? This buffer is used by which type oftable?
What is the function of the transport system and workbench organizer? : abap data dictionary
what is the function module to read the standard text?
A database table contains 3 fields(Student_no,Section,Total_marks).I want retrieve top 10 students from each section.Note:(Section contains data like A,B,C.Each section contains more than 10 students).
I have 3 transactions,where the output of one transaction is input of another and output of 2nd transaction is input of 3rd transaction.i have one flat file with all data for the 3 transaction.if the 3rd transaction failed can we rollback the remaining 2 transactions or not.Is this possible in BDC,How/