TEXTEDIT_DEMO_INCLUDE 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 TEXTEDIT_DEMO_INCLUDE 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 for textedit_demo_test
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DP_CREATE * CALL FUNCTION 'DP_CREATE' * CHANGING * h_dp = m_dp_handle * EXCEPTIONS * dp_create_error = 1 * dp_install_error = 2 * dp_error = 3 * OTHERS = 4.
DP_DESTROY CALL FUNCTION 'DP_DESTROY' CHANGING H_DP = M_DP_HANDLE EXCEPTIONS DP_ERROR_DESTROY = 1 OTHERS = 2.
DP_CONTROL_GET_STREAM CALL FUNCTION 'DP_CONTROL_GET_STREAM' EXPORTING H_DP = M_DP_HANDLE H_CNTL = H_CONTROL PROPERTYNAME = 'PathsOfFilesDroppedAsR3Table' medium = cndp_medium_r3table TABLES DATA = TABLE changing type = mytype subtype = mysubtype EXCEPTIONS DP_ERROR_INVALID_PARAM = 1 DP_ERROR_CREATE = 2 DP_ERROR_GET_DATA = 3 DP_ERROR_GET_PROPERTY = 4 OTHERS = 5.
DP_CONTROL_GET_STREAM CALL FUNCTION 'DP_CONTROL_GET_STREAM' EXPORTING h_dp = m_dp_handle h_cntl = h_control propertyname = 'SelectedTextAsR3Table' medium = cndp_medium_r3table TABLES data = table CHANGING type = mytype subtype = mysubtype EXCEPTIONS dp_error_invalid_param = 1 dp_error_create = 2 dp_error_get_data = 3 dp_error_get_property = 4 OTHERS = 5.
DP_CONTROL_GET_STREAM CALL FUNCTION 'DP_CONTROL_GET_STREAM' EXPORTING h_dp = m_dp_handle h_cntl = h_control propertyname = 'SelectedTextAsR3Stream' medium = cndp_medium_r3table TABLES data = selected_text CHANGING type = mytype subtype = mysubtype EXCEPTIONS dp_error_invalid_param = 1 dp_error_create = 2 dp_error_get_data = 3 dp_error_get_property = 4 OTHERS = 5.
DP_STRETCH_SIMPLE_TABLE CALL FUNCTION 'DP_STRETCH_SIMPLE_TABLE' EXPORTING copy_lines = 'X' "abap_true IMPORTING stretched_data_ref = wide_table_ref TABLES data = TABLE EXCEPTIONS DP_ERROR_MULTIPLE_COLS = 1 DP_ERROR_NOT_CHARLIKE = 2.
DP_CONTROL_GET_STREAM CALL FUNCTION 'DP_CONTROL_GET_STREAM' EXPORTING H_DP = M_DP_HANDLE H_CNTL = H_CONTROL PROPERTYNAME = 'TextAsR3Table' medium = cndp_medium_r3table TABLES DATA =
changing type = mytype subtype = mysubtype EXCEPTIONS DP_ERROR_INVALID_PARAM = 1 DP_ERROR_CREATE = 2 DP_ERROR_GET_DATA = 3 DP_ERROR_GET_PROPERTY = 4 OTHERS = 5.
DP_CONTROL_GET_STREAM CALL FUNCTION 'DP_CONTROL_GET_STREAM' EXPORTING H_DP = M_DP_HANDLE H_CNTL = H_CONTROL PROPERTYNAME = 'TextAsR3TableOnlyWhenModified' medium = cndp_medium_r3table TABLES DATA =
changing type = mytype subtype = mysubtype EXCEPTIONS DP_ERROR_INVALID_PARAM = 1 DP_ERROR_CREATE = 2 DP_ERROR_GET_DATA = 3 DP_ERROR_GET_PROPERTY = 4 OTHERS = 5.
DP_SHRINK_SIMPLE_TABLE CALL FUNCTION 'DP_SHRINK_SIMPLE_TABLE' TABLES stretched_data =
data = TABLE.
DP_CONTROL_GET_STREAM CALL FUNCTION 'DP_CONTROL_GET_STREAM' EXPORTING h_dp = m_dp_handle h_cntl = h_control propertyname = 'TextAsR3Stream' medium = cndp_medium_r3table TABLES data = text CHANGING type = mytype subtype = mysubtype EXCEPTIONS dp_error_invalid_param = 1 dp_error_create = 2 dp_error_get_data = 3 dp_error_get_property = 4 OTHERS = 5.
DP_CONTROL_GET_STREAM CALL FUNCTION 'DP_CONTROL_GET_STREAM' EXPORTING h_dp = m_dp_handle h_cntl = h_control propertyname = 'TextAsR3StreamOnlyWhenModified' medium = cndp_medium_r3table TABLES data = text CHANGING type = mytype subtype = mysubtype EXCEPTIONS dp_error_invalid_param = 1 dp_error_create = 2 dp_error_get_data = 3 dp_error_get_property = 4 OTHERS = 5.
DP_CONTROL_ASSIGN_STREAM CALL FUNCTION 'DP_CONTROL_ASSIGN_STREAM' EXPORTING H_DP = M_DP_HANDLE H_CNTL = H_CONTROL TYPE = mimetype SUBTYPE = mimesubtype PROPERTYNAME = 'SelectedTextAsR3Table' medium = cndp_medium_r3table TABLES DATA = TABLE EXCEPTIONS DP_ERROR_CREATE = 1 DP_ERROR_SEND_DATA = 2 DP_ERROR_ASSIGN = 3 DP_ERROR_INVALID_PARAM = 4 OTHERS = 5.
DP_CONTROL_ASSIGN_ROWSET * CALL FUNCTION 'DP_CONTROL_ASSIGN_ROWSET' * EXPORTING * H_DP = m_dp_handle * H_CNTL = H_CONTROL * TABNAME = 'TEXTTAB' * PROPERTYNAME = 'selectedTextAsR3Table' * TABLES * DATA = table * TABFIELDS = l_fields * EXCEPTIONS * DP_ERROR_CREATE = 1 * DP_ERROR_SEND_DATA = 2 * DP_ERROR_ASSIGN = 3 * DP_ERROR_INVALID_PARAM = 4 * OTHERS = 5.
DP_CONTROL_ASSIGN_STREAM CALL FUNCTION 'DP_CONTROL_ASSIGN_STREAM' EXPORTING h_dp = m_dp_handle h_cntl = h_control type = mimetype subtype = mimesubtype propertyname = 'SelectedTextAsR3Stream' medium = cndp_medium_r3table TABLES data = selected_text EXCEPTIONS dp_error_create = 1 dp_error_send_data = 2 dp_error_assign = 3 dp_error_invalid_param = 4 OTHERS = 5.
DP_STRETCH_SIMPLE_TABLE CALL FUNCTION 'DP_STRETCH_SIMPLE_TABLE' EXPORTING copy_lines = 'X' "abap_true IMPORTING stretched_data_ref = wide_table_ref TABLES data =