JBD_STR_FX_DATA_MAP SAP (Details of Forex Transaction) Structure details

Dictionary Type: Structure
Description: Details of Forex Transaction




ABAP Code to SELECT data from JBD_STR_FX_DATA_MAP
Related tables to JBD_STR_FX_DATA_MAP
Access table JBD_STR_FX_DATA_MAP




Structure field list including key, data, relationships and ABAP select examples

JBD_STR_FX_DATA_MAP is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Details of Forex Transaction" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_JBD_STR_FX_DATA_MAP TYPE JBD_STR_FX_DATA_MAP.

The JBD_STR_FX_DATA_MAP table consists of various fields, each holding specific information or linking keys about Details of Forex Transaction data available in SAP. These include BUKRS (Company Code), RFHA (Financial Transaction), PRODUCT_TYPE (Product Type), TRANSACTION_TYPE (Financial Transaction Type).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified


SAP JBD_STR_FX_DATA_MAP structure fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
BUKRSCompany Code BUKRSCHAR4Assigned to domainBUKRSBUKC_T001
RFHAFinancial Transaction TB_RFHACHAR13Assigned to domainALPHAT_RFHAFANVTBA
PRODUCT_TYPEProduct Type VVSARTCHAR3Assigned to domainVVSARTSANVVSART_APPL_BAS
TRANSACTION_TYPEFinancial Transaction Type TB_SFHAARTCHAR3Assigned to domainT_SFHAARTT02C_AT10
TRANSACTION_ACTIVITYTransaction activity TB_RFHAZUNUMC5T_RFHAZUFAS
ACTIVITY_CATTransaction Activity Category TB_SFGZUTYNUMC2Assigned to domainT_SFGZUTYC_AT02
PARTNERBusiness Partner Number TB_KUNNR_NEWCHAR10Assigned to domainALPHABU_PARTNERBPABUPA
BPEXTBusiness Partner Number in External System BU_BPEXTCHAR20CHAR20
CONTRACT_DATEContract Conclusion Date TB_DVTRABDATS8DATUM
CONTRACT_TIMETime of contract conclusion TB_TVTRABTIMS6UZEIT
CONTACT_PERSONContact Person TB_GSPPARTCHAR19TEXT19
TRADERTrader RDEALERCHAR12TZDEARDEALER
ACCT_ASSIGNMENT_REFAccount Assignment Reference in Financial Assets Management RREFKONTCHAR8T037SUSTRUKRE
PORTFOLIOPortfolio RPORTBCHAR10TWPOBRPORTBT50H_RPORTB_CORE
FINANCE_PROJECTFinance Project TB_TFPROJCHAR13T_TFPROJ
GUARANTORGuarantor of Financial Transaction TB_RGARANT_NEWCHAR10BUT000ALPHABU_PARTNERBPABUPA
MASTER_AGREEMENTMaster Agreement TB_RMAIDCHAR10VTBMAALPHAT_RMAIDTMAVTMA
ASSIGNMENTAssignment TB_ZUONDCHAR18TEXT18
EXTERNAL_REFERENCEExternal Reference TB_NORDEXTCHAR16FTI_CHAR16LOW
INTERNAL_REFERENCEInternal Reference TB_REFERCHAR16CHAR16
CHARACTERISTICSCharacteristics TB_MERKMCHAR25CHAR25
AUTH_GROUPAuthorization Group TBEGRUCHAR4TRBRGTRBEGRU
CREATE_USEREntered by TB_CRUSERCHAR12SYCHAR12
ENTRY_DATEEntered On TB_DCRDATDATS8DATUM
CHANGE_USERLast Changed by TB_UPUSERCHAR12SYCHAR12
CHANGE_DATEChanged on TB_DUPDATDATS8DATUM
CONFIRMATION_STATUSConfirmation Status TB_CONFNUMC1TB_CONF
RECONFIRMATION_STATUSCounterconfirmation TB_RECONFNUMC1TB_RECONF
FACILITYTransaction Number of Facility TB_FACILITYNRCHAR13Assigned to domainALPHAT_RFHAF4_FTR_FC
FACILITY_COMPANY_CODECompany Code of Facility TB_FACILITYBUKRSCHAR4Assigned to domainBUKRSH_T001
VALUATION_CLASSGeneral Valuation Class TPM_COM_VAL_CLASSNUMC4Assigned to domainTPM_COM_VAL_CLASSCVC
ACTIVE_STATUS_TRANSACTIONActive Status of Transaction or Activity TB_SAKTIVNUMC1T_SAKTIV
ACTIVE_STATUS_ACTIVITYActive Status of Transaction or Activity TB_SAKTIVNUMC1T_SAKTIV
RELEASE_STATUSTransaction Release: Release Status TB_FRGZUSTCHAR1T_FRGZUST
REVERSAL_REASONReason for Reversal SSTOGRDCHAR2Assigned to domainSSTOGRD
BUY_CURRENCYCurrency of transaction TB_WGSCHFTCUKY5Assigned to domainWAERS
BUY_CURRENCY_ISOISO currency code ISOCDCHAR3ISOCD
SELL_CURRENCYCurrency of transaction TB_WGSCHFTCUKY5Assigned to domainWAERS
SELL_CURRENCY_ISOISO currency code ISOCDCHAR3ISOCD
LEAD_CURRENCYLeading currency TB_WLWAERSCUKY5Assigned to domainWAERS
LEAD_CURRENCY_ISOISO currency code ISOCDCHAR3ISOCD
FOLLOW_CURRENCYFollowing Currency TB_WFWAERSCUKY5Assigned to domainWAERS
FOLLOW_CURRENCY_ISOISO currency code ISOCDCHAR3ISOCD
BUY_AMOUNTPayment Amount BAPITB_BZBETRDEC23(4) BAPICURR
BUY_AMOUNT_CHARAmount as text field TM_XBETRAGCHAR18T_XBETRG18
SELL_AMOUNTPayment Amount BAPITB_BZBETRDEC23(4) BAPICURR
SELL_AMOUNT_CHARAmount as text field TM_XBETRAGCHAR18T_XBETRG18
VALUE_DATEValue date of forex transaction TB_DVALUTADATS8DATUM
FORWARD_RATERate of Forex Transaction TB_KKURSDEC13(9) TB_KKURS
SPOT_RATESpot Rate TB_KKASSADEC13(9) TB_KKURS
SWAP_RATESwap Rate TB_KSWAPDEC13(9) T_SWKURS

Key field Non-key field



How do I retrieve data from SAP structure JBD_STR_FX_DATA_MAP using ABAP code?

As JBD_STR_FX_DATA_MAP is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on JBD_STR_FX_DATA_MAP as there is no data to select.

How to access SAP table JBD_STR_FX_DATA_MAP

Within an ECC or HANA version of SAP you can also view further information about JBD_STR_FX_DATA_MAP and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!