I_ActualCostRateTP

DDL: I_ACTUALCOSTRATETP Type: view_entity TRANSACTIONAL Package: RAP_FIN_CO_COST_RATE

Actual Cost Rate - TP

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

Data Sources (1)

SourceAliasJoin Type
R_ActualCostRateTP R_ActualCostRateTP projection

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Actual 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 (24)

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
CurrencyRole CurrencyRole Curr./Val. Type
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
_CostCenter _CostCenter
_CompanyCode _CompanyCode
_ControllingAreaText _ControllingAreaText
_CostCtrActivityTypeText _CostCtrActivityTypeText
_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_ActualCostRateTP.
-- 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_ActualCostRateTP AS
SELECT
  AccountingCostRateUUID,
  CompanyCode,
  CostCenter,
  ActivityType,
  Currency,
  ControllingArea,
  CurrencyRole,
  ValidityStartFiscalYear,
  ValidityStartFiscalPeriod,
  ValidityEndFiscalYear,
  ValidityEndFiscalPeriod,
  ValidityStartDate,
  ValidityEndDate,
  CostRateFixedAmount,
  CostRateVarblAmount,
  CostRateScaleFactor,
  CostCtrActivityTypeQtyUnit,
  Ledger,
  CostRateIsOverwriteMode
FROM R_ActualCostRateTP
;