Hi all,
I want to update a field in my cube , say field B with the values of field A in end routine.
Field A is actually mapped directly to a source field and I want its values to be copied to B.
Date | A | B |
2009 | CC | |
2010 | DD | |
2011 | EE | |
2012 | FF |
In end routine, I have written a very simple code to copy A to B column
loop at result_package assigning <result_fields>
<result_fields> - B = <result_fields> - A.
- endloop.
In debug mode, every thing is working perfectly but actual result inserted to cube is :
Date | A | B |
2009 | CC | FF |
2010 | DD | FF |
2011 | EE | FF |
2012 | FF | FF |
Do you have any ideas what I'm missing?
Thanks