I_CreditControlArea2Segment
Assignment of Crd Ctrl Area to Crd Sgmt
I_CreditControlArea2Segment is a Basic CDS View (Dimension) that provides data about "Assignment of Crd Ctrl Area to Crd Sgmt" in SAP S/4HANA. It reads from 1 data source (ukm_kkber2sgm) and exposes 4 fields with key field CreditControlArea. It has 2 associations to related views. Part of development package UKM_CDS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ukm_kkber2sgm | ukm_kkber2sgm | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CreditControlArea | _CreditControlArea | $projection.CreditControlArea = _CreditControlArea.CreditControlArea |
| [0..1] | I_CreditManagementSegment | _CreditSegment | $projection.CreditSegment = _CreditSegment.CreditSegment |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Assignment of Crd Ctrl Area to Crd Sgmt | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | ICRDCTRAREA2SGMT | view | |
| ObjectModel.representativeKey | CreditControlArea | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CreditControlArea | |||
| CreditSegment | credit_sgmnt | |||
| _CreditControlArea | _CreditControlArea | |||
| _CreditSegment | _CreditSegment |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Assignment of Crd Ctrl Area to Crd Sgmt'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'ICRDCTRAREA2SGMT'
@ObjectModel.representativeKey: 'CreditControlArea'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
define view I_CreditControlArea2Segment
as select from ukm_kkber2sgm
association [0..1] to I_CreditControlArea as _CreditControlArea on $projection.CreditControlArea = _CreditControlArea.CreditControlArea
association [0..1] to I_CreditManagementSegment as _CreditSegment on $projection.CreditSegment = _CreditSegment.CreditSegment
{
key cast(kkber as farp_kkber preserving type) as CreditControlArea,
credit_sgmnt as CreditSegment,
_CreditControlArea,
_CreditSegment
};
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