abapdotabapquality-testing
来源资料待手动核验
abap Domain value check
SAP only check data against the domain fixed values and check tables in the GUI. This causes problems during data import, for example, as these checks do not take place there. This could result in incorrect data entering the system. This project was created for this purpose.
data type ref to zcl_dom_check.
lo_object = zcl_dom_check=>get_instance( ).
data(rejected) = lo_object->check_fix_values_struc( ls_dataset ).
if rejected eq abap_true.
data(lt_msg) = lo_object->get_msg().
endif.