RFIDTRCLACCL7_CLOSE 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 RFIDTRCLACCL7_CLOSE 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!
POSTING_INTERFACE_START CALL FUNCTION 'POSTING_INTERFACE_START' EXPORTING i_function = l_function i_group = p_group * I_HOLDDATE = ' ' * I_KEEP = ' ' i_mode = l_mode"for call transaction i_update = 'S' "for call transaction i_user = sy-uname * I_XBDCC = ' ' EXCEPTIONS client_incorrect = 1 function_invalid = 2 group_name_missing = 3 mode_invalid = 4 update_invalid = 5 OTHERS = 6 .
POSTING_INTERFACE_END CALL FUNCTION 'POSTING_INTERFACE_END' * EXPORTING * I_BDCIMMED = perform bath imediately * I_BDCSTRTDT = date when batch will be performed * I_BDCSTRTTM = time when batch will be performed EXCEPTIONS session_not_processable = 1 OTHERS = 2 .
POSTING_INTERFACE_DOCUMENT CALL FUNCTION 'POSTING_INTERFACE_DOCUMENT' EXPORTING i_tcode = 'FBB1' IMPORTING e_msgid = l_msgid e_msgno = l_msgno e_msgty = l_msgty e_msgv1 = l_msgv1 e_msgv2 = l_msgv2 e_msgv3 = l_msgv3 e_msgv4 = l_msgv4 e_subrc = l_subrc TABLES t_blntab = lt_docno t_ftpost = et_ftpost t_fttax = lt_fttax EXCEPTIONS account_missing = 1 company_code_missing = 2 posting_key_invalid = 3 posting_key_missing = 4 record_type_invalid = 5 transaction_code_invalid = 6 amount_format_error = 7 too_many_line_items = 8 company_code_invalid = 9 screen_not_found = 10 no_authorization = 11 OTHERS = 12.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.