Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhancement spot is not triggering in Convert_Local_currency Function Module

former_member231368
Participant
0 Kudos

Dear All,

I have implemented an Enhancement Spot in Convert_Local_currency Function Module. It is working very well when execute in foreground. But When schedule it in background it is not triggering. I am exporting some values from my Z Program and importing it into the function module and over writing local amount.

Analysis:

As per my understand it is Normal function module(Not RFC) so it is not triggering as background job runs on separate WP. Please correcet me if I am wrong.

It is very urgent. Could you please advice me on this. Do let me know if any other ways to achieve it.

1 REPLY 1

jitendra_it
Active Contributor
0 Kudos

Hello Yerukala,


I am exporting some values from my Z Program and importing it into the function module and over writing local amount.

IMPORT/EXPORT does not work in background job. You have to use shared memory for this.

See below the use of shared memory.

Export lv_matnr FROM lv_matnr to SHARED MEMORY indx(JJ) id 'ZBG'.

IMPORT lv_matnr to lv_matnr from SHARED MEMORY indx(JJ) id 'ZBG'.


Check this thread also :