I_IntcoBillgRcvrJournalEntry
Intercompany Billing AP Document
I_IntcoBillgRcvrJournalEntry is a Basic CDS View that provides data about "Intercompany Billing AP Document" in SAP S/4HANA. It reads from 1 data source (acdoca) and exposes 11 fields with key fields AccountingDocument, LedgerGLLineItem, CompanyCode, FiscalYear, Ledger. Part of development package FIN_CO_ICO_BILLING_TRACKER.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| acdoca | acdoca | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Intercompany Billing AP Document | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.personalData.blocking | #REQUIRED | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccountingDocument | belnr | ||
| KEY | LedgerGLLineItem | docln | ||
| KEY | CompanyCode | rbukrs | ||
| KEY | FiscalYear | |||
| KEY | Ledger | rldnr | ||
| PrecedingReferenceTransaction | prec_awtyp | |||
| BillingDocument | prec_awref | |||
| BillingDocumentItem | prec_awitem | |||
| ReceiverProfitAndLossAccount | racct | |||
| ControllingDebitCreditCode | ||||
| GLAccountType | glaccount_type |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Intercompany Billing AP Document'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@VDM.viewType: #BASIC
@AccessControl.personalData.blocking: #REQUIRED
define view entity I_IntcoBillgRcvrJournalEntry
as select from acdoca
{
key belnr as AccountingDocument,
key docln as LedgerGLLineItem,
key rbukrs as CompanyCode,
key cast(gjahr as fis_gjahr_no_conv preserving type ) as FiscalYear,
key rldnr as Ledger,
prec_awtyp as PrecedingReferenceTransaction,
prec_awref as BillingDocument,
prec_awitem as BillingDocumentItem,
racct as ReceiverProfitAndLossAccount,
cast( co_belkz as fis_co_belkz_no_conv preserving type ) as ControllingDebitCreditCode,
glaccount_type as GLAccountType
}
where
prec_awtyp = 'VBRK'
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