Our previous consultant used to develop an ABAP4 program which contains a RFC call function to call from R3 to EBP system. We located this function in the program, but when double clicking the 1st line: CALL FUNCTION 'Z1', get the following msg:
"Function module Z1 does not exist. Create Object?" with Yes, No, Cancel buttons. What does it mean? It doesn't exist in the program. We searched the code for any Includes, but can't find any. Below is the whole function code in the program:
CALL FUNCTION 'Z1'
DESTINATION p_dest
EXPORTING
i_sc_no = itab_z1-bednr
i_eban_line_no = itab_z1-bnfpo
i_eban_banfn = itab_z1-banfn
IMPORTING
e_sc_line_item = sc_item_no
EXCEPTIONS
OTHERS = 1.
IF sy-subrc <> 0.
MESSAGE e999(zu) WITH text-031 p_dest.
ENDIF.
We are looking into a problem caused by this function in the program, but why when we double click the 1st line, the msg says this function doesn't exist, where is it defined for a custom function. We also use SE37 to try to display, but can't find it. We are looking to seeing your ABAP4 expert reply soon <b><REMOVED BY MODERATOR></b>
Thanks!
Title was edited by:
Alvaro Tejada Galindo