SAP Reports / Programs | Financial Accounting | Contract Accounts Receivable and Payable(FI-CA) SAP FI

RFKK_DFKKREGOBJ SAP ABAP Report - Subscriptions for Notification of Clearing/Clearing Reset







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 DFKKREGOBJ...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 RFKK_DFKKREGOBJ into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

FP_REG - Subscriptions for Clearing


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFKK_DFKKREGOBJ. "Basic submit
SUBMIT RFKK_DFKKREGOBJ AND RETURN. "Return to original report after report execution complete
SUBMIT RFKK_DFKKREGOBJ VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT RFKK_DFKKREGOBJ

INCLUDE FKK_CLEARING_SERVICE_CONSTANTS. "#EC INCL_OK


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFKK_DFKKREGOBJ or its description.