M_V_EBAN_EOP

DDL: M_V_EBAN_EOP SQL: M_VEBAN_EOP Type: view

Relevant fields with for setting the EOP-Flag in EBAN

M_V_EBAN_EOP is a CDS View that provides data about "Relevant fields with for setting the EOP-Flag in EBAN" in SAP S/4HANA. It reads from 3 data sources (eban, t001k, t001w) and exposes 8 fields.

Data Sources (3)

SourceAliasJoin Type
eban eban from
t001k t001k inner
t001w t001w inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName M_VEBAN_EOP view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Relevant fields with for setting the EOP-Flag in EBAN view

Fields (8)

KeyFieldSource TableSource FieldDescription
banfn eban banfn Requisition
iseopblocked eban iseopblocked Business Usage Comp.
kunnr eban kunnr Stock customer
flief eban flief Fixed Vendor
lifnr eban lifnr Vendor no.
emlif eban emlif Supplier
mfrnr eban mfrnr Manufacturer
bukrs t001k bukrs Value

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_EBAN_EOP.
-- 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: M_VEBAN_EOP

CREATE VIEW M_V_EBAN_EOP AS
SELECT
  eban.banfn AS banfn,
  eban.iseopblocked AS iseopblocked,
  eban.kunnr AS kunnr,
  eban.flief AS flief,
  eban.lifnr AS lifnr,
  eban.emlif AS emlif,
  eban.mfrnr AS mfrnr,
  t001k.bukrs AS bukrs
FROM eban
INNER JOIN t001w ON /* join condition not captured in parsed metadata */
INNER JOIN t001k ON /* join condition not captured in parsed metadata */
;