C_FixedAssetNote

DDL: C_FIXEDASSETNOTE Type: view CONSUMPTION Package: ODATA_AA_ASSET_MANAGE

Notes of a Fixed Asset

C_FixedAssetNote is a Consumption CDS View that provides data about "Notes of a Fixed Asset" in SAP S/4HANA. It reads from 1 data source (I_FixedAssetNote) and exposes 6 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset, NoteID. It has 1 association to related views. Part of development package ODATA_AA_ASSET_MANAGE.

Data Sources (1)

SourceAliasJoin Type
I_FixedAssetNote FixedAssetNote from

Associations (1)

CardinalityTargetAliasCondition
[1] I_FixedAsset _FixedAsset $projection.MasterFixedAsset = _FixedAsset.MasterFixedAsset and $projection.FixedAsset = _FixedAsset.FixedAsset and $projection.CompanyCode = _FixedAsset.CompanyCode

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CFIXASSETNOTE view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Notes of a Fixed Asset view
VDM.viewType #CONSUMPTION view
ObjectModel.createEnabled true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_FixedAssetNote CompanyCode Receiver Company Code
KEY MasterFixedAsset I_FixedAssetNote MasterFixedAsset Fixed Asset
KEY FixedAsset I_FixedAssetNote FixedAsset Sub-number
KEY NoteID I_FixedAssetNote NoteID Unique ID
CreatedByUser
sstring1000asNoteText

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 C_FixedAssetNote.
-- 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 C_FixedAssetNote AS
SELECT
  FixedAssetNote.CompanyCode AS CompanyCode,
  FixedAssetNote.MasterFixedAsset AS MasterFixedAsset,
  FixedAssetNote.FixedAsset AS FixedAsset,
  FixedAssetNote.NoteID AS NoteID,
  cast('' as so_cro_nam) AS CreatedByUser
FROM I_FixedAssetNote AS FixedAssetNote
LEFT OUTER JOIN I_FixedAsset AS _FixedAsset ON MasterFixedAsset = _FixedAsset.MasterFixedAsset AND FixedAsset = _FixedAsset.FixedAsset AND CompanyCode = _FixedAsset.CompanyCode  -- association [1]
;