I_LogisticalRoundingProfileT
Logistical Rounding Profile - Text
I_LogisticalRoundingProfileT is a Basic CDS View that provides data about "Logistical Rounding Profile - Text" in SAP S/4HANA. It reads from 1 data source (rdtx) and exposes 7 fields with key fields Language, Plant, LogisticalRoundingProfile. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| rdtx | rdtx | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Plant | _Plant | $projection.Plant = _Plant.Plant |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILROUNDPROFILET | view | |
| EndUserText.label | Logistical Rounding Profile - Text | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | LogisticalRoundingProfile | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | Plant | werks | ||
| KEY | LogisticalRoundingProfile | |||
| LogisticalRoundingProfileName | text40 | |||
| _Plant | _Plant | |||
| _LogisticalRoundingProfile | _LogisticalRoundingProfile | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ILROUNDPROFILET'
@EndUserText.label: 'Logistical Rounding Profile - Text'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #BASIC
@ObjectModel: {
supportedCapabilities: [#VALUE_HELP_PROVIDER],
dataCategory: #TEXT,
representativeKey: 'LogisticalRoundingProfile',
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING
}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
define view I_LogisticalRoundingProfileT
as select from rdtx
association [1..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association to parent I_LogisticalRoundingProfile as _LogisticalRoundingProfile on $projection.LogisticalRoundingProfile = _LogisticalRoundingProfile.LogisticalRoundingProfile
and $projection.Plant = _LogisticalRoundingProfile.Plant
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key spras as Language,
@ObjectModel.foreignKey.association: '_Plant'
key werks as Plant,
@ObjectModel.foreignKey.association: '_LogisticalRoundingProfile'
@ObjectModel.text.element: ['LogisticalRoundingProfileName']
key cast( rdprf as logisticalroundingprofile preserving type ) as LogisticalRoundingProfile,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
text40 as LogisticalRoundingProfileName,
_Plant,
_LogisticalRoundingProfile,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"RDTX"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_LOGISTICALROUNDINGPROFILE",
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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