I_AccountingDocumentTypeText

DDL: I_ACCOUNTINGDOCUMENTTYPETEXT SQL: IFIACCDOCTYPET Type: view BASIC

Accounting Document Type - Text

I_AccountingDocumentTypeText (Basic)

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

Accounting and Financial Close

I_AccountingDocumentTypeText is a Basic CDS View that provides data about "Accounting Document Type - Text" in SAP S/4HANA. It reads from 1 data source (t003t) and exposes 5 fields with key fields AccountingDocumentType, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-IS
CapabilitiesData Source for Defining CDS Entities, Language-Dependent Text, Data Source for Data Extraction
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p> How many accounting document type descriptions are defined in different languages?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t003t t003t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_AccountingDocumentType _DocumentType $projection.AccountingDocumentType = _DocumentType.AccountingDocumentType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (18)

NameValueLevelField
EndUserText.label Accounting Document Type - Text view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AccountingDocumentType view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName IFIACCDOCTYPET view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
Search.searchable true view
AbapCatalog.preserveKey true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AccountingDocumentType Rep. rec. doc. type
KEY Language spras Off. Language
AccountingDocumentTypeName Document Type Name
_DocumentType _DocumentType
_Language _Language

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_AccountingDocumentTypeText.
-- 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: IFIACCDOCTYPET

CREATE VIEW I_AccountingDocumentTypeText AS
SELECT
  cast ( blart as farp_blart preserving type ) AS AccountingDocumentType,
  spras AS Language,
  cast ( ltext as farp_ltext_003t preserving type ) AS AccountingDocumentTypeName
FROM t003t
LEFT OUTER JOIN I_AccountingDocumentType AS _DocumentType ON AccountingDocumentType = _DocumentType.AccountingDocumentType  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;