‎2007 May 03 11:50 AM
Hi everyone,
I was wondering if it is possible to 'write' a link to another screen/program in a report.
‎2007 May 03 11:55 AM
‎2007 May 03 11:54 AM
‎2007 May 03 11:54 AM
Hi..
Just make that field as <b>hotspot</b>.
<b>at line selection.</b>
write ur logic.
<b>EX:</b>
data:
w_char(10) type c value 'Click me'.
write: w_char hotspot on.
<b>at line-selection.</b>
call transaction 'SE38'.
‎2007 May 03 11:55 AM
‎2007 May 03 11:56 AM
Hi bjorn,
1. We can use HOTSPOT concept.
2. Just copy paste
It will display 2 lines.
On clicking 2nd line, it will open up SE11.
3.
report abc.
write 😕 'Hello'.
write 😕 'Click Here for SE11' hotspot on.
at line-selection.
call transaction 'SE11'.
regards,
amit m.
‎2007 May 03 11:57 AM
hi,
Yes you can have a link to another screen or program in report.you can use SUBMIT stament to call another program or CALL to call another screen.
Reward points if it is helpful.
Regards,
Sangeetha.A
‎2007 May 03 12:17 PM
Hi Bjorn,
There is a event called 'at line selection' in report for this purpose.
suppose u want to open a transaction mm03 by just click a material no that u r displaying in ur report.
AT LINE-SELECTION.
GET CURSOR FIELD d_field VALUE d_value.
CASE d_field.
when 'i_tab-matnr'
SET PARAMETER ID 'mat' FIELD d_field.
call transaction 'MM02' and skip first screen.
Reward points if helpful.
Regards,
Hemant
endcase.
‎2007 May 03 5:28 PM