2011 Feb 07 1:50 AM
Hi,
I am facing an issue with FKK_FIKEY_CHECK function module. The FI Key value that is passed to the function module is not getting generated if it doesnt exist in the system. I am not facing any issue in the development. But in the quality system it is not returning any exception and if I go and check the table DFKKSUMC the FI key entry doesnt exist. Later if I use this FI Key for the document creation it is going for dump.
I manually ran the function module in quality, the FI key is getting generated and I can see an entry in DFKKSUMC table.
Any Idea of what is happening?
The code that I am using is below:
CALL FUNCTION 'FKK_FIKEY_CHECK'
EXPORTING
i_fikey = var_fikey
I_OPEN_WITHOUT_DIALOG = 'X'
EXCEPTIONS
NON_EXISTING = 1
OTHERS = 2.
Regards,
Karthick.
2011 Feb 07 9:07 AM
Hi ,
Have you done any modification to events 1113 and 6036 , these are the events for changing the reconciliation key .
Secondly , check the following :
- What is the dump saying , what is the error .
- Compare the table TFKFBC between devlopment and quality and see if any events are missing that you forgot to transport .
Provide more details on the error to comment further .
Regards ,
Dewang
2011 Feb 07 1:02 PM
Can you use this parameter also while calling the FM?
CALL FUNCTION 'FKK_FIKEY_CHECK'
EXPORTING
i_fikey = fikey_rv
i_open_on_request = 'X'
EXCEPTIONS
error_message = 1.
i_open_on_request and no dialogue both.
Cheers
Jignesh