I_ServiceCostRateTP

DDL: I_SERVICECOSTRATETP Type: view_entity TRANSACTIONAL Package: RAP_FIN_CO_COST_RATE

Service Cost Rate - TP

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

Data Sources (1)

SourceAliasJoin Type
R_ServiceCostRateTP R_ServiceCostRateTP projection

Annotations (12)

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

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
ReceivingCompanyCode ReceivingCompanyCode Rcvg Co Code
IsIntercompanyRate IsIntercompanyRate
ValidityStartFiscalYear ValidityStartFiscalYear
ValidityStartFiscalPeriod ValidityStartFiscalPeriod
ValidityEndFiscalYear ValidityEndFiscalYear
ValidityEndFiscalPeriod ValidityEndFiscalPeriod
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
TimeSheetOvertimeCategory TimeSheetOvertimeCategory
ServiceCostLevel ServiceCostLevel Service Cost Level
PersonnelNumber PersonnelNumber Personnel No.
WorkItem WorkItem Work Item ID
WBSElementExternalID WBSElementExternalID WBS Element External ID
WBSElementDescription WBSElementDescription Description
CostRateVarblAmount CostRateVarblAmount
CostRateScaleFactor CostRateScaleFactor
CostCtrActivityTypeQtyUnit CostCtrActivityTypeQtyUnit
Ledger Ledger Ledger
CostRateIsOverwriteMode CostRateIsOverwriteMode
_CompanyCode _CompanyCode
_CostCtrActivityTypeText _CostCtrActivityTypeText
_ControllingAreaText _ControllingAreaText
_ReceivingCompanyCode _ReceivingCompanyCode
_TimeSheetOvertimeCatText _TimeSheetOvertimeCatText
_CurrentServiceCostLevelText _CurrentServiceCostLevelText
_PersonWorkAgreement _PersonWorkAgreement
_WorkItemText _WorkItemText
_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_ServiceCostRateTP.
-- 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_ServiceCostRateTP AS
SELECT
  AccountingCostRateUUID,
  CompanyCode,
  CostCenter,
  ActivityType,
  Currency,
  ControllingArea,
  ReceivingCompanyCode,
  IsIntercompanyRate,
  ValidityStartFiscalYear,
  ValidityStartFiscalPeriod,
  ValidityEndFiscalYear,
  ValidityEndFiscalPeriod,
  ValidityStartDate,
  ValidityEndDate,
  TimeSheetOvertimeCategory,
  ServiceCostLevel,
  PersonnelNumber,
  WorkItem,
  WBSElementExternalID,
  WBSElementDescription,
  CostRateVarblAmount,
  CostRateScaleFactor,
  CostCtrActivityTypeQtyUnit,
  Ledger,
  CostRateIsOverwriteMode
FROM R_ServiceCostRateTP
;