C_ScheduleAgreementVH

DDL: C_SCHEDULEAGREEMENTVH SQL: CSCHAGRMTVH Type: view CONSUMPTION

Purchase Scheduling Agreement

C_ScheduleAgreementVH is a Consumption CDS View that provides data about "Purchase Scheduling Agreement" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocument) and exposes 6 fields with key field SchedulingAgreement.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingDocument I_PurchasingDocument from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CSCHAGRMTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey SchedulingAgreement view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Purchase Scheduling Agreement view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SchedulingAgreement I_PurchasingDocument PurchasingDocument Scheduling Agreement
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingGroup PurchasingGroup Purchasing Group
CompanyCode CompanyCode Company Code
Supplier Supplier Supplier
PurchasingDocumentType PurchasingDocumentType Purchasing Document Type

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 C_ScheduleAgreementVH.
-- 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: CSCHAGRMTVH

CREATE VIEW C_ScheduleAgreementVH AS
SELECT
  I_PurchasingDocument.PurchasingDocument AS SchedulingAgreement,
  PurchasingOrganization,
  PurchasingGroup,
  CompanyCode,
  Supplier,
  PurchasingDocumentType
FROM I_PurchasingDocument
;