A_ProfitCenterText_2

DDL: A_PROFITCENTERTEXT_2 Type: view_entity COMPOSITE Package: RAP_FIN_GL_PROFIT_CENTER_API

Profit Center Text

A_ProfitCenterText_2 is a Composite CDS View that provides data about "Profit Center Text" in SAP S/4HANA. It reads from 1 data source (R_ProfitCenterTextTP) and exposes 6 fields with key fields Language, ControllingArea, ProfitCenter, ValidityEndDate. It is exposed through 1 OData service (API_PROFITCENTER). Part of development package RAP_FIN_GL_PROFIT_CENTER_API.

Data Sources (1)

SourceAliasJoin Type
R_ProfitCenterTextTP R_ProfitCenterTextTP projection

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Profit Center Text view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
ObjectModel.modelingPattern #TRANSACTIONAL_QUERY view
ObjectModel.sapObjectNodeType.name ProfitCenterText view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name ProfitCenterText_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_PROFITCENTER API_PROFITCENTER V4 C2 C1

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY ControllingArea ControllingArea Controlling Area
KEY ProfitCenter ProfitCenter Profit Center
KEY ValidityEndDate ValidityEndDate ValidTo
ProfitCenterName ProfitCenterName Profit Center Name
ProfitCenterLongName ProfitCenterLongName Profit Center 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_ProfitCenterText_2.
-- 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_ProfitCenterText_2 AS
SELECT
  Language,
  ControllingArea,
  ProfitCenter,
  ValidityEndDate,
  ProfitCenterName,
  ProfitCenterLongName
FROM R_ProfitCenterTextTP
;