C_SlsDocScheduleLineCatDetnVH

DDL: C_SLSDOCSCHEDULELINECATDETNVH Type: view CONSUMPTION

Schedule Line Category Determination

C_SlsDocScheduleLineCatDetnVH is a Consumption CDS View that provides data about "Schedule Line Category Determination" in SAP S/4HANA. It reads from 10 data sources and exposes 42 fields with key fields SalesDocumentItemCategory, MRPType, ScheduleLineCategory, MRPType, ScheduleLineCategory. It has 1 association to related views.

Data Sources (10)

SourceAliasJoin Type
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn from
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn union
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn union
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn union
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn union
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn union
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn union
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn union
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn union
I_ScheduleLineCategoryDetn I_ScheduleLineCategoryDetn union

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ScheduleLineCategoryText _Text $projection.ScheduleLineCategory = _Text.ScheduleLineCategory

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName CSLINECATDETNVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.authorizationCheck #NOT_REQUIRED view
Consumption.valueHelpDefault.fetchValues #AUTOMATICALLY_WHEN_DISPLAYED view
Consumption.ranked true view
EndUserText.label Schedule Line Category Determination view

Fields (42)

KeyFieldSource TableSource FieldDescription
KEY SalesDocumentItemCategory SalesDocumentItemCategory Item Category
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
KEY MRPType MRPType MRP Type
KEY ScheduleLineCategory ManSchedLineCat
ScheduleLineCategoryName
_ItemCategory _ItemCategory
_MRPType _MRPType

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_SlsDocScheduleLineCatDetnVH.
-- 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_SlsDocScheduleLineCatDetnVH AS
SELECT
  SalesDocumentItemCategory,
  MRPType,
  cast( ScheduleLineCategory as ettyp preserving type ) AS ScheduleLineCategory,
  _Text[1: Language=$session.system_language].ScheduleLineCategoryName AS ScheduleLineCategoryName
FROM I_ScheduleLineCategoryDetn
LEFT OUTER JOIN I_ScheduleLineCategoryText AS _Text ON ScheduleLineCategory = _Text.ScheduleLineCategory  -- association [0..*]
-- UNION with additional select branch(es): I_ScheduleLineCategoryDetn
;