R_CnsldtnSegmentTP

DDL: R_CNSLDTNSEGMENTTP Type: view_entity TRANSACTIONAL

Consolidation Segment - TP

R_CnsldtnSegmentTP is a Transactional CDS View that provides data about "Consolidation Segment - TP" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnSegment) and exposes 3 fields with key field Segment. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnSegment _CnsldtnSegment from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_CnsldtnSegmentTextTP _Text

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name CnsldtnSegment view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view
EndUserText.label Consolidation Segment - TP view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Segment
CnsldtnIsAdditionalMasterData I_CnsldtnSegment CnsldtnIsAdditionalMasterData
_Text _Text

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 R_CnsldtnSegmentTP.
-- 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 R_CnsldtnSegmentTP AS
SELECT
  cast ( _CnsldtnSegment.Segment as fincs_segment preserving type ) AS Segment,
  _CnsldtnSegment.CnsldtnIsAdditionalMasterData AS CnsldtnIsAdditionalMasterData
FROM I_CnsldtnSegment AS _CnsldtnSegment
LEFT OUTER JOIN R_CnsldtnSegmentTextTP AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;