I am trying to load rates from BW and i need to multiply some rates by 0.001 when they come in to BPC. I have tried javascript and normal formula in the formula tab of my conversion file but nothing is working. I cannot get the rates to multiple or divide by anything.
Do i need to upgrade to any service pack for CONVERTAMOUNTWDIM=dimension name to work?
Transformation file is:
*OPTIONS |
FORMAT = DELIMITED |
HEADER = YES |
DELIMITER = , |
AMOUNTDECIMALPOINT = . |
SKIP = 0 |
SKIPIF = |
VALIDATERECORDS=YES |
CREDITPOSITIVE=NO |
MAXREJECTCOUNT=5000000 |
CONVERTAMOUNTWDIM = InputCurrency |
*MAPPING |
CATEGORY=*Str(Product) |
InputCurrency = ZB_INCURR |
R_ACCT = ZB_RACCT |
R_Entity = *Str(Global) |
Time = ZB_TIME |
SIGNEDDATA = ZB_RATE |
*CONVERSION |
InputCurrency = INPUTCURRENCY.xls |
and conversion file is:
EXTERNAL | INTERNAL | FORMULA |
CAD | CAD | js:MATH.(Value*0.001) |
or
Formula = Value*0.001
Thanks!