I_SuplrInvcAcctAssgmtTypeDesc

DDL: I_SUPLRINVCACCTASSGMTTYPEDESC SQL: ISIVACTASGMTDESC Type: view COMPOSITE

Translation for Invoice Acct Assignment

I_SuplrInvcAcctAssgmtTypeDesc is a Composite CDS View that provides data about "Translation for Invoice Acct Assignment" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields AccountAssignmentType, 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 = $session.system_language
[1..1] I_SuplrInvcAcctAssgmtType _SuplrInvcAcctAssgmtType $projection.AccountAssignmentType = _SuplrInvcAcctAssgmtType.AccountAssignmentType

Annotations (13)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AccountAssignmentType view
EndUserText.label Translation for Invoice Acct Assignment view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AbapCatalog.sqlViewName ISIVACTASGMTDESC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AccountAssignmentType
KEY Language ddlanguage
AccountAssignmentTypeDesc
_SuplrInvcAcctAssgmtType _SuplrInvcAcctAssgmtType
_Language _Language
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'AccountAssignmentType'
@EndUserText.label: 'Translation for Invoice Acct Assignment'
@VDM.viewType : #COMPOSITE
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AbapCatalog.sqlViewName: 'ISIVACTASGMTDESC'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
//This is a technical view only returning texts for the account assignment type

@AccessControl.personalData.blocking:#NOT_REQUIRED
@AbapCatalog.compiler.compareFilter:true

define view I_SuplrInvcAcctAssgmtTypeDesc
  as select from dd07t
  association [0..1] to I_Language        as _Language          on $projection.Language = $session.system_language
  association [1..1] to I_SuplrInvcAcctAssgmtType as _SuplrInvcAcctAssgmtType on $projection.AccountAssignmentType = _SuplrInvcAcctAssgmtType.AccountAssignmentType
{
      // Substring() so that domvalue_l is of same length and type as mmiv_acct_assgmt_desc

  key cast ( substring( domvalue_l, 1, 2 ) as mmiv_acct_assgmt_desc preserving type )       as AccountAssignmentType,
      @Semantics.language: true
  key ddlanguage                                                                            as Language,
      cast ( ddtext as mmiv_description_text preserving type)                               as AccountAssignmentTypeDesc,

      //association

      _SuplrInvcAcctAssgmtType,
      _Language
}
where
      domname  = 'MMIV_ACCT_ASSGMT_DESC'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SUPLRINVCACCTASSGMTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/