I_ProdPlantPlndIndepRqmtBasic

DDL: I_PRODPLANTPLNDINDEPRQMTBASIC SQL: IPPIRMB Type: view BASIC Package: PPH_FORECAST_DEMAND_MASS

Plnd indp Rqmt Prod & Stratergy

I_ProdPlantPlndIndepRqmtBasic is a Basic CDS View that provides data about "Plnd indp Rqmt Prod & Stratergy" in SAP S/4HANA. It reads from 2 data sources (P_ProdPlantPlndIndepRqmtBasic, t461s) and exposes 8 fields with key fields Product, Plant. Part of development package PPH_FORECAST_DEMAND_MASS.

Data Sources (2)

SourceAliasJoin Type
P_ProdPlantPlndIndepRqmtBasic p_mara from
t461s t461s inner

Annotations (9)

NameValueLevelField
EndUserText.label Plnd indp Rqmt Prod & Stratergy view
AbapCatalog.sqlViewName IPPIRMB view
VDM.private false view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Product P_ProdPlantPlndIndepRqmtBasic Product Product Sold
KEY Plant P_ProdPlantPlndIndepRqmtBasic Plant Valuation Area
PlndIndepRqmtType t461s bedvp ReqType IndReq.
PeriodType P_ProdPlantPlndIndepRqmtBasic PeriodType PeriodIndicator
UnitOfMeasure P_ProdPlantPlndIndepRqmtBasic UnitOfMeasure Unit Protected Qty
ProductName P_ProdPlantPlndIndepRqmtBasic ProductName Description
MRPController P_ProdPlantPlndIndepRqmtBasic MRPController MRP Controller
PlanningStrategyGroup P_ProdPlantPlndIndepRqmtBasic Strategy_Group

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 I_ProdPlantPlndIndepRqmtBasic.
-- 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: IPPIRMB

CREATE VIEW I_ProdPlantPlndIndepRqmtBasic AS
SELECT
  p_mara.Product AS Product,
  p_mara.Plant AS Plant,
  t461s.bedvp AS PlndIndepRqmtType,
  p_mara.PeriodType AS PeriodType,
  p_mara.UnitOfMeasure AS UnitOfMeasure,
  p_mara.ProductName AS ProductName,
  p_mara.MRPController AS MRPController,
  p_mara.Strategy_Group AS PlanningStrategyGroup
FROM P_ProdPlantPlndIndepRqmtBasic AS p_mara
INNER JOIN t461s ON /* join condition not captured in parsed metadata */
;