I_AcctAssignmentCategoryText

DDL: I_ACCTASSIGNMENTCATEGORYTEXT SQL: IMMACCTASSCATT Type: view BASIC

Account Assignment Category - Text

I_AcctAssignmentCategoryText is a Basic CDS View that provides data about "Account Assignment Category - Text" in SAP S/4HANA. It reads from 1 data source (t163i) and exposes 5 fields with key fields AccountAssignmentCategory, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t163i t163i from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AccountAssignmentCategory view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Account Assignment Category - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IMMACCTASSCATT view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AccountAssignmentCategory knttp
KEY Language spras
AcctAssignmentCategoryName t163i knttx Acct Assgnt. Cat. Desc.
_AccountAssignmentCat _AccountAssignmentCat
_Language _Language
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.dataCategory: #TEXT 
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.representativeKey: 'AccountAssignmentCategory'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A 
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SEARCHABLE_ENTITY, #LANGUAGE_DEPENDENT_TEXT ]
@EndUserText.label: 'Account Assignment Category - Text' 
//Commented by VDM CDS Suite Plugin:@Analytics.dataCategory: #TEXT

@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED 
@AbapCatalog.sqlViewName: 'IMMACCTASSCATT'
@Search.searchable: true
//Commented by VDM CDS Suite Plugin:@ObjectModel.representativeKey: 'AccountAssignmentCategory'


define view I_AcctAssignmentCategoryText //must start with 'I_' and end with 'Text' or 'T'

   as select from t163i
   association to parent I_AccountAssignmentCategory as _AccountAssignmentCat 
    on $projection.AccountAssignmentCategory = _AccountAssignmentCat.AccountAssignmentCategory
   association [0..1] to I_Language as _Language  on $projection.Language = _Language.Language
{
   key knttp as AccountAssignmentCategory,
   @Semantics.language: true
   key spras as Language,
   @Search.defaultSearchElement: true
   @Search.fuzzinessThreshold: 0.8
   @Search.ranking: #HIGH
   @Semantics.text: true
   @EndUserText.label: 'Acct Assgnt. Cat. Desc.'   
    t163i.knttx as AcctAssignmentCategoryName, 
   _AccountAssignmentCat,
   _Language
   
}
     
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"T163I"
],
"ASSOCIATED":
[
"I_ACCOUNTASSIGNMENTCATEGORY",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/