I_MatlAccountAssignmentGroupT

DDL: I_MATLACCOUNTASSIGNMENTGROUPT SQL: ISDACCTASSGMTGT Type: view BASIC

Account Assignment Group of Material - Text

I_MatlAccountAssignmentGroupT is a Basic CDS View that provides data about "Account Assignment Group of Material - Text" in SAP S/4HANA. It reads from 1 data source (tvkmt) and exposes 5 fields with key fields MatlAccountAssignmentGroup, Language.

Data Sources (1)

SourceAliasJoin Type
tvkmt tvkmt from

Annotations (18)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MatlAccountAssignmentGroup view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Account Assignment Group of Material - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
AbapCatalog.sqlViewName ISDACCTASSGMTGT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MatlAccountAssignmentGroup ktgrm
KEY Language spras
MatlAccountAssignmentGroupName vtext
_MatlAccountAssignmentGroup _MatlAccountAssignmentGroup
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'MatlAccountAssignmentGroup'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Account Assignment Group of Material - Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@AbapCatalog.sqlViewName: 'ISDACCTASSGMTGT'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@ObjectModel.modelingPattern:           #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities:  [  #SQL_DATA_SOURCE,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #LANGUAGE_DEPENDENT_TEXT,
                                        #EXTRACTION_DATA_SOURCE,
                                        #SEARCHABLE_ENTITY   ]
define view I_MatlAccountAssignmentGroupT
as select from tvkmt 

association[0..1] to I_MatlAccountAssignmentGroup as _MatlAccountAssignmentGroup on $projection.MatlAccountAssignmentGroup = _MatlAccountAssignmentGroup.MatlAccountAssignmentGroup
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @ObjectModel.foreignKey.association: '_MatlAccountAssignmentGroup'
    key ktgrm as MatlAccountAssignmentGroup,

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

    @Semantics.text:true
    @Search.defaultSearchElement: true
    @Search.fuzzinessThreshold: 0.8
    @Search.ranking: #HIGH     
    vtext as MatlAccountAssignmentGroupName,
    
    //Associations

    _MatlAccountAssignmentGroup,
    _Language  
};
     
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"TVKMT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_MATLACCOUNTASSIGNMENTGROUP"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/