I_SpecialGLCodeText

DDL: I_SPECIALGLCODETEXT SQL: IFISPECGLCODET Type: view BASIC Package: FINS_FIS_FICO

Special General Ledger Code - Text

I_SpecialGLCodeText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Public Edition with built-in and side-by-side extension capabilities.

Accounting and Financial Close

I_SpecialGLCodeText is a Basic CDS View that provides data about "Special General Ledger Code - Text" in SAP S/4HANA. It reads from 1 data source (t074t) and exposes 7 fields with key fields FinancialAccountType, SpecialGLCode, Language. It has 2 associations to related views. It is exposed through 8 OData services (ASQL_F0702A, ASQL_F2218, ASQL_F2964, ...). Part of development package FINS_FIS_FICO.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-IS-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t074t t074t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_FinancialAccountType _FinancialAccountType $projection.FinancialAccountType = _FinancialAccountType.FinancialAccountType

Annotations (15)

NameValueLevelField
EndUserText.label Special General Ledger Code - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFISPECGLCODET view
ObjectModel.representativeKey SpecialGLCode view
ObjectModel.dataCategory #TEXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #NOT_REQUIRED view

OData Services (8)

ServiceBindingVersionContractRelease
ASQL_F0702A ASQL_F0702A C2 NOT_RELEASED
ASQL_F2218 ASQL_F2218 C2 NOT_RELEASED
ASQL_F2964 ASQL_F2964 C2 NOT_RELEASED
ASQL_F3398 ASQL_F3398 C2 NOT_RELEASED
ASQL_F3417 ASQL_F3417 C2 NOT_RELEASED
ASQL_F3555 ASQL_F3555 C2 NOT_RELEASED
ASQL_F5470 ASQL_F5470 C2 NOT_RELEASED
ASQL_F8134 ASQL_F8134 C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY FinancialAccountType koart Account type
KEY SpecialGLCode shbkz Special G/L Indicator
KEY Language spras Off. Language
SpecialGLCodeName ktext Short Text for Special G/L Indicator
SpecialGLCodeLongName ltext Long Text for Special G/L Indicators
_Language _Language
_FinancialAccountType _FinancialAccountType

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_SpecialGLCodeText.
-- 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: IFISPECGLCODET

CREATE VIEW I_SpecialGLCodeText AS
SELECT
  koart AS FinancialAccountType,
  shbkz AS SpecialGLCode,
  spras AS Language,
  ktext AS SpecialGLCodeName,
  ltext AS SpecialGLCodeLongName
FROM t074t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_FinancialAccountType AS _FinancialAccountType ON FinancialAccountType = _FinancialAccountType.FinancialAccountType  -- association [1..1]
;