I_ScheduleAgreementExists

DDL: I_SCHEDULEAGREEMENTEXISTS SQL: ISCHDAGRMNTEXIST Type: view BASIC Package: ODATA_PP_MRP

View for MRPCov to check if SchedAgmnt for a Material exists

I_ScheduleAgreementExists is a Basic CDS View that provides data about "View for MRPCov to check if SchedAgmnt for a Material exists" in SAP S/4HANA. It reads from 2 data sources (ekko, ekpo) and exposes 2 fields with key fields Plant, Material. Part of development package ODATA_PP_MRP.

Data Sources (2)

SourceAliasJoin Type
ekko ekko from
ekpo ekpo inner

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISCHDAGRMNTEXIST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label View for MRPCov to check if SchedAgmnt for a Material exists view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Plant ekpo werks Receiving Plant
KEY Material ekpo matnr Vehicle Model

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_ScheduleAgreementExists.
-- 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: ISCHDAGRMNTEXIST

CREATE VIEW I_ScheduleAgreementExists AS
SELECT
  ekpo.werks AS Plant,
  ekpo.matnr AS Material
FROM ekko
INNER JOIN ekpo ON /* join condition not captured in parsed metadata */
;