C_GRIRFollowOnStatus

DDL: C_GRIRFOLLOWONSTATUS Type: view_entity CONSUMPTION Package: FINS_FIS_FICO_APPS

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. It is exposed through 1 OData service (ASQL_F3302). Part of development package FINS_FIS_FICO_APPS.

Data Sources (1)

SourceAliasJoin Type
I_GRIRFollowOnStatus I_GRIRFollowOnStatus from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label GR/IR Follow-On Status view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey GRIRClearingProcFllwOnStatus view
Analytics.technicalName CFIGRIRFLLWONST view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3302 ASQL_F3302 C2 NOT_RELEASED

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.

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
;