SYNC_POINT_ROLLBACK_TO SAP Method Obsolete: Rollback to Sync Point









Below is documentation, parameters and attributes of ABAP Method SYNC_POINT_ROLLBACK_TO 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_ROLLBACK_TO can also be found below:

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


Parameters of Method SYNC_POINT_ROLLBACK_TO

.

NameTypeData TypeDescriptionDefault Value
IT_BO_KEYImportingTYPE
/BOBF/T_FRW_KEY
Rollback to last Sync Points of Business Objects
IV_BO_KEYImportingTYPE
/BOBF/OBM_BO_KEY
Rollback to last Sync Point of a Business Object
IV_HANDLEImportingTYPE
/BOBF/CONF_KEY
Rollback to Sync Point by Handle
IV_SYNC_GROUP_HANDLEImportingTYPE
/BOBF/CONF_KEY
Handle for a group of sync points
IV_WHOLE_TAImportingTYPE
ABAP_BOOL
ET_FAILED_SYNC_POINTExportingTYPE
/BOBF/T_FRW_KEY
BO Keys for which Sync Point rollback failed
ET_SYNC_POINTSExportingTYPE
/SCMTMS/T_SYNC_POINT_ADMIN
Sync Point Administration Table



Exceptions of Method SYNC_POINT_ROLLBACK_TO

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_IT_BO_KEY TYPE /BOBF/T_FRW_KEY,
lv_IV_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_HANDLE TYPE /BOBF/CONF_KEY,
lv_IV_SYNC_GROUP_HANDLE TYPE /BOBF/CONF_KEY,
lv_IV_WHOLE_TA TYPE ABAP_BOOL,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_COMMON_HELPER=>SYNC_POINT_ROLLBACK_TO(
EXPORTING
IT_BO_KEY = lv_IT_BO_KEY
IV_BO_KEY = lv_IV_BO_KEY
IV_HANDLE = lv_IV_HANDLE
IV_SYNC_GROUP_HANDLE = lv_IV_SYNC_GROUP_HANDLE
IV_WHOLE_TA = lv_IV_WHOLE_TA
IMPORTING
ET_FAILED_SYNC_POINT = lv_ET_FAILED_SYNC_POINT
ET_SYNC_POINTS = lv_ET_SYNC_POINTS ).

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!