I_GrantStdVH

DDL: I_GRANTSTDVH SQL: IG__VH2 Type: view COMPOSITE

Grant

I_GrantStdVH (Composite)

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

Cross Applications

I_GrantStdVH is a Composite CDS View that provides data about "Grant" in SAP S/4HANA. It reads from 1 data source (I_Grant) and exposes 12 fields with key field GrantID.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-GM-GTE-MD
CapabilitiesData Source for Defining CDS Entities, Data Source for Search, Data Provider for Value Help
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_Grant I_Grant from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IG__VH2 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Grant view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey GrantID view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view
Consumption.ranked true view
VDM.viewType #COMPOSITE view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY GrantID GrantID Sender Grant
GrantName Short Description of the Grant
GranteeMgmtSponsor GranteeMgmtSponsor Grant Sponsor
BusinessPartnerName _Sponsor BusinessPartnerName Sponsor Name
GrantIsNotRelevantGrant GrantIsNotRelevantGrant Identify the Not Relevant Grant
GrantAuthznGrp GrantAuthznGrp Grants Management: Authorization Groups
GrantLfcycStatusForAuthzn GrantLfcycStatusForAuthzn GM Lifecycle Status for Auth Grp
GrantLifecycleStatus GrantLifecycleStatus Lifecycle Status
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate Validity End Date
_Text _Text
_Sponsor _Sponsor

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_GrantStdVH.
-- 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: IG__VH2

CREATE VIEW I_GrantStdVH AS
SELECT
  GrantID,
  _Text[1:Language = $session.system_language].GrantName AS GrantName,
  GranteeMgmtSponsor,
  _Sponsor.BusinessPartnerName AS BusinessPartnerName,
  GrantIsNotRelevantGrant,
  GrantAuthznGrp,
  GrantLfcycStatusForAuthzn,
  GrantLifecycleStatus,
  ValidityStartDate,
  ValidityEndDate
FROM I_Grant
;