FSIMAP_Import_Tmp

DDL: FSIMAP_IMPORT_TMP Type: view

Import FS Item Mapping Header Data

FSIMAP_Import_Tmp is a CDS View that provides data about "Import FS Item Mapping Header Data" in SAP S/4HANA. It reads from 1 data source (fincs_fsimaph_tm) and exposes 16 fields. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
fincs_fsimaph_tm fincs_fsimaph_tm from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CnsldtnChartOfAccounts _CCOA $projection.consolidationchartofaccounts = _CCOA.ConsolidationChartOfAccounts
[0..1] I_CnsldtnGLChartOfAccounts _COA $projection.chartofaccounts = _COA.ChartOfAccounts

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FSIMAPIMTM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Import FS Item Mapping Header Data view

Fields (16)

KeyFieldSource TableSource FieldDescription
headerid headerid UUID
ConsolidationChartOfAcctsText
CHARTOFACCOUNTSNAME
username username User who owns item
status status Workflow Status
status_text
check_result check_result Result Code
extnumber extnumber External ID
lognumber lognumber UUID
is_update is_update TRUE
language language Report Text Language
error_items error_items INT4
coa_status coa_status Single-Character Flag
ccoa_status ccoa_status Single-Character Flag
draftid draftid UUID
access_type access_type Draft Access Type

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 FSIMAP_Import_Tmp.
-- 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 FSIMAP_Import_Tmp AS
SELECT
  headerid,
  _CCOA._Text[1: Language = $session.system_language].ConsolidationChartOfAcctsText AS ConsolidationChartOfAcctsText,
  _COA._Text[1: Language = $session.system_language].ChartOfAccountsName AS CHARTOFACCOUNTSNAME,
  username,
  status,
  cast( _DomainText.ddtext as fincs_md_upld_status_text ) AS status_text,
  check_result,
  extnumber,
  lognumber,
  is_update,
  language,
  error_items,
  coa_status,
  ccoa_status,
  draftid,
  access_type
FROM fincs_fsimaph_tm
LEFT OUTER JOIN I_CnsldtnChartOfAccounts AS _CCOA ON consolidationchartofaccounts = _CCOA.ConsolidationChartOfAccounts  -- association [0..1]
LEFT OUTER JOIN I_CnsldtnGLChartOfAccounts AS _COA ON chartofaccounts = _COA.ChartOfAccounts  -- association [0..1]
;