RFKKRLWP 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 RFKKRLWP into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FP09ALV - Returns Lot Overview
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: PL_ACCO = Bank account number
Selection Text: PL_AMOU = Payment amount
Selection Text: PL_CURR = Currency Key
Selection Text: PL_DATE = Date
Selection Text: PL_KEYR = Lot
Selection Text: PL_MAXN = Max.number of payments
Selection Text: PL_STARS = Status
Title: ALV Report for Returns Lot
Text Symbol: 001 = Search crit.
Text Symbol: 002 = Diagn.
Text Symbol: 003 = Do you still want to continue?
Text Symbol: 004 = Y
Text Symbol: 005 = No
Text Symbol: 006 = Display
Text Symbol: 007 = Lot restriction
Text Symbol: 008 = Hit list restriction
Text Symbol: 010 = Lot &1 of &2 is being scanned
Text Symbol: 011 = Data has been read, list is being prepared
Text Symbol: 100 = One Return
Text Symbol: 101 = &1 Returns
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING TABNAME = 'PL_KEYR' FIELDNAME = 'LOW' SEARCHHELP = 'FKKRS' DYNPPROG = 'RFKKRLWP' DYNPNR = '1000' DYNPROFIELD = 'PL_KEYR-LOW'.
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING TABNAME = 'PL_KEYR' FIELDNAME = 'HIGH' SEARCHHELP = 'FKKRS' DYNPPROG = 'RFKKRLWP' DYNPNR = '1000' DYNPROFIELD = 'PL_KEYR-HIGH'.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = PL_REPID I_CALLBACK_USER_COMMAND = G_USER_COMMAND I_STRUCTURE_NAME = 'FKKRLWPD' IS_LAYOUT = GS_LAYOUT IT_FIELDCAT = GT_FIELDCAT[] I_GRID_TITLE = LV_GRID_TITLE I_SAVE = 'A' TABLES T_OUTTAB = PL_RLOT_POS.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING PERCENTAGE = PERCENTAGE TEXT = MESSAGE.
FKK_RLS_AR_GET CALL FUNCTION 'FKK_RLS_AR_GET' EXPORTING I_KEYR1 = PL_RLOT-KEYR1 TABLES T_DFKKRP = IT_AR_DFKKRP EXCEPTIONS ERROR_MESSAGE = 1 OTHERS = 1.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING * PERCENTAGE = 0 TEXT = 'Printing preparing'(011).
FKK_RLS_ITEM_DETAILS CALL FUNCTION 'FKK_RLS_ITEM_DETAILS' EXPORTING I_KEYR1 = PL_RLOT_POS-KEYR1 I_POSRA = PL_RLOT_POS-POSRA I_RLS_STATUS = PL_RLOT-STARS.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TITLEBAR = 'Diagnosis'(002) DIAGNOSE_OBJECT = 'LOT_NUMBER_NOTICE' TEXT_QUESTION = 'Go on ?'(003) TEXT_BUTTON_1 = 'No'(005) ICON_BUTTON_1 = 'ICON_SYSTEM_UNDO' TEXT_BUTTON_2 = 'Yes'(004) ICON_BUTTON_2 = 'ICON_OKAY' * DEFAULT_BUTTON = '1' DISPLAY_CANCEL_BUTTON = ' ' * USERDEFINED_F1_HELP = ' ' START_COLUMN = 25 START_ROW = 6 * POPUP_TYPE = IMPORTING ANSWER = ANSWER TABLES PARAMETER = PL_NUMBER_TABLE.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TITLEBAR = 'Notice'(006) DIAGNOSE_OBJECT = 'LOT_NUMBER_NOTICE_2' TEXT_QUESTION = 'Go on ?'(003) TEXT_BUTTON_1 = 'No'(005) ICON_BUTTON_1 = 'ICON_SYSTEM_UNDO' TEXT_BUTTON_2 = 'Yes'(004) ICON_BUTTON_2 = 'ICON_OKAY' * DEFAULT_BUTTON = '1' DISPLAY_CANCEL_BUTTON = ' ' * USERDEFINED_F1_HELP = ' ' START_COLUMN = 20 START_ROW = 15 * POPUP_TYPE = IMPORTING ANSWER = ANSWER.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.