REFXCN_LT 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 REFXCN_LT 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.
Title: Program for Object Type TSTC: Transaction
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING tcode = OBJECT-KEY-CODE EXCEPTIONS ok = 0 not_ok = 1 others = 2.
CONV_FROM_RE_T_OBJECT_REL_DAT CALL FUNCTION 'CONV_FROM_RE_T_OBJECT_REL_DAT' TABLES it_bapi_re_object_rel_dat = LT_OBJECT_REL[] et_bapi_re_object_rel_int = IT_OBJECT_REL[] EXCEPTIONS OTHERS = 1.
CONV_FROM_RE_T_PARTNER_DAT CALL FUNCTION 'CONV_FROM_RE_T_PARTNER_DAT' TABLES it_bapi_re_partner_dat = LT_PARTNER[] et_bapi_re_partner_int = IT_PARTNER[] EXCEPTIONS OTHERS = 1.
REFXCN_LAUNCH_CONTRACT CALL FUNCTION 'REFXCN_LAUNCH_CONTRACT' EXPORTING IS_CONTRACT = LS_CONTRACT IT_PARTNER = IT_PARTNER IT_OBJECT_REL = IT_OBJECT_REL IV_GUID = OPPORTUNITY_GUID EXCEPTIONS ERROR = 01 OTHERS = 02.
CONV_FROM_RE_T_OBJECT_REL_DAT CALL FUNCTION 'CONV_FROM_RE_T_OBJECT_REL_DAT' TABLES it_bapi_re_object_rel_dat = LT_OBJECT_REL[] et_bapi_re_object_rel_int = IT_OBJECT_REL[] EXCEPTIONS OTHERS = 1.
CONV_FROM_RE_T_PARTNER_DAT CALL FUNCTION 'CONV_FROM_RE_T_PARTNER_DAT' TABLES it_bapi_re_partner_dat = LT_PARTNER[] et_bapi_re_partner_int = IT_PARTNER[] EXCEPTIONS OTHERS = 1.
REFXCN_LAUNCH_CONTRACT_OFFER CALL FUNCTION 'REFXCN_LAUNCH_CONTRACT_OFFER' EXPORTING IS_CN_OFFER = LS_CN_OFFER IT_PARTNER = IT_PARTNER IT_OBJECT_REL = IT_OBJECT_REL IV_GUID = OPPORTUNITY_GUID EXCEPTIONS ERROR = 01 OTHERS = 02.
CONV_FROM_RE_T_PARTNER_DAT CALL FUNCTION 'CONV_FROM_RE_T_PARTNER_DAT' TABLES it_bapi_re_partner_dat = LT_PARTNER[] et_bapi_re_partner_int = IT_PARTNER[] EXCEPTIONS OTHERS = 1.
REFXCN_LAUNCH_SEARCH_REQUEST CALL FUNCTION 'REFXCN_LAUNCH_SEARCH_REQUEST' EXPORTING IS_SEARCH_REQ = LS_SEARCH_REQ IT_PARTNER = IT_PARTNER EXCEPTIONS ERROR = 01 OTHERS = 02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.