C_GLAccountInOperatingCOATP

DDL: C_GLACCOUNTINOPERATINGCOATP Type: view_entity CONSUMPTION

Transactional View Opertg Chrt of Accnts

C_GLAccountInOperatingCOATP is a Consumption CDS View that provides data about "Transactional View Opertg Chrt of Accnts" in SAP S/4HANA. It reads from 1 data source (R_GLAccountInOperatingCOATP) and exposes 17 fields with key fields ChartOfAccounts, GLAccount.

Data Sources (1)

SourceAliasJoin Type
R_GLAccountInOperatingCOATP R_GLAccountInOperatingCOATP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Transactional View Opertg Chrt of Accnts view
Search.searchable false view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ChartOfAccounts Node Class
KEY GLAccount GLAccount G/L Account Number
ChartOfAccountsName
GLAccountName GLAccountName G/L Account Short Text
GLAccountType GLAccountType G/L Account Type
GLAccountTypeName GLAccountTypeName G/L Account Type Name
GLAccountGroup GLAccountGroup G/L Account Group
AccountGroupName AccountGroupName G/L Account Group Name
CorporateGroupAccount CorporateGroupAccount Group Account Number
CorporateGroupAccountName CorporateGroupAccountName
GLAccountLongName GLAccountLongName G/L Account Long Text
AccountIsMarkedForDeletion AccountIsMarkedForDeletion Deletion Flag
GLAccountExternal GLAccountExternal G/L Acct External ID
GLAccountSubtype GLAccountSubtype G/L Account Subtype
BankReconciliationAccount BankReconciliationAccount Reconciliation Acct
ProfitLossAccountType ProfitLossAccountType Profit Loss Account Type
_ChartOfAccounts _ChartOfAccounts

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 C_GLAccountInOperatingCOATP.
-- 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 C_GLAccountInOperatingCOATP AS
SELECT
  ChartOfAccounts,
  GLAccount,
  _ChartOfAccounts._Text[1: Language = $session.system_language].ChartOfAccountsName AS ChartOfAccountsName,
  GLAccountName,
  GLAccountType,
  GLAccountTypeName,
  GLAccountGroup,
  AccountGroupName,
  CorporateGroupAccount,
  CorporateGroupAccountName,
  GLAccountLongName,
  AccountIsMarkedForDeletion,
  GLAccountExternal,
  GLAccountSubtype,
  BankReconciliationAccount,
  ProfitLossAccountType
FROM R_GLAccountInOperatingCOATP
;