I_UtilsPriceOriginT

DDL: I_UTILSPRICEORIGINT SQL: IEPSPRICEORGT Type: view BASIC

Utilities Price Origin - Text

I_UtilsPriceOriginT is a Basic CDS View that provides data about "Utilities Price Origin - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, UtilsPriceOrigin.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IEPSPRICEORGT view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Utilities Price Origin - Text view
ObjectModel.representativeKey UtilsPriceOrigin view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY UtilsPriceOrigin
UtilsPriceOriginDescription ddtext
@AbapCatalog.sqlViewName: 'IEPSPRICEORGT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Utilities Price Origin - Text'
@ObjectModel.representativeKey: 'UtilsPriceOrigin'

define view I_UtilsPriceOriginT
  as select from dd07t

{
      @Semantics.language: true
  key ddlanguage                        as Language,
  key cast( domvalue_l as priceorigin ) as UtilsPriceOrigin,
      @Semantics.text: true
      ddtext                            as UtilsPriceOriginDescription
}
where
      dd07t.domname    = 'PRICEORIGIN'
  //and dd07t.ddlanguage = $session.system_language

  and as4local         = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/