I_GLAcctInCoCodeImplementStat

DDL: I_GLACCTINCOCODEIMPLEMENTSTAT Type: view BASIC

Implementation Status of GL Account on COCD

I_GLAcctInCoCodeImplementStat is a Basic CDS View that provides data about "Implementation Status of GL Account on COCD" in SAP S/4HANA. It reads from 1 data source (skb_imst) and exposes 4 fields with key fields CompanyCode, GLAccount.

Data Sources (1)

SourceAliasJoin Type
skb_imst skb_imst from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIGLACCINCCDIMS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Implementation Status of GL Account on COCD view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode skb_imst bukrs Value
KEY GLAccount skb_imst saknr G/L Account
GLAcctCoCodeImplementStatus skb_imst imst Implement. Status
GLAccountCoCodIsDeliveredBySAP skb_imst delivered_by_sap Source is Ref. Cont.

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_GLAcctInCoCodeImplementStat.
-- 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_GLAcctInCoCodeImplementStat AS
SELECT
  skb_imst.bukrs AS CompanyCode,
  skb_imst.saknr AS GLAccount,
  skb_imst.imst AS GLAcctCoCodeImplementStatus,
  skb_imst.delivered_by_sap AS GLAccountCoCodIsDeliveredBySAP
FROM skb_imst
;