DXADMINSUB_TASK 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 DXADMINSUB_TASK 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!
DX_TASK_CREATE CALL FUNCTION 'DX_TASK_CREATE' EXPORTING project = p_selected_node-project subproject = p_selected_node-subproject rundef = p_selected_node-rundef pretask = p_selected_node-task IMPORTING taskdata = p_taskdata EXCEPTIONS OTHERS = 7.
DX_ATTRIB_BAPI_CREATE CALL FUNCTION 'DX_ATTRIB_BAPI_CREATE' EXPORTING project = p_taskdata-project subproject = p_taskdata-subproject rundef = p_taskdata-rundef task = p_taskdata-task EXCEPTIONS OTHERS = 11.
DX_ATTRIB_LSMW_CREATE CALL FUNCTION 'DX_ATTRIB_LSMW_CREATE' EXPORTING project = p_taskdata-project subproject = p_taskdata-subproject rundef = p_taskdata-rundef task = p_taskdata-task EXCEPTIONS OTHERS = 7.
DX_ATTRIB_SPLIT_CREATE CALL FUNCTION 'DX_ATTRIB_SPLIT_CREATE' EXPORTING project = p_taskdata-project subproject = p_taskdata-subproject rundef = p_taskdata-rundef task = p_taskdata-task EXCEPTIONS OTHERS = 7.
DX_TASK_CHANGE CALL FUNCTION 'DX_TASK_CHANGE' EXPORTING project = p_selected_node-project subproject = p_selected_node-subproject rundef = p_selected_node-rundef task = p_selected_node-task IMPORTING taskdata = p_taskdata tasktext = p_tasktext EXCEPTIONS OTHERS = 7.
DX_TASK_GET_COMPLETE CALL FUNCTION 'DX_TASK_GET_COMPLETE' EXPORTING project = p_selected_node-project subproject = p_selected_node-subproject rundef = p_selected_node-rundef task = p_selected_node-task IMPORTING taskdata = p_taskdata attribdata = p_attribdata attribdata2 = p_attribdata2 attribdata3 = p_attribdata3 attribdata4 = p_attribdata4 TABLES tasktext = p_tasktext input_files = p_input_files output_files = p_output_files EXCEPTIONS OTHERS = 2.
DX_TASK_CREATE_COMPLETE CALL FUNCTION 'DX_TASK_CREATE_COMPLETE' EXPORTING tasktype = p_taskdata-tasktype progtype = p_taskdata-progtype attribdata = p_attribdata attribdata2 = p_attribdata2 attribdata3 = p_attribdata3 attribdata4 = p_attribdata4 IMPORTING taskdata = p_taskdata_c TABLES tasktext = p_tasktext input_files = p_input_files output_files = p_output_files EXCEPTIONS OTHERS = 7.
DX_TASK_DELETE CALL FUNCTION 'DX_TASK_DELETE' EXPORTING project = p_selected_node-project subproject = p_selected_node-subproject rundef = p_selected_node-rundef task = p_selected_node-task check_runs = c_true EXCEPTIONS OTHERS = 6.
DX_TASK_MOVE CALL FUNCTION 'DX_TASK_MOVE' EXPORTING project = p_selected_node-project subproject = p_selected_node-subproject rundef = p_selected_node-rundef task = p_selected_node-task direction = 'U' IMPORTING pretask = p_pretask EXCEPTIONS OTHERS = 6.
DX_TASK_MOVE CALL FUNCTION 'DX_TASK_MOVE' EXPORTING project = p_selected_node-project subproject = p_selected_node-subproject rundef = p_selected_node-rundef task = p_selected_node-task direction = 'D' IMPORTING pretask = p_pretask EXCEPTIONS 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.