I_CustMgmtDateRuleText
Customer Management Date Rule - Text
I_CustMgmtDateRuleText is a Basic CDS View that provides data about "Customer Management Date Rule - Text" in SAP S/4HANA. It reads from 1 data source (timerulet) and exposes 5 fields with key fields CustMgmtDateRuleName, Language. It has 2 associations to related views. Part of development package CRM_DATES.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| timerulet | timerulet | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CustMgmtDateRule | _CustMgmtDateRule | $projection.CustMgmtDateRuleName = _CustMgmtDateRule.CustMgmtDateRuleName |
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Customer Management Date Rule - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CustMgmtDateRuleName | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustMgmtDateRuleName | rule_name | ||
| KEY | Language | langu | ||
| CustMgmtDateRuleText | text | |||
| _CustMgmtDateRule | _CustMgmtDateRule | |||
| _Language | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Customer Management Date Rule - Text'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CustMgmtDateRuleName'
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#LANGUAGE_DEPENDENT_TEXT,
#SEARCHABLE_ENTITY,
#SQL_DATA_SOURCE]
define view entity I_CustMgmtDateRuleText
as select from timerulet
association [1..1] to I_CustMgmtDateRule as _CustMgmtDateRule on $projection.CustMgmtDateRuleName = _CustMgmtDateRule.CustMgmtDateRuleName
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_CustMgmtDateRule'
@ObjectModel.text.element: ['CustMgmtDateRuleText']
key rule_name as CustMgmtDateRuleName,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
text as CustMgmtDateRuleText,
_CustMgmtDateRule,
_Language
}
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