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: 

Automatic Distribution of Exchange Rates between two Systems

mithun_shetty4
Contributor
0 Kudos

My requirement is to Automatically Update Exchange Rate in ECC 6.0. The Exchange Rates are Maintained in 4.6 C System.

I am Currently Using program RFALEX00 in 4.6C system to Create IDOCS and Transfer it to ECC 6.0

Similarly i am Using ExchangeRate BAPI for the Inbound Process in ECC 6.0.

Now my Problem is this Change Pointers is Not Activated for Transfer of Exchange Rate. If some one Knows How to Activate change pointers for Exchange rate please let me know.

I also tried Executing RSIMPCURR and RSIMPCURT but it’s giving me a Dump.

I Donot know what are the Purpose of RSIMPCURR and RSIMPCURT. If Some one can explain this it would be great.

The Dump is due to this FM in the Program.

CALL FUNCTION 'RSAR_DESTINATION_GET'

EXPORTING

I_LOGSYS = L_SOURCE

IMPORTING

E_DESTINATION = L_DESTINATION

EXCEPTIONS

NOT_EXIST = 1

OTHERS = 2.

IF SY-SUBRC <> 0.

MESSAGE X000(RH).

ENDIF.

Incase if someone has worked on a similar problem please help.

Thanks,

Mithun.

1 ACCEPTED SOLUTION

varma_narayana
Active Contributor
0 Kudos

Hi..

These are the Steps to configure Change pointers for any master data.

In your Case you have to use the Message type of Exchange Rates.

Steps:

First of All you have to Create the Basic ALE configurations like Port, Partner profiles etc.

These are the Steps to Cofigure Change pointers:

Tcode : BD61 - This will Activate the Change pointers Generally

Here you select the Check box

<b> Activate Change pointers Generally</b>

Tcode BD50 : Activate Change pointers for individual Message types

Flag the Check box for ur Message types.

Material - MATMAS

Vendor - CREMAS

Now you have to Schedule the Report RBDMIDOC periodically to pocess Change pointers and Send the IDOCs.

So wheneven you change a material or Vendor the Idocs has to be generated and distributed.

<b>Reward if Helpful</b>

2 REPLIES 2

varma_narayana
Active Contributor
0 Kudos

Hi..

These are the Steps to configure Change pointers for any master data.

In your Case you have to use the Message type of Exchange Rates.

Steps:

First of All you have to Create the Basic ALE configurations like Port, Partner profiles etc.

These are the Steps to Cofigure Change pointers:

Tcode : BD61 - This will Activate the Change pointers Generally

Here you select the Check box

<b> Activate Change pointers Generally</b>

Tcode BD50 : Activate Change pointers for individual Message types

Flag the Check box for ur Message types.

Material - MATMAS

Vendor - CREMAS

Now you have to Schedule the Report RBDMIDOC periodically to pocess Change pointers and Send the IDOCs.

So wheneven you change a material or Vendor the Idocs has to be generated and distributed.

<b>Reward if Helpful</b>

0 Kudos

Hello Narayana,

Thanx for Finding time to Reply.

I Tried the Same Some time back

Activating Change Pointers for ExchangeRate Message Type .

But i get a dump when Report RBDMIDOC is Executed.

I believe the Dump is due to the BAPI_EXCHANGERATE_SAVEREPLICA.

Any thoughts on this .

Regards,

/M