A_ServiceCostRate

DDL: A_SERVICECOSTRATE SQL: AFISRVCOSTRATE Type: view BASIC

Service Cost Rate

A_ServiceCostRate is a Basic CDS View that provides data about "Service Cost Rate" in SAP S/4HANA. It reads from 1 data source (I_ServiceCostRate) and exposes 19 fields with key field AccountingCostRateUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ServiceCostRate I_ServiceCostRate from

Associations (1)

CardinalityTargetAliasCondition
[1..1] E_AccountingCostRate _Extension $projection.AccountingCostRateUUID = _Extension.AccountingCostRateUUID

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName AFISRVCOSTRATE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Service Cost Rate view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #BASIC view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY AccountingCostRateUUID AccountingCostRateUUID
CompanyCode CompanyCode Receiver Company Code
ReceivingCompanyCode ReceivingCompanyCode Rcvg Co Code
IsIntercompanyRate IsIntercompanyRate
CostCenter CostCenter Cost Center
TimeSheetOvertimeCategory TimeSheetOvertimeCategory
ActivityType ActivityType Activity Type
ServiceCostLevel ServiceCostLevel Service Cost Level
PersonnelNumber PersonnelNumber Personnel No.
WorkItem WorkItem Work Item ID
WBSElementExternalID WBSElementExternalID WBS Element External ID
ValidityStartFiscalYearPeriod ValidityStartFiscalYearPeriod
ValidityEndFiscalYearPeriod ValidityEndFiscalYearPeriod
Currency Currency Valuation Crcy
CostRateVarblAmount CostRateVarblAmount
CostRateScaleFactor CostRateScaleFactor
CostCtrActivityTypeQtyUnit CostCtrActivityTypeQtyUnit
Ledger Ledger Ledger
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.
-- 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.
-- SQL view name: AFISRVCOSTRATE

CREATE VIEW A_ServiceCostRate AS
SELECT
  AccountingCostRateUUID,
  CompanyCode,
  ReceivingCompanyCode,
  IsIntercompanyRate,
  CostCenter,
  TimeSheetOvertimeCategory,
  ActivityType,
  ServiceCostLevel,
  PersonnelNumber,
  WorkItem,
  WBSElementExternalID,
  ValidityStartFiscalYearPeriod,
  ValidityEndFiscalYearPeriod,
  Currency,
  CostRateVarblAmount,
  CostRateScaleFactor,
  CostCtrActivityTypeQtyUnit,
  Ledger,
  cast( '' as abap_boolean) AS CostRateIsOverwriteMode
FROM I_ServiceCostRate
LEFT OUTER JOIN E_AccountingCostRate AS _Extension ON AccountingCostRateUUID = _Extension.AccountingCostRateUUID  -- association [1..1]
;