A_ServiceCostRate_3

DDL: A_SERVICECOSTRATE_3 Type: view_entity COMPOSITE

Service Cost Rate

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

Data Sources (1)

SourceAliasJoin Type
R_ServiceCostRateTP R_ServiceCostRateTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Service 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 ServiceCostRate_Type 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
ReceivingCompanyCode ReceivingCompanyCode Rcvg Co Code
IsIntercompanyRate IsIntercompanyRate
ValidityStartFiscalYear ValidityStartFiscalYear
ValidityStartFiscalPeriod ValidityStartFiscalPeriod
ValidityEndFiscalYear ValidityEndFiscalYear
ValidityEndFiscalPeriod ValidityEndFiscalPeriod
TimeSheetOvertimeCategory TimeSheetOvertimeCategory
ServiceCostLevel ServiceCostLevel Service Cost Level
PersonnelNumber PersonnelNumber Personnel No.
WorkItem WorkItem Work Item ID
WBSElementExternalID WBSElementExternalID WBS Element External ID
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_ServiceCostRate_3.
-- 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_ServiceCostRate_3 AS
SELECT
  AccountingCostRateUUID,
  CompanyCode,
  CostCenter,
  ActivityType,
  Currency,
  ControllingArea,
  ReceivingCompanyCode,
  IsIntercompanyRate,
  ValidityStartFiscalYear,
  ValidityStartFiscalPeriod,
  ValidityEndFiscalYear,
  ValidityEndFiscalPeriod,
  TimeSheetOvertimeCategory,
  ServiceCostLevel,
  PersonnelNumber,
  WorkItem,
  WBSElementExternalID,
  CostRateVarblAmount,
  CostRateScaleFactor,
  CostCtrActivityTypeQtyUnit,
  Ledger,
  CostRateIsOverwriteMode
FROM R_ServiceCostRateTP
;