I_CnsldtnSignLogicType

DDL: I_CNSLDTNSIGNLOGICTYPE Type: view_entity BASIC Package: FIN_CS_MD_FSITEM

Consolidation Sign Logic Type

I_CnsldtnSignLogicType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Consolidation Sign Logic Type · Group Reporting

I_CnsldtnSignLogicType is a Basic CDS View (Dimension) that provides data about "Consolidation Sign Logic Type" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomain) and exposes 3 fields with key field ConsolidationSignLogicType. It has 1 association to related views. Part of development package FIN_CS_MD_FSITEM.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD-2CL
CapabilitiesData Source for Data Extraction,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Data Source in SQL Select,Analytical Dimension
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageGroup Reporting for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomain P_CnsldtnDomain from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnSignLogicTypeT _Text $projection.ConsolidationSignLogicType = _Text.ConsolidationSignLogicType

Annotations (15)

NameValueLevelField
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey ConsolidationSignLogicType view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name ConsolidationSignLogicType view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Consolidation Sign Logic Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationSignLogicType Sign Convention
DomainValue _Domain DomainValue Values for Domains: Single Value/Lower Limit
_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 I_CnsldtnSignLogicType.
-- 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 I_CnsldtnSignLogicType AS
SELECT
  cast(left(_Domain.DomainValue, 1) as fincs_signlogictype preserving type ) AS ConsolidationSignLogicType,
  _Domain.DomainValue AS DomainValue
FROM P_CnsldtnDomain
LEFT OUTER JOIN I_CnsldtnSignLogicTypeT AS _Text ON ConsolidationSignLogicType = _Text.ConsolidationSignLogicType  -- association [0..*]
;