C_StRpFxdAstLocTransferFormQry

DDL: C_STRPFXDASTLOCTRANSFERFORMQRY SQL: CSRFALTRFORMQ Type: view CONSUMPTION

Fixed Asset Location Transfer Form - Query

C_StRpFxdAstLocTransferFormQry is a Consumption CDS View that provides data about "Fixed Asset Location Transfer Form - Query" in SAP S/4HANA. It reads from 1 data source (C_StRpFxdAssetLocTransferFormC) and exposes 29 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
C_StRpFxdAssetLocTransferFormC C_StRpFxdAssetLocTransferFormC from

Parameters (6)

NameTypeDefault
P_FromPostingDate fiaagen_frm_ltr_date_from
P_ToPostingDate fiaagen_frm_ltr_date_to
P_FiscalYear fis_gjahr
P_ToFiscalPeriod fis_period_to
P_AssetAccountingKeyFigureSet faa_key_figure_set
P_NationalClsfctnSourceField fiaagen_natl_clfn_srce_fld

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_AssetKeyFigureSet _AssetKeyFigureSet _AssetKeyFigureSet.AssetAccountingKeyFigureSet = :P_AssetAccountingKeyFigureSet and _AssetKeyFigureSet.AssetAcctgKeyFigSetAnlytlCntxt = '05'

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CSRFALTRFORMQ view
VDM.viewType #CONSUMPTION view
Analytics.query true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Fixed Asset Location Transfer Form - Query view

Fields (29)

KeyFieldSource TableSource FieldDescription
CompanyCode CompanyCode Receiver Company Code
MasterFixedAsset MasterFixedAsset Fixed Asset
FixedAsset FixedAsset Sub-number
ValidityStartDate ValidityStartDate Validity Start Date
FixedAssetDescription FixedAssetDescription Description
FixedAssetFormNumber FixedAssetFormNumber
StatryRptRunID StatryRptRunID Report Run ID
OldAssetLocation OldAssetLocation
OldAssetPlant OldAssetPlant
NewAssetLocation NewAssetLocation
NewAssetPlant NewAssetPlant
OldAssetCostCenter OldAssetCostCenter
NewAssetCostCenter NewAssetCostCenter
AcquisitionValueAmtInCCCrcy AcquisitionValueAmtInCCCrcy
MasterFixedAssetDescription _MasterFixedAsset MasterFixedAssetDescription
AssetClass AssetClass Asset Class
AssetClassDescription
Ledger Ledger Ledger
AssetAdditionalDescription AssetAdditionalDescription
ValidityEndDate ValidityEndDate ValidTo
Inventory Inventory Ci Inventory
AssetSerialNumber AssetSerialNumber
NationalClassification NationalClassification
NationalClassificationDesc NationalClassificationDesc
CompanyCodeCurrency CompanyCodeCurrency Local Currency
CompanyCodeName CompanyCodeName Company Name
AssetDepreciationArea AssetDepreciationArea Deprec. Area
StatryRptgEntity StatryRptgEntity Reporting Entity
StatryRptCategory StatryRptCategory Report ID

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_StRpFxdAstLocTransferFormQry.
-- 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: CSRFALTRFORMQ
-- Parameters: P_FromPostingDate : fiaagen_frm_ltr_date_from, P_ToPostingDate : fiaagen_frm_ltr_date_to, P_FiscalYear : fis_gjahr, P_ToFiscalPeriod : fis_period_to, P_AssetAccountingKeyFigureSet : faa_key_figure_set, P_NationalClsfctnSourceField : fiaagen_natl_clfn_srce_fld

CREATE VIEW C_StRpFxdAstLocTransferFormQry AS
SELECT
  CompanyCode,
  MasterFixedAsset,
  FixedAsset,
  ValidityStartDate,
  FixedAssetDescription,
  FixedAssetFormNumber,
  StatryRptRunID,
  OldAssetLocation,
  OldAssetPlant,
  NewAssetLocation,
  NewAssetPlant,
  OldAssetCostCenter,
  NewAssetCostCenter,
  AcquisitionValueAmtInCCCrcy,
  _MasterFixedAsset.MasterFixedAssetDescription AS MasterFixedAssetDescription,
  AssetClass,
  _AssetClass._Text[1:Language = $session.system_language].AssetClassDescription AS AssetClassDescription,
  Ledger,
  AssetAdditionalDescription,
  ValidityEndDate,
  Inventory,
  AssetSerialNumber,
  NationalClassification,
  NationalClassificationDesc,
  CompanyCodeCurrency,
  CompanyCodeName,
  AssetDepreciationArea,
  StatryRptgEntity,
  StatryRptCategory
FROM C_StRpFxdAssetLocTransferFormC
LEFT OUTER JOIN I_AssetKeyFigureSet AS _AssetKeyFigureSet ON _AssetKeyFigureSet.AssetAccountingKeyFigureSet = :P_AssetAccountingKeyFigureSet AND _AssetKeyFigureSet.AssetAcctgKeyFigSetAnlytlCntxt = '05'  -- association [0..1]
;