I_USFedBorrowingSourceText

DDL: I_USFEDBORROWINGSOURCETEXT SQL: IFMFG_FLG_BORRWT Type: view BASIC

US Federal Borrowing Source - Text

I_USFedBorrowingSourceText is a Basic CDS View that provides data about "US Federal Borrowing Source - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields USFedBorrowingSource, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFMFG_FLG_BORRWT view
EndUserText.label US Federal Borrowing Source - Text view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey USFedBorrowingSource view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.supportedCapabilities #LANGUAGE_DEPENDENT_TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY USFedBorrowingSource
KEY Language ddlanguage
USFedBorrowingSourceText
_USFedBorrowingSource _USFedBorrowingSource
_Language _Language
@AbapCatalog.sqlViewName: 'IFMFG_FLG_BORRWT'
@EndUserText.label: 'US Federal Borrowing Source - Text'

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel:{
  representativeKey: 'USFedBorrowingSource',
  dataCategory: #TEXT,
  usageType: {
  dataClass: #CUSTOMIZING,
  serviceQuality: #A,
  sizeCategory: #S }
}
@ObjectModel.supportedCapabilities: #LANGUAGE_DEPENDENT_TEXT   

define view I_USFedBorrowingSourceText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [0..1] to I_USFedBorrowingSource as _USFedBorrowingSource on $projection.USFedBorrowingSource = _USFedBorrowingSource.USFedBorrowingSource
{
@ObjectModel.foreignKey.association: '_USFedBorrowingSource'
  key cast(domvalue_l as fm_flg_borrow) as USFedBorrowingSource,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key ddlanguage                                                         as Language,


      @Semantics.text: true
      cast(ddtext as fmfg_flg_borrow_text)                               as USFedBorrowingSourceText,
      _USFedBorrowingSource,
      _Language

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