Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

abap dump

Former Member
0 Likes
924

Hi

HR program going to dump

error is

Short text
    A calculation field is defined too small.

Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_CONVERSION_OVERFLOW', was not
     caught in
    procedure "%_GET_PERNR" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    A value generated during processing is too large for the
    field "TIME-AS57" of the program "ZPLS0050".

Program terminated at


         WHEN 'AS57'.
 MOVE P2001-STDAZ TO TIME-AS57

data declaration

AS57(3) TYPE P DECIMALS 2,

Pls advise me

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
801

Hi,

STDAZ ABSTD DEC 7 2

definition must be

AS57(7) type p decimals 2

Regards

Nicole

4 REPLIES 4
Read only

Former Member
0 Likes
801

define both variables of same type

Read only

Former Member
0 Likes
802

Hi,

STDAZ ABSTD DEC 7 2

definition must be

AS57(7) type p decimals 2

Regards

Nicole

Read only

Former Member
0 Likes
801

Hi Kumar,

Please try to change the data declaration to:

AS57 LIKE P2001-STDAZ.

Thanks.

Victor.

Read only

Former Member
0 Likes
801

hi...

the type of variable and the num,ber of characters of both the variables must be same....

just declare the second varibable that is AS57 of the same type as the othr varibale from which you are moving the data.