Application Development and Automation 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: 
Read only

double click on output in write statement

Former Member
0 Likes
1,414

hi,

i have a list of PO as outout thru write statement(classical).i wamt to open me23n with the double click on that particular po.

how could i do this? answer with full code.

hi,

i have a list of PO as outout thru write statement(classical).i wamt to open me23n with the double click on that particular po.

how could i do this? answer with full code.

7 REPLIES 7
Read only

Former Member
0 Likes
1,183

Hello

After capture the number of the PO do the following

SET PARAMETER ID 'BES' FIELD <n° of the PO>

CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.

Hope it helps

Kleber Santos

Read only

0 Likes
1,183

thanks for reply.

but my question is i wamt to open me23n with the double click on that particular po after i diaplay it thru write statemnt as output.

here i needs to call me23n after clicking on po number in output.

Read only

0 Likes
1,183

its simple.. use at line-selection event and call transaction .

Read only

0 Likes
1,183

Hi,

You can use the Event At Line-Selection and call the transaction skipping the first screen.

regards,

Satyam

Read only

0 Likes
1,183

using at line-selection event and call transaction , only the last po is called irrespective of clicking on any po from list.

i want to call onlt that po on which i double click.

my code : LOOP AT it_poh .

WRITE 😕 it_poh-ebeln.

ENDLOOP.

ENDIF.

AT LINE-SELECTION.

f = it_poh-ebeln.

SET PARAMETER ID 'BES' FIELD f.

CALL TRANSACTION 'ME23N'.

Read only

0 Likes
1,183

problem solved.

thanks to all

Read only

MarcinPciak
Active Contributor
0 Likes
1,183

You need to use Interactive List with [HIDE technique|http://help.sap.com/saphelp_crm40/helpdata/en/9f/dba42335c111d1829f0000e829fbfe/frameset.htm].

Regards

Marcin