Hello,
I’m facing an interesting issue in WebDynpro with a drop down functionality in the editable ALV grid. All expected values appear correctly on the drop down list.
There are 4 possible values:
Key: Description:
BUN Bundle
CAS Case
PAC Package
PAL Pallet
User can select a value by clicking on the dropdown key or by pressing a first letter of the key.
Here is the issue:
Value “Bundle” will appear after pressing lower “b” or upper “B” letters.
Value “Case” will appear after pressing lower “c” or upper “C” letters.
However, values “Package” and “Pallet” will respond only to the upper case of the letter “P”. Pressing the lower case letter “p” doesn’t have any effect at all.
Is it a normal behavior because there are more than 1 values starting with the same letter or something can be done to make the values “Package” and “Pallet” respond to the lower letter?
SAP Environment:
- SAP ECC 6.0
- SAP_BASIS 702
- SAP_ABA 702
- Service pack 14
PC Environment:
- Windows 7
- MS Explorer ver. 10
- SAP Logon 703
ABAP Code details:
DATA: lo_ dropdown TYPE REF TO cl_salv_wd_uie_dropdown_by_idx.
. . . .
. . . ..
CALL METHOD lo_ dropdown->set_type
EXPORTING
value = if_salv_wd_c_uie_drdn_by_index=>TYPE_KEY_VALUE.
All ideas are welcome!