C_PL_CAExcessDelayAcctDataC
FICA Data for Excess Delay - Cube
C_PL_CAExcessDelayAcctDataC is a Consumption CDS View (Cube) that provides data about "FICA Data for Excess Delay - Cube" in SAP S/4HANA. It reads from 1 data source (I_CAOverdueDocItemAtDate) and exposes 26 fields with key fields CADocumentNumber, CABPItemNumber, CARepetitionItemNumber, CASubItemNumber, StatryRptgEntity. It has 2 associations to related views. Part of development package FKK_ID_PL_REP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CAOverdueDocItemAtDate | I_CAOverdueDocItemAtDate | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | fipl_keydate |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | P_BusinessPartnerDefaultAddr | _DefaultAddress | $projection.BusinessPartner = _DefaultAddress.BusinessPartner and ( _DefaultAddress.ValidityStartDate is null or _DefaultAddress.ValidityStartDate <= $parameters.P_KeyDate ) and( _DefaultAddress.ValidityEndDate is null or _DefaultAddress.ValidityEndDate > $parameters.P_KeyDate ) |
| [0..1] | I_CAStRpDocItmJournalLog | _log | operational.CADocumentNumber = _log.CADocumentNumber and operational.CARepetitionItemNumber = _log.CARepetitionItemNumber and operational.CASubItemNumber = _log.CASubItemNumber and operational.CABPItemNumber = _log.CABPItemNumber |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Analytics.internalName | #LOCAL | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_INCLUDED | view | |
| Analytics.dataCategory | #CUBE | view | |
| EndUserText.label | FICA Data for Excess Delay - Cube | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (26)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CADocumentNumber | operational | CADocumentNumber | Document Number |
| KEY | CABPItemNumber | operational | CABPItemNumber | Item |
| KEY | CARepetitionItemNumber | operational | CARepetitionItemNumber | Repetition Item |
| KEY | CASubItemNumber | operational | CASubItemNumber | Subitem |
| KEY | StatryRptgEntity | _log | StatryRptgEntity | Reporting Entity |
| KEY | StatryRptCategory | _log | StatryRptCategory | Report ID |
| KEY | StatryRptRunID | _log | StatryRptRunID | Report Run ID |
| KEY | BusinessPartnerAddressID | _DefaultAddress | BusinessPartnerAddressID | |
| CAClearingDocumentNumber | operational | CAClearingDocumentNumber | Clearing Doc. | |
| CADocumentType | operational | CADocumentType | Document Type | |
| CompanyCode | operational | CompanyCode | Receiver Company Code | |
| CAMainTransaction | operational | CAMainTransaction | Main Trans. | |
| CASubTransaction | operational | CASubTransaction | Subtransaction | |
| CAAmountInLocalCurrency | operational | CAAmountInLocalCurrency | Local Crcy Amt | |
| CompanyCodeCurrency | operational | CompanyCodeCurrency | Local Currency | |
| BusinessPartner | operational | BusinessPartner | Issuing Authority | |
| CAAmountInTransactionCurrency | operational | CAAmountInTransactionCurrency | Amount | |
| TransactionCurrency | operational | TransactionCurrency | Transaction Currency | |
| BusinessPartnerFullName | operational | BusinessPartnerFullName | Broker Name | |
| DocumentDate | operational | DocumentDate | Journal Entry Date | |
| CAPostingDate | operational | CAPostingDate | Posting Date | |
| CANetDueDate | operational | CANetDueDate | Net Due Date | |
| CAClearingDate | operational | CAClearingDate | Clearing | |
| CAReferenceDocument | operational | CAReferenceDocument | Reference | |
| CABPItemText | operational | CABPItemText | Text | |
| Country |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view C_PL_CAExcessDelayAcctDataC.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- Parameters: P_KeyDate : fipl_keydate
CREATE VIEW C_PL_CAExcessDelayAcctDataC AS
SELECT
operational.CADocumentNumber AS CADocumentNumber,
operational.CABPItemNumber AS CABPItemNumber,
operational.CARepetitionItemNumber AS CARepetitionItemNumber,
operational.CASubItemNumber AS CASubItemNumber,
_log.StatryRptgEntity AS StatryRptgEntity,
_log.StatryRptCategory AS StatryRptCategory,
_log.StatryRptRunID AS StatryRptRunID,
_DefaultAddress.BusinessPartnerAddressID AS BusinessPartnerAddressID,
operational.CAClearingDocumentNumber AS CAClearingDocumentNumber,
operational.CADocumentType AS CADocumentType,
operational.CompanyCode AS CompanyCode,
operational.CAMainTransaction AS CAMainTransaction,
operational.CASubTransaction AS CASubTransaction,
operational.CAAmountInLocalCurrency AS CAAmountInLocalCurrency,
operational.CompanyCodeCurrency AS CompanyCodeCurrency,
operational.BusinessPartner AS BusinessPartner,
operational.CAAmountInTransactionCurrency AS CAAmountInTransactionCurrency,
operational.TransactionCurrency AS TransactionCurrency,
operational.BusinessPartnerFullName AS BusinessPartnerFullName,
operational.DocumentDate AS DocumentDate,
operational.CAPostingDate AS CAPostingDate,
operational.CANetDueDate AS CANetDueDate,
operational.CAClearingDate AS CAClearingDate,
operational.CAReferenceDocument AS CAReferenceDocument,
operational.CABPItemText AS CABPItemText,
_DefaultAddress._AddressDefaultRepresentation.Country AS Country
FROM I_CAOverdueDocItemAtDate
LEFT OUTER JOIN P_BusinessPartnerDefaultAddr AS _DefaultAddress ON BusinessPartner = _DefaultAddress.BusinessPartner AND ( _DefaultAddress.ValidityStartDate is null OR _DefaultAddress.ValidityStartDate <= $parameters.P_KeyDate ) AND( _DefaultAddress.ValidityEndDate is null OR _DefaultAddress.ValidityEndDate > $parameters.P_KeyDate ) -- association [1..1]
LEFT OUTER JOIN I_CAStRpDocItmJournalLog AS _log ON operational.CADocumentNumber = _log.CADocumentNumber AND operational.CARepetitionItemNumber = _log.CARepetitionItemNumber AND operational.CASubItemNumber = _log.CASubItemNumber AND operational.CABPItemNumber = _log.CABPItemNumber -- association [0..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA