SAP for Utilities Discussions
Connect with fellow SAP users to share best practices, troubleshoot challenges, and collaborate on building a sustainable energy future. Join the discussion.
cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with FKK_FIKEY_CHECK

Former Member
0 Kudos

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.

2 REPLIES 2

former_member213733
Active Contributor
0 Kudos

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

Former Member
0 Kudos

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