‎2007 Jan 19 8:36 PM
Hi,
i want to call me23n transaction when user clicks on po no which is displayed on normal report using write statement.
thanks in advance
suresh
‎2007 Jan 19 8:38 PM
Hai Suresh
using the following Statements your directly go to ME22n first screen
SET PARAMETER ID 'BES' FIELD IT_EKKO-EBELN.
CALL TRANSACTION 'ME23' AND SKIP FIRST SCREEN.
Regards
Sreeni
‎2007 Jan 19 8:38 PM
‎2007 Jan 19 8:38 PM
Hai Suresh
using the following Statements your directly go to ME22n first screen
SET PARAMETER ID 'BES' FIELD IT_EKKO-EBELN.
CALL TRANSACTION 'ME23' AND SKIP FIRST SCREEN.
Regards
Sreeni
‎2007 Jan 19 8:42 PM
Here is a sample program to illistrate the above suggestions.
report zrich_0002 no standard page heading.
data: iekko type table of ekko with header line.
data : cursor_field(30),
field_value(30) .
select-options: s_ebeln for iekko-ebeln.
start-of-selection.
select * into corresponding fields of table iekko
from ekko
where ebeln in s_ebeln.
loop at iekko.
format hotspot on.
write:/ iekko-ebeln.
hide iekko-ebeln.
format hotspot off.
endloop.
at line-selection.
set parameter id 'BES' field iekko-ebeln.
call transaction 'ME23' and skip first screen.
Regards,
Rich Heilman
‎2007 Jan 19 8:55 PM
‎2007 Jan 19 8:40 PM
START-OF-SELECTION.
FORMAT HOTSPOT.
WRITE 'Click me!' COLOR 5.
FORMAT HOTSPOT OFF.
AT LINE-SELECTION.
WRITE 'Yeah!' COLOR 3.
‎2007 Jan 19 8:42 PM