SYNC_POINT_CREATE SAP Method Obsolete: Create BOPF Sync Point









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

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


Parameters of Method SYNC_POINT_CREATE

.

NameTypeData TypeDescriptionDefault Value
IT_BO_KEYImportingTYPE
/BOBF/T_FRW_KEY
Buisness Object Table
IV_BO_KEYImportingTYPE
/BOBF/OBM_BO_KEY
Business Object
IV_ROOT_SYNC_POINTImportingTYPE
ABAP_BOOL
Mark and store Sync Point as root sync point
IV_WHOLE_TAImportingTYPE
ABAP_BOOL
Create Sync Point for the whole current Transaction - open
ET_FAILED_SYNC_POINTExportingTYPE
/BOBF/T_FRW_KEY
BO Keys for which Sync Point creation failed
ET_SYNC_POINTSExportingTYPE
/SCMTMS/T_SYNC_POINT_ADMIN
Sync Point Administration
EV_SYNC_GROUP_HANDLEExportingTYPE
/BOBF/CONF_KEY
Handle for a group of sync points



Exceptions of Method SYNC_POINT_CREATE

This method does not have any exceptions

Example ABAP coding


DATA: lv_ET_FAILED_SYNC_POINT TYPE /BOBF/T_FRW_KEY,
lv_ET_SYNC_POINTS TYPE /SCMTMS/T_SYNC_POINT_ADMIN,
lv_EV_SYNC_GROUP_HANDLE TYPE /BOBF/CONF_KEY,
lv_IT_BO_KEY TYPE /BOBF/T_FRW_KEY,
lv_IV_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_ROOT_SYNC_POINT TYPE ABAP_BOOL,
lv_IV_WHOLE_TA TYPE ABAP_BOOL,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_COMMON_HELPER=>SYNC_POINT_CREATE(
EXPORTING
IT_BO_KEY = lv_IT_BO_KEY
IV_BO_KEY = lv_IV_BO_KEY
IV_ROOT_SYNC_POINT = lv_IV_ROOT_SYNC_POINT
IV_WHOLE_TA = lv_IV_WHOLE_TA
IMPORTING
ET_FAILED_SYNC_POINT = lv_ET_FAILED_SYNC_POINT
ET_SYNC_POINTS = lv_ET_SYNC_POINTS
EV_SYNC_GROUP_HANDLE = lv_EV_SYNC_GROUP_HANDLE ).

Links to Related Class(s)

/SCMTMS/...
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!