C_SlsSchedgAgrmtItmVH

DDL: C_SLSSCHEDGAGRMTITMVH Type: view CONSUMPTION

Sales Scheduling Agreement Item

C_SlsSchedgAgrmtItmVH is a Consumption CDS View that provides data about "Sales Scheduling Agreement Item" in SAP S/4HANA. It reads from 1 data source (I_SalesSchedgAgrmtItem) and exposes 12 fields with key fields SalesSchedulingAgreement, SalesSchedulingAgreementItem. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SalesSchedgAgrmtItem I_SalesSchedgAgrmtItem from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SalesSchedgAgrmt _SlsSchedgAgrmt $projection.SalesSchedulingAgreement = _SlsSchedgAgrmt.SalesSchedulingAgreement

Annotations (15)

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

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SalesSchedulingAgreement SalesSchedulingAgreement Sales Document
KEY SalesSchedulingAgreementItem SalesSchedulingAgreementItem Item
SalesSchedgAgrmtType _SlsSchedgAgrmt SalesSchedgAgrmtType
SalesOrganization _SlsSchedgAgrmt SalesOrganization Sales Organization
DistributionChannel _SlsSchedgAgrmt DistributionChannel RefDistCh-Cust/Mat.
OrganizationDivision _SlsSchedgAgrmt OrganizationDivision Org. Division
Product Product Product Sold
MaterialByCustomer MaterialByCustomer Customer Mat.
_Product _Product
_ProductText _ProductText
_SlsSchedgAgrmt _SlsSchedgAgrmt
_SalesSchedgAgrmtType _SlsSchedgAgrmt _SalesSchedgAgrmtType

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_SlsSchedgAgrmtItmVH.
-- 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.

CREATE VIEW C_SlsSchedgAgrmtItmVH AS
SELECT
  SalesSchedulingAgreement,
  SalesSchedulingAgreementItem,
  _SlsSchedgAgrmt.SalesSchedgAgrmtType AS SalesSchedgAgrmtType,
  _SlsSchedgAgrmt.SalesOrganization AS SalesOrganization,
  _SlsSchedgAgrmt.DistributionChannel AS DistributionChannel,
  _SlsSchedgAgrmt.OrganizationDivision AS OrganizationDivision,
  Product,
  MaterialByCustomer,
  _SlsSchedgAgrmt._SalesSchedgAgrmtType AS _SalesSchedgAgrmtType
FROM I_SalesSchedgAgrmtItem
LEFT OUTER JOIN I_SalesSchedgAgrmt AS _SlsSchedgAgrmt ON SalesSchedulingAgreement = _SlsSchedgAgrmt.SalesSchedulingAgreement  -- association [1..1]
;