R_FinTransMainFlowTP

DDL: R_FINTRANSMAINFLOWTP Type: view_entity TRANSACTIONAL

Financial Transaction Main Flow

R_FinTransMainFlowTP is a Transactional CDS View that provides data about "Financial Transaction Main Flow" in SAP S/4HANA. It reads from 1 data source (I_FinTransMainFlow) and exposes 27 fields with key fields CompanyCode, FinancialTransaction, FinancialInstrumentActivity, FinTransFlowCreationDate, FinTransFlowCreationTime.

Data Sources (1)

SourceAliasJoin Type
I_FinTransMainFlow I_FinTransMainFlow from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Financial Transaction Main Flow view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY FinancialTransaction FinancialTransaction Transaction
KEY FinancialInstrumentActivity FinancialInstrumentActivity
KEY FinTransFlowCreationDate FinTransFlowCreationDate
KEY FinTransFlowCreationTime FinTransFlowCreationTime
KEY FinTransFlowNumber FinTransFlowNumber
FinancialInstrProductCategory _FinancialTransaction FinancialInstrProductCategory
TreasuryContractType TreasuryContractType Treasury Contract Type
FinancialTransactionDirection FinancialTransactionDirection
FinTransFlowType FinTransFlowType Flow Type
FinTransFlowPaytAmtDirection FinTransFlowPaytAmtDirection
FinTransFlowPaymentDate FinTransFlowPaymentDate
FinTransFlowPaytAmt FinTransFlowPaytAmt
FinTransFlowPaytAmtCrcy FinTransFlowPaytAmtCrcy
FinTransFlowInLoclCrcyPaytAmt FinTransFlowInLoclCrcyPaytAmt
LocalCurrency LocalCurrency Local Currency
FinTransFlowLoclCrcyCnvrsnRate FinTransFlowLoclCrcyCnvrsnRate
FinTransFlowNomAmt FinTransFlowNomAmt
FinTransFlowNomAmtCrcy FinTransFlowNomAmtCrcy
AssignmentReference AssignmentReference Assignment Reference
FinTransFlwLoclCrcyAmtCalcType FinTransFlwLoclCrcyAmtCalcType
FinTransFlowCalculationDate FinTransFlowCalculationDate
FlowCalcDateIsExclusive FlowCalcDateIsExclusive
FlowCalcDateIsMonthEnd FlowCalcDateIsMonthEnd
FinTransPaytRateInPercent FinTransPaytRateInPercent
_FinancialTransaction _FinancialTransaction
_FinTrans _FinTrans

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 R_FinTransMainFlowTP.
-- 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 R_FinTransMainFlowTP AS
SELECT
  CompanyCode,
  FinancialTransaction,
  FinancialInstrumentActivity,
  FinTransFlowCreationDate,
  FinTransFlowCreationTime,
  FinTransFlowNumber,
  _FinancialTransaction.FinancialInstrProductCategory AS FinancialInstrProductCategory,
  TreasuryContractType,
  FinancialTransactionDirection,
  FinTransFlowType,
  FinTransFlowPaytAmtDirection,
  FinTransFlowPaymentDate,
  FinTransFlowPaytAmt,
  FinTransFlowPaytAmtCrcy,
  FinTransFlowInLoclCrcyPaytAmt,
  LocalCurrency,
  FinTransFlowLoclCrcyCnvrsnRate,
  FinTransFlowNomAmt,
  FinTransFlowNomAmtCrcy,
  AssignmentReference,
  FinTransFlwLoclCrcyAmtCalcType,
  FinTransFlowCalculationDate,
  FlowCalcDateIsExclusive,
  FlowCalcDateIsMonthEnd,
  FinTransPaytRateInPercent
FROM I_FinTransMainFlow
;