Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

C_FxdAstTransInCurrentPeriod

DDL: C_FXDASTTRANSINCURRENTPERIOD SQL: CFASSETTRNCP Type: view CONSUMPTION

Fixed Asset Transaction in Current Period

C_FxdAstTransInCurrentPeriod is a Consumption CDS View that provides data about "Fixed Asset Transaction in Current Period" in SAP S/4HANA. It reads from 1 data source (I_FxdAstTransInCurrentPeriod) and exposes 40 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset, AssetDepreciationArea, Ledger.

Data Sources (1)

SourceAliasJoin Type
I_FxdAstTransInCurrentPeriod I_FxdAstTransInCurrentPeriod from

Parameters (7)

NameTypeDefault
P_KeyDate fagl_keydate
P_TodayDate fagl_keydate
P_CompanyCode fis_bukrs
P_Ledger fis_rldnr
P_CurrencyRole fis_curtp
P_AssetAccountingKeyFigureSet faa_key_figure_set
P_PeriodType faa_period_type

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CFASSETTRNCP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Fixed Asset Transaction in Current Period view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
UI.textArrangement #TEXT_LAST view

Fields (40)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY MasterFixedAsset MasterFixedAsset Fixed Asset
KEY FixedAsset FixedAsset Sub-number
KEY AssetDepreciationArea AssetDepreciationArea Deprec. Area
KEY Ledger Ledger Ledger
KEY AssetAccountingKeyFigureSet AssetAccountingKeyFigureSet
KEY CurrencyRole CurrencyRole Curr./Val. Type
CompanyCodeName CompanyCodeName Company Name
AssetCostCenter AssetCostCenter
AssetClass AssetClass Asset Class
AssetPlant AssetPlant
AssetLocation AssetLocation Location
BusinessArea BusinessArea Business Area
Segment Segment Segment number
AssetAccountDetermination AssetAccountDetermination Account Determ.
AssetProfitCenter AssetProfitCenter
FixedAssetDescription FixedAssetDescription Description
AccountingPrinciple AccountingPrinciple AP Ledger/CoCode
Group1AssetEvaluationKey Group1AssetEvaluationKey
Group2AssetEvaluationKey Group2AssetEvaluationKey
Group3AssetEvaluationKey Group3AssetEvaluationKey
Group4AssetEvaluationKey Group4AssetEvaluationKey
Group5AssetEvaluationKey Group5AssetEvaluationKey
AssetCountryOfOrigin AssetCountryOfOrigin
AssetSupplier AssetSupplier Supplier
SupplierAccountGroup SupplierAccountGroup Account group
SupplierBasicAuthorizationGrp SupplierBasicAuthorizationGrp
AssetAuthorizationContext AssetAuthorizationContext
AssetCapitalizationDate AssetCapitalizationDate Asset Capitalization
AssetDeactivationDate AssetDeactivationDate
AssetClassName
PeriodType PeriodType PeriodIndicator
SelectedCurrencyBranch SelectedCurrencyBranch
DisplayCurrency DisplayCurrency Display Currency
AcqnProdnAmtInDspCrcy AcqnProdnAmtInDspCrcy
ValueAdjustmentAmtInDspCrcy ValueAdjustmentAmtInDspCrcy
RtrmtNetBookValueAmtInDspCrcy RtrmtNetBookValueAmtInDspCrcy
OriginalAmountInDspCrcy AmountInDisplayCurrency
AssetTransactionTypeName AssetTransactionTypeName
_FixedAsset _FixedAsset

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_FxdAstTransInCurrentPeriod.
-- 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: CFASSETTRNCP
-- Parameters: P_KeyDate : fagl_keydate, P_TodayDate : fagl_keydate, P_CompanyCode : fis_bukrs, P_Ledger : fis_rldnr, P_CurrencyRole : fis_curtp, P_AssetAccountingKeyFigureSet : faa_key_figure_set, P_PeriodType : faa_period_type

CREATE VIEW C_FxdAstTransInCurrentPeriod AS
SELECT
  CompanyCode,
  MasterFixedAsset,
  FixedAsset,
  AssetDepreciationArea,
  Ledger,
  AssetAccountingKeyFigureSet,
  CurrencyRole,
  CompanyCodeName,
  AssetCostCenter,
  AssetClass,
  AssetPlant,
  AssetLocation,
  BusinessArea,
  Segment,
  AssetAccountDetermination,
  AssetProfitCenter,
  FixedAssetDescription,
  AccountingPrinciple,
  Group1AssetEvaluationKey,
  Group2AssetEvaluationKey,
  Group3AssetEvaluationKey,
  Group4AssetEvaluationKey,
  Group5AssetEvaluationKey,
  AssetCountryOfOrigin,
  AssetSupplier,
  SupplierAccountGroup,
  SupplierBasicAuthorizationGrp,
  AssetAuthorizationContext,
  AssetCapitalizationDate,
  AssetDeactivationDate,
  _AssetClass._Text[1: Language = $session.system_language ].AssetClassName AS AssetClassName,
  PeriodType,
  SelectedCurrencyBranch,
  DisplayCurrency,
  AcqnProdnAmtInDspCrcy,
  ValueAdjustmentAmtInDspCrcy,
  RtrmtNetBookValueAmtInDspCrcy,
  AmountInDisplayCurrency AS OriginalAmountInDspCrcy,
  AssetTransactionTypeName
FROM I_FxdAstTransInCurrentPeriod
;