I_USFedApportionmentCatText

DDL: I_USFEDAPPORTIONMENTCATTEXT SQL: IFMFGAPPRTCAT_T Type: view BASIC

US Federal Apportionment Category - Text

I_USFedApportionmentCatText is a Basic CDS View that provides data about "US Federal Apportionment Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields USFedApportionmentCategory, 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_USFedApportionmentCat _USFedApportionmentCat $projection.USFedApportionmentCategory = _USFedApportionmentCat.USFedApportionmentCategory

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFMFGAPPRTCAT_T view
EndUserText.label US Federal Apportionment Category - 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 USFedApportionmentCategory 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 USFedApportionmentCategory
KEY Language ddlanguage
USFedApportionmentCategoryText
_USFedApportionmentCat _USFedApportionmentCat
_Language _Language
@AbapCatalog.sqlViewName: 'IFMFGAPPRTCAT_T'
@EndUserText.label: 'US Federal Apportionment Category - Text'

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

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

define view I_USFedApportionmentCatText
  as select from dd07t
  association [0..1] to I_Language              as _Language              on $projection.Language = _Language.Language
  association [0..1] to I_USFedApportionmentCat as _USFedApportionmentCat on $projection.USFedApportionmentCategory = _USFedApportionmentCat.USFedApportionmentCategory
{
      @ObjectModel.foreignKey.association: '_USFedApportionmentCat'
  key cast(domvalue_l as fm_flg_apport)                                  as USFedApportionmentCategory,

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


      @Semantics.text: true
      cast(ddtext as fmfg_flg_apport_text)                               as USFedApportionmentCategoryText,

      _USFedApportionmentCat,
      _Language

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