C_ArbErp_ConfIn_ScheduleLine

DDL: C_ARBERP_CONFIN_SCHEDULELINE SQL: CARBCONFIN_SHED Type: view CONSUMPTION

CDS View of purchase order schedule lines for ORDR OUT

C_ArbErp_ConfIn_ScheduleLine is a Consumption CDS View that provides data about "CDS View of purchase order schedule lines for ORDR OUT" in SAP S/4HANA. It reads from 1 data source (I_PurgDocScheduleLine) and exposes 6 fields with key fields PurchasingDocument, PurchasingDocumentItem, ScheduleLine.

Data Sources (1)

SourceAliasJoin Type
I_PurgDocScheduleLine I_PurgDocScheduleLine from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName CARBCONFIN_SHED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label CDS View of purchase order schedule lines for ORDR OUT view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
KEY ScheduleLine ScheduleLine Schedule Line
ScheduleLineDeliveryDate ScheduleLineDeliveryDate Delivery Date
ScheduleLineOrderQuantity ScheduleLineOrderQuantity Scheduled Qty
ScheduleLineDeliveryTime ScheduleLineDeliveryTime Time

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_ArbErp_ConfIn_ScheduleLine.
-- 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: CARBCONFIN_SHED

CREATE VIEW C_ArbErp_ConfIn_ScheduleLine AS
SELECT
  PurchasingDocument,
  PurchasingDocumentItem,
  ScheduleLine,
  ScheduleLineDeliveryDate,
  ScheduleLineOrderQuantity,
  ScheduleLineDeliveryTime
FROM I_PurgDocScheduleLine
;