P_GLAcctNotMarkForDeletion

DDL: P_GLACCTNOTMARKFORDELETION Type: view_entity COMPOSITE Package: ODATA_MANAGE_GLACCOUNT

gl account is not marked for deletion

P_GLAcctNotMarkForDeletion is a Composite CDS View that provides data about "gl account is not marked for deletion" in SAP S/4HANA. It reads from 1 data source (I_GLAcctInCoCode) and exposes 4 fields with key fields ChartOfAccounts, GLAccount, ControllingArea. Part of development package ODATA_MANAGE_GLACCOUNT.

Data Sources (1)

SourceAliasJoin Type
I_GLAcctInCoCode I_GLAcctInCoCode from

Annotations (4)

NameValueLevelField
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ChartOfAccounts Node Class
KEY GLAccount GLAccount General Ledger
KEY ControllingArea ControllingArea Controlling Area
AccountIsMarkedForDeletion AccountIsMarkedForDeletion Deletion Flag

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 P_GLAcctNotMarkForDeletion.
-- 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 P_GLAcctNotMarkForDeletion AS
SELECT
  ChartOfAccounts,
  GLAccount,
  ControllingArea,
  AccountIsMarkedForDeletion
FROM I_GLAcctInCoCode
;