IDGTCN_CUSTOMER_TYPE is a standard Executable ABAP Report 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 IDGTCN_CUSTOMER_TYPE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
GT_CUS - Set Customer Type
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.
Selection Text: S_KUNNR = D .
Title: Set Customer Type
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
VIEW_GET_DDIC_INFO CALL FUNCTION 'VIEW_GET_DDIC_INFO' EXPORTING viewname = 'IDGT_CUSMTYP_V' TABLES sellist = lt_rangetab x_header = lt_header x_namtab = lt_namtab EXCEPTIONS no_tvdir_entry = 1 table_not_found = 2.
VIEW_MAINTENANCE_LOW_LEVEL CALL FUNCTION 'VIEW_MAINTENANCE_LOW_LEVEL' EXPORTING * corr_number = p_taskno fcode = 'READ' view_action = 'S' view_name = 'IDGT_CUSMTYP_V' * no_warning_for_clientindep = 'X' IMPORTING ucomm = lv_ucomm TABLES corr_keytab = lt_e071k dba_sellist = lt_rangetab dpl_sellist = lt_rangetab excl_cua_funct = lt_fu_to_excl extract = lt_v_crmktokk_extract total = lt_v_crmktokk_total x_header = lt_header x_namtab = lt_namtab EXCEPTIONS * function_not_found = 1 missing_corr_number = 2 no_value_for_subset_ident = 3 saving_correction_failed = 4.
VIEW_MAINTENANCE_LOW_LEVEL CALL FUNCTION 'VIEW_MAINTENANCE_LOW_LEVEL' EXPORTING * corr_number = p_taskno fcode = 'EDIT' view_action = 'U' view_name = 'IDGT_CUSMTYP_V' * no_warning_for_clientindep = 'X' IMPORTING ucomm = lv_ucomm TABLES corr_keytab = lt_e071k dba_sellist = lt_rangetab dpl_sellist = lt_rangetab excl_cua_funct = lt_fu_to_excl extract = lt_v_crmktokk_extract total = lt_v_crmktokk_total x_header = lt_header x_namtab = lt_namtab EXCEPTIONS * function_not_found = 1 missing_corr_number = 2 no_value_for_subset_ident = 3 saving_correction_failed = 4.
VIEW_MAINTENANCE_LOW_LEVEL CALL FUNCTION 'VIEW_MAINTENANCE_LOW_LEVEL' EXPORTING fcode = 'SAVE' view_action = 'U' view_name = 'IDGT_CUSMTYP_V' no_warning_for_clientindep = 'X' IMPORTING ucomm = lv_ucomm TABLES corr_keytab = lt_e071k dba_sellist = lt_rangetab dpl_sellist = lt_rangetab excl_cua_funct = lt_fu_to_excl extract = lt_v_crmktokk_extract total = lt_v_crmktokk_total x_header = lt_header x_namtab = lt_namtab EXCEPTIONS function_not_found = 1 missing_corr_number = 2 no_value_for_subset_ident = 3 saving_correction_failed = 4 OTHERS = 5.
VIEW_MAINTENANCE_LOW_LEVEL CALL FUNCTION 'VIEW_MAINTENANCE_LOW_LEVEL' EXPORTING * corr_number = p_taskno fcode = 'EDIT' view_action = 'U' view_name = 'IDGT_CUSMTYP_V' * no_warning_for_clientindep = 'X' IMPORTING ucomm = lv_ucomm TABLES corr_keytab = lt_e071k dba_sellist = lt_rangetab dpl_sellist = lt_rangetab excl_cua_funct = lt_fu_to_excl extract = lt_v_crmktokk_extract total = lt_v_crmktokk_total x_header = lt_header x_namtab = lt_namtab EXCEPTIONS * function_not_found = 1 missing_corr_number = 2 no_value_for_subset_ident = 3 saving_correction_failed = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.