WREADTXT 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 WREADTXT 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: Include WREADTXT
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TB_PARTNER_CHECK CALL FUNCTION 'TB_PARTNER_CHECK' EXPORTING companycode = bukrs flg_customer = xfalse partner = partner ZGP = 'X' IMPORTING bp000_entry = bp000 EXCEPTIONS customer = 1 customer_companycode = 2 delete_indicator_partner = 3 delete_indicator_role = 4 partner = 5 partner_auth = 6 partner_not_released = 7 role = 8 OTHERS = 9.
GET_DOMAENENTEXT CALL FUNCTION 'GET_DOMAENENTEXT' EXPORTING dname = domname dvalue = domvalue_l IMPORTING dtext = ddtext EXCEPTIONS no_domain_found = 01 OTHERS = 2.
GET_DOMAENENTEXT CALL FUNCTION 'GET_DOMAENENTEXT' EXPORTING dname = 'TPM_SEC_ACC_STATUS' dvalue = domvalue_l IMPORTING dtext = ddtext exceptions others = 1.
FTR_PARTNER_GET_ADDRESS_PRINT CALL FUNCTION 'FTR_PARTNER_GET_ADDRESS_PRINT' EXPORTING pi_partner_id = partner PI_PARTNER_ROLE = rolle PI_COMPANYCODE = bukrs IMPORTING PE_ADDRESS = adrs EXCEPTIONS PARTNER_NOT_FOUND = 1 PARTNER_ROLE_NOT_FOUND = 2 PARTNER_NOT_RELEASED = 3 PARTNER_TO_BE_DELETED = 4 PARTNER_ADDRESS_NOT_FOUND = 5 OTHERS = 6.
TRCA_HOUSEBANK_CHECK CALL FUNCTION 'TRCA_HOUSEBANK_CHECK' EXPORTING companycode = u_wa_twd01_bukrs housebank = u_wa_twd01_rahabki account = u_wa_twd01_rahktid IMPORTING * HOUSEBANK_DATA = bankaccount_data = l_rahktid_info EXCEPTIONS hbank_not_found = 1 hbankacc_not_found = 2 OTHERS = 3 .
TRCA_COMPANYCODE_GETDETAIL CALL FUNCTION 'TRCA_COMPANYCODE_GETDETAIL' EXPORTING companycode = u_bukrs IMPORTING companyname = c_bukrs_text * CURRENCY = * RATE_DEVIATION = * CHART_ACCOUNTS = * FY_VARIANT = * COUNTRY = * LANGU = * ADDRESS = EXCEPTIONS not_found = 1 OTHERS = 2 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.