I_LogisticalRoundingProfile
Logistical Rounding Profile
I_LogisticalRoundingProfile is a Basic CDS View that provides data about "Logistical Rounding Profile" in SAP S/4HANA. It has 2 associations to related views.
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Plant | _Plant | $projection.Plant = _Plant.Plant |
| [0..*] | I_LogisticalRoundingProfileT | _Text | |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILROUNDPROFILE | view | |
| EndUserText.label | Logistical Rounding Profile | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.sapObjectNodeType.name | LogisticalRoundingProfile | view | |
| ObjectModel.representativeKey | LogisticalRoundingProfile | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | werks | ||
| KEY | LogisticalRoundingProfile | |||
| _Plant | _Plant | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'ILROUNDPROFILE'
@EndUserText.label: 'Logistical Rounding Profile'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel: {
supportedCapabilities: [#SQL_DATA_SOURCE,#CDS_MODELING_DATA_SOURCE,#CDS_MODELING_ASSOCIATION_TARGET,#VALUE_HELP_PROVIDER],
compositionRoot: true,
sapObjectNodeType.name: 'LogisticalRoundingProfile',
representativeKey: 'LogisticalRoundingProfile',
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING
}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define root view I_LogisticalRoundingProfile
as select distinct from rdpr
association [1..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
composition [0..*] of I_LogisticalRoundingProfileT as _Text
{
@ObjectModel.foreignKey.association: '_Plant'
key werks as Plant,
@ObjectModel.text.association: '_Text'
key cast (rdprf as logisticalroundingprofile preserving type) as LogisticalRoundingProfile,
_Plant,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"RDPR"
],
"ASSOCIATED":
[
"I_LOGISTICALROUNDINGPROFILET",
"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