P_SerialNumberProfileProcedure

DDL: P_SERIALNUMBERPROFILEPROCEDURE Type: view_entity COMPOSITE

P_SerialNumberProfileProcedure is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_ProductPlant, I_SerialNumberProfileProcedure) and exposes 5 fields with key fields Product, Plant, SerialNumberProcedure.

Data Sources (2)

SourceAliasJoin Type
I_ProductPlant _ProductPlant from
I_SerialNumberProfileProcedure _SerialNumberProfileProcedure inner

Annotations (3)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Product I_ProductPlant Product Product Sold
KEY Plant I_ProductPlant Plant Valuation Area
KEY SerialNumberProcedure I_SerialNumberProfileProcedure SerialNumberProcedure SerialProcedure
SerialNumberProfile I_ProductPlant SerialNumberProfile SerialNoProfile
SerialNumberUsageInAssignment I_SerialNumberProfileProcedure SerialNumberUsageInAssignment SerialNo usage

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_SerialNumberProfileProcedure.
-- 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_SerialNumberProfileProcedure AS
SELECT
  _ProductPlant.Product AS Product,
  _ProductPlant.Plant AS Plant,
  _SerialNumberProfileProcedure.SerialNumberProcedure AS SerialNumberProcedure,
  _ProductPlant.SerialNumberProfile AS SerialNumberProfile,
  _SerialNumberProfileProcedure.SerialNumberUsageInAssignment AS SerialNumberUsageInAssignment
FROM I_ProductPlant AS _ProductPlant
INNER JOIN I_SerialNumberProfileProcedure AS _SerialNumberProfileProcedure ON /* join condition not captured in parsed metadata */
;