I_AcctgNotifAddlCompanyCode
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 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fan_addl_cc | fan_addl_cc | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CompanyCode | _CompanyCode | $projection.CompanyCode = _CompanyCode.CompanyCode |
| [0..1] | I_CompanyCode | _CompanyCodeText | $projection.CompanyCode = _CompanyCodeText.CompanyCode |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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 to parent 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FAN_ADDL_CC"
],
"ASSOCIATED":
[
"I_ACCOUNTINGNOTIFICATION",
"I_COMPANYCODE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA