A_CAInvcgDocRelation
Invoicing Document Relation
A_CAInvcgDocRelation is a Consumption CDS View that provides data about "Invoicing Document Relation" in SAP S/4HANA. It reads from 1 data source (I_CAInvcgDocRelation) and exposes 9 fields with key fields CAInvcgReferenceObject, CAReferenceObjectID, CAInvcgCreationDate, CAInvoicingDocument. It has 1 association to related views. It is exposed through 1 OData service (API_CAINVOICINGDOCUMENT).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CAInvcgDocRelation | I_CAInvcgDocRelation | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_CAInvcgDocument | _CAInvcgDocument | $projection.CAInvoicingDocument = _CAInvcgDocument.CAInvoicingDocument |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Invoicing Document Relation | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| OData.entityType.name | CAInvcgDocRelation_Type | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_CAINVOICINGDOCUMENT | API_CAINVOICINGDOCUMENT | V4 | C2 | C1 |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CAInvcgReferenceObject | CAInvcgReferenceObject | ||
| KEY | CAReferenceObjectID | CAReferenceObjectID | ||
| KEY | CAInvcgCreationDate | CAInvcgCreationDate | ||
| KEY | CAInvoicingDocument | CAInvoicingDocument | ||
| CAInvcgIsDocumentPosted | CAInvcgIsDocumentPosted | |||
| CAInvcgIsDocumentSimulated | CAInvcgIsDocumentSimulated | |||
| CAInvcgIsDocumentPreliminary | CAInvcgIsDocumentPreliminary | |||
| CAReferenceObjectAddlText | CAReferenceObjectAddlText | |||
| _CAInvcgDocument | _CAInvcgDocument |
@AccessControl: {
authorizationCheck: #MANDATORY,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@EndUserText.label: 'Invoicing Document Relation'
@VDM: {
lifecycle.contract.type: #PUBLIC_REMOTE_API,
viewType: #CONSUMPTION,
usage.type: [ #TRANSACTIONAL_PROCESSING_SERVICE ]
}
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
usageType.serviceQuality: #B,
usageType.sizeCategory: #XL,
usageType.dataClass: #TRANSACTIONAL
}
@OData.entityType.name: 'CAInvcgDocRelation_Type'
define view entity A_CAInvcgDocRelation
as select from I_CAInvcgDocRelation
association [1..1] to A_CAInvcgDocument as _CAInvcgDocument on $projection.CAInvoicingDocument = _CAInvcgDocument.CAInvoicingDocument
{
key CAInvcgReferenceObject,
key CAReferenceObjectID,
key CAInvcgCreationDate,
key CAInvoicingDocument,
CAInvcgIsDocumentPosted,
CAInvcgIsDocumentSimulated,
CAInvcgIsDocumentPreliminary,
CAReferenceObjectAddlText,
/* Associations */
_CAInvcgDocument
}
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