SETSTREAMBYTABLE SAP Method of class IF_SALV_WD_CR_ADAPTER_GUI
Below is documentation, parameters and attributes of ABAP Method SETSTREAMBYTABLE within SAP class IF_SALV_WD_CR_ADAPTER_GUI. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_SALV_WD_CR_ADAPTER_GUI into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method SETSTREAMBYTABLE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SETSTREAMBYTABLE
.| Name | Type | Data Type | Description | Default Value |
| CR_DATATABLE | Importing | TYPE STANDARD TABLE | ||
| CR_ID | Importing | TYPE STRING | ||
| CR_TYPE | Importing | TYPE STRING | ||
| CR_VERSION | Importing | TYPE STRING | ||
| DOC_LENGTH | Importing | TYPE INT4 | Natural Number |
Exceptions of Method SETSTREAMBYTABLE
CX_WD_ACF_EXCEPTION -Example ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO IF_SALV_WD_CR_ADAPTER_GUI.
DATA: lv_CR_DATATABLE TYPE STANDARD TABLE,
lv_CR_ID TYPE STRING,
lv_CR_TYPE TYPE STRING,
lv_CR_VERSION TYPE STRING,
lv_DOC_LENGTH TYPE INT4,
lv_other TYPE c.
CALL METHOD lo_class=>SETSTREAMBYTABLE(
EXPORTING
CR_DATATABLE = lv_CR_DATATABLE
CR_ID = lv_CR_ID
CR_TYPE = lv_CR_TYPE
CR_VERSION = lv_CR_VERSION
DOC_LENGTH = lv_DOC_LENGTH ).
Links to Related Class(s)
IF_SALV_...Full list of available SAP object classes
Search for further information about these or an SAP related objects