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 |
How to create any functions? How to go about it?
Can you create an internal table dynamically?(at run time)
What is screen flow logic? What are the sections in it? Explain PAI and PBO.
Hi To all ABAP Gurus Is there any other way to create data elements apart from se11 tocde as we dont use the se11 in real time generally this question is asked in enteg infotech
Give the syntax of Inner,outer Join?"
7 Answers Genpact, HCL, Satyam,
By default SAP provides locking mechanism if db is being used by a user ,then what is the use of writing enque method in your code?
How do we handle multiple line items in BDC's.
i want to add 2 records to a table but the last field in the table is 1000 char long.Is it possible?if yes how?
How do you save data in bdc tables? : abap bdc
which of the command flushes the database buffer? a) $free b) $tab.
how do find a name of a print program?
what is the difference between message type and basic type