I_FixedAssetPropertyType

DDL: I_FIXEDASSETPROPERTYTYPE Type: view BASIC

Fixed Asset Property Type

I_FixedAssetPropertyType is a Basic CDS View (Dimension) that provides data about "Fixed Asset Property Type" in SAP S/4HANA. It reads from 1 data source (t097) and exposes 2 fields with key field FixedAssetPropertyType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t097 t097 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FixedAssetPropertyTypeText _Text $projection.FixedAssetPropertyType = _Text.FixedAssetPropertyType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IFIFASSETPROTYP view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
EndUserText.label Fixed Asset Property Type view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey FixedAssetPropertyType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FixedAssetPropertyType t097 eigkz Property Indic.
_Text _Text

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_FixedAssetPropertyType.
-- 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_FixedAssetPropertyType AS
SELECT
  t097.eigkz AS FixedAssetPropertyType
FROM t097
LEFT OUTER JOIN I_FixedAssetPropertyTypeText AS _Text ON FixedAssetPropertyType = _Text.FixedAssetPropertyType  -- association [0..*]
;