P_CollsResubmissionNote

DDL: P_COLLSRESUBMISSIONNOTE Type: view COMPOSITE

P_CollsResubmissionNote is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_BusinessPartnerCustomer, I_CollectionsResubmission) and exposes 3 fields with key fields ResubmissionUUID, CollectionSegment. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_BusinessPartnerCustomer I_BusinessPartnerCustomer inner
I_CollectionsResubmission I_CollectionsResubmission from

Associations (2)

CardinalityTargetAliasCondition
[0..*] Sgbt_Nte_Cds_Cont _NoteContent $projection.ResubmissionUUID = _NoteContent.objectid and _NoteContent.objectnodetype = 'CollectionsResubmission' and _NoteContent.notetype = 'COLL_RSM_NOTE'
[0..1] I_Customer _Customer $projection.Customer = _Customer.Customer

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PCLLSRSMNTE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey CollectionSegment view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ResubmissionUUID ResubmissionUUID Resubmission Key
KEY CollectionSegment CollectionSegment Segment
Customer Customer Sold-to Party

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_CollsResubmissionNote.
-- 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_CollsResubmissionNote AS
SELECT
  ResubmissionUUID,
  CollectionSegment,
  Customer
FROM I_CollectionsResubmission
INNER JOIN I_BusinessPartnerCustomer ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Sgbt_Nte_Cds_Cont AS _NoteContent ON ResubmissionUUID = _NoteContent.objectid AND _NoteContent.objectnodetype = 'CollectionsResubmission' AND _NoteContent.notetype = 'COLL_RSM_NOTE'  -- association [0..*]
LEFT OUTER JOIN I_Customer AS _Customer ON Customer = _Customer.Customer  -- association [0..1]
;