Application Development 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: 

dump in fm- resuse_alv_grid_diaplay

Former Member
0 Kudos

hi experts,

i have developed a report in which i m using fm reuse_alv_grid_display,

everyhting was wrking fine,but two days before my report is giving dump

i m giving the dump details plz help me to sort out this problem,,,,,

Unable to interpret " *" as a number.

t happened?

Error in the ABAP Application Program

The current ABAP program "SAPLSLVC_DIALOG" had to be terminated because it has

come across a statement that unfortunately cannot be executed.

t can you do?

Note down which actions and inputs caused the error.

To process the problem further, contact you SAP system

administrator.

Using Transaction ST22 for ABAP Dump Analysis, you can look

at and manage termination messages, and you can also

keep them for a long time.

or analysis

An exception occurred that is explained in detail below.

This exception cannot be caught in the context of the current statement.

The reason for the exception is:

The program attempted to interpret the value " *" as a number, but

since the value contravenes the rules for correct number formats,

Error analysis

An exception occurred that is explained in detail below.

This exception cannot be caught in the context of the current statement.

The reason for the exception is:

The program attempted to interpret the value " *" as a number, but

since the value contravenes the rules for correct number formats,

this was not possible.

How to correct the error

Whole numbers are represented in ABAP as a sequence of numbers, possibly

with an algebraic sign.

The following are the possibilities for the representation of floating

point numbers:

[algebraic sign][mantissa]E[algebraic sign][exponent]

[algebraic sign][whole number part].[fraction part]

For example, -12E+34, +12E-34, 12E34, 12.34

If the error occurred in your own ABAP program or in an SAP

program you modified, try to remove the error.

If the error occures in a non-modified SAP program, you may be able to

find an interim solution in an SAP Note.

If you have access to SAP Notes, carry out a search with the following

keywords:

"CONVT_NO_NUMBER" " "

"SAPLSLVC_DIALOG" or "LSLVC_DIALOGF18"

"LVC_FILTER_APPLY10"

data: ls_icon_sp like line of ls_rsds_frange-selopt_t,

lt_icon_sp like ls_rsds_frange-selopt_t,

icon_string type string.

clear lt_icon_sp.

if not l_init_icon_sp is initial.

loop at ls_rsds_frange-selopt_t into ls_icon_sp.

if ls_icon_sp-low+0(1) eq '@'

and ls_icon_sp-low+3(1) eq '*'.

ls_icon_sp-low = ls_icon_sp-low+0(3).

if not ls_icon_sp-high is initial.

ls_icon_sp-high = ls_icon_sp-high+0(3).

endif.

append ls_icon_sp to lt_icon_sp.

endif.

endloop.

endif.

if lt_icon_sp is not initial.

icon_string = <l_filter>.

data: len type i.

len = strlen( icon_string ).

if len ge 3.

icon_string = icon_string+0(3).

endif.

check icon_string in lt_icon_sp.

else.

error: check <l_filter> in ls_rsds_frange-selopt_t.

6 REPLIES 6

Former Member
0 Kudos

Check the values in the internal tables,somewhere "*'" is coming with the value.Put a break point on the ALV function and then check the internal table passed to the alv.

Regards,

Midhun Abraham

Edited by: Midhun Abraham on Oct 3, 2008 7:27 AM

0 Kudos

Unable to interpret " 0" as a number.

error desc:

Whole numbers are represented in ABAP as a sequence of numbers, possibly

with an algebraic sign.

The following are the possibilities for the representation of floating

point numbers:

[algebraic sign][mantissa]E[algebraic sign][exponent]

[algebraic sign][whole number part].[fraction part]

For example, -12E+34, +12E-34, 12E34, 12.34

If the error occurred in your own ABAP program or in an SAP

program you modified, try to remove the error.

If the error occures in a non-modified SAP program, you may be able to

find an interim solution in an SAP Note.

If you have access to SAP Notes, carry out a search with the following

keywords:

"CONVT_NO_NUMBER" " "

"SAPLSLVC_DIALOG" or "LSLVC_DIALOGF18"

"LVC_FILTER_APPLY10"

pls help.

Former Member
0 Kudos

SOLVED

0 Kudos

Hiii : ) would you please, tell me how you solved this issue? Im on it too : ) Please.

Former Member
0 Kudos

This message was moderated.

0 Kudos

Please start a new discussion with your specific problem.

This is years old this subject and I would be very suprised if you have the same custom report developed as the perosn who started this thread.