Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 692 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 692 Bytes

Software License ABAP Version

abapDomCheck

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.