I_GLAcctInCOAImplementStatType

DDL: I_GLACCTINCOAIMPLEMENTSTATTYPE SQL: IGLACCIMPSTY Type: view BASIC

GL Acct Imp Status Type

I_GLAcctInCOAImplementStatType is a Basic CDS View (Dimension) that provides data about "GL Acct Imp Status Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field GLAcctCOAImplementStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

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

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IGLACCIMPSTY view
EndUserText.label GL Acct Imp Status Type view
Analytics.dataCategory #DIMENSION view
AbapCatalog.compiler.compareFilter true view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.representativeKey GLAcctCOAImplementStatus view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY GLAcctCOAImplementStatus Lower Value
DomainValue dd07l domvalue_l Lower Value

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_GLAcctInCOAImplementStatType.
-- 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: IGLACCIMPSTY

CREATE VIEW I_GLAcctInCOAImplementStatType AS
SELECT
  cast(domvalue_l as glaccount_imst) AS GLAcctCOAImplementStatus,
  dd07l.domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_GLAcctInCOAImpStatTypeText AS _GLAccountImpStTypeText ON GLAcctCOAImplementStatus = _GLAccountImpStTypeText.GLAcctCOAImplementStatus  -- association [0..*]
;