FORCERRIC_MAINT_NO_LIMITING SAP Method Obsolete: Create/Change a FORCERRIC Relationship
Below is documentation, parameters and attributes of ABAP Method FORCERRIC_MAINT_NO_LIMITING within SAP class /ISDFPS/CL_FORCERRIC. 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_FORCERRIC 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 FORCERRIC_MAINT_NO_LIMITING can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FORCERRIC_MAINT_NO_LIMITING
.| Name | Type | Data Type | Description | Default Value |
| IV_ACTIVITY | Importing | TYPE J_VORGANG | Business Transaction | |
| IV_CREATE | Importing | TYPE C | Allow Relationship to Be Created | |
| IV_MSG_OPT | Importing | TYPE C | Message Option | |
| IV_STATUS_NEW | Importing | TYPE J_STATUS | Object Status | |
| CS_FORCERRIC | Changing | TYPE /ISDFPS/FORRIC | ||
| CS_FORCERRICID | Changing | TYPE /ISDFPS/FORCERID | IDs of Force Elements |
Exceptions of Method FORCERRIC_MAINT_NO_LIMITING
FORCERRIC_MAINT_ERROR - Error creating/changing the data recordExample ABAP coding
DATA: lv_CS_FORCERRIC TYPE /ISDFPS/FORRIC,
lv_CS_FORCERRICID TYPE /ISDFPS/FORCERID,
lv_IV_ACTIVITY TYPE J_VORGANG,
lv_IV_CREATE TYPE C,
lv_IV_MSG_OPT TYPE C,
lv_IV_STATUS_NEW TYPE J_STATUS,
lv_other TYPE c.
CALL METHOD /ISDFPS/CL_FORCERRIC=>FORCERRIC_MAINT_NO_LIMITING(
EXPORTING
IV_ACTIVITY = lv_IV_ACTIVITY
IV_CREATE = lv_IV_CREATE
IV_MSG_OPT = lv_IV_MSG_OPT
IV_STATUS_NEW = lv_IV_STATUS_NEW
CHANGING
CS_FORCERRIC = lv_CS_FORCERRIC
CS_FORCERRICID = lv_CS_FORCERRICID ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects