pph_e_Resb_agg_2

DDL: PPH_DDL_RESB_AGG_2 SQL: V_PPH_RESB_AGG_2 Type: view

pph_e_Resb_agg_2 is a CDS View in SAP S/4HANA. It reads from 1 data source (pph_e_Resb_agg_1) and exposes 36 fields.

Data Sources (1)

SourceAliasJoin Type
pph_e_Resb_agg_1 pph_e_Resb_agg_1 from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName V_PPH_RESB_AGG_2 view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #AUTOMATED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

Fields (36)

KeyFieldSource TableSource FieldDescription
MATNR MATNR Vehicle Model
WERKS WERKS Receiving Plant
DAT00 DAT00 Planned dates
SORT1 SORT1 Sort string 1
SORT2 SORT2 Sort string 2
DELKZ DELKZ MRP Elmnt Ind.
PLUMI PLUMI Plus/minus
mng01
mng03
DAT01 DAT01 Finish date
dat03
BAART BAART P.O./Order type
LGORT LGORT Sublocation
SERNR SERNR Serial Number
AUFVR AUFVR Source number
KNTTP KNTTP AcctAssgnCat:CC
VERTO VERTO Distribution
LIFNR LIFNR Vendor no.
VRPLA VRPLA W/o final assy
KZBWS KZBWS Valuation
DBSKZ DBSKZ Direct procure.
RESB_SHKZG RESB_SHKZG
RESB_DUMPS RESB_DUMPS
RESB_NO_DISP RESB_NO_DISP
RESB_SCHGT RESB_SCHGT
RESB_UMSOK RESB_UMSOK
vorab vorab Prelim. order
no_disp no_disp Res./Purc. req.
sobkz sobkz Special Stock
kzaus kzaus Share of scrap
nafkz nafkz FollowUp MatInd
sgt_scat sgt_scat Stock Segment
sgt_rcat sgt_rcat Req. Segment
knttp_db knttp_db
kzvbr_db kzvbr_db
kzbws_db kzbws_db

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 pph_e_Resb_agg_2.
-- 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: V_PPH_RESB_AGG_2

CREATE VIEW pph_e_Resb_agg_2 AS
SELECT
  MATNR,
  WERKS,
  DAT00,
  SORT1,
  SORT2,
  DELKZ,
  PLUMI,
  sum(MNG01) AS mng01,
  sum(MNG03) AS mng03,
  DAT01,
  max(DAT03) AS dat03,
  BAART,
  LGORT,
  SERNR,
  AUFVR,
  KNTTP,
  VERTO,
  LIFNR,
  VRPLA,
  KZBWS,
  DBSKZ,
  RESB_SHKZG,
  RESB_DUMPS,
  RESB_NO_DISP,
  RESB_SCHGT,
  RESB_UMSOK,
  vorab,
  no_disp,
  sobkz,
  kzaus,
  nafkz,
  sgt_scat,
  sgt_rcat,
  knttp_db,
  kzvbr_db,
  kzbws_db
FROM pph_e_Resb_agg_1
;