TEST_MATRIX_CREATE SAP Method Creation of Data Matrices for Testing









Below is documentation, parameters and attributes of ABAP Method TEST_MATRIX_CREATE 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 - Static

This is a Static Method so you can call it directly

The following technical details of method TEST_MATRIX_CREATE can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method TEST_MATRIX_CREATE

.

NameTypeData TypeDescriptionDefault Value
IO_LINEDESCImportingTYPE REF TO
/SCMB/CL_DATALINEDESCRIPTOR
Description of Data Matrix Lines
IV_DATE_STARTImportingTYPE
/SCMB/DATE
Date
IV_PERID_STARTImportingTYPE
/SCMB/TSDM_PERID
First Period Sequence Number ID
IV_PERIODSImportingTYPE
INT4
Number of Periods
IV_TZONEImportingTYPE
TZNZONE
Time Zone
EO_DATAMATRIXExportingTYPE REF TO
/SCMB/CL_DATAMATRIX
Data Matrix Container



Exceptions of Method TEST_MATRIX_CREATE

CX_UUID_ERROR - Fehlerklasse für UUID-Bearbeitungsfehler

Example ABAP coding


DATA: lv_EO_DATAMATRIX TYPE /SCMB/CL_DATAMATRIX,
lv_IO_LINEDESC TYPE /SCMB/CL_DATALINEDESCRIPTOR,
lv_IV_DATE_START TYPE /SCMB/DATE,
lv_IV_PERID_START TYPE /SCMB/TSDM_PERID,
lv_IV_PERIODS TYPE INT4,
lv_IV_TZONE TYPE TZNZONE,
lv_other TYPE c.

CALL METHOD /SCMB/CL_DATAMATRIX=>TEST_MATRIX_CREATE(
EXPORTING
IO_LINEDESC = lv_IO_LINEDESC
IV_DATE_START = lv_IV_DATE_START
IV_PERID_START = lv_IV_PERID_START
IV_PERIODS = lv_IV_PERIODS
IV_TZONE = lv_IV_TZONE
IMPORTING
EO_DATAMATRIX = lv_EO_DATAMATRIX ).

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!