I_FinSGLErrorItem
Financial Services GL Error Item
I_FinSGLErrorItem is a Basic CDS View that provides data about "Financial Services GL Error Item" in SAP S/4HANA. It reads from 1 data source (gle_ecs_item) and exposes 34 fields with key field FinSGLErrorItemUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| gle_ecs_item | gle_ecs_item | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Financial Services GL Error Item | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.representativeKey | FinSGLErrorItemUUID | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.sapObjectNodeType.name | FinSGLErrorItem | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view |
Fields (34)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FinSGLErrorItemUUID | item_id | Simulation Item ID | |
| FinSGLCompoundErrorCategory | compound_error | Compound Error Cat. | ||
| FinSGLErrorItemStatus | Workflow Status | |||
| FinSGLErrorItemSeverity | Thresh.Val. Severity | |||
| FinSGLPostedCompanyCode | company_code | Company Code | ||
| FinSGLPostedDocument | doc_no | Posted Doc. No. | ||
| FinSGLPostedFiscalYear | fiscal_year | Tax Item Fiscal Year | ||
| LedgerGLLineItem | Tax doc. item number | |||
| FinSGLErrorDocument | int_doc_ref_id | ECS Document Number | ||
| FinSGLErrorFiscalYear | int_doc_year | ECS Entered in Year | ||
| AccountType | account_type | SI Account type | ||
| FinSGLOriginalPostingDate | post_date_o | Orig. Posting Date | ||
| FinSGLOriginalAccount | account_o | Original GL Acct | ||
| FinSGLOriginalProfitCenter | profit_center_o | Orig. Profit Ctr | ||
| FinSGLOriginalCostCenter | cost_center_o | Orig. Cost Center | ||
| AmountInTransactionCurrency | amount_tcur | Amount | ||
| TransactionCurrency | tcur | Currency | ||
| FinSGLPostedPostingDate | post_date | Sett. Post Date | ||
| FinSGLPostedAccount | account | Std. Account | ||
| FinSGLPostedCostCenter | cost_center | Posted Cost Center | ||
| FinSGLPostedProfitCenter | profit_center | Profit Center | ||
| FinSGLCorrectionCompanyCode | new_company_code | CoCode of Corr.Doc. | ||
| FinSGLCorrectionDocument | new_doc_no | Corr. Doc. No. | ||
| FinSGLCorrectionFiscalYear | new_year | Corr. Doc. FY | ||
| FinSGLCrrtnRvslCompanyCode | corr_rev_ccode | CC of Rev.Correction | ||
| FinSGLCrrtnReversalDocument | corr_rev_doc_no | Correction Doc. No. | ||
| FinSGLCrrtnRvslFiscalYear | corr_rev_year | Correction Doc. FY | ||
| FinSGLErrCrrtnEnvrmt | if_type | Interface type | ||
| FinSGLRunID | Run Adm Run ID | |||
| FinSGLErrorItemCreatedBy | create_user | User Name | ||
| FinSGLErrorItemChangedBy | change_user | User Name | ||
| FinSGLErrorItemProcessor | owner | Vehicle Owner | ||
| FinSGLErrorItemTeamName | owner_grp | Team | ||
| Note | wf_comment | Comment |
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_FinSGLErrorItem.
-- 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 I_FinSGLErrorItem AS
SELECT
item_id AS FinSGLErrorItemUUID,
compound_error AS FinSGLCompoundErrorCategory,
cast( status as gle_dte_ecs_status_no_conv ) AS FinSGLErrorItemStatus,
cast( severity as gle_dte_ecs_severity_no_conv ) AS FinSGLErrorItemSeverity,
company_code AS FinSGLPostedCompanyCode,
doc_no AS FinSGLPostedDocument,
fiscal_year AS FinSGLPostedFiscalYear,
lpad( cast(pos_no as fis_docln ), 6, '0' ) AS LedgerGLLineItem,
int_doc_ref_id AS FinSGLErrorDocument,
int_doc_year AS FinSGLErrorFiscalYear,
account_type AS AccountType,
post_date_o AS FinSGLOriginalPostingDate,
account_o AS FinSGLOriginalAccount,
profit_center_o AS FinSGLOriginalProfitCenter,
cost_center_o AS FinSGLOriginalCostCenter,
amount_tcur AS AmountInTransactionCurrency,
tcur AS TransactionCurrency,
post_date AS FinSGLPostedPostingDate,
account AS FinSGLPostedAccount,
cost_center AS FinSGLPostedCostCenter,
profit_center AS FinSGLPostedProfitCenter,
new_company_code AS FinSGLCorrectionCompanyCode,
new_doc_no AS FinSGLCorrectionDocument,
new_year AS FinSGLCorrectionFiscalYear,
corr_rev_ccode AS FinSGLCrrtnRvslCompanyCode,
corr_rev_doc_no AS FinSGLCrrtnReversalDocument,
corr_rev_year AS FinSGLCrrtnRvslFiscalYear,
if_type AS FinSGLErrCrrtnEnvrmt,
cast( runid_ext as gle_dte_ecs_runid_conv ) AS FinSGLRunID,
create_user AS FinSGLErrorItemCreatedBy,
change_user AS FinSGLErrorItemChangedBy,
owner AS FinSGLErrorItemProcessor,
owner_grp AS FinSGLErrorItemTeamName,
wf_comment AS Note
FROM gle_ecs_item
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA