P_RO_SAFTAssetTransacTypeClfn1

DDL: P_RO_SAFTASSETTRANSACTYPECLFN1 SQL: PROSAFTFATRTPDEF Type: view COMPOSITE

Transaction type default classification

P_RO_SAFTAssetTransacTypeClfn1 is a Composite CDS View that provides data about "Transaction type default classification" in SAP S/4HANA. It reads from 2 data sources (I_AssetTransactionType, I_AssetTransactionTypeGroup) and exposes 2 fields with key field AssetTransactionType.

Data Sources (2)

SourceAliasJoin Type
I_AssetTransactionType tabw from
I_AssetTransactionTypeGroup tabwg inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PROSAFTFATRTPDEF view
VDM.viewType #COMPOSITE view
VDM.private true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality D view
ObjectModel.usageType.dataClass TRANSACTIONAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Transaction type default classification view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AssetTransactionType I_AssetTransactionType AssetTransactionType Trans.Type
AssetTransactionTypeGroup I_AssetTransactionType AssetTransactionTypeGroup Trans.Type Grp.

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_RO_SAFTAssetTransacTypeClfn1.
-- 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: PROSAFTFATRTPDEF

CREATE VIEW P_RO_SAFTAssetTransacTypeClfn1 AS
SELECT
  tabw.AssetTransactionType AS AssetTransactionType,
  tabw.AssetTransactionTypeGroup AS AssetTransactionTypeGroup
FROM I_AssetTransactionType AS tabw
INNER JOIN I_AssetTransactionTypeGroup AS tabwg ON /* join condition not captured in parsed metadata */
;