IC_SelectUJLineItems

DDL: FINS_IC_SPL_ACD_3 SQL: FINSV_IC_ACD_3 Type: view Package: FINS_FI_IC

IC: Selection of UJ line items

IC_SelectUJLineItems is a CDS View that provides data about "IC: Selection of UJ line items" in SAP S/4HANA. It reads from 3 data sources (acdoca, finsc_ld_cmp, IC_AggrSplitLineItems) and exposes 9 fields with key fields rclnt, project_id, rldnr_proj, rldnr, rbukrs. Part of development package FINS_FI_IC.

Data Sources (3)

SourceAliasJoin Type
acdoca a from
finsc_ld_cmp lc inner
IC_AggrSplitLineItems s inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FINSV_IC_ACD_3 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XXL view
AbapCatalog.preserveKey true view
EndUserText.label IC: Selection of UJ line items view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY rclnt acdoca rclnt Client
KEY project_id IC_AggrSplitLineItems project_id Project UUID
KEY rldnr_proj IC_AggrSplitLineItems rldnr_proj
KEY rldnr acdoca rldnr Ledger (Compat.)
KEY rbukrs acdoca rbukrs Company Code
KEY belnr acdoca belnr SD Document
KEY gjahr acdoca gjahr Settlement Year
KEY buzei acdoca buzei Posting View Item
KEY curtp IC_AggrSplitLineItems curtp Valuation Area

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 IC_SelectUJLineItems.
-- 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: FINSV_IC_ACD_3

CREATE VIEW IC_SelectUJLineItems AS
SELECT
  a.rclnt AS rclnt,
  s.project_id AS project_id,
  s.rldnr_proj AS rldnr_proj,
  a.rldnr AS rldnr,
  a.rbukrs AS rbukrs,
  a.belnr AS belnr,
  a.gjahr AS gjahr,
  a.buzei AS buzei,
  s.curtp AS curtp
FROM acdoca AS a
INNER JOIN IC_AggrSplitLineItems AS s ON /* join condition not captured in parsed metadata */
INNER JOIN finsc_ld_cmp AS lc ON /* join condition not captured in parsed metadata */
;