Hello All,
We are trying to load the data to the cube , but every time it is throwing us a short dump with the below error.
We have found a SAP Note as well for the below error , Please suggest, how to implement the same.
Error:
Runtime Errors CONVT_NO_NUMBER
METHOD end_routine.
=== Segments ===
FIELD-SYMBOLS:
<RESULT_FIELDS> TYPE _ty_s_TG_1.
DATA:
MONITOR_REC TYPE rstmonitor.
... "insert your code here
-- fill table "MONITOR" with values of structure "MONITOR_REC"
- to make monitor entries
... "to cancel the update process
raise exception type CX_RSROUT_ABORT.
*Fiscal year quarter addition
loop at RESULT_PACKAGE assigning <RESULT_FIELDS>.
if <RESULT_FIELDS>-/bic/zsp_Mon BETWEEN 1 and 3.
CONCATENATE 'FY' <RESULT_FIELDS>-fiscper+2(2) 'Q3' INTO
<RESULT_FIELDS>-/bic/zsp_FYQA.
elseif <RESULT_FIELDS>-/bic/zsp_Mon BETWEEN 4 and 6.
CONCATENATE 'FY' <RESULT_FIELDS>-fiscper+2(2) 'Q4' INTO
<RESULT_FIELDS>-/bic/zsp_FYQA.
elseif <RESULT_FIELDS>-/bic/zsp_Mon BETWEEN 7 and 9.
CONCATENATE 'FY' <RESULT_FIELDS>-fiscper+2(2) 'Q1' INTO
<RESULT_FIELDS>-/bic/zsp_FYQA.
elseif <RESULT_FIELDS>-/bic/zsp_Mon BETWEEN 10 and 12.
CONCATENATE 'FY' <RESULT_FIELDS>-fiscper+2(2) 'Q2' INTO
<RESULT_FIELDS>-/bic/zsp_FYQA.
endif.
endloop.
ENDDMETHOD. "end_routine
THOD inverse_end_routine.
IMPORTING