C_Roundingprfltexttemp

DDL: C_ROUNDINGPRFLTEXTTEMP SQL: CROUNDINGPRFLTXT Type: view CONSUMPTION Package: VDM_MD_PRODUCT_OBSOLETE

Rounding Profile Text View

C_Roundingprfltexttemp is a Consumption CDS View that provides data about "Rounding Profile Text View" in SAP S/4HANA. It reads from 1 data source (rdtx) and exposes 5 fields with key fields RoundingProfile, Language, Plant. It has 1 association to related views. Part of development package VDM_MD_PRODUCT_OBSOLETE.

Data Sources (1)

SourceAliasJoin Type
rdtx rdtx from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CROUNDINGPRFLTXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_LogisticalRoundingProfileT view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Rounding Profile Text View view
ObjectModel.representativeKey RoundingProfile view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RoundingProfile rdprf
KEY Language spras
KEY Plant werks
_Plant _Plant
Name text40 Rounding Profile Description
@AbapCatalog.sqlViewName: 'CROUNDINGPRFLTXT'
//@AbapCatalog.compiler.compareFilter: true

//@AccessControl.authorizationCheck: #CHECK

@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle:{
  status: #DEPRECATED,
  successor: 'I_LogisticalRoundingProfileT'
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Rounding Profile Text View'

@ObjectModel.representativeKey:'RoundingProfile'

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
define view C_Roundingprfltexttemp
  as select from rdtx
  association [0..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
{
  key rdprf  as RoundingProfile,

      @Semantics.language
  key spras  as Language,

      @ObjectModel.foreignKey.association:'_Plant'
  key werks  as Plant,
      _Plant,
      @Semantics.text
      @EndUserText.label: 'Rounding Profile Description'
      text40 as Name

}