I_PlanCostRateTP

DDL: I_PLANCOSTRATETP Type: view_entity TRANSACTIONAL Package: RAP_FIN_CO_COST_RATE

Plan Cost Rate - TP

I_PlanCostRateTP is a Transactional CDS View that provides data about "Plan Cost Rate - TP" in SAP S/4HANA. It reads from 1 data source (R_PlanCostRateTP) and exposes 22 fields with key field AccountingCostRateUUID. Part of development package RAP_FIN_CO_COST_RATE.

Data Sources (1)

SourceAliasJoin Type
R_PlanCostRateTP R_PlanCostRateTP projection

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Plan Cost Rate - TP view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
ObjectModel.sapObjectNodeType.name AccountingCostRate view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
Feature FINS_PARALLEL_ACCOUNTING_BF view

Fields (22)

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
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
CostRateFixedAmount CostRateFixedAmount
CostRateVarblAmount CostRateVarblAmount
CostRateScaleFactor CostRateScaleFactor
CostCtrActivityTypeQtyUnit CostCtrActivityTypeQtyUnit
Ledger Ledger Ledger
CostRateIsOverwriteMode CostRateIsOverwriteMode
_CompanyCode _CompanyCode
_CostCtrActivityTypeText _CostCtrActivityTypeText
_ControllingAreaText _ControllingAreaText
_LedgerText _LedgerText

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