Hello folks,
Getting a RC 8 upon trying to transport an end routine piece to our QA environment.
No syntax error upon trying to check the code in the end routine. The custom infoobject that i m trying to populate in this code is set to 'Initial' in the transformational rules. Plz can you share any clues there. This transformation is attached to an Infocube.
Here is the code:
data: v_fiscper(3) type n.
loop at RESULT_PACKAGE assigning <result_fields>.
clear v_fiscper.
v_fiscper = <result_fields>-fiscper+4(3).
case v_fiscper.
when '001' or '002' or '003'.
concatenate 'Q1,' <result_fields>-fiscyear
into <result_fields>-/bic/zfiscqtr.
when '004' or '005' or '006'.
concatenate 'Q2,' <result_fields>-fiscyear
into <result_fields>-/bic/zfiscqtr.
when '007' or '008' or '009'.
concatenate 'Q3,' <result_fields>-fiscyear
into <result_fields>-/bic/zfiscqtr.
when '010' or '011' or '012'.
concatenate 'Q4,' <result_fields>-fiscyear
into <result_fields>-/bic/zfiscqtr.
endcase.
endloop.
Appreciate help on this one.
Cheers !!