I_MPReleaseCode

DDL: I_MPRELEASECODE SQL: IMPRELEASECODE Type: view BASIC

Master Project Release Code

I_MPReleaseCode is a Basic CDS View that provides data about "Master Project Release Code" in SAP S/4HANA. It reads from 1 data source (I_PRReleaseIndicatorDesc) and exposes 3 fields with key field PurchasingReleaseStatus.

Data Sources (1)

SourceAliasJoin Type
I_PRReleaseIndicatorDesc ReleaseIndicator from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMPRELEASECODE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PurchasingReleaseStatus view
EndUserText.label Master Project Release Code view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingReleaseStatus I_PRReleaseIndicatorDesc PurchasingReleaseStatus Release ind.
Language I_PRReleaseIndicatorDesc Language Report Text Language
PurchasingReleaseIndicatorDesc I_PRReleaseIndicatorDesc PurchasingReleaseIndicatorDesc Description

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_MPReleaseCode.
-- 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: IMPRELEASECODE

CREATE VIEW I_MPReleaseCode AS
SELECT
  ReleaseIndicator.PurchasingReleaseStatus AS PurchasingReleaseStatus,
  ReleaseIndicator.Language AS Language,
  ReleaseIndicator.PurchasingReleaseIndicatorDesc AS PurchasingReleaseIndicatorDesc
FROM I_PRReleaseIndicatorDesc AS ReleaseIndicator
;