cancel
Showing results for 
Search instead for 
Did you mean: 

CIF error 'Overflow when converting from 8.52418e+09u2019 for mfg orders

samir_ali
Participant
0 Kudos

Hi ,

I am getting CIF error u2018Overflow when converting from 8.52418e+09u2019 outbound to ECC for manufacturing Process order.

This has been observed that:-

-Whenever user changes u2018STATUSu2019 of process order we get this error till the final u2018Techou2019.

-There is order delivered quantity difference between APO and R/3

Current workaround we are following is:-

1)Deleting CIF queue

2)Running delta reconciliation and pushing the difference to APO.

This issue we are getting from past one week. It is happening for few orders.

Please suggest

Thanks in advance

Samir

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Samir,

Nice to see your message in SDN. Would you be able to give the error message number of the Queue (Message class and message number).

Best regards

Vignesh M

samir_ali
Participant
0 Kudos

Hi Vignesh,

Message class is 'XC' and msg no is '014'.

Regards

Samir

Former Member
0 Kudos

Dear Samir,

I guess the error is triggered from Program: LCADCU05, when reading Function Module: CIF_ADC_TRANSMIT_ORDER at the below check:

The error may be for various reason. You may have to check with ABAP team in debugging mode by applying a break point at the call function.

CALL FUNCTION 'CIF_ADC_TRANSMIT_ORDER_BLOCK'

STARTING NEW TASK LS_CIFTASK-TASKNAME

PERFORMING SAVE_RESULTS ON END OF TASK

EXPORTING

IS_CTRLPARAMS = LS_CTRLPARAMS

IS_CIFOBJINFV = IS_CIFOBJINFV

IV_MODUS = IV_MODUS

IV_SELECTSIZE = LV_SELECTSIZE

IS_IMOD_DELTA_BLOCK = LS_IMOD_DELTA_BLOCK

IV_OBJECTTYPE = LV_OBJECTTYPE

IV_SNP_PLAF = LV_SNP_PLAF

TABLES

IT_ORDER_FLT = LT_ORDER_FLT

IT_ORDER_FLT_ALL = LT_ORDER_FLT_ALL

IT_DELTA_MODEL_ORDER = LT_DELTA_MODEL_ORDER

IT_DELTA_MODEL_CHAR = LT_DELTA_MODEL_CHAR

EXCEPTIONS

COMMUNICATION_FAILURE = 1 MESSAGE LS_CIFTASK-MSG

SYSTEM_FAILURE = 2 MESSAGE LS_CIFTASK-MSG

OTHERS = 3.

IF SY-SUBRC <> 0.

MESSAGE E014(XC) WITH LS_CIFTASK-MSG.

MOVE 'E' TO LS_CIFTASK-FINISHED.

MODIFY GT_CIFTASKS INDEX L_TABIX FROM LS_CIFTASK.

ELSE.

Hope this helps..

Vignesh M