‎2008 Jul 22 6:56 AM
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-AS57data declaration
AS57(3) TYPE P DECIMALS 2,Pls advise me
‎2008 Jul 22 7:00 AM
Hi,
STDAZ ABSTD DEC 7 2
definition must be
AS57(7) type p decimals 2
Regards
Nicole
‎2008 Jul 22 7:00 AM
‎2008 Jul 22 7:00 AM
Hi,
STDAZ ABSTD DEC 7 2
definition must be
AS57(7) type p decimals 2
Regards
Nicole
‎2008 Jul 22 7:02 AM
Hi Kumar,
Please try to change the data declaration to:
AS57 LIKE P2001-STDAZ.
Thanks.
Victor.
‎2008 Jul 22 7:16 AM
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.