USS_CUST_TABLE_F02 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 USS_CUST_TABLE_F02 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!
USS_READ_SHARE_TYPE_TEXT CALL FUNCTION 'USS_READ_SHARE_TYPE_TEXT' EXPORTING i_sid = ls_share_type-sid IMPORTING e_txt = l_txt.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = lb_name values = lb_table.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = gs_cust_table-company IMPORTING output = gs_cust_table-company.
USS_GET_STAKEHOLDER_DETAIL CALL FUNCTION 'USS_GET_STAKEHOLDER_DETAIL' EXPORTING i_srm_partner = gs_cust_table-company i_ro_sth_name = 'X' i_no_comm_details = 'X' IMPORTING e_stakeholder = gs_sth_detail EXCEPTIONS stakeholder_not_exist = 1 OTHERS = 2.
USS_GET_STAKEHOLDER_DETAIL CALL FUNCTION 'USS_GET_STAKEHOLDER_DETAIL' EXPORTING i_srm_partner = gs_cust_table-company i_ro_sth_name = 'X' i_no_comm_details = 'X' IMPORTING e_stakeholder = gs_sth_detail.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'Y' textline1 = text-001 textline2 = text-002 titel = text-003 IMPORTING answer = l_answer.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = l_tabname TABLES dfies_tab = lt_dfies.
TR_OBJECT_INSERT CALL FUNCTION 'TR_OBJECT_INSERT' EXPORTING wi_order = s_order wi_ko200 = ls_ko200 IMPORTING we_order = s_order we_task = s_task we_ko200 = ls_ko200 TABLES wt_e071k = lt_e071k EXCEPTIONS cancel_edit_other_error = 1 show_only_other_error = 2 OTHERS = 3.
TR_OBJECT_CHECK CALL FUNCTION 'TR_OBJECT_CHECK' EXPORTING wi_ko200 = ls_ko200 EXCEPTIONS cancel_edit_other_error = 1 show_only_other_error = 2 OTHERS = 3.
ENQUEUE_E_TABLE CALL FUNCTION 'ENQUEUE_E_TABLE' EXPORTING tabname = 'USS_CUST_TABLE' varkey = l_varkey EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_E_TABLE CALL FUNCTION 'DEQUEUE_E_TABLE' EXPORTING tabname = 'USS_CUST_TABLE' varkey = l_varkey.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.