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: 

Reconciliation Key

Former Member
0 Kudos

Hi Friends

How system generate Reconciliation while doing diffrent types of transactions ex Payment lot Account maintenance etc

Regards

Srinivas

1 ACCEPTED SOLUTION

rajesh_popat3
Active Participant
0 Kudos

Hi,

For Event 1113, the FM called has the task of proposing a reconciliation key.

Hope this helps!!

Regards,

Rajesh Popat

View solution in original post

4 REPLIES 4

rajesh_popat3
Active Participant
0 Kudos

Hi,

For Event 1113, the FM called has the task of proposing a reconciliation key.

Hope this helps!!

Regards,

Rajesh Popat

0 Kudos

HI Rajesh

Thank you for your quick response.

FM- FKK_SAMPLE_1113 proposes recon key based on the origin Group what you are maintian in IMG.

My basic doubt is how this FM is coming.

Can you elaborate little more.

Regards

Srinivas

rajesh_popat3
Active Participant
0 Kudos

Hi,

I am not sure, if i understand your question, but below is some related things on this. Hope it might be of some help.

In transaction FQEVENTS, we can configure the FM's.

When the transactions is called, the FKK_FUNC_MODULE_DETERMINE is called passing the event and retreiving the FM's mentioned in FQEVENTS.

These FM's are called in sequence during execution of the transaction.

Eg: When the payment lot is created,

DFKKZK strucutre is filled.

In the standard code logic, it directly makes the assignment

DFKKZK-FIKEY = DFKKZK-KEYZ1

Then the below FM is called -

passing the application area and the event. It gets all the list of FM's mentioned in FQEVENTS (customizing).

CALL FUNCTION 'FKK_FUNC_MODULE_DETERMINE'

EXPORTING

I_APPLK = XAPPLK

I_FBEVE = '1113'

TABLES

T_FBSTAB = FBSTAB.

Based on the values in FBSTAB, the FM is called. (By default FM FKK_SAMPLE_1113 is mentioned for the customizing event 1113).

Once the FM name is retrieved (considered 1113 event), below logic is executed. If there are multiple entries for FBSTAB, below logic is called in loop.

CALL FUNCTION FBSTAB-FUNCC

EXPORTING

I_HERKF = DFKKZK-HERKF

I_RESOB = '001'

I_RESKY = RESKY

I_FIKEY = DFKKZK-FIKEY

IMPORTING

E_FIKEY = DFKKZK-FIKEY

EXCEPTIONS

OTHERS = 0.

Hope this is of some help!!

Thanks & Regards,

Rajesh Popat

Former Member
0 Kudos

Thank you Rajesh.

I will try this.