I_GLAcctInCOAImplementStat

DDL: I_GLACCTINCOAIMPLEMENTSTAT Type: view_entity BASIC Package: FINS_GLACCT_IMST

Implementation Status of GL Acct on COA

I_GLAcctInCOAImplementStat is a Basic CDS View that provides data about "Implementation Status of GL Acct on COA" in SAP S/4HANA. It reads from 1 data source (ska1) and exposes 4 fields with key fields ChartOfAccounts, GLAccount. It has 1 association to related views. Part of development package FINS_GLACCT_IMST.

Data Sources (1)

SourceAliasJoin Type
ska1 ska1 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_GLAcctInCOAImpStatTypeText _GLAccountImpStTypeText $projection.GLAcctCOAImplementStatus = _GLAccountImpStTypeText.GLAcctCOAImplementStatus

Annotations (9)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Implementation Status of GL Acct on COA view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ska1 ktopl G/L Chart of Accounts
KEY GLAccount ska1 saknr G/L Account
imstendasGLAcctCOAImplementStatus
_GLAccountImpStTypeText _GLAccountImpStTypeText

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 I_GLAcctInCOAImplementStat.
-- 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 I_GLAcctInCOAImplementStat AS
SELECT
  ska1.ktopl AS ChartOfAccounts,
  ska1.saknr AS GLAccount,
  case when ska_imst.imst is null then 'I' else ska_imst.imst end as GLAcctCOAImplementStatus AS imstendasGLAcctCOAImplementStatus
FROM ska1
LEFT OUTER JOIN I_GLAcctInCOAImpStatTypeText AS _GLAccountImpStTypeText ON GLAcctCOAImplementStatus = _GLAccountImpStTypeText.GLAcctCOAImplementStatus  -- association [0..*]
;