CHECK_ALTID_UNIQUE SAP Method Check, if altid has not been used before
Below is documentation, parameters and attributes of ABAP Method CHECK_ALTID_UNIQUE within SAP class /SCMB/CL_ORG_UNIT_MGR. 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 /SCMB/CL_ORG_UNIT_MGR into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method CHECK_ALTID_UNIQUE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_ALTID_UNIQUE
.| Name | Type | Data Type | Description | Default Value |
| IV_ADD_TO_BUFFER | Importing | TYPE XFELD | Add entry to internal buffer | |
| IV_EXTERNAL_ID | Importing | TYPE /SCMB/ORG_EXT_ID | Organizational Unit: External ID | |
| IV_FUNCTION | Importing | TYPE /SCMB/ORG_FUNC_CODE | Organizational Unit Function | |
| IV_ID | Importing | TYPE HROBJID | Object ID | |
| IV_ROLE | Importing | TYPE /SCMB/ORG_ROLE_CODE | Organizational Centre Function | |
| ES_ORGUNIT | Exporting | TYPE /SCMB/S_ORGUNIT | Organizational Unit | |
| EV_NOT_UNIQUE | Exporting | TYPE XFELD | Entry is not unique |
Exceptions of Method CHECK_ALTID_UNIQUE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_ORG_UNIT_MGR.
DATA: lv_ES_ORGUNIT TYPE /SCMB/S_ORGUNIT,
lv_EV_NOT_UNIQUE TYPE XFELD,
lv_IV_ADD_TO_BUFFER TYPE XFELD,
lv_IV_EXTERNAL_ID TYPE /SCMB/ORG_EXT_ID,
lv_IV_FUNCTION TYPE /SCMB/ORG_FUNC_CODE,
lv_IV_ID TYPE HROBJID,
lv_IV_ROLE TYPE /SCMB/ORG_ROLE_CODE,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK_ALTID_UNIQUE(
EXPORTING
IV_ADD_TO_BUFFER = lv_IV_ADD_TO_BUFFER
IV_EXTERNAL_ID = lv_IV_EXTERNAL_ID
IV_FUNCTION = lv_IV_FUNCTION
IV_ID = lv_IV_ID
IV_ROLE = lv_IV_ROLE
IMPORTING
ES_ORGUNIT = lv_ES_ORGUNIT
EV_NOT_UNIQUE = lv_EV_NOT_UNIQUE ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects