I_CAINVCGDOCSOURCE
Fakturierungsbelegquellen
I_CAINVCGDOCSOURCE is a CDS View in S/4HANA. Fakturierungsbelegquellen. It contains 11 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_CABillgDocInvcgDocSource | view_entity | from | CONSUMPTION | Fakturierungsbeleg Quellen |
| R_CAInvcgDocSourceTP | view_entity | from | TRANSACTIONAL | Invoicing Document Source Item - TP |
Fields (11)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | CAInvcgSourceDocumentCat | CAInvcgSourceDocumentCat | 1 |
| KEY | CAInvcgSourceDocumentNumber | CAInvcgSourceDocumentNumber | 1 |
| KEY | CAInvoicingDocument | CAInvoicingDocument | 1 |
| CAApplicationArea | CAApplicationArea | 1 | |
| CAInvcgIsDocumentPosted | CAInvcgIsDocumentPosted | 1 | |
| CAInvcgIsDocumentPreliminary | CAInvcgIsDocumentPreliminary | 1 | |
| CAInvcgIsDocumentSimulated | CAInvcgIsDocumentSimulated | 1 | |
| CAInvcgReversalDocument | CAInvcgReversalDocument | 1 | |
| CAInvcgReversedDocument | CAInvcgReversedDocument | 1 | |
| CAInvcgSourceDocumentType | CAInvcgSourceDocumentType | 1 | |
| LogicalSystem | LogicalSystem | 1 |
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Fakturierungsbelegquellen'
@VDM.viewType: #BASIC
@Analytics.dataExtraction.enabled: true
@ObjectModel: {
usageType: {
serviceQuality: #A,
sizeCategory: #XL,
dataClass: #TRANSACTIONAL
},
modelingPattern: #NONE,
sapObjectNodeType.name: 'ContrAcctgInvcgDocSource',
supportedCapabilities: [
#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#EXTRACTION_DATA_SOURCE
]
}
@Metadata.ignorePropagatedAnnotations: true
define view entity I_CAInvcgDocSource
as select from dfkkinvdoc_s
association [1..1] to I_CAInvcgDocHeader as _CAInvcgDocHeader on $projection.CAInvoicingDocument = _CAInvcgDocHeader.CAInvoicingDocument
association [0..1] to I_CAInvcgSourceDocCat as _CAInvcgSourceDocCat on $projection.CAInvcgSourceDocumentCat = _CAInvcgSourceDocCat.CAInvcgSourceDocumentCat
association [0..1] to I_CAInvcgSourceDocType as _CAInvcgSourceDocType on $projection.CAInvcgSourceDocumentType = _CAInvcgSourceDocType.CAInvcgSourceDocumentType
and $projection.CAInvcgSourceDocumentCat = _CAInvcgSourceDocType.CAInvcgSourceDocumentCat
association [0..1] to I_CAApplicationArea as _CAApplicationArea on $projection.CAApplicationArea = _CAApplicationArea.CAApplicationArea
association [0..1] to I_CAInvcgDocHeader as _CAInvcgReversalDocument on $projection.CAInvcgReversalDocument = _CAInvcgReversalDocument.CAInvoicingDocument
association [0..1] to I_CAInvcgDocHeader as _CAInvcgReversedDocument on $projection.CAInvcgReversedDocument = _CAInvcgReversedDocument.CAInvoicingDocument
{
@ObjectModel.foreignKey.association: '_CAInvcgSourceDocCat'
key cast(srcdoccat as srcdoccat_gfn_kk preserving type) as CAInvcgSourceDocumentCat,
key cast(srcdocno as srcdocno_gfn_kk preserving type) as CAInvcgSourceDocumentNumber,
@ObjectModel.foreignKey.association: '_CAInvcgDocHeader'
key invdocno as CAInvoicingDocument,
@ObjectModel.foreignKey.association: '_CAInvcgSourceDocType'
srcdoctype as CAInvcgSourceDocumentType,
log_system as LogicalSystem,
@ObjectModel.foreignKey.association: '_CAApplicationArea'
applk as CAApplicationArea,
invoiced as CAInvcgIsDocumentPosted,
simulated as CAInvcgIsDocumentSimulated,
cast(preliminary as inv_preliminary_gfn_kk preserving type) as CAInvcgIsDocumentPreliminary,
@ObjectModel.foreignKey.association: '_CAInvcgReversalDocument'
cast(reversaldoc as inv_reversaldoc_gfn_kk preserving type) as CAInvcgReversalDocument,
@ObjectModel.foreignKey.association: '_CAInvcgReversedDocument'
cast(reverseddoc as inv_reverseddoc_gfn_kk preserving type) as CAInvcgReversedDocument,
@Semantics.systemDate.createdAt: true
crdate as CAInvcgCreationDate,
@Semantics.systemTime.createdAt: true
crtime as CAInvcgCreationTime,
_CAInvcgSourceDocCat,
_CAInvcgSourceDocType,
_CAApplicationArea,
_CAInvcgReversalDocument,
_CAInvcgReversedDocument,
_CAInvcgDocHeader
}