I_BillOfExchangeUsageText

DDL: I_BILLOFEXCHANGEUSAGETEXT SQL: IFIBOEUsageT Type: view BASIC

Bill Of Exchange Usage

I_BillOfExchangeUsageText is a Basic CDS View that provides data about "Bill Of Exchange Usage" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields BillOfExchangeUsage, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (12)

NameValueLevelField
EndUserText.label Bill Of Exchange Usage view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIBOEUsageT view
Metadata.ignorePropogatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey BillOfExchangeUsage view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillOfExchangeUsage
KEY Language
BillOfExchangeUsageName ddtext
_Language _Language
@EndUserText.label: 'Bill Of Exchange Usage'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIBOEUsageT'
@Metadata.ignorePropogatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'BillOfExchangeUsage'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #META

define view I_BillOfExchangeUsageText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

  key cast( SUBSTRING(domvalue_l, 1, 1) as farp_wverw) as BillOfExchangeUsage,

      @Semantics.language: true
  key cast( ddlanguage as spras)                       as Language,

      @Semantics.text: true
      ddtext                                           as BillOfExchangeUsageName,

      _Language
}
where
      domname  = 'WVERW'
  and as4local = 'A';        
  
  
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/