C_ProdnModParamEffectivityTP

DDL: C_PRODNMODPARAMEFFECTIVITYTP Type: view_entity CONSUMPTION

Parameter Effectivity Projection

C_ProdnModParamEffectivityTP is a Consumption CDS View that provides data about "Parameter Effectivity Projection" in SAP S/4HANA. It reads from 1 data source (R_ProdnModParamEffectivityTP) and exposes 15 fields with key fields ProductionModelUUID, BillOfOperationsVersion, ParamEffctyObjectReferenceKey, ParamEffctyParentObjRefKey.

Data Sources (1)

SourceAliasJoin Type
R_ProdnModParamEffectivityTP R_ProdnModParamEffectivityTP projection

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Parameter Effectivity Projection view
VDM.viewType #CONSUMPTION view
Search.searchable true view
UI.createHidden true view
UI.deleteHidden true view
ObjectModel.modelingPattern #TRANSACTIONAL_QUERY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
UI.headerInfo.typeName Parameter Effectivity view
UI.headerInfo.typeNamePlural Parameter Effectivity view
UI.headerInfo.title.value view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY ProductionModelUUID ProductionModelUUID Prodn Model UUID
KEY BillOfOperationsVersion BillOfOperationsVersion Routing Version
KEY ParamEffctyObjectReferenceKey ParamEffctyObjectReferenceKey Object Reference Key
KEY ParamEffctyParentObjRefKey ParamEffctyParentObjRefKey Parent Object Reference Key
ParamEffctyObjectType ParamEffctyObjectType Object Type
OldChangeNumber OldChangeNumber Old Change Number
EffectivityType EffectivityType
ParamEffctyHashValue ParamEffctyHashValue
ChangeNumber ChangeNumber Change Number
ChangeNumberCreationDate ChangeNumberCreationDate
ChangeNumberLastChgdDateTime ChangeNumberLastChgdDateTime
BillOfMaterialCategory BillOfMaterialCategory BOM category
BillOfMaterialVariantUsage BillOfMaterialVariantUsage Usage
BillOfOperationsType BillOfOperationsType Task List Type
Plant Plant Valuation Area

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_ProdnModParamEffectivityTP.
-- 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 C_ProdnModParamEffectivityTP AS
SELECT
  ProductionModelUUID,
  BillOfOperationsVersion,
  ParamEffctyObjectReferenceKey,
  ParamEffctyParentObjRefKey,
  ParamEffctyObjectType,
  OldChangeNumber,
  EffectivityType,
  ParamEffctyHashValue,
  ChangeNumber,
  ChangeNumberCreationDate,
  ChangeNumberLastChgdDateTime,
  BillOfMaterialCategory,
  BillOfMaterialVariantUsage,
  BillOfOperationsType,
  Plant
FROM R_ProdnModParamEffectivityTP
;