I_CustMgmtExtRefID
External Reference ID
I_CustMgmtExtRefID is a Basic CDS View that provides data about "External Reference ID" in SAP S/4HANA. It reads from 1 data source (crms4d_ext_ref) and exposes 8 fields with key fields CustMgmtObjectType, CustMgmtDocument, CustMgmtDocumentItem, CustMgmtExtRefIDSequenceNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crms4d_ext_ref | crms4d_ext_ref | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | External Reference ID | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AbapCatalog.sqlViewName | ICUSTMGTEXTREFID | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustMgmtObjectType | objtype_h | ||
| KEY | CustMgmtDocument | object_id | ||
| KEY | CustMgmtDocumentItem | number_int | ||
| KEY | CustMgmtExtRefIDSequenceNumber | counter | ||
| CustMgmtExtRefIDType | reference_type | |||
| CustMgmtExtRefID | reference_number | |||
| CustMgmtExtRefIDTypeOwner | owner | |||
| CustMgmtExtRefIDLogicalSystem | reference_logsys |
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'External Reference ID'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #PRIVILEGED_ONLY,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@AbapCatalog: {
sqlViewName: 'ICUSTMGTEXTREFID',
compiler.compareFilter: true,
preserveKey: true
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #XL
}
}
@Metadata.ignorePropagatedAnnotations: true
define view I_CustMgmtExtRefID
as select from crms4d_ext_ref
{
key objtype_h as CustMgmtObjectType,
key object_id as CustMgmtDocument,
key number_int as CustMgmtDocumentItem,
key counter as CustMgmtExtRefIDSequenceNumber,
reference_type as CustMgmtExtRefIDType,
reference_number as CustMgmtExtRefID,
owner as CustMgmtExtRefIDTypeOwner,
reference_logsys as CustMgmtExtRefIDLogicalSystem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMS4D_EXT_REF"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA