A_CnsldtnApportionmentT

DDL: A_CNSLDTNAPPORTIONMENTT Type: view BASIC

Apportionment - Text

A_CnsldtnApportionmentT is a Basic CDS View that provides data about "Apportionment - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnApportionmentText_2) and exposes 3 fields with key fields Language, ConsolidationApportionment.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnApportionmentText_2 I_CnsldtnApportionmentText_2 from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACSAPPORTIONT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Apportionment - Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY ConsolidationApportionment Apportionment
ConsolidationApportionmentText Consolidation Apportionment 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 A_CnsldtnApportionmentT.
-- 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 A_CnsldtnApportionmentT AS
SELECT
  Language,
  cast(ConsolidationApportionment as domvalue_l) AS ConsolidationApportionment,
  cast(ConsolidationApportionmentText as fincs_description_text_60 preserving type ) AS ConsolidationApportionmentText
FROM I_CnsldtnApportionmentText_2
;