Hello,
The drop down list does not work in ECC6 compared to 4.6c on data element MAABC. You can use program GP3JG47WMQOVYE0Y0IZIWCCEZ2O for your test.
Note: the data element has fixed values in 4.6c and has a value table TMABC in ECC6.
Please help, thanks!
Chuong
Is that a program that you sent us?
Well, if it doesnt work you can simply get the values from MAABC and use the function module to create dropdown
wa_listbox-key = 'OVER90'.
APPEND wa_listbox TO it_listbox.
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
id = 'P_BUCKET'
values = it_listbox.
P_BUCKET is your parameter on selection screen and IT_LISTBOX is internal table.
Move your values to WA-listbox-key and append it to internal table under event initialization.
Add a comment