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: 
SAP Community Downtime Scheduled for This Weekend

ALV

Former Member
0 Kudos
77

hi all,

i had got an beloe avv report

matno posnr

0000005309 10 M-13 00207 MAG DX 17F

0000005309 20 M-09 00207 Flatscreen MS 1585

now i have to create an hotspot , say if keep the corsor on matno it should create a hotspot.

regards,

pawan

1 ACCEPTED SOLUTION

Former Member
0 Kudos
55

Hi,

Set the hotspot property of the field in the fieldcatalog.

loop at i_fieldcatalog into ws_fieldcatalog.

if ws_fieldcatalog = 'MATNR'.

ws_fieldcatalog-hotspot = 'X'.

modify i_fieldcatalog from ws_fieldcatalog.

endif.

endloop.

Regards,

Subramanian

3 REPLIES 3

Former Member
0 Kudos
56

Hi,

Set the hotspot property of the field in the fieldcatalog.

loop at i_fieldcatalog into ws_fieldcatalog.

if ws_fieldcatalog = 'MATNR'.

ws_fieldcatalog-hotspot = 'X'.

modify i_fieldcatalog from ws_fieldcatalog.

endif.

endloop.

Regards,

Subramanian

Former Member
0 Kudos
55

thanks its working,,,,,,,,

but when i place the cirsor on matnr , it should go to transaction VT02N.

0 Kudos
55

u can use call the transaction directly using the syntax:

call transaction <t-code>.

Now it will work.

Reply if it is working