I_PurgDocTypeShipgData

DDL: I_PURGDOCTYPESHIPGDATA SQL: ISHIPPINGSTK Type: view BASIC

Shipping Stock Data

I_PurgDocTypeShipgData is a Basic CDS View (Dimension) that provides data about "Shipping Stock Data" in SAP S/4HANA. It reads from 1 data source (t161v) and exposes 4 fields with key fields PurchasingDocumentCategory, PurchasingDocumentType, SupplyingPlant.

Data Sources (1)

SourceAliasJoin Type
t161v t161v from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISHIPPINGSTK view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PurchasingDocumentCategory view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Shipping Stock Data view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentCategory t161v bstyp Source doc.cat.
KEY PurchasingDocumentType t161v bsart Stnd purch.ord.
KEY SupplyingPlant t161v reswk Supplying Plant
DeliveryType t161v lblfa Del. Type f. SC

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_PurgDocTypeShipgData.
-- 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: ISHIPPINGSTK

CREATE VIEW I_PurgDocTypeShipgData AS
SELECT
  t161v.bstyp AS PurchasingDocumentCategory,
  t161v.bsart AS PurchasingDocumentType,
  t161v.reswk AS SupplyingPlant,
  t161v.lblfa AS DeliveryType
FROM t161v
;