I_PricequotationtypeText

DDL: I_PRICEQUOTATIONTYPETEXT SQL: IPRICEQUOTT Type: view BASIC

Price Quotation Type Name

I_PricequotationtypeText is a Basic CDS View that provides data about "Price Quotation Type Name" in SAP S/4HANA. It reads from 1 data source (tw56t) and exposes 5 fields with key fields PriceQuotationType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tw56t tw56t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_PriceQuotationType _PriceQuotationType $projection.PriceQuotationType = _PriceQuotationType.PriceQuotationType

Annotations (10)

NameValueLevelField
EndUserText.label Price Quotation Type Name view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IPRICEQUOTT view
ObjectModel.representativeKey PriceQuotationType view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PriceQuotationType
KEY Language tw56t spras
PriceQuotationTypeName tw56t xkurzbez
_PriceQuotationType _PriceQuotationType
_Language _Language
@EndUserText.label: 'Price Quotation Type Name'  
//@Analytics.dataCategory: #TEXT

@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //or #CHECK

@AbapCatalog.sqlViewName: 'IPRICEQUOTT'
@ObjectModel.representativeKey: 'PriceQuotationType'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_PricequotationtypeText  
   as select from tw56t
   association [0..1] to I_Language as _Language  on $projection.Language = _Language.Language
   association [1..1] to I_PriceQuotationType as _PriceQuotationType
        on $projection.PriceQuotationType = _PriceQuotationType.PriceQuotationType
{
   key cast ( tw56t.skursart as tba_pricetype) as PriceQuotationType,
   @Semantics.language: true
   key tw56t.spras as Language, //text views shall always be language dependent

   @Semantics.text: true
   tw56t.xkurzbez as PriceQuotationTypeName,
   _PriceQuotationType,
   _Language

}

 
    
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"TW56T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PRICEQUOTATIONTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/