ARun_ValAddedSrvcSTOItms

DDL: ARUN_VALADDEDSRVCSTOITMS Type: view

ARun_ValAddedSrvcSTOItms is a CDS View in SAP S/4HANA. It reads from 2 data sources (ARun_ValAddedSrvcSTOBsc, ARun_ValAddedSrvcSTOShipgInfo) and exposes 15 fields.

Data Sources (2)

SourceAliasJoin Type
ARun_ValAddedSrvcSTOBsc _ARunValAddedSrvcSTOBsc from
ARun_ValAddedSrvcSTOShipgInfo _ARunValAddedSrvcSTOShipgInfo inner

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #AUTOMATED view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.sqlViewName ARUNVASSTOITMS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view

Fields (15)

KeyFieldSource TableSource FieldDescription
RequirementType ARun_ValAddedSrvcSTOShipgInfo RequirementType RequirementType
PurchaseOrder ARun_ValAddedSrvcSTOShipgInfo PurchaseOrder Purchasing Document
PurchaseOrderItem ARun_ValAddedSrvcSTOShipgInfo ValAddedSrvcItemNumberInMM
ValAddedSrvcItemNumber ARun_ValAddedSrvcSTOShipgInfo PurchaseOrderItem Purchasing Document Item
Plant ARun_ValAddedSrvcSTOShipgInfo Plant Valuation Area
Material ARun_ValAddedSrvcSTOShipgInfo Material Vehicle Model
ValAddedSrvcHasToBeOrdered ARun_ValAddedSrvcSTOBsc fsh_req_rel Req Relevance
SoldToParty ARun_ValAddedSrvcSTOShipgInfo SoldToParty Sold-to Party
ShipToParty ARun_ValAddedSrvcSTOShipgInfo ShipToParty Ship-To Party (obsolete)
OrderType ARun_ValAddedSrvcSTOShipgInfo OrderType Order Type
SalesOrganization ARun_ValAddedSrvcSTOShipgInfo SalesOrganization Sales Organization
DistributionChannel ARun_ValAddedSrvcSTOShipgInfo DistributionChannel RefDistCh-Cust/Mat.
Division ARun_ValAddedSrvcSTOShipgInfo Division Internal Division ID
ShippingGroupNumber ARun_ValAddedSrvcSTOShipgInfo ShippingGroupNumber PSST Group
RequestedRqmtQtyInBaseUnit ARun_ValAddedSrvcSTOShipgInfo RequestedRqmtQtyInBaseUnit

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 ARun_ValAddedSrvcSTOItms.
-- 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 ARun_ValAddedSrvcSTOItms AS
SELECT
  _ARunValAddedSrvcSTOShipgInfo.RequirementType AS RequirementType,
  _ARunValAddedSrvcSTOShipgInfo.PurchaseOrder AS PurchaseOrder,
  _ARunValAddedSrvcSTOShipgInfo.ValAddedSrvcItemNumberInMM AS PurchaseOrderItem,
  _ARunValAddedSrvcSTOShipgInfo.PurchaseOrderItem AS ValAddedSrvcItemNumber,
  _ARunValAddedSrvcSTOShipgInfo.Plant AS Plant,
  _ARunValAddedSrvcSTOShipgInfo.Material AS Material,
  _ARunValAddedSrvcSTOBsc.fsh_req_rel AS ValAddedSrvcHasToBeOrdered,
  _ARunValAddedSrvcSTOShipgInfo.SoldToParty AS SoldToParty,
  _ARunValAddedSrvcSTOShipgInfo.ShipToParty AS ShipToParty,
  _ARunValAddedSrvcSTOShipgInfo.OrderType AS OrderType,
  _ARunValAddedSrvcSTOShipgInfo.SalesOrganization AS SalesOrganization,
  _ARunValAddedSrvcSTOShipgInfo.DistributionChannel AS DistributionChannel,
  _ARunValAddedSrvcSTOShipgInfo.Division AS Division,
  _ARunValAddedSrvcSTOShipgInfo.ShippingGroupNumber AS ShippingGroupNumber,
  _ARunValAddedSrvcSTOShipgInfo.RequestedRqmtQtyInBaseUnit AS RequestedRqmtQtyInBaseUnit
FROM ARun_ValAddedSrvcSTOBsc AS _ARunValAddedSrvcSTOBsc
INNER JOIN ARun_ValAddedSrvcSTOShipgInfo AS _ARunValAddedSrvcSTOShipgInfo ON /* join condition not captured in parsed metadata */
;