M_V_Inforecord_Sos_B

DDL: M_V_INFORECORD_SOS_B SQL: CDS_M_IR_SOS_B Type: view Package: APPL_MM_PUR_SOS

MM-PUR: Basic CDS View for SOS

M_V_Inforecord_Sos_B is a CDS View that provides data about "MM-PUR: Basic CDS View for SOS" in SAP S/4HANA. It reads from 13 data sources and exposes 35 fields. Part of development package APPL_MM_PUR_SOS.

Data Sources (13)

SourceAliasJoin Type
eina eina inner
eina eina inner
eine eine from
eine eine union_all
lfa1 lfa1 inner
lfa1 lfa1 inner
lfm1 lfm1 inner
lfm1 lfm1 inner
mara mara left_outer
nsdm_e_marc marc left_outer
nsdm_e_marc marc left_outer
t024w t024w left_outer
t024w t024w left_outer

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName CDS_M_IR_SOS_B view
AccessControl.authorizationCheck #CHECK view
EndUserText.label MM-PUR: Basic CDS View for SOS view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (35)

KeyFieldSource TableSource FieldDescription
matnr eina matnr Vehicle Model
ematn eina matnr Vehicle Model
werks t024w werks Receiving Plant
vdatu eina lifab Available from
lifnr eina lifnr Vendor no.
aut_source eine aut_source Auto. Sourcing
netpr eine netpr Price
waers eine waers Transaction Currency
peinh eine peinh Unit of measure
infnr eina infnr Info Record
ekorg eine ekorg Purchasing Org.
esokz eine esokz Infotype
ekgrp eine ekgrp Sub. purchasing grp
webaz nsdm_e_marc webaz GR Proc. Time
plifz eine aplfz Pl. Deliv. Time
verid eine verid Version ID
rdprf eine rdprf Rounding Prfl.
bmatnasmatnr
ematn eina matnr Vehicle Model
werks t024w werks Receiving Plant
vdatu eina lifab Available from
lifnr eina lifnr Vendor no.
aut_source eine aut_source Auto. Sourcing
netpr eine netpr Price
waers eine waers Transaction Currency
peinh eine peinh Unit of measure
infnr eina infnr Info Record
ekorg eine ekorg Purchasing Org.
esokz eine esokz Infotype
ekgrp eine ekgrp Sub. purchasing grp
webaz nsdm_e_marc webaz GR Proc. Time
plifz eine aplfz Pl. Deliv. Time
verid eine verid Version ID
rdprf eine rdprf Rounding Prfl.
matkl eina matkl Product Sold 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 M_V_Inforecord_Sos_B.
-- 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: CDS_M_IR_SOS_B

CREATE VIEW M_V_Inforecord_Sos_B AS
SELECT
  eina.matnr AS matnr,
  eina.matnr AS ematn,
  t024w.werks AS werks,
  eina.lifab AS vdatu,
  eina.lifnr AS lifnr,
  eine.aut_source AS aut_source,
  eine.netpr AS netpr,
  eine.waers AS waers,
  eine.peinh AS peinh,
  eina.infnr AS infnr,
  eine.ekorg AS ekorg,
  eine.esokz AS esokz,
  eine.ekgrp AS ekgrp,
  marc.webaz AS webaz,
  eine.aplfz AS plifz,
  eine.verid AS verid,
  eine.rdprf AS rdprf,
  eina.matkl as matkl AS bmatnasmatnr,
  eina.matkl AS matkl
FROM eine
INNER JOIN eina ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN t024w ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN nsdm_e_marc AS marc ON /* join condition not captured in parsed metadata */
INNER JOIN lfa1 ON /* join condition not captured in parsed metadata */
INNER JOIN lfm1 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN mara ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): eine
;