Hi,
In the following example, I am trying to distribute the total buget (100) to 12 periods. In the filter, I assigned values to Fiscal Year and Fiscal Year Period. The variable ZFP calculates posting periods 001, 002,....,012 correctly. In the next step, when I try to write to the cube, I am getting the following error.
Error: "Inconsistent time characteristics: 0FISCPER,K2/002.2010 and 0FISCPER3,1"
I am also getting the same error when I try to write "Fiscal Year Period" using the same logic.
DATA COUNTER TYPE I.
DATA ZCP TYPE 0FISCPER3.
DATA ZFP TYPE 0FISCPER3.
ZCP = 000.
DO.
COUNTER = COUNTER + 1.
ZFP = TMVL (ZCP,COUNTER).
MESSAGE I001 (/SEM/003) WITH 'POSTING PERIOD: ' ZFP.
{0AMOUNT, ZFP} = 100/12.
IF COUNTER = 12.
EXIT.
ENDIF.
ENDDO.
Any ideas?
Thank you,
Vidya