cancel
Showing results for 
Search instead for 
Did you mean: 

End routine error upon trying to transport

Former Member
0 Kudos

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 !!

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hey guys - Thanks for trying to help but this was due to a problem in an underlying infoobject and thats why the transformation transport was failing. Typical but the error messages in the logs only indicated 'Syntax error' . Anyhow, this stands resolved now.

Cheers.

Former Member
0 Kudos

what does it say in the transport request logs?

-Rajani

Former Member
0 Kudos

How is InofObject zfiscqtr implemented?

Additional:

Try to use RSA1 transport connection.

Select your transformation, cube and so on and collect all necessary objects.

Regards

Andreas

Edited by: Andreas Schindler on Nov 26, 2009 10:24 AM