AUT_REP10_LTXT 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 AUT_REP10_LTXT 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!
DB_SELECT_GENERIC_TABLE CALL FUNCTION 'DB_SELECT_GENERIC_TABLE' EXPORTING genkey = p_nexth_key genkey_ln = l_keylen tablename = l_tabname TABLES inttab = lt_inttab EXCEPTIONS db_error = 1 not_found = 2 wrong_param = 3 internal_error = 4 OTHERS = 5.
DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL' "TW 19042001 EXPORTING "TW 19042001 _SYNCHRON = 'X'. "TW 19042001
CONVERT_ITF_TO_STREAM_TEXT CALL FUNCTION 'CONVERT_ITF_TO_STREAM_TEXT' TABLES itf_text = lt_ltxt_head_lines text_stream = lt_ltxt_head_stream.
BAPI_USER_GET_DETAIL CALL FUNCTION 'BAPI_USER_GET_DETAIL' ">>>NOTE1069947 EXPORTING username = sy-uname IMPORTING address = ls_address TABLES return = lt_return. "<<
PRINT_TEXT CALL FUNCTION 'PRINT_TEXT' EXPORTING device = 'PRINTER' dialog = 'X' header = wa_thead TABLES lines = gt_export_ltxt EXCEPTIONS canceled = 0 device = 0 form = 0 options = 0 unclosed = 0 unknown = 0 format = 0 textformat = 0 communication = 0 bad_pageformat_for_print = 0 OTHERS = 0.
TRANSFER_TEXT CALL FUNCTION 'TRANSFER_TEXT' EXPORTING header = wa_thead direction = 'EXPORT' TABLES table_exp = gt_export_ltxt table_imp = gt_export_ltxt.
INIT_TEXT CALL FUNCTION 'INIT_TEXT' EXPORTING id = wa_thead-tdid language = wa_thead-tdspras name = wa_thead-tdname object = wa_thead-tdobject IMPORTING header = wa_thead TABLES lines = gt_export_ltxt EXCEPTIONS id = 0 language = 0 name = 0 object = 0 OTHERS = 0.
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING client = sy-mandt id = lw_stxl_id_old-tdid language = lw_stxl_id_old-tdspras name = lw_stxl_id_old-tdname object = lw_stxl_id_old-tdobject TABLES lines = gt_lines_old EXCEPTIONS OTHERS = 8.
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING client = sy-mandt id = lw_stxl_id_new-tdid language = lw_stxl_id_new-tdspras name = lw_stxl_id_new-tdname object = lw_stxl_id_new-tdobject TABLES lines = gt_lines_new EXCEPTIONS ">>>NOTE539394 OTHERS = 8. "#EC *
CONVERT_ITF_TO_STREAM_TEXT CALL FUNCTION 'CONVERT_ITF_TO_STREAM_TEXT' TABLES itf_text = lt_lines_old text_stream = lt_stream_old.
CONVERT_ITF_TO_STREAM_TEXT CALL FUNCTION 'CONVERT_ITF_TO_STREAM_TEXT' TABLES itf_text = lt_lines_new text_stream = lt_stream_new.
CONVERT_ITF_TO_STREAM_TEXT CALL FUNCTION 'CONVERT_ITF_TO_STREAM_TEXT' TABLES itf_text = lt_lines_old text_stream = gt_ltxt_old_stream.
CONVERT_ITF_TO_STREAM_TEXT CALL FUNCTION 'CONVERT_ITF_TO_STREAM_TEXT' TABLES itf_text = lt_lines_new text_stream = gt_ltxt_new_stream.
EDIT_TEXT CALL FUNCTION 'EDIT_TEXT' EXPORTING display = 'X' header = wa_thead TABLES lines = gt_export_ltxt.
ENQUEUE_E_TABLE CALL FUNCTION 'ENQUEUE_E_TABLE' EXPORTING mode_rstable = 'E' tabname = 'AUT_STXL' * VARKEY = * X_TABNAME = ' ' * X_VARKEY = ' ' * _SCOPE = '2' _WAIT = 'X' * _COLLECT = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING * DEFAULTOPTION = 'Y' textline1 = text-149 textline2 = text-150 titel = text-118 * START_COLUMN = 25 * START_ROW = 6 * CANCEL_DISPLAY = 'X' IMPORTING answer = answer.
DEQUEUE_E_TABLE CALL FUNCTION 'DEQUEUE_E_TABLE' EXPORTING mode_rstable = 'E' tabname = 'AUT_STXL' * VARKEY = * X_TABNAME = ' ' * X_VARKEY = ' ' * _SCOPE = '3' _SYNCHRON = 'X' * _COLLECT = ' ' .
DB_SELECT_GENERIC_TABLE CALL FUNCTION 'DB_SELECT_GENERIC_TABLE' EXPORTING genkey = p_nexth_key genkey_ln = l_keylen tablename = l_tabname TABLES inttab = lt_inttab EXCEPTIONS db_error = 1 not_found = 2 wrong_param = 3 internal_error = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.