SAP ABAP 域值范围获取
2016-12-20 本文已影响237人
SmalltalkVoice
data: idd07v type table of dd07v with header line.
call function 'DD_DOMVALUES_GET'
exporting
domname = 'RFBSK' "<-- Your Domain Here
text = 'X'
langu = sy-langu
tables
dd07v_tab = idd07v
exceptions
wrong_textflag = 1
others = 2.
loop at idd07v.
write:/ idd07v-domvalue_l, idd07v-ddtext.
endloop.