COM_SET_GEN_UIF021 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter COM_SET_GEN_UIF021 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
COM_ATTRIBUTE_READ CALL FUNCTION 'COM_ATTRIBUTE_READ' EXPORTING iv_attribute_id = lv_attr_id iv_authority_check = ' ' IMPORTING es_attribute = ls_attribute EXCEPTIONS attribute_not_found = 1 ddic_object_not_found = 2 internal_error = 3 missing_import_parameters = 4 no_authority = 5 OTHERS = 6.
DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING tabname = lv_tabname all_types = 'X' TABLES dfies_tab = lt_dfies EXCEPTIONS not_found = 1 OTHERS = 2.
DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING tabname = lv_attr_name all_types = 'X' IMPORTING dtelinfo_wa = ls_dtelinfo EXCEPTIONS not_found = 1 OTHERS = 2.
COM_SETTYPE_ATTR_READ_SINGLE CALL FUNCTION 'COM_SETTYPE_ATTR_READ_SINGLE' EXPORTING iv_settype_guid = gc_set_type iv_attribute_id = lv_attr_name IMPORTING es_settype_attribute = ls_settype_attribute.
COM_PR_SETTYPE_PME_READ_F4HELP CALL FUNCTION 'COM_PR_SETTYPE_PME_READ_F4HELP' EXPORTING iv_settype_guid = gc_set_type iv_settype_id = gc_set_id iv_product_guid = gs_init-product-product_guid iv_pr_org_id = lv_pr_org_id iv_pr_org_type = lv_pr_org_type iv_current = gs_init-current iv_timestamp = gs_init-timestamp is_dynp_values = ls_dynp_values iv_checktable = lv_checktable iv_tablekey = lv_checktable_key TABLES ev_f4_ret_table = lv_f4_ret_table.
DDUT_INPUT_CHECK CALL FUNCTION 'DDUT_INPUT_CHECK' EXPORTING tabname = 'CRMT_DATE' value = ls_f4_ret_table-fieldval value_is_external = 'X' IMPORTING msgid = sy-msgid msgty = sy-msgty msgno = sy-msgno msgv1 = sy-msgv1 msgv2 = sy-msgv2 msgv3 = sy-msgv3 msgv4 = sy-msgv4 value_internal = ev_value_int EXCEPTIONS no_ddic_field = 1 illegal_move = 2 OTHERS = 3.
COM_ATTR_VAL_CONV_TO_INTERNAL CALL FUNCTION 'COM_ATTR_VAL_CONV_TO_INTERNAL' EXPORTING iv_tablename = lv_convert_table iv_fieldname = lv_attr_name iv_datatype = lv_attr_datatype iv_value = ls_f4_ret_table-fieldval IMPORTING ev_value = lv_field_value EXCEPTIONS error = 1 wrong_call = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.