CREATE_PROCESS_STEP SAP Method CONSTRUCTION: Creates (Persistent) Example









Below is documentation, parameters and attributes of ABAP Method CREATE_PROCESS_STEP within SAP class CL_PROCESS_STEP_POC. 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 CL_PROCESS_STEP_POC 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 CREATE_PROCESS_STEP can also be found below:

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


Parameters of Method CREATE_PROCESS_STEP

.

NameTypeData TypeDescriptionDefault Value
IM_PARTITION_REFImportingTYPE REF TO
CL_PARTITION_POC
Partition
IM_PERSISTENTImportingTYPE
BOOLE_D
Persistent Example
EX_PROCESS_STEP_REFExportingTYPE REF TO
CL_PROCESS_STEP_POC
Example Created



Exceptions of Method CREATE_PROCESS_STEP

This method does not have any exceptions

Example ABAP coding


DATA: lv_EX_PROCESS_STEP_REF TYPE CL_PROCESS_STEP_POC,
lv_IM_PARTITION_REF TYPE CL_PARTITION_POC,
lv_IM_PERSISTENT TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD CL_PROCESS_STEP_POC=>CREATE_PROCESS_STEP(
EXPORTING
IM_PARTITION_REF = lv_IM_PARTITION_REF
IM_PERSISTENT = lv_IM_PERSISTENT
IMPORTING
EX_PROCESS_STEP_REF = lv_EX_PROCESS_STEP_REF ).

Links to Related Class(s)

CL_PROCE...
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!