I_ProjectSemTagGLAccount

DDL: I_PROJECTSEMTAGGLACCOUNT SQL: IPROJSEMTAGGLACT Type: view BASIC Package: ODATA_PS_COS_PROJSMRY_MNTR

GL Accounts for Semantic Tag

I_ProjectSemTagGLAccount is a Basic CDS View that provides data about "GL Accounts for Semantic Tag" in SAP S/4HANA. It reads from 1 data source (P_SemTagGLAccount) and exposes 8 fields. Part of development package ODATA_PS_COS_PROJSMRY_MNTR.

Data Sources (1)

SourceAliasJoin Type
P_SemTagGLAccount P_SemTagGLAccount from

Annotations (9)

NameValueLevelField
EndUserText.label GL Accounts for Semantic Tag view
AbapCatalog.sqlViewName IPROJSEMTAGGLACT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (8)

KeyFieldSource TableSource FieldDescription
GLAccountHierarchy GLAccountHierarchy
SemanticTag SemanticTag Semantic Tag
ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
ChartOfAccounts Node Class
GLAccount General Ledger
_Hierarchy _Hierarchy
_SemanticTag _SemanticTag

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_ProjectSemTagGLAccount.
-- 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: IPROJSEMTAGGLACT

CREATE VIEW I_ProjectSemTagGLAccount AS
SELECT
  GLAccountHierarchy,
  SemanticTag,
  ValidityEndDate,
  ValidityStartDate,
  cast( ChartOfAccounts as fis_ktopl) AS ChartOfAccounts,
  cast ( GLAccount as fis_racct) AS GLAccount
FROM P_SemTagGLAccount
;