I_GrantTypeText

DDL: I_GRANTTYPETEXT SQL: IGMGRANTTYPET Type: view BASIC Package: PSM_S4C_GM_MD

Grant Type - Text

I_GrantTypeText (Basic)

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

GrantTypeText · Cross Applications

I_GrantTypeText is a Basic CDS View that provides data about "Grant Type - Text" in SAP S/4HANA. It reads from 1 data source (gmgrtypetexts) and exposes 5 fields with key fields GrantType, Language. It has 2 associations to related views. It is exposed through 8 OData services (ASQL_F4182, ASQL_F4657, ASQL_F6588, ...). Part of development package PSM_S4C_GM_MD.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentPSM-GM-GTE-MD
CapabilitiesData Source for Data Extraction,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
gmgrtypetexts gmgrtypetexts from

Associations (2)

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

Annotations (15)

NameValueLevelField
EndUserText.label Grant Type - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey GrantType view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IGMGRANTTYPET view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name GrantTypeText view

OData Services (8)

ServiceBindingVersionContractRelease
ASQL_F4182 ASQL_F4182 C2 NOT_RELEASED
ASQL_F4657 ASQL_F4657 C2 NOT_RELEASED
ASQL_F6588 ASQL_F6588 C2 NOT_RELEASED
ASQL_F6951 ASQL_F6951 C2 NOT_RELEASED
ASQL_F7321 ASQL_F7321 C2 NOT_RELEASED
ASQL_F7334 ASQL_F7334 C2 NOT_RELEASED
ASQL_F7335 ASQL_F7335 C2 NOT_RELEASED
ASQL_F7716 ASQL_F7716 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GrantType grant_type Grant Type
KEY Language language Report Text Language
GrantTypeDescription Grant Type Description
_Language _Language
_GrantType _GrantType

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_GrantTypeText.
-- 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: IGMGRANTTYPET

CREATE VIEW I_GrantTypeText AS
SELECT
  grant_type AS GrantType,
  Language,
  cast (description as gmis_grant_type_desc) AS GrantTypeDescription
FROM gmgrtypetexts
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
LEFT OUTER JOIN I_GrantType AS _GrantType ON GrantType = _GrantType.GrantType  -- association [0..1]
;