A_PlanCostRate_2

DDL: A_PLANCOSTRATE_2 Type: view_entity COMPOSITE

Plan Cost Rate

A_PlanCostRate_2 is a Composite CDS View that provides data about "Plan Cost Rate" in SAP S/4HANA. It reads from 1 data source (R_PlanCostRateTP) and exposes 16 fields with key field AccountingCostRateUUID.

Data Sources (1)

SourceAliasJoin Type
R_PlanCostRateTP R_PlanCostRateTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Plan Cost Rate view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
OData.entityType.name PlanCostRate_Type view
Feature FINS_PARALLEL_ACCOUNTING_BF view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY AccountingCostRateUUID AccountingCostRateUUID
CompanyCode CompanyCode Receiver Company Code
CostCenter CostCenter Cost Center
ActivityType ActivityType Activity Type
Currency Currency Valuation Crcy
ControllingArea ControllingArea Controlling Area
ValidityStartFiscalYear ValidityStartFiscalYear
ValidityStartFiscalPeriod ValidityStartFiscalPeriod
ValidityEndFiscalYear ValidityEndFiscalYear
ValidityEndFiscalPeriod ValidityEndFiscalPeriod
CostRateFixedAmount CostRateFixedAmount
CostRateVarblAmount CostRateVarblAmount
CostRateScaleFactor CostRateScaleFactor
CostCtrActivityTypeQtyUnit CostCtrActivityTypeQtyUnit
Ledger Ledger Ledger
CostRateIsOverwriteMode CostRateIsOverwriteMode

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_PlanCostRate_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_PlanCostRate_2 AS
SELECT
  AccountingCostRateUUID,
  CompanyCode,
  CostCenter,
  ActivityType,
  Currency,
  ControllingArea,
  ValidityStartFiscalYear,
  ValidityStartFiscalPeriod,
  ValidityEndFiscalYear,
  ValidityEndFiscalPeriod,
  CostRateFixedAmount,
  CostRateVarblAmount,
  CostRateScaleFactor,
  CostCtrActivityTypeQtyUnit,
  Ledger,
  CostRateIsOverwriteMode
FROM R_PlanCostRateTP
;