FAC_AlternativeAccount_VH

DDL: FAC_ALTERNATIVEACCOUNT_VH SQL: FACALTVACCTVH Type: view

Alternative Account Value Help

FAC_AlternativeAccount_VH is a CDS View that provides data about "Alternative Account Value Help" in SAP S/4HANA. It reads from 4 data sources (ska1, ska1, skb1, t001) and exposes 10 fields with key fields GLAccount, CompanyCode, ChartOfAccounts. It has 1 association to related views.

Data Sources (4)

SourceAliasJoin Type
ska1 _alternative inner
ska1 ska1 inner
skb1 skb1 from
t001 t001 inner

Associations (1)

CardinalityTargetAliasCondition
[0..1] skat _skat $projection.CountryChartOfAccounts = _skat.ktopl and $projection.AlternativeGLAccount = _skat.saknr and _skat.spras = $session.system_language

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName FACALTVACCTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Alternative Account Value Help view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY GLAccount ska1 saknr G/L Account
KEY CompanyCode t001 bukrs Value
KEY ChartOfAccounts ska1 ktopl G/L Chart of Accounts
AlternativeGLAccount ska1 saknr G/L Account
AlternativeGLAccountExternal ska1 sakan G/L Account
CountryChartOfAccounts t001 ktop2 Alternative COA
CompanyCodeName t001 butxt Posting Text
City t001 ort01 Province
GLAccountName _skat txt20 Text 20
GLAccountLongName _skat txt50 Status Name

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_AlternativeAccount_VH.
-- 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: FACALTVACCTVH

CREATE VIEW FAC_AlternativeAccount_VH AS
SELECT
  ska1.saknr AS GLAccount,
  t001.bukrs AS CompanyCode,
  ska1.ktopl AS ChartOfAccounts,
  _alternative.saknr AS AlternativeGLAccount,
  _alternative.sakan AS AlternativeGLAccountExternal,
  t001.ktop2 AS CountryChartOfAccounts,
  t001.butxt AS CompanyCodeName,
  t001.ort01 AS City,
  _skat.txt20 AS GLAccountName,
  _skat.txt50 AS GLAccountLongName
FROM skb1
INNER JOIN t001 ON /* join condition not captured in parsed metadata */
INNER JOIN ska1 ON /* join condition not captured in parsed metadata */
INNER JOIN ska1 AS _alternative ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN skat AS _skat ON CountryChartOfAccounts = _skat.ktopl AND AlternativeGLAccount = _skat.saknr AND _skat.spras = $session.system_language  -- association [0..1]
;