P_FixedAssetTransactionType

DDL: P_FIXEDASSETTRANSACTIONTYPE SQL: PFASSETTRNTYPE Type: view COMPOSITE

P_FixedAssetTransactionType is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 4 fields with key fields AssetTransactionType, Language.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText I_DomainFixedValueText from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PFASSETTRNTYPE view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AssetTransactionType DomainValue Lower Value
KEY Language Language Report Text Language
AssetTransactionTypeName DomainText Short Description
_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 P_FixedAssetTransactionType.
-- 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: PFASSETTRNTYPE

CREATE VIEW P_FixedAssetTransactionType AS
SELECT
  DomainValue AS AssetTransactionType,
  Language,
  DomainText AS AssetTransactionTypeName
FROM I_DomainFixedValueText
;