I_REProcess

DDL: I_REPROCESS Type: view_entity BASIC

Real Estate Process

I_REProcess is a Basic CDS View that provides data about "Real Estate Process" in SAP S/4HANA. It reads from 1 data source (vicaprocessid) and exposes 10 fields with key fields REProcessUUID, REProcessVersion.

Data Sources (1)

SourceAliasJoin Type
vicaprocessid vicaprocessid from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.compositionRoot false view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey REProcessUUID view
EndUserText.label Real Estate Process view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY REProcessUUID processguid Valuation Proc.
KEY REProcessVersion version XML Vers.
RealEstateProcess Settlement ID
RealEstateProcessExternal Identification
REProcessType Trans.
REProcessMode processmode Processing Mode
REProcessNumberInFiscalYear Version
FiscalYear fisc_year Year
REProcessDescription title View Title
REProcessIsReversed flg_reversal Reverse indic.

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_REProcess.
-- 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 I_REProcess AS
SELECT
  processguid AS REProcessUUID,
  version AS REProcessVersion,
  cast(processid as recavdmprocessid preserving type ) AS RealEstateProcess,
  cast(processextid as recavdmprocessextid preserving type ) AS RealEstateProcessExternal,
  cast(process as recavdmprocess preserving type ) AS REProcessType,
  processmode AS REProcessMode,
  cast(counter as recavdmprocesscounter preserving type ) AS REProcessNumberInFiscalYear,
  fisc_year AS FiscalYear,
  title AS REProcessDescription,
  flg_reversal AS REProcessIsReversed
FROM vicaprocessid
;