A_GrantText

DDL: A_GRANTTEXT Type: view_entity BASIC

Grant Text

A_GrantText is a Basic CDS View that provides data about "Grant Text" in SAP S/4HANA. It reads from 1 data source (I_GrantText) and exposes 5 fields with key fields GrantID, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_GrantText I_GrantText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_Grant _Grant $projection.GrantID = _Grant.GrantID

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Grant Text view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #TEXT view
OData.entityType.name GrantText_Type view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GrantID GrantID Sender Grant
KEY Language Language Report Text Language
GrantName GrantName Text
GrantDescription GrantDescription Well Code Des.
_Grant _Grant

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 A_GrantText.
-- 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.

CREATE VIEW A_GrantText AS
SELECT
  GrantID,
  Language,
  GrantName,
  GrantDescription
FROM I_GrantText
LEFT OUTER JOIN A_Grant AS _Grant ON GrantID = _Grant.GrantID  -- association [1..1]
;