RFFMCY_TEXT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program copies texts for the budget header, line items, and standard budget long text of the
If you would like to execute this report or see the full code listing simply enter RFFMCY_TEXT into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FMCYTEXT - Copy Budget Text
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: S_MEASR = D .
Selection Text: S_GRANT = D .
Selection Text: S_FONDS = D .
Selection Text: S_FIPEX = D .
Selection Text: S_FICTR = D .
Selection Text: S_FAREA = D .
Selection Text: S_BUDPER = D .
Selection Text: P_UPMTXT = Update mode text
Selection Text: P_UPMODE = D .
Selection Text: P_TVERS = Target Version
Selection Text: P_TFYEAR = Target Fiscal Year
Selection Text: P_TEST = Test Run
Selection Text: P_TDNAME = User Text
Selection Text: P_TBT = Target Budget Type
Selection Text: P_SVERS = Source Version
Selection Text: P_SFYEAR = Source Fiscal year
Selection Text: P_SELVAR = D .
Selection Text: P_SBT = Source Budget Type
Selection Text: P_FMAREA = D .
Selection Text: P_BUDCAT = D .
Selection Text: P_BUCATT = Budget Category text
Title: Copy Budget Text
Text Symbol: 075 = Layout
Text Symbol: 050 = COPY
Text Symbol: 048 = Copy Budget Text
Text Symbol: 044 = Derivation Strategy
Text Symbol: 043 = User Text
Text Symbol: 042 = Update mode
Text Symbol: 036 = Add text
Text Symbol: 035 = Add new Text only
Text Symbol: 034 = Reset and overwrite
Text Symbol: 013 = Processing Options
Text Symbol: 012 = Target Budget Cat.
Text Symbol: 011 = Source Budget Cat.
Text Symbol: 010 = Target Budget Type
Text Symbol: 009 = Source Budget Type
Text Symbol: 008 = Budget Category
Text Symbol: 006 = Target Fiscal Year
INCLUDE IRFFMCY_TEXTTOP.
INCLUDE IFIFMBAS_FMACC_SEL.
INCLUDE FMMP_TX_SOURCE_TARGET.
INCLUDE RKASMAWF.
INCLUDE IRFFMCY_TEXT_F01.
INCLUDE FMMP_GET_DIMRANGE_SELECTION.
INCLUDE IRFFMCY_TEXT_CHECK_SCREEN_1000.
No SAP DATABASE tables are accessed within this REPORT code!
FM_FYC_SELSCR_STATUS_SET CALL FUNCTION 'FM_FYC_SELSCR_STATUS_SET' IMPORTING e_text_block_fma = bltxtfma e_text_block_mass = bltxtmss e_text_button = pbfmsele e_title_selvar_f4 = g_selvar_f4_title.
FM_MULTIPLE_SELECTION_TEXT_GET CALL FUNCTION 'FM_MULTIPLE_SELECTION_TEXT_GET' EXPORTING * i_flg_funds_only = con_on i_flg_msel_active = p_mass IMPORTING e_text_button = pbfmsele.
FM_FYC_SCHEDMAN_INIT CALL FUNCTION 'FM_FYC_SCHEDMAN_INIT' EXPORTING i_repid = 'RFFMCY_TEXT' i_tcode = sy-tcode i_wfitem = wf_witem i_wflist = wf_wlist i_flg_test = p_test IMPORTING e_f_schedman_key = g_f_schedman_key.
BUBAS_CREATE_UID CALL FUNCTION 'BUBAS_CREATE_UID' IMPORTING e_uid_c22 = l_guid.
CONVERSION_EXIT_ALPHA_OUTPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input =
-trget_version IMPORTING output = l_f_fmbudtxt-version.
BUDGET_TEXT_GET CALL FUNCTION 'BUDGET_TEXT_GET' EXPORTING i_applic =
-applic i_fm_area = -fm_area i_budcat = -trget_budcat i_version = -trget_version i_fiscyear = -trget_fiscyear i_budtype = -trget_budtype i_address_objnr = -trget_objnr i_grant_nbr = -grant_nbr IMPORTING e_fmbudtxt = l_f_fmbudtxt EXCEPTIONS no_succesful_selection = 1 OTHERS = 2.
BUDGET_TEXT_UPDATE_DB CALL FUNCTION 'BUDGET_TEXT_UPDATE_DB' EXPORTING i_s_fmbudtxt =
-budtxt.
FM_FYC_SCHEDMAN_CLOSE CALL FUNCTION 'FM_FYC_SCHEDMAN_CLOSE' EXPORTING i_f_schedman_key = g_f_schedman_key i_wfitem = wf_witem i_wfokey = wf_okey i_aplstat = g_aplstat.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.