P_ABOPFieldCatalogSTO

DDL: P_ABOPFIELDCATALOGSTO SQL: PABOPFCSTO Type: view BASIC Package: ATP_BOP_SETUP_VDM

ABOP Field Catalog for STO

P_ABOPFieldCatalogSTO is a Basic CDS View that provides data about "ABOP Field Catalog for STO" in SAP S/4HANA. It reads from 1 data source (I_StockTransptOrdScheduleLine) and exposes 26 fields with key fields ATPRelevantDocument, ATPRelevantDocumentItem, ATPRelevantDocScheduleLine, ATPRelevantDocumentCategory. Part of development package ATP_BOP_SETUP_VDM.

Data Sources (1)

SourceAliasJoin Type
I_StockTransptOrdScheduleLine I_StockTransptOrdScheduleLine from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PABOPFCSTO view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY ATPRelevantDocument PurchaseOrder Purchasing Document
KEY ATPRelevantDocumentItem
KEY ATPRelevantDocScheduleLine ScheduleLine Schedule Line
KEY ATPRelevantDocumentCategory
PurchaseOrderType _StockTransportOrder PurchaseOrderType PO Type
PurchaseOrderSubType _StockTransportOrder PurchaseOrderSubtype Control
Material _StockTransportOrderItem Material Vehicle Model
SupplyingPlant _StockTransportOrder SupplyingPlant Supplying Plant
StorageLocation _StockTransportOrderItem IssuingStorageLocation Iss. Stor. Loc.
Batch Batch Lot No.
RequestedDeliveryDate ScheduleLineDeliveryDate Delivery Date
CreatedByUser _StockTransportOrder CreatedByUser User Name
OrderCreationDate _StockTransportOrder CreationDate Time Stamp
SoldToParty
SalesOrganization
DistributionChannel
OrganizationDivision
PurchasingOrganization _StockTransportOrder PurchasingOrganization Purchasing Organization
PurchasingGroup _StockTransportOrder PurchasingGroup Purchasing Group
Supplier _StockTransportOrder Supplier Supplier
MaterialGroup _StockTransportOrderItem MaterialGroup Product Group
ShippingCondition
ShippingPoint
DeliveryPriority
DeliveryDateQuantityIsFixed
ScheduleLineIsFixed ScheduleLineIsFixed Fixing Ind.

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 P_ABOPFieldCatalogSTO.
-- 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: PABOPFCSTO

CREATE VIEW P_ABOPFieldCatalogSTO AS
SELECT
  PurchaseOrder AS ATPRelevantDocument,
  concat('0', PurchaseOrderItem ) AS ATPRelevantDocumentItem,
  ScheduleLine AS ATPRelevantDocScheduleLine,
  cast('U1'as atpcat) AS ATPRelevantDocumentCategory,
  _StockTransportOrder.PurchaseOrderType AS PurchaseOrderType,
  _StockTransportOrder.PurchaseOrderSubtype AS PurchaseOrderSubType,
  _StockTransportOrderItem.Material AS Material,
  _StockTransportOrder.SupplyingPlant AS SupplyingPlant,
  _StockTransportOrderItem.IssuingStorageLocation AS StorageLocation,
  Batch,
  ScheduleLineDeliveryDate AS RequestedDeliveryDate,
  _StockTransportOrder.CreatedByUser AS CreatedByUser,
  _StockTransportOrder.CreationDate AS OrderCreationDate,
  _StockTransportOrderItem._StockTransportShipping.SoldToParty AS SoldToParty,
  _StockTransportOrderItem._StockTransportShipping.SalesOrganization AS SalesOrganization,
  _StockTransportOrderItem._StockTransportShipping.DistributionChannel AS DistributionChannel,
  _StockTransportOrderItem._StockTransportShipping.OrganizationDivision AS OrganizationDivision,
  _StockTransportOrder.PurchasingOrganization AS PurchasingOrganization,
  _StockTransportOrder.PurchasingGroup AS PurchasingGroup,
  _StockTransportOrder.Supplier AS Supplier,
  _StockTransportOrderItem.MaterialGroup AS MaterialGroup,
  _StockTransportOrderItem._StockTransportShipping.ShippingCondition AS ShippingCondition,
  _StockTransportOrderItem._StockTransportShipping.ShippingPoint AS ShippingPoint,
  _StockTransportOrderItem._StockTransportShipping.DeliveryPriority AS DeliveryPriority,
  '' AS DeliveryDateQuantityIsFixed,
  ScheduleLineIsFixed
FROM I_StockTransptOrdScheduleLine
;