P_SrvcMgmtRjcnPrflAssignment

DDL: P_SRVCMGMTRJCNPRFLASSIGNMENT Type: view_entity COMPOSITE

P_SrvcMgmtRjcnPrflAssignment is a Composite CDS View in SAP S/4HANA. It reads from 3 data sources (I_ServiceDocumentType, I_SalesOrganization, I_SrvcMgmtRjcnPrflAssignment) and exposes 5 fields with key fields ServiceDocumentType, SalesOrganization, ServiceDocumentType, SalesOrganization, SrvcRejectionReasonProfile.

Data Sources (3)

SourceAliasJoin Type
I_ServiceDocumentType a union_all
I_SalesOrganization b cross
I_SrvcMgmtRjcnPrflAssignment I_SrvcMgmtRjcnPrflAssignment from

Annotations (4)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentType ServiceDocumentType Transaction Type
KEY SalesOrganization SalesOrganization Sales Organization
KEY ServiceDocumentType Transaction Type
KEY SalesOrganization I_SalesOrganization SalesOrganization Sales Organization
KEY SrvcRejectionReasonProfile c2 SrvcRejectionReasonProfile Rejection Profile

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_SrvcMgmtRjcnPrflAssignment.
-- 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_SrvcMgmtRjcnPrflAssignment AS
SELECT
  ServiceDocumentType,
  SalesOrganization,
  c2.SrvcRejectionReasonProfile AS SrvcRejectionReasonProfile
FROM I_SrvcMgmtRjcnPrflAssignment
CROSS JOIN I_SalesOrganization AS b
-- UNION ALL with additional select branch(es): I_ServiceDocumentType
;