I_PhysChmlFlwTmeCrsSctnTxt
Cross Section Value - Text
I_PhysChmlFlwTmeCrsSctnTxt is a Basic CDS View that provides data about "Cross Section Value - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key field PCPhysFlwTmeCrsSctnValue. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | Txt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Cross Section Value - Text | view | |
| AbapCatalog.sqlViewName | IPCFWTMCRSSCTTX | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | PCPhysFlwTmeCrsSctnValue | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PCPhysFlwTmeCrsSctnValue | |||
| ddtextasPCPhysFlwTmeCrsSctnQtyAsTxt | ||||
| _Language | _Language |
@EndUserText.label: 'Cross Section Value - Text'
@AbapCatalog:
{
sqlViewName: 'IPCFWTMCRSSCTTX',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl:
{
-- Customizing values of cross section values --> No auth. check necessary
authorizationCheck: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:
{
usageType:
{
dataClass: #META,
sizeCategory: #S,
serviceQuality: #B
},
dataCategory: #TEXT,
representativeKey: 'PCPhysFlwTmeCrsSctnValue'
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_PhysChmlFlwTmeCrsSctnTxt
as select from dd07t as Txt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key substring(Txt.domvalue_l, 1, 10) as PCPhysFlwTmeCrsSctnValue,
--Language
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast(Txt.ddlanguage as sylangu preserving type ) as Language,
--language-dependent description of domain value
@Semantics.text: true
Txt.ddtext as PCPhysFlwTmeCrsSctnQtyAsTxt,
/* Associations */
_Language
}
where
Txt.domname = 'EHFND_FLOW_TIME_CRS_SCT_VALUE'
and Txt.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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