I_FinInstrProductGroupText

DDL: I_FININSTRPRODUCTGROUPTEXT SQL: IFININSTRPRDGRPT Type: view BASIC

Financial Instrument Product Group Text

I_FinInstrProductGroupText is a Basic CDS View that provides data about "Financial Instrument Product Group Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, FinInstrProductGroup. 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 (14)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IFININSTRPRDGRPT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Financial Instrument Product Group Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FinInstrProductGroup view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY FinInstrProductGroup dd07t domvalue_l
FinInstrProductGroupName
_Language _Language
// harmonized annotations 

@AbapCatalog.buffering.status: #NOT_ALLOWED
@AbapCatalog.compiler.compareFilter: true  
@AbapCatalog.preserveKey:true // only if required by ATC check 

@AbapCatalog.sqlViewName: 'IFININSTRPRDGRPT'
@AccessControl.authorizationCheck: #NOT_REQUIRED // according to XLS / DCL 

@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Financial Instrument Product Group Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'FinInstrProductGroup'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality:  #B
@ObjectModel.usageType.sizeCategory: #L
@Metadata.ignorePropagatedAnnotations: true // For C1-Release 

@VDM.viewType: #BASIC 
define view I_FinInstrProductGroupText
  as select from dd07t

//  Financial Instrument Product Group has got key value product group  A N D  product type

//  association [0..1] to I_FinInstrProductGroup as _FinInstrProductGroup on $projection.FinInstrProductGroup = _FinInstrProductGroup.FinInstrProductGroup

  association [0..1] to I_Language             as _Language               on $projection.Language = _Language.Language
{

      @Semantics.language: true
  key ddlanguage                               as Language,
      @ObjectModel.text.element: 'FinInstrProductGroupName'
//      @ObjectModel.foreignKey.association: '_FinInstrProductGroup'

  key dd07t.domvalue_l                         as FinInstrProductGroup,
      @Semantics.text: true
      cast(dd07t.ddtext as ftr_gen_fin_instr_prod_gr_name) as FinInstrProductGroupName,
//      _FinInstrProductGroup,

      _Language

}
where
      dd07t.domname  = 'FTR_GEN_FIN_INSTR_PROD_GROUP'      /* 'TPM_PRODUCT_GROUP'*/
  and dd07t.as4local = 'A'    
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/