BKK_OPD_PP_START is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use this report to process external recipient items stored in the mass run selection table for external items in a payment order...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter BKK_OPD_PP_START into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
OPD_MASS_RUN - Outgoing Payment Dispatcher Mass Run
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: P_BKKRS = D .
Selection Text: P_CURR = D .
Selection Text: P_DEBCRD = Debit / Credit
Selection Text: P_DIA = Process in Dialog
Selection Text: P_DPOST = D .
Selection Text: P_PCKS = Package Size
Selection Text: P_PRIO = D .
Selection Text: P_SIM = Simulate Process
Selection Text: P_TTYPE = D .
Title: Outgoing Payment Dispatcher
Text Symbol: 000 = Technical Log
Text Symbol: 001 = Job Control
Text Symbol: 002 = General Selection
Text Symbol: 003 = Technical Parameters
Text Symbol: 004 = All Recipient Items
Text Symbol: 005 = Only Credit Recipients
Text Symbol: 006 = Only Debit Recipients
INCLUDE: ICONS.
No SAP DATABASE tables are accessed within this REPORT code!
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'P_DEBCRD' values = lt_dd_list.
BANK_API_PP_LOG_CREATE_LOGNO CALL FUNCTION 'BANK_API_PP_LOG_CREATE_LOGNO' IMPORTING e_lognumber = lv_lognumber.
BANK_API_MR_START CALL FUNCTION 'BANK_API_MR_START' EXPORTING i_application_identification = con_appl_bkk_opd i_runid_ext = ls_param-tech-runid_ext i_flg_simulation = ls_param-tech-simulation_run IMPORTING e_massrun_id = ls_param-tech-massrun_id EXCEPTIONS failed = 1 OTHERS = 99.
BANK_MAP_PP_START CALL FUNCTION 'BANK_MAP_PP_START' EXPORTING * I_PROGN = * I_PROGDATE = SY-DATUM * I_RUNID_EXT = * I_FLG_FORCE_NEW_RUN = 'X' * I_FLG_UNIQUE_EXTID = i_applcatg = con_appl_bkk_opd * I_PACKMAN_ID = * I_TAS_PACKCR_PARAM = * I_FLG_PACKCR_ASYNC = * I_FLG_PACKFETCH_SEQ = i_xsimulrun = p_sim * I_MAXSTEPNO = i_str_appl_param = ls_param * I_STR_PRINT = i_ref_logger = lo_logger * I_FLG_DEFAULT_EMSG = '+' * I_XLOG = * I_LOGEXTNUMBER = * I_TAB_LOG = i_x_sync = abap_true i_x_use_dialog_wp = p_dia * I_X_TRIGGER_START_BY_COMMIT = ' ' * I_TAB_JOBDIST = IMPORTING e_tab_jobs = lt_jobs e_rcd_appl = lv_rcd_appl EXCEPTIONS no_out_of_sync = 1 no_export_allowed = 2 packman_invalid = 3 prepare_failed = 4 start_failed = 5 OTHERS = 6.
BANK_API_PP_LOG_CREATE_LOGNO CALL FUNCTION 'BANK_API_PP_LOG_CREATE_LOGNO' IMPORTING e_lognumber = l_extnum.
BP_JOB_MANAGEMENT CALL FUNCTION 'BP_JOB_MANAGEMENT' EXPORTING jobselect_dialog = 'N' joblist_opcode = 22 TABLES joblist = l_tab_jobs[] EXCEPTIONS OTHERS = 0.
BAL_DB_SEARCH CALL FUNCTION 'BAL_DB_SEARCH' EXPORTING i_client = sy-mandt i_s_log_filter = ls_log_filter IMPORTING e_t_log_header = lt_logheaders EXCEPTIONS OTHERS = 1.
BAL_DB_LOAD CALL FUNCTION 'BAL_DB_LOAD' EXPORTING i_t_log_header = lt_logheaders IMPORTING e_t_log_handle = lt_loghandles EXCEPTIONS no_logs_specified = 1 log_not_found = 2 log_already_loaded = 3 OTHERS = 4.
BAL_DSP_PROFILE_STANDARD_GET CALL FUNCTION 'BAL_DSP_PROFILE_STANDARD_GET' IMPORTING e_s_display_profile = ls_display_profile.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ls_display_profile i_t_log_handle = lt_loghandles EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.