CDS_prctr_v

DDL: PROFITCENTERSET SQL: CDS_V_PRCTR Type: view

CDS_prctr_v is a CDS View in SAP S/4HANA. It reads from 2 data sources (cepc, cepct) and exposes 12 fields.

Data Sources (2)

SourceAliasJoin Type
cepc prctrset from
cepct prctrtext left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName CDS_V_PRCTR view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (12)

KeyFieldSource TableSource FieldDescription
Client cepc mandt Editing Client
Profitcenterarea cepc khinr Std. Hierarchy
Validfromdate cepc datab Validity period
Segment cepc segment Segment number
Validtodate cepc datbi Validity period
Personresponsible cepc verak Person Respons.
Profitcenter cepc prctr Profit Centers
Controlarea cepc kokrs Org. Value
OriginalLanguage cepc spras Off. Language
Language cepct spras Off. Language
Generalname cepct ktext Text
Lockindicator cepc lock_ind Lock indicator

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 CDS_prctr_v.
-- 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: CDS_V_PRCTR

CREATE VIEW CDS_prctr_v AS
SELECT
  prctrset.mandt AS Client,
  prctrset.khinr AS Profitcenterarea,
  prctrset.datab AS Validfromdate,
  prctrset.segment AS Segment,
  prctrset.datbi AS Validtodate,
  prctrset.verak AS Personresponsible,
  prctrset.prctr AS Profitcenter,
  prctrset.kokrs AS Controlarea,
  prctrset.spras AS OriginalLanguage,
  prctrtext.spras AS Language,
  prctrtext.ktext AS Generalname,
  prctrset.lock_ind AS Lockindicator
FROM cepc AS prctrset
LEFT OUTER JOIN cepct AS prctrtext ON /* join condition not captured in parsed metadata */
;