C_ProdCmplncSrvcReqSendData

DDL: C_PRODCMPLNCSRVCREQSENDDATA SQL: CPCSRSENDDATA Type: view CONSUMPTION Package: EHFND_SDSA_SERVICE_INTEGRATION

Service Request Send Data

C_ProdCmplncSrvcReqSendData is a Consumption CDS View that provides data about "Service Request Send Data" in SAP S/4HANA. It reads from 1 data source (I_PCSrvcReqSendData) and exposes 11 fields with key fields ProdCmplncServiceRequestUUID, PCDataIntegSet, PCDataIntegSetUUID. It has 2 associations to related views. It is exposed through 1 OData service (ASQL_F4295). Part of development package EHFND_SDSA_SERVICE_INTEGRATION.

Data Sources (1)

SourceAliasJoin Type
I_PCSrvcReqSendData I_PCSrvcReqSendData from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProdCmplncDataIntegSet _ProdCmplncDataIntegSet $projection.PCDataIntegSet = _ProdCmplncDataIntegSet.PCDataIntegSet
[0..*] I_PCDataIntegSetTypeText _PCDataIntegSetTypeText $projection.PCDataIntegSetType = _PCDataIntegSetTypeText.PCDataIntegSetType

Annotations (11)

NameValueLevelField
EndUserText.label Service Request Send Data view
AbapCatalog.sqlViewName CPCSRSENDDATA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F4295 ASQL_F4295 C2 NOT_RELEASED

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY ProdCmplncServiceRequestUUID ProdCmplncServiceRequestUUID Request ID
KEY PCDataIntegSet PCDataIntegSet Data Integration Set
KEY PCDataIntegSetUUID PCDataIntegSetUUID Data Set UUID
PCDataIntegSetReleaseDateTime PCDataIntegSetReleaseDateTime Release Date Time
PCDataIntegSetName
PCDataIntegSetType _ProdCmplncDataIntegSet PCDataIntegSetType Type of Exchanged Data
PCDataIntegSemNavigationObject
PCDataIntegSemNavigationAction
PCDataIntegSemNavgnKeyName
_PCDataIntegSetTypeText _PCDataIntegSetTypeText
_ProdCmplncDataIntegSet _ProdCmplncDataIntegSet

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_ProdCmplncSrvcReqSendData.
-- 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.
-- SQL view name: CPCSRSENDDATA

CREATE VIEW C_ProdCmplncSrvcReqSendData AS
SELECT
  ProdCmplncServiceRequestUUID,
  PCDataIntegSet,
  PCDataIntegSetUUID,
  PCDataIntegSetReleaseDateTime,
  _ProdCmplncDataIntegSet._text[1: Language = $session.system_language ].PCDataintegsetname AS PCDataIntegSetName,
  _ProdCmplncDataIntegSet.PCDataIntegSetType AS PCDataIntegSetType,
  cast( ' ' as pcdataintegsemnavigationobject preserving type ) AS PCDataIntegSemNavigationObject,
  cast( ' ' as pcdataintegsemnavigationaction preserving type ) AS PCDataIntegSemNavigationAction,
  cast( ' ' as pcdataintegsemnavgnkeyname preserving type ) AS PCDataIntegSemNavgnKeyName
FROM I_PCSrvcReqSendData
LEFT OUTER JOIN I_ProdCmplncDataIntegSet AS _ProdCmplncDataIntegSet ON PCDataIntegSet = _ProdCmplncDataIntegSet.PCDataIntegSet  -- association [0..1]
LEFT OUTER JOIN I_PCDataIntegSetTypeText AS _PCDataIntegSetTypeText ON PCDataIntegSetType = _PCDataIntegSetTypeText.PCDataIntegSetType  -- association [0..*]
;