Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to avoid precision while loading data in FDMEE

ORAHYPFDMJun 23 2016 — edited Jun 23 2016

Hello Experts,


We are trying to extract Exchange rates data from the Tables created in a database with the help of FDMEE and then will load it in HFM application.

While performing this, data get loaded successfully but it seems value of exchange rate get round off automatically.


For example, for a particular combination of exchange rate, Value is '44.753751667' in source table after loading in into HFM, it is get rounded of to '44.754'. Seems it is using precision.

Is there any option available where we can stop this. Because our user wants the exact amount to be loaded in HFM. Now there is a bit difference of some points.


Kindly assist.


Thanks

Comments

661621
Do you want to change the linking between OIM Exchange connector and attribute proxy addresses? If you have the Exchange 9.1 connector that would be easy using attribute mapping. Could you specify the connector version.
661915
Hashtable ht = new Hashtable();
Vector msv = new Vector();
Vector msv1 = new Vector();
msv.add("SMTP:xxxx@gmail.com");
msv.add("smtp:zzzzzz@yahoo.co.in");
msv.add("X400:c=US;a= ;p=First Organizati;o=Exchange;s=gupta;g=vineet");
msv1.add("{26491CFC-9E50-4857-861B-0CB8DF22B5D7}");
ht.put("proxyAddresses", msv);
ht.put("msExchPoliciesExcluded", msv1);

and call Exchange apis passing this hashtable
1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jul 21 2016
Added on Jun 23 2016
2 comments
846 views