I_CustomerContactTypeText
Customer Contact Type Text
I_CustomerContactTypeText is a Basic CDS View that provides data about "Customer Contact Type Text" in SAP S/4HANA. It reads from 1 data source (udm_cct_typet) and exposes 4 fields with key fields Language, CustomerContactType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| udm_cct_typet | udm_cct_typet | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICCTTYPETXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Customer Contact Type Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CustomerContactType | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | langu | ||
| KEY | CustomerContactType | cct_type | ||
| CustomerContactTypeName | cct_type_txt | |||
| _Language | _Language |
@AbapCatalog: { sqlViewName: 'ICCTTYPETXT',
compiler: { compareFilter: true },
preserveKey: true }
@AccessControl: { authorizationCheck: #NOT_REQUIRED }
@EndUserText: { label: 'Customer Contact Type Text' }
@VDM: { viewType: #BASIC,
lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #D,
sizeCategory: #S,
dataClass: #CUSTOMIZING },
dataCategory: #TEXT,
semanticKey: ['Language', 'CustomerContactType'],
representativeKey: 'CustomerContactType' }
define view I_CustomerContactTypeText
as select from udm_cct_typet
// Foreign Key Associations
// Language
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
// VDM Fields
@Semantics: { language: true }
@ObjectModel: { foreignKey: { association: '_Language' } }
key langu as Language,
key cct_type as CustomerContactType,
@Semantics: { text: true }
cct_type_txt as CustomerContactTypeName,
// Associations
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"UDM_CCT_TYPET"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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