2008 Jul 21 10:35 PM
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
2008 Jul 21 10:45 PM
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
2008 Jul 21 10:45 PM
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
2008 Jul 21 11:01 PM
thanks its working,,,,,,,,
but when i place the cirsor on matnr , it should go to transaction VT02N.
2008 Jul 22 5:58 AM
u can use call the transaction directly using the syntax:
call transaction <t-code>.
Now it will work.
Reply if it is working