P_OthSubcontrgRqmt

DDL: P_OTHSUBCONTRGRQMT SQL: POTHSUBCONREQ Type: view CONSUMPTION Package: ODATA_MM_PUR_SUBCONTRG_COCKPIT

Other Subcontrating Requirement

P_OthSubcontrgRqmt is a Consumption CDS View that provides data about "Other Subcontrating Requirement" in SAP S/4HANA. Part of development package ODATA_MM_PUR_SUBCONTRG_COCKPIT.

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName POTHSUBCONREQ view
VDM.private true view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Other Subcontrating Requirement view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY Supplier Supplier Supplier
OtherPORequirement _OthSubcontrgPurOrdTot OtherPORequirement
OtherPRRequirement _OthSubcontrgPurReqnTot OtherPRRequirement
OtherSARequirement _OthSchedgAgrmtTot OtherSARequirement
RequirementOtherQty

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_OthSubcontrgRqmt.
-- 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: POTHSUBCONREQ

CREATE VIEW P_OthSubcontrgRqmt AS
SELECT
  Material,
  Plant,
  Supplier,
  _OthSubcontrgPurOrdTot.OtherPORequirement AS OtherPORequirement,
  _OthSubcontrgPurReqnTot.OtherPRRequirement AS OtherPRRequirement,
  _OthSchedgAgrmtTot.OtherSARequirement AS OtherSARequirement,
  _OthSubcontrgPurOrdTot.OtherPORequirement + _OthSubcontrgPurReqnTot.OtherPRRequirement AS RequirementOtherQty
;