2007 Jul 04 4:57 PM
Dear all,
I have a report, I want to double click on one line and It can run a module. But It fail.
the code is :
at line-selection.
perform module_A.
thanks you
John
Dear all,
I have a report, I want to double click on one line and It can run a module. But It fail.
the code is :
at line-selection.
perform module_A.
thanks you
John
2007 Jul 04 4:59 PM
If you are referring to list processing, then you may be able to use this example to help you.
report zrich_0002 no standard page heading.
data: ivbak type table of vbak with header line.
data : cursor_field(30),
field_value(30) .
select-options: s_vbeln for ivbak-vbeln.
start-of-selection.
select * into corresponding fields of table ivbak
from vbak
where vbeln in s_vbeln.
loop at ivbak.
format hotspot on.
write:/ ivbak-vbeln.
hide ivbak-vbeln.
format hotspot off.
endloop.
at line-selection.
set parameter id 'AUN' field ivbak-vbeln.
call transaction 'VA03' and skip first screen.
Regards,
RIch Heilman
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |