RFKK_DFKKREGOBJ is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for trados = fi You can use this program to Display the subscriptions for a business partner or a receiver system Create a new subscription Delete an existing subscription From a technical point of view, here a subscription is an entry in table
If you would like to execute this report or see the full code listing simply enter RFKK_DFKKREGOBJ into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FP_REG - Subscriptions for Clearing
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: MAX_SEL = Max. No. of Hits for Display
Selection Text: XCREATE = Create Entry
Selection Text: XDELETE = Delete Entry
Selection Text: XDISP = Display Entries
Selection Text: CHECKD = D .
Selection Text: GPART = D .
Selection Text: OBJKEY = D .
Selection Text: OBJTYP = D .
Selection Text: PROCES = D .
Selection Text: SYSTEM = D .
Title: Subscriptions for Notification of Clearing/Clearing Reset
Text Symbol: 001 = &3 Subscriptions for Business Partner &1
Text Symbol: 002 = &3 Subscriptions for Business System &2
Text Symbol: 003 = &3 Subscriptions for Partner &1, System &2
INCLUDE FKK_CLEARING_SERVICE_CONSTANTS. "#EC INCL_OK
No SAP DATABASE tables are accessed within this REPORT code!
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = objkey(12) " VKONT is CHAR 12 IMPORTING output = l_vkont.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = objkey(20) " VTREF is CHAR 20 IMPORTING output = l_vtref.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = objkey(12) " OPBEL is CHAR 12 IMPORTING output = l_opbel.
CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = objkey IMPORTING output = l_internal_icdr.
FKK_CLNOTIF_SUBSCRIBE CALL FUNCTION 'FKK_CLNOTIF_SUBSCRIBE' EXPORTING i_xdele = xdelete i_process = proces i_gpart = gpart i_ext_gpart = space " Not supported here i_opbel = l_opbel i_vkont = l_vkont i_vtref = l_vtref i_subap = l_subap i_internal_icdr = l_internal_icdr * I_BTD_REFERENCE = " Not supported here i_receiver_sys = system i_checkd = checkd EXCEPTIONS business_partner_missing = 1 icdr_not_found = 2 " Can not happen here receiver_system_missing = 4 event_error = 5 object_missing = 6 " Can not happen here object_not_unique = 7 " can not happen here OTHERS = 8.
FKK_DFKKREGOBJ_READ CALL FUNCTION 'FKK_DFKKREGOBJ_READ' EXPORTING i_process = proces i_gpart = gpart i_receiver_sys = l_receiver_system i_max_sel = max_sel IMPORTING et_dfkkregobj = lt_dfkkregobj.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_internal_tabname = 'LT_DFKKREGOBJ' i_structure_name = 'DFKKREGOBJ' i_client_never_display = 'X' CHANGING ct_fieldcat = rt_fieldcat EXCEPTIONS OTHERS = 1.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_grid_title = l_title it_fieldcat = rt_fieldcat it_excluding = gt_extab TABLES t_outtab = lt_dfkkregobj EXCEPTIONS OTHERS = 0. " Ignore problems
HELP_START CALL FUNCTION 'HELP_START' EXPORTING help_infos = l_help_info TABLES dynpselect = dummytab1 dynpvaluetab = dummytab2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFKK_DFKKREGOBJ - Subscriptions for Notification of Clearing/Clearing Reset RFKK_DFKKREGOBJ - Subscriptions for Notification of Clearing/Clearing Reset RFKK_DEL_DFKKZP_TREX - Delete TREX Data for Payment Search RFKK_DEL_DFKKZP_TREX - Delete TREX Data for Payment Search RFKK_DEL_DFKKZP_ARCIND - Delete archive index for payment search by document number RFKK_DEL_DFKKZP_ARCIND - Delete archive index for payment search by document number