ICA_P_GR_SEGMENT_02

DDL: ICA_P_GR_SEGMENT_02 SQL: PICAGRSEG02 Type: view

ICA_P_GR_SEGMENT_02 is a CDS View in SAP S/4HANA. It reads from 1 data source (ICA_P_GR_ADDLMD) and exposes 2 fields.

Data Sources (1)

SourceAliasJoin Type
ICA_P_GR_ADDLMD B left_outer

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PICAGRSEG02 view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view

Fields (2)

KeyFieldSource TableSource FieldDescription
segment A segment Segment number
unitName additionalmasterdatatext Short Description

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_P_GR_SEGMENT_02.
-- 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: PICAGRSEG02

CREATE VIEW ICA_P_GR_SEGMENT_02 AS
SELECT
  A.segment AS segment,
  additionalmasterdatatext AS unitName
LEFT OUTER JOIN ICA_P_GR_ADDLMD AS B ON /* join condition not captured in parsed metadata */
;