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: 

Displaying infinity symbol in ALV Report

Former Member
0 Kudos

HI abapers......

Iam using 'c = a / b' logic if 'b' is zero i have to display c = symbol of infinity.

tell me how to display infinity symbol....

and inthe out put screen ihave i have matnr when i click matnr it should me goto 'mm03' ther aconting view2 directly.

tell how to solve this problem.

2 REPLIES 2

Former Member
0 Kudos

using set & get parameter u can go to mm03.

Call screen mm03 skip 1st screen.

Former Member
0 Kudos

Hi,

For ur second question do like this.

first set the field as hotspot

fieldcatalog-fieldname = 'EBELN'.

fieldcatalog-seltext_m = 'Purchase Order No.'.

fieldcatalog-col_pos = col_pos.

fieldcatalog-hotspot = 'X'.

APPEND fieldcatalog TO fieldcatalog.

then , In the reuse_alv_grid_display fm use this parameter

I_CALLBACK_USER_COMMAND = 'USER_COMMAND' ( its a subroutine)

define the subroutine like this,

FORM user_command using t_ucomm like sy-ucomm t_selfield type slis_selfield.

t_index = t_selfield-tabindex.

CASE t_ucomm.

When '&IC1'.

If t_selfield-fieldname = 'EBELN'.

po_no = t_selfield-value.

SET PARAMETER ID 'BES' field po_no.

CALL TRANSACTION 'ME23N'.

endform.

regards,

senthil kumar.