I_ProdnAcctAssgmtObjVH

DDL: I_PRODNACCTASSGMTOBJVH SQL: IPRODNAAMOBJVH Type: view COMPOSITE

Production account assignment object

I_ProdnAcctAssgmtObjVH is a Composite CDS View that provides data about "Production account assignment object" in SAP S/4HANA. It reads from 1 data source (I_ProductCostCtrlgOrder) and exposes 7 fields with key field OrderID.

Data Sources (1)

SourceAliasJoin Type
I_ProductCostCtrlgOrder I_ProductCostCtrlgOrder from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPRODNAAMOBJVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey OrderID view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Production account assignment object view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY OrderID OrderID Order ID
OrderDescription OrderDescription
OrderType OrderType Order Type
Plant Plant Valuation Area
CompanyCode CompanyCode Receiver Company Code
OrderCategory OrderCategory Order Category
_OrderType _OrderType

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_ProdnAcctAssgmtObjVH.
-- 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: IPRODNAAMOBJVH

CREATE VIEW I_ProdnAcctAssgmtObjVH AS
SELECT
  OrderID,
  OrderDescription,
  OrderType,
  Plant,
  CompanyCode,
  OrderCategory
FROM I_ProductCostCtrlgOrder
;