FAC_COSTOBJECTVH

DDL: FAC_COSTOBJECTVH SQL: FACKSTRG Type: view Package: FINS_FI_ACC_VALIDATION

Data Source for Cost Object

FAC_COSTOBJECTVH is a CDS View that provides data about "Data Source for Cost Object" in SAP S/4HANA. It reads from 1 data source (ckph) and exposes 2 fields with key fields CostObject, ValidityEndDate. Part of development package FINS_FI_ACC_VALIDATION.

Data Sources (1)

SourceAliasJoin Type
ckph ckph from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FACKSTRG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Data Source for Cost Object view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CostObject kstrg Cost Objects
KEY ValidityEndDate datbi Validity period

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 FAC_COSTOBJECTVH.
-- 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: FACKSTRG

CREATE VIEW FAC_COSTOBJECTVH AS
SELECT
  kstrg AS CostObject,
  datbi AS ValidityEndDate
FROM ckph
;