I_CAReconciliationKey

DDL: I_CARECONCILIATIONKEY SQL: ICARECONCILKEY Type: view BASIC

Reconciliation Key

I_CAReconciliationKey is a Basic CDS View that provides data about "Reconciliation Key" in SAP S/4HANA. It reads from 1 data source (dfkksumc) and exposes 32 fields with key field CAReconciliationKey.

Data Sources (1)

SourceAliasJoin Type
dfkksumc dfkksumc from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICARECONCILKEY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Reconciliation Key view
ObjectModel.representativeKey CAReconciliationKey view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #BASIC view

Fields (32)

KeyFieldSource TableSource FieldDescription
KEY CAReconciliationKey fikey Reconcil. Key
CreatedByUser ernam User Name
CreationDate cpudt Imported On
CAReservationObject resob Reserv. Object
CAReservationKey resky Object Key
CARecnclnKeyAggregationStatus fikvs Aggregation
CARecnclnKeyNmbrOfTotalsRecord sumsz Record counter
CARecnclnKeyIsIncomplete xerro Update Eerror
CARecnclnKeyCorrectionLevel korlv Correct. Level
CARecnclnKeyTrnsfdToGLPostgDte uebis Transfer To
CARecnclnKeyTrnsfdToGLCrrtnLvl ueklv Transf. to corr
CARecnclnKeyIsTransferredToGL xuevo Transfer all
CAReconciliationKeyIsClosed Closed
CARecnclnKeyHasArchivedDocs xarch OrglChange archived
CAReconciliationKeyClosingDate cldat Closed On
CAReconciliationKeyClosingTime cltim P/T type class
ClosedByUser clnam Closed By
CARecnclnKeyLastTransferDate uecpu Last transfer
CANumberOfDocsTransferredToGL blcnt No. of G/L docs
CANumberOfTransfersToPrftAnlys cocnt CO-PA ACC Calls
CARecnclnKeyTrnsfdPrftAnlysSts xuecopa Transfer CO-PA
CARecnclnKeyHasMissingDocs xmiss Totals Incompl.
CARecnclnKeyStsOfDetStructures Totals status
CAAdjmtIsAllwdForTransferToGL xextkont Adjustments
ProfitabilitySegment uebpanr Profit. segment
ProfitabilitySegment_2 Profit. segment
CARecnclnKeyLmtdItemizationSts limitem Limited Itemization
CARecnclnKeyHasCorrection xkorr Corr. with RFKKGL20
CARecnclnKeyBehaviorInRecncln limrecon Reconcil. Behavior
CARecnclnKeyHasDirectTransfer xdirtr Direct Transfer
CARecnclnKeyStsOfTotalsRecords fikst Status
CAProfitabilitySgmtTransfDate uebpadat Date

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_CAReconciliationKey.
-- 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: ICARECONCILKEY

CREATE VIEW I_CAReconciliationKey AS
SELECT
  fikey AS CAReconciliationKey,
  ernam AS CreatedByUser,
  cpudt AS CreationDate,
  resob AS CAReservationObject,
  resky AS CAReservationKey,
  fikvs AS CARecnclnKeyAggregationStatus,
  sumsz AS CARecnclnKeyNmbrOfTotalsRecord,
  xerro AS CARecnclnKeyIsIncomplete,
  korlv AS CARecnclnKeyCorrectionLevel,
  uebis AS CARecnclnKeyTrnsfdToGLPostgDte,
  ueklv AS CARecnclnKeyTrnsfdToGLCrrtnLvl,
  xuevo AS CARecnclnKeyIsTransferredToGL,
  cast(xclos as gfn_xclos_kk preserving type ) AS CAReconciliationKeyIsClosed,
  xarch AS CARecnclnKeyHasArchivedDocs,
  cldat AS CAReconciliationKeyClosingDate,
  cltim AS CAReconciliationKeyClosingTime,
  clnam AS ClosedByUser,
  uecpu AS CARecnclnKeyLastTransferDate,
  blcnt AS CANumberOfDocsTransferredToGL,
  cocnt AS CANumberOfTransfersToPrftAnlys,
  xuecopa AS CARecnclnKeyTrnsfdPrftAnlysSts,
  xmiss AS CARecnclnKeyHasMissingDocs,
  cast(complete as gfn_complete_kk preserving type) AS CARecnclnKeyStsOfDetStructures,
  xextkont AS CAAdjmtIsAllwdForTransferToGL,
  uebpanr AS ProfitabilitySegment,
  cast(uebpanr as rkeobjnr_char) AS ProfitabilitySegment_2,
  limitem AS CARecnclnKeyLmtdItemizationSts,
  xkorr AS CARecnclnKeyHasCorrection,
  limrecon AS CARecnclnKeyBehaviorInRecncln,
  xdirtr AS CARecnclnKeyHasDirectTransfer,
  fikst AS CARecnclnKeyStsOfTotalsRecords,
  uebpadat AS CAProfitabilitySgmtTransfDate
FROM dfkksumc
;