ICA_SEGMENT

DDL: ICA_SEGMENT SQL: ICASEGMENT Type: view Package: FIN_ICA_MATCH

ICA: Segment Master Data

ICA_SEGMENT is a CDS View that provides data about "ICA: Segment Master Data" in SAP S/4HANA. It reads from 2 data sources (fagl_segm, fagl_segmt) and exposes 2 fields. Part of development package FIN_ICA_MATCH.

Data Sources (2)

SourceAliasJoin Type
fagl_segm fagl_segm from
fagl_segmt fagl_segmt left_outer

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ICASEGMENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view

Fields (2)

KeyFieldSource TableSource FieldDescription
segment fagl_segm segment Segment number
unitName fagl_segmt name Zone name

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 ICA_SEGMENT.
-- 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: ICASEGMENT

CREATE VIEW ICA_SEGMENT AS
SELECT
  fagl_segm.segment AS segment,
  fagl_segmt.name AS unitName
FROM fagl_segm
LEFT OUTER JOIN fagl_segmt ON /* join condition not captured in parsed metadata */
;