I_MM_SalesOrderValueHelp

DDL: I_MM_SALESORDERVALUEHELP SQL: IMMSLSORD_VH Type: view COMPOSITE

Sales Order Value Help

I_MM_SalesOrderValueHelp is a Composite CDS View that provides data about "Sales Order Value Help" in SAP S/4HANA. It reads from 1 data source (I_SalesDocument) and exposes 8 fields with key field SalesOrder.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocument SalesOrder from

Annotations (15)

NameValueLevelField
VDM.viewType #COMPOSITE view
EndUserText.label Sales Order Value Help view
AbapCatalog.sqlViewName IMMSLSORD_VH view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey SalesOrder view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view
Search.searchable true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder I_SalesDocument SalesDocument SD Document
CreatedByUser I_SalesDocument CreatedByUser User Name
ValidityStartDate I_SalesDocument AgrmtValdtyStartDate
ValidityEndDate I_SalesDocument AgrmtValdtyEndDate
SalesOrganization I_SalesDocument SalesOrganization Sales Organization
SalesDocumentType I_SalesDocument SalesDocumentType Sales Doc. Type
OrganizationDivision I_SalesDocument OrganizationDivision Org. Division
DistributionChannel I_SalesDocument DistributionChannel RefDistCh-Cust/Mat.

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_MM_SalesOrderValueHelp.
-- 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: IMMSLSORD_VH

CREATE VIEW I_MM_SalesOrderValueHelp AS
SELECT
  SalesOrder.SalesDocument AS SalesOrder,
  SalesOrder.CreatedByUser AS CreatedByUser,
  SalesOrder.AgrmtValdtyStartDate AS ValidityStartDate,
  SalesOrder.AgrmtValdtyEndDate AS ValidityEndDate,
  SalesOrder.SalesOrganization AS SalesOrganization,
  SalesOrder.SalesDocumentType AS SalesDocumentType,
  SalesOrder.OrganizationDivision AS OrganizationDivision,
  SalesOrder.DistributionChannel AS DistributionChannel
FROM I_SalesDocument AS SalesOrder
;