I_AssetTransactionTypeText

DDL: I_ASSETTRANSACTIONTYPETEXT Type: view BASIC

Asset Transaction Type - Text

I_AssetTransactionTypeText (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_AssetTransactionTypeText is a Basic CDS View that provides data about "Asset Transaction Type - Text" in SAP S/4HANA. It reads from 1 data source (tabwt) and exposes 4 fields with key fields AssetTransactionType, Language. It has 1 association to related views.

SAP Help Documentation

CategoryAsset Transaction Type
Data CategoryText
StatusReleased
Purpose
This CDS view provides the prerequisites for answering the following business question: How many asset transaction types are defined?

Structure
Measures and attributes Some important measures and attributes are: Asset Transaction Type Asset Transaction Type Name Language

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-AA-IS
CapabilitiesData Source for Defining CDS Entities, Data Source for Search, Language-Dependent Text
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business question:</p> <ul> <li><p>How many asset transaction types are defined?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
tabwt tabwt from

Associations (1)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIASSETTRTYPT view
AbapCatalog.preserveKey true view
EndUserText.label Asset Transaction Type - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AssetTransactionType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AssetTransactionType tabwt bwasl Asset Transaction Type
KEY Language tabwt spras Off. Language
AssetTransactionTypeName Asset Transaction Type Name
_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_AssetTransactionTypeText.
-- 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_AssetTransactionTypeText AS
SELECT
  tabwt.bwasl AS AssetTransactionType,
  tabwt.spras AS Language,
  cast(tabwt.bwatxt as fis_bwatxt) AS AssetTransactionTypeName
FROM tabwt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;