I_GrantStatusText

DDL: I_GRANTSTATUSTEXT SQL: IGRSTATUST Type: view BASIC

Grant Status - Text

I_GrantStatusText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

GrantLifecycleStatusText · Cross Applications

I_GrantStatusText is a Basic CDS View that provides data about "Grant Status - Text" in SAP S/4HANA. It reads from 1 data source (tj02t) and exposes 6 fields with key fields SystemStatus, Language. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-GM-GTE-IS
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Language-Dependent Text
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tj02t tj02t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SystemStatus view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Grant Status - Text view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IGRSTATUST view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name GrantLifecycleStatusText view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus tj02t istat System status
KEY Language tj02t spras Off. Language
SystemStatusName tj02t txt30 Individual Status of an Object
SystemStatusShortName tj02t txt04 Individual status of an object (short form)
_GrantStatus _GrantStatus
_Language _Language

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_GrantStatusText.
-- 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: IGRSTATUST

CREATE VIEW I_GrantStatusText AS
SELECT
  tj02t.istat AS SystemStatus,
  tj02t.spras AS Language,
  tj02t.txt30 AS SystemStatusName,
  tj02t.txt04 AS SystemStatusShortName
FROM tj02t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;