I_AcctgNotifAddlCompanyCode

DDL: I_ACCTGNOTIFADDLCOMPANYCODE Type: view_entity BASIC Package: FABTI_ACCNTG_NOTIFICATION_EXT

Additional Company Code

I_AcctgNotifAddlCompanyCode is a Basic CDS View that provides data about "Additional Company Code" in SAP S/4HANA. It reads from 1 data source (fan_addl_cc) and exposes 5 fields with key fields AccountingNotificationUUID, CompanyCode. It has 3 associations to related views. It is exposed through 1 OData service (UI_FIN_MNGACCNOTIF). Part of development package FABTI_ACCNTG_NOTIFICATION_EXT.

Data Sources (1)

SourceAliasJoin Type
fan_addl_cc fan_addl_cc from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_AccountingNotification _AcctgNotif $projection.AccountingNotificationUUID = _AcctgNotif.AccountingNotificationUUID
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_CompanyCode _CompanyCodeText $projection.CompanyCode = _CompanyCodeText.CompanyCode

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Additional Company Code view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

OData Services (1)

ServiceBindingVersionContractRelease
UI_FIN_MNGACCNOTIF UI_FIN_MNGACCNOTIF V4 C1 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AccountingNotificationUUID accounting_notification_uuid
KEY CompanyCode company_code
_AcctgNotif _AcctgNotif
_CompanyCode _CompanyCode
_CompanyCodeText _CompanyCodeText
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Additional Company Code'
@VDM.viewType: #BASIC
@ObjectModel: {
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #XXL,
                usageType.dataClass: #TRANSACTIONAL }
define view entity I_AcctgNotifAddlCompanyCode
  as select from fan_addl_cc
  association [0..1] to I_AccountingNotification as _AcctgNotif      on $projection.AccountingNotificationUUID = _AcctgNotif.AccountingNotificationUUID
  association [0..1] to I_CompanyCode            as _CompanyCode     on $projection.CompanyCode = _CompanyCode.CompanyCode
  association [0..1] to I_CompanyCode            as _CompanyCodeText on $projection.CompanyCode = _CompanyCodeText.CompanyCode
{
  key accounting_notification_uuid as AccountingNotificationUUID,
      @ObjectModel.foreignKey.association: '_CompanyCode'
  key company_code                 as CompanyCode,

      //associations

      _AcctgNotif,
      _CompanyCode,
      @Consumption.hidden: true
      _CompanyCodeText
}