cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP runtime error "BCD_FIELD_OVERFLOW"

Former Member
0 Kudos

Hi, I have an issue when a price is changed in the order, the ABAP runtime error message "BCD_FIELD_OVERFLOW". Please advise cause and solution.

Message was edited by: G Lakshmipathi

Please use the subject effectively.  Dont type the entire issue in Subject

Accepted Solutions (0)

Answers (2)

Answers (2)

Lakshmipathi
Active Contributor
0 Kudos


Check the following notes:-

  • Note 178865 - Program termination BCD_FIELD_OVERFLOW
  • Note 440324 - Program termination BCD_FIELD_OVERFLOW during menu exit call


G. Lakshmipathi

Former Member
0 Kudos

Hi Cynthia,

  1. It is probably due the negative value in the field or length of the field is to small to handle the value.
  2. Debug the cause with the help of ABAPer to get to know the field.
  3. If it is a Z program, run the BDC in forground and check the value.
  4. OSS note 1352231

Hope the above point helps you.

Regards

Manish

Former Member
0 Kudos

Thank you very much Manish for your quick help.

Regards,

Cynthia

colin_cheong
Contributor
0 Kudos

perform a debug on the spot that dump.

Likely to be doing some computation.

The resultant field may not be big enough to store the output.

normally due to the denominator value is too small.

Former Member
0 Kudos

Thank you very much for your help.  I have referred this problem to our ABAP team for debugging.