SUB_ROUT_XPD 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 SUB_ROUT_XPD 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!
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING diagnosetext1 = text-qu1 diagnosetext2 = text-qu2 textline1 = text-qu3 titel = text-qu0 IMPORTING answer = answer.
DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL'.
DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL'.
SO_DYNP_DOCUMENT_TRANSFER_API1 CALL FUNCTION 'SO_DYNP_DOCUMENT_TRANSFER_API1' EXPORTING document_data = doc_data document_type = doc_type method = 'SEND' TABLES exclude_fcode = excl_fcode EXCEPTIONS document_type_not_exist = 1 operation_no_authorization = 2 parameter_error = 3 x_error = 4 document_not_sent = 5 OTHERS = 6.
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING id = tid language = s_status_note-langu name = tname object = tobject archive_handle = archive_handle IMPORTING header = theader TABLES lines = tlines EXCEPTIONS not_found = 01.
INIT_TEXT CALL FUNCTION 'INIT_TEXT' EXPORTING id = tid language = sy-langu name = tname object = tobject IMPORTING header = theader TABLES lines = tlines EXCEPTIONS id = 1 language = 2 name = 3 object = 4 OTHERS = 5.
SAVE_TEXT CALL FUNCTION 'SAVE_TEXT' EXPORTING header = theader TABLES lines = tlines.
NUMBER_GET_NEXT CALL FUNCTION 'NUMBER_GET_NEXT' EXPORTING nr_range_nr = nkrange object = nkobject IMPORTING number = nknumber EXCEPTIONS interval_not_found = 01 number_range_not_intern = 02 object_not_found = 03 quantity_is_0 = 04 quantity_is_not_1 = 05 interval_overflow = 06 OTHERS = 99.
DELETE_TEXT CALL FUNCTION 'DELETE_TEXT' EXPORTING id = tid language = sy-langu name = tname object = tobject EXCEPTIONS not_found = 01.
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING id = tid language = s_status_note-langu name = tname object = tobject IMPORTING header = header TABLES lines = lines EXCEPTIONS not_found = 01.
PRINT_TEXT CALL FUNCTION 'PRINT_TEXT' EXPORTING dialog = yx header = header OPTIONS = itcpo IMPORTING RESULT = itcpp TABLES lines = lines EXCEPTIONS OTHERS = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.