RFKIKA02 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RFKIKA02 into the relevant SAP transactions such as SE38 or SE80
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.
Title: Transfer Data from FI Bank Storage (F4 Help)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = sy-cprog dynumb = sy-dynnr translate_to_upper = 'X' * REQUEST = ' ' * PERFORM_CONVERSION_EXITS = ' ' TABLES dynpfields = t_dynpflds EXCEPTIONS invalid_abapworkarea = 1 invalid_dynprofield = 2 invalid_dynproname = 3 invalid_dynpronummer = 4 invalid_request = 5 no_fielddescription = 6 invalid_parameter = 7 undefind_error = 8 OTHERS = 9.
CONVERT_DATE_TO_INTERNAL CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL' EXPORTING date_external = t_dynpflds-fieldvalue IMPORTING date_internal = p_azdat EXCEPTIONS date_external_is_invalid = 1 OTHERS = 2.
FKK_BANK_STATEMENT_F4 CALL FUNCTION 'FKK_BANK_STATEMENT_F4' EXPORTING i_bukrs = p_bukrs i_hbkid = p_hbkid i_hktid = p_hktid * I_AZNUM = i_azdat = p_azdat * I_KUKEY = IMPORTING e_hktid = h_hktid e_hbkid = h_hbkid e_aznum = h_aznum e_azdat = h_azdat e_kukey = h_kukey EXCEPTIONS bank_statmnt_not_found = 1 no_selection = 2 OTHERS = 3.
CONVERT_DATE_TO_EXTERNAL CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL' EXPORTING date_internal = h_azdat IMPORTING date_external = t_dynpflds-fieldvalue EXCEPTIONS date_internal_is_invalid = 1 OTHERS = 2.
DYNP_VALUES_UPDATE CALL FUNCTION 'DYNP_VALUES_UPDATE' EXPORTING dyname = sy-cprog dynumb = sy-dynnr TABLES dynpfields = t_dynpflds EXCEPTIONS invalid_abapworkarea = 1 invalid_dynprofield = 2 invalid_dynproname = 3 invalid_dynpronummer = 4 invalid_request = 5 no_fielddescription = 6 undefind_error = 7 OTHERS = 8.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = sy-cprog dynumb = sy-dynnr translate_to_upper = 'X' TABLES dynpfields = t_selfield EXCEPTIONS OTHERS = 1.
CONVERT_DATE_TO_INTERNAL CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL' EXPORTING date_external = t_selfield-fieldvalue IMPORTING date_internal = t_selfield-fieldvalue EXCEPTIONS date_external_is_invalid = 1 OTHERS = 2.
GET_BANK_ACCOUNT CALL FUNCTION 'GET_BANK_ACCOUNT' EXPORTING i_bankl = ls_absnd-bankl i_bnkn2 = l_bankn IMPORTING e_t012k = ls_t012k EXCEPTIONS input_wrong = 1 bank_account_not_found = 2 bank_key_false = 3 bank_key_not_found = 4 currency_false = 5 currency_not_found = 6 multiple_bank_account = 7 account_type_false = 8 account_type_not_found = 9 OTHERS = 10.
HELP_VALUES_GET_NO_DD_NAME CALL FUNCTION 'HELP_VALUES_GET_NO_DD_NAME' EXPORTING display = ' ' selectfield = h_selectfield titel = text-run no_conversion = ' ' IMPORTING ind = sy-tabix TABLES fields = t_fields full_table = t_fkkbstmv_f4 EXCEPTIONS OTHERS = 4.
DYNP_VALUES_UPDATE CALL FUNCTION 'DYNP_VALUES_UPDATE' EXPORTING dyname = sy-cprog dynumb = sy-dynnr TABLES dynpfields = t_update EXCEPTIONS OTHERS = 0.
DD_DOMVALUE_TEXT_GET CALL FUNCTION 'DD_DOMVALUE_TEXT_GET' EXPORTING domname = ls_dd07v-domname value = ls_dd07v-domvalue_l IMPORTING dd07v_wa = ls_dd07v rc = l_rc.
ICON_CREATE call function 'ICON_CREATE' "Note 1486105 exporting name = s_status_icon info = s_status_txt add_stdinf = space importing result = e_status_icon exceptions others = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.