FKK_PAYMENTRELEASED is a standard Executable ABAP Report 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 FKK_PAYMENTRELEASED 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.
INCLUDE PAYMENTRELEASETOP.
No SAP DATABASE tables are accessed within this REPORT code!
FKK_BP_LINE_ITEM_SELECT_SINGLE CALL FUNCTION 'FKK_BP_LINE_ITEM_SELECT_SINGLE' EXPORTING I_OPBEL = P_OPBEL I_OPUPW = P_OPUPW I_OPUPK = P_OPUPK I_OPUPZ = P_OPUPZ * IX_SAMPLE_FLAG = ' ' IMPORTING E_FKKOP = I_FKKOP * TABLES * PT_SELECTTAB = .
FKK_S_LOCK_GET CALL FUNCTION 'FKK_S_LOCK_GET' EXPORTING I_KEYSTRUCTURE = LS_STRUCTURE I_LOTYP = '02' "gc_lotyp_position I_PROID = '10' "gc_proid_out_pay * i_lockdate = sy-datum I_X_MASS_ACCESS = 'X' I_X_DEPENDANT_LOCKTYPES = ' ' IMPORTING E_X_LOCK_EXIST = L_X_LOCK_EXIST * e_x_dependant_lock_exist = TABLES IT_LOCKREASON = IT_LOCKREASON ET_LOCKS = IT_DFKLOCK * et_dependant_locks = it_dependant_dfklock EXCEPTIONS OTHERS = 1.
FKK_S_LOCK_DELETE CALL FUNCTION 'FKK_S_LOCK_DELETE' EXPORTING * i_appl_work_area = I_LOOBJ1 = IT_DFKLOCK-LOOBJ1 I_GPART = IT_DFKLOCK-GPART I_VKONT = IT_DFKLOCK-VKONT I_PROID = IT_DFKLOCK-PROID I_LOTYP = IT_DFKLOCK-LOTYP I_LOCKR = IT_DFKLOCK-LOCKR I_FDATE = IT_DFKLOCK-FDATE I_TDATE = IT_DFKLOCK-TDATE I_PROTECTED = 'W' EXCEPTIONS ALREADY_EXIST = 1 IMP_DATA_NOT_COMPLETE = 2 NO_AUTHORITY = 3 ENQUEUE_LOCK = 4 OTHERS = 5 .
FKK_S_LOCK_GET CALL FUNCTION 'FKK_S_LOCK_GET' EXPORTING I_KEYSTRUCTURE = LS_STRUCTURE I_LOTYP = '02' "gc_lotyp_position I_PROID = '10' "gc_proid_out_pay * i_lockdate = sy-datum I_X_MASS_ACCESS = 'X' I_X_DEPENDANT_LOCKTYPES = ' ' IMPORTING E_X_LOCK_EXIST = L_X_LOCK_EXIST * e_x_dependant_lock_exist = TABLES IT_LOCKREASON = IT_LOCKREASON et_locks = it_dfklock2 * et_dependant_locks = it_dependant_dfklock EXCEPTIONS OTHERS = 1.
FKK_S_LOCK_GET CALL FUNCTION 'FKK_S_LOCK_GET' EXPORTING i_keystructure = ls_structure i_lotyp = '02' "gc_lotyp_position i_proid = '10' "gc_proid_out_pay i_x_mass_access = 'X' i_x_dependant_locktypes = ' ' IMPORTING e_x_lock_exist = l_x_lock_exist TABLES it_lockreason = it_lockreason et_locks = it_dfklock3 EXCEPTIONS OTHERS = 1.
FKK_S_LOCK_DELETE CALL FUNCTION 'FKK_S_LOCK_DELETE' EXPORTING * i_appl_work_area = I_LOOBJ1 = IT_DFKLOCK-LOOBJ1 I_GPART = IT_DFKLOCK-GPART I_VKONT = IT_DFKLOCK-VKONT I_PROID = IT_DFKLOCK-PROID I_LOTYP = IT_DFKLOCK-LOTYP I_LOCKR = IT_DFKLOCK-LOCKR I_FDATE = IT_DFKLOCK-FDATE I_TDATE = IT_DFKLOCK-TDATE i_protected = it_dfklock-protected EXCEPTIONS ALREADY_EXIST = 1 IMP_DATA_NOT_COMPLETE = 2 NO_AUTHORITY = 3 ENQUEUE_LOCK = 4 OTHERS = 5 .
FKK_S_LOCK_GET CALL FUNCTION 'FKK_S_LOCK_GET' EXPORTING i_keystructure = ls_structure i_lotyp = '02' "gc_lotyp_position i_proid = '10' "gc_proid_out_pay i_x_mass_access = 'X' i_x_dependant_locktypes = ' ' IMPORTING e_x_lock_exist = l_x_lock_exist TABLES it_lockreason = it_lockreason et_locks = it_dfklock3 EXCEPTIONS OTHERS = 1.
FKK_S_LOCK_DELETE CALL FUNCTION 'FKK_S_LOCK_DELETE' EXPORTING * i_appl_work_area = i_loobj1 = it_dfklock-loobj1 i_gpart = it_dfklock-gpart i_vkont = it_dfklock-vkont i_proid = it_dfklock-proid i_lotyp = it_dfklock-lotyp i_lockr = it_dfklock-lockr i_fdate = it_dfklock-fdate i_tdate = it_dfklock-tdate i_protected = it_dfklock-protected EXCEPTIONS already_exist = 1 imp_data_not_complete = 2 no_authority = 3 enqueue_lock = 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.