how to fill the select options from an internal table
dynamically ie can i use the loop in the initialization
Answers were Sorted based on User's Feedback
Answer / tamseel hashmi
TABLES : mara.
DATA : BEGIN OF itab OCCURS 0,
matnr LIKE mara-matnr,
END OF itab.
SELECT-OPTIONS: s_matnr FOR mara-matnr NO INTERVALS.
INITIALIZATION.
CLEAR : itab,
s_matnr.
REFRESH : itab,
s_matnr.
SELECT matnr
INTO TABLE itab
FROM mara
WHERE meins EQ 'CS'.
* fill select option.
LOOP AT itab.
s_matnr-low = itab-matnr.
s_matnr-sign = 'I'.
s_matnr-option = 'EQ'.
APPEND s_matnr.
ENDLOOP.
start-of-selection.
Is This Answer Correct ? | 15 Yes | 5 No |
Answer / sasi
Use the function "F4IF_INT_TABLE_VALUE_REQUEST" at the
event - AT SELECTION-SCREEN ON VALUE-REQUEST FOR ....
Is This Answer Correct ? | 3 Yes | 8 No |
Describe ALV Report
What is For-period and In-period
Define alv programming in abap?
What are logical databases?
In a script, i want to print something at end of last page only.How can i print it?
What are the different control break statements available inside a loop?
why we use 4 msg variable in BDCMSGCOLL stucture in BDC? why not more or less than 4?
In Smartforms or ADOBE Forms Can we get text from standard table in verticle form? if yes, How?
how to debug user exits?
How do you send the output of a script as an email attachment
What are the various types of the Internal tables used?
What all are the differences did you find in hr module between 4.7 and ECC6 versions