C_GRIRFollowOnStatus

DDL: C_GRIRFOLLOWONSTATUS SQL: CFIGRIRFLLWONST Type: view CONSUMPTION

GR/IR Follow-On Status

C_GRIRFollowOnStatus is a Consumption CDS View that provides data about "GR/IR Follow-On Status" in SAP S/4HANA. It reads from 1 data source (I_GRIRFollowOnStatus) and exposes 7 fields with key fields GRIRClearingProcessStatus, GRIRClearingProcFllwOnStatus.

Data Sources (1)

SourceAliasJoin Type
I_GRIRFollowOnStatus I_GRIRFollowOnStatus from

Annotations (11)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName CFIGRIRFLLWONST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label GR/IR Follow-On Status view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey GRIRClearingProcFllwOnStatus view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY GRIRClearingProcessStatus I_GRIRFollowOnStatus GRIRClearingProcessStatus Status
KEY GRIRClearingProcFllwOnStatus I_GRIRFollowOnStatus GRIRClearingProcFllwOnStatus Follow-on Status
_GRIRClearingProcessStatus I_GRIRFollowOnStatus _GRIRClearingProcessStatus
GRIRClrgProcessStatusDesc
GRIRClrgProcessStatusName
GRIRClrgProcFllwOnStsDesc
GRIRClrgProcFllwOnStsName

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 C_GRIRFollowOnStatus.
-- 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: CFIGRIRFLLWONST

CREATE VIEW C_GRIRFollowOnStatus AS
SELECT
  I_GRIRFollowOnStatus.GRIRClearingProcessStatus AS GRIRClearingProcessStatus,
  I_GRIRFollowOnStatus.GRIRClearingProcFllwOnStatus AS GRIRClearingProcFllwOnStatus,
  I_GRIRFollowOnStatus._GRIRClearingProcessStatus AS _GRIRClearingProcessStatus,
  I_GRIRFollowOnStatus._GRIRClearingProcessStatusText[1: Language = $session.system_language ].GRIRClrgProcessStatusDesc AS GRIRClrgProcessStatusDesc,
  I_GRIRFollowOnStatus._GRIRClearingProcessStatusText[1: Language = $session.system_language ].GRIRClrgProcessStatusName AS GRIRClrgProcessStatusName,
  cast (I_GRIRFollowOnStatus._GRIRClearingProcFllwOnStatTxt[1: Language = $session.system_language ].GRIRClrgProcessStatusDesc as fis_grir_followup_status_desc preserving type) AS GRIRClrgProcFllwOnStsDesc,
  cast (I_GRIRFollowOnStatus._GRIRClearingProcFllwOnStatTxt[1: Language = $session.system_language ].GRIRClrgProcessStatusName as fis_grir_followup_status_name preserving type) AS GRIRClrgProcFllwOnStsName
FROM I_GRIRFollowOnStatus
;