I_PRReleaseIndicatorDesc

DDL: I_PRRELEASEINDICATORDESC SQL: IPRRELIND Type: view BASIC

Release Indicator Description for PR

I_PRReleaseIndicatorDesc is a Basic CDS View that provides data about "Release Indicator Description for PR" in SAP S/4HANA. It reads from 1 data source (t161u) and exposes 4 fields with key fields Language, PurchasingReleaseStatus.

Data Sources (1)

SourceAliasJoin Type
t161u t161u from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPRRELIND view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Release Indicator Description for PR view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY PurchasingReleaseStatus frgkz Release ind.
PurchasingReleaseCategory
PurchasingReleaseIndicatorDesc fkztx 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_PRReleaseIndicatorDesc.
-- 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: IPRRELIND

CREATE VIEW I_PRReleaseIndicatorDesc AS
SELECT
  spras AS Language,
  frgkz AS PurchasingReleaseStatus,
  cast ('1' as frgot) AS PurchasingReleaseCategory,
  fkztx AS PurchasingReleaseIndicatorDesc
FROM t161u
;