I_AlignSlsOrdAcctAssgdSl

DDL: I_ALIGNSLSORDACCTASSGDSL SQL: IALIGNSLSAASCHE Type: view BASIC

Sales Order Schedule line data

I_AlignSlsOrdAcctAssgdSl is a Basic CDS View that provides data about "Sales Order Schedule line data" in SAP S/4HANA. It reads from 2 data sources (I_SalesDocumentScheduleLine, I_AlignSalesSchedLineCat) and exposes 5 fields with key fields SalesDocument, SalesDocumentItem, ScheduleLine.

Data Sources (2)

SourceAliasJoin Type
I_SalesDocumentScheduleLine _Schedule from
I_AlignSalesSchedLineCat _ScheduleCategory inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IALIGNSLSAASCHE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Sales Order Schedule line data view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
AbapCatalog.preserveKey true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item
KEY ScheduleLine ScheduleLine Schedule Line
ScheduleLineCategory I_SalesDocumentScheduleLine ScheduleLineCategory Sched.Line Cat.
SalesAccountAssignmentType I_AlignSalesSchedLineCat SalesAccountAssignmentType

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_AlignSlsOrdAcctAssgdSl.
-- 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: IALIGNSLSAASCHE

CREATE VIEW I_AlignSlsOrdAcctAssgdSl AS
SELECT
  SalesDocument,
  SalesDocumentItem,
  ScheduleLine,
  _Schedule.ScheduleLineCategory AS ScheduleLineCategory,
  _ScheduleCategory.SalesAccountAssignmentType AS SalesAccountAssignmentType
FROM I_SalesDocumentScheduleLine AS _Schedule
INNER JOIN I_AlignSalesSchedLineCat AS _ScheduleCategory ON /* join condition not captured in parsed metadata */
;