P_CnsldtnTskDocTypeDtaColl

DDL: P_CNSLDTNTSKDOCTYPEDTACOLL Type: view BASIC

P_CnsldtnTskDocTypeDtaColl is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_CnsldtnVersion, tf572) and exposes 4 fields with key fields ConsolidationTask, ConsolidationVersion, CnsldtnDocTypeSequenceValue.

Data Sources (2)

SourceAliasJoin Type
I_CnsldtnVersion _Version inner
tf572 tf572 from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PCSTSKDOCDCASGN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationTask tf572 cacti Task
KEY ConsolidationVersion I_CnsldtnVersion ConsolidationVersion Version
KEY CnsldtnDocTypeSequenceValue tf572 seqnr Tank ID
ConsolidationDocumentType tf572 docty Document Type

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 P_CnsldtnTskDocTypeDtaColl.
-- 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.

CREATE VIEW P_CnsldtnTskDocTypeDtaColl AS
SELECT
  tf572.cacti AS ConsolidationTask,
  _Version.ConsolidationVersion AS ConsolidationVersion,
  tf572.seqnr AS CnsldtnDocTypeSequenceValue,
  tf572.docty AS ConsolidationDocumentType
FROM tf572
INNER JOIN I_CnsldtnVersion AS _Version ON /* join condition not captured in parsed metadata */
;