SET_COLUMN_FOR_PERID SAP Method Set Selected Cells of a Column
Below is documentation, parameters and attributes of ABAP Method SET_COLUMN_FOR_PERID within SAP class /SCMB/CL_DATAMATRIX. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /SCMB/CL_DATAMATRIX 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 SET_COLUMN_FOR_PERID can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SET_COLUMN_FOR_PERID
.| Name | Type | Data Type | Description | Default Value |
| IT_COLUMNTABLE | Importing | TYPE /SCMB/COLUMNTABLE_TAB | Column | |
| IV_PERID | Importing | TYPE /SCMB/TSDM_PERID | Column Period ID |
Exceptions of Method SET_COLUMN_FOR_PERID
/SCMB/CX_DMX_CELL_READONLY -Example ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_DATAMATRIX.
DATA: lv_IT_COLUMNTABLE TYPE /SCMB/COLUMNTABLE_TAB,
lv_IV_PERID TYPE /SCMB/TSDM_PERID,
lv_other TYPE c.
CALL METHOD lo_class=>SET_COLUMN_FOR_PERID(
EXPORTING
IT_COLUMNTABLE = lv_IT_COLUMNTABLE
IV_PERID = lv_IV_PERID ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects