FAC_AD_CDS_ACT_ALLOC_ACC

DDL: FAC_AD_CDS_ACT_ALLOC_ACC SQL: FACADV_ACTALLOC Type: view

Cost or Revenue Account

FAC_AD_CDS_ACT_ALLOC_ACC is a CDS View that provides data about "Cost or Revenue Account" in SAP S/4HANA. It reads from 2 data sources (cskb, tkavk) and exposes 2 fields with key field account.

Data Sources (2)

SourceAliasJoin Type
cskb cskb inner
tkavk tkavk inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FACADV_ACTALLOC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Cost or Revenue Account view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY account ska1 saknr G/L Account
description

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_AD_CDS_ACT_ALLOC_ACC.
-- 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: FACADV_ACTALLOC

CREATE VIEW FAC_AD_CDS_ACT_ALLOC_ACC AS
SELECT
  ska1.saknr AS account,
  skat[1:spras = $session.system_language].txt20 AS description
INNER JOIN cskb ON /* join condition not captured in parsed metadata */
INNER JOIN tkavk ON /* join condition not captured in parsed metadata */
;