P_SchedProdnAORIndustryType

DDL: P_SCHEDPRODNAORINDUSTRYTYPE SQL: PSCHAORINDUS Type: view COMPOSITE

P_SchedProdnAORIndustryType is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_SDMAreaOfResponsibility, I_MaterialPlant) and exposes 4 fields.

Data Sources (2)

SourceAliasJoin Type
I_SDMAreaOfResponsibility _AOR inner
I_MaterialPlant _MaterialPlant inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PSCHAORINDUS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
UserID I_SDMAreaOfResponsibility UserID User Name
Material I_MaterialPlant Material Vehicle Model
Plant I_MaterialPlant Plant Valuation Area
BillOfOperationsType _BomMaterialAssignment BillOfOperationsType Task List 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_SchedProdnAORIndustryType.
-- 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: PSCHAORINDUS

CREATE VIEW P_SchedProdnAORIndustryType AS
SELECT
  _AOR.UserID AS UserID,
  _MaterialPlant.Material AS Material,
  _MaterialPlant.Plant AS Plant,
  _BomMaterialAssignment.BillOfOperationsType AS BillOfOperationsType
INNER JOIN I_MaterialPlant AS _MaterialPlant ON /* join condition not captured in parsed metadata */
INNER JOIN I_SDMAreaOfResponsibility AS _AOR ON /* join condition not captured in parsed metadata */
;