DELIMIT_ALL_FORCER_RECORDS SAP Method Delimit All FORCER Relationships of HR Object
Below is documentation, parameters and attributes of ABAP Method DELIMIT_ALL_FORCER_RECORDS within SAP class /ISDFPS/CL_FORCER_SERVICES. 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 /ISDFPS/CL_FORCER_SERVICES 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 directlyThe following technical details of method DELIMIT_ALL_FORCER_RECORDS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DELIMIT_ALL_FORCER_RECORDS
.| Name | Type | Data Type | Description | Default Value |
| IV_COMMIT_WORK_FLAG | Importing | TYPE FLAG | 'X': COMMIT in Method; ' ': COMMIT by Calling Program | |
| IV_GDATE | Importing | TYPE GDATE | Delimitation Date | |
| IV_HROBJECT_HROBJID | Importing | TYPE HROBJID | Object ID of HR Object | |
| IV_HROBJECT_OTYPE | Importing | TYPE OTYPE | Object Type of HR Object | |
| IV_HROBJECT_PLVAR | Importing | TYPE PLVAR | Plan Version of HR Object |
Exceptions of Method DELIMIT_ALL_FORCER_RECORDS
SAVE_ERROR - Error While Updating Delimited RecordsExample ABAP coding
DATA: lv_IV_COMMIT_WORK_FLAG TYPE FLAG,
lv_IV_GDATE TYPE GDATE,
lv_IV_HROBJECT_HROBJID TYPE HROBJID,
lv_IV_HROBJECT_OTYPE TYPE OTYPE,
lv_IV_HROBJECT_PLVAR TYPE PLVAR,
lv_other TYPE c.
CALL METHOD /ISDFPS/CL_FORCER_SERVICES=>DELIMIT_ALL_FORCER_RECORDS(
EXPORTING
IV_COMMIT_WORK_FLAG = lv_IV_COMMIT_WORK_FLAG
IV_GDATE = lv_IV_GDATE
IV_HROBJECT_HROBJID = lv_IV_HROBJECT_HROBJID
IV_HROBJECT_OTYPE = lv_IV_HROBJECT_OTYPE
IV_HROBJECT_PLVAR = lv_IV_HROBJECT_PLVAR ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects