RINTCON_C is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Conversion of Internet Customers to Consumers In the Internet Application Component (IAC) SAP Online Store, you can manage customers as consumers...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RINTCON_C 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.
Selection Text: P_CLEAR = Delete contents inact. fields
Selection Text: P_DETAIL = Detailed log
Selection Text: P_RANGE = Customers
Selection Text: P_TEST = Test run
Title: Converting Internet Customers to Consumers
Text Symbol: 001 = Missing reqd entry fields
Text Symbol: 002 = Exists
Text Symbol: 003 = Deleted
Text Symbol: 004 = Required
Text Symbol: 005 = Mand.Fld
Text Symbol: H01 = Name
Text Symbol: H02 = Customer
Text Symbol: H03 = Maintenance
Text Symbol: H04 = Inactive fields
Text Symbol: NRF = No Internet customers found
Text Symbol: TST = Test run!
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REF_CUSTOMER_COMPANY_CODE_FIND CALL FUNCTION 'REF_CUSTOMER_COMPANY_CODE_FIND' IMPORTING ref_kunnr = ref_customer EXCEPTIONS no_ref_customer = 1 OTHERS = 2.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = customers-kna1-kunnr IMPORTING output = customers-kna1-kunnr.
KNA1_SINGLE_READER CALL FUNCTION 'KNA1_SINGLE_READER' EXPORTING i_kunnr = customers-kna1-kunnr i_bypassing_buffer = 'X' IMPORTING o_kna1 = customers-kna1 EXCEPTIONS not_found = 1 parameter_error = 2 internal_error = 3 OTHERS = 4.
KNVK_READ_CUSTOMER CALL FUNCTION 'KNVK_READ_CUSTOMER' EXPORTING i_kunnr = customers-kna1-kunnr i_bypassing_buffer = 'X' TABLES o_knvk = contact EXCEPTIONS not_found = 1 parameter_error = 2 OTHERS = 3.
ADDR_PERSONAL_GET CALL FUNCTION 'ADDR_PERSONAL_GET' EXPORTING address_personal_selection = addr2_sel IMPORTING address_personal_value = customers-addr2_val returncode = returncode EXCEPTIONS parameter_error = 1 address_not_exist = 2 person_not_exist = 3 version_not_exist = 4 internal_error = 5 OTHERS = 6.
GET_CAM_FIELDNAME CALL FUNCTION 'GET_CAM_FIELDNAME' EXPORTING master_tab = master_tab master_field = master_field addr_type = '2' IMPORTING cam_field = cam_field EXCEPTIONS invalid_master_data = 1 invalid_address_type = 2 no_conversion = 3 OTHERS = 4.
GET_CAM_FIELDNAME CALL FUNCTION 'GET_CAM_FIELDNAME' EXPORTING master_tab = master_tab master_field = master_field addr_type = '2' IMPORTING cam_field = cam_field EXCEPTIONS invalid_master_data = 1 invalid_address_type = 2 no_conversion = 3 OTHERS = 4.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = modif_group IMPORTING output = modif_group.
SD_GET_FIELDS_OF_GROUP CALL FUNCTION 'SD_GET_FIELDS_OF_GROUP' EXPORTING i_statusline_name = p_statuslinename i_group = modif_group TABLES o_fields = fields EXCEPTIONS parameter_error = 1 internal_error = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_repid i_grid_title = gv_title is_layout = gs_layout it_fieldcat = gt_fieldcat i_save = gc_save it_events = gt_eventtab TABLES t_outtab = gt_outtab EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' IMPORTING et_events = xt_eventtab EXCEPTIONS list_type_wrong = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = g_repid i_structure_name = gc_struc CHANGING ct_fieldcat = gt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_list.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RINTCON_C - Converting Internet Customers to Consumers RINTCON_C - Converting Internet Customers to Consumers RINETTOP - Object Network: General Data Specifications RINETT0N - Object Network: Data Specificns - Network Evaluation RINETT0L - Object Network: Data Selection - List Handling RINETT0G - Object Network: Data Agreements - Graphical Editor