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

How to get ME23 screen using selection-screen

Former Member
0 Likes
758

Hi,

I am trying to get the ME23 screen using selection-screen with following code.

select-options: purordno for ekko-ebeln NO intervals.

SUBMIT SAPMM06E VIA SELECTION-SCREEN .

But at the time of execution i got this error "INCORRECT PROGRAM TYPE WITH SUBMIT".

Can any one please provide me some sample code how to get the ME23 screen

using Abap program.

Regards,

krishna/rajesh.

Hi,

I am trying to get the ME23 screen using selection-screen with following code.

select-options: purordno for ekko-ebeln NO intervals.

SUBMIT SAPMM06E VIA SELECTION-SCREEN .

But at the time of execution i got this error "INCORRECT PROGRAM TYPE WITH SUBMIT".

Can any one please provide me some sample code how to get the ME23 screen

using Abap program.

Regards,

krishna/rajesh.

5 REPLIES 5
Read only

Former Member
0 Likes
700

use <b>call transaction me23.</b>

regards

aswin

Read only

Former Member
0 Likes
700

Use SAPLMEGUI

Read only

Former Member
0 Likes
700

instead of submit use

set parameter 'BES' value purordno.

call transaction 'ME23'.

Read only

Former Member
0 Likes
700

Hi Rajesh,

You can't submit a pool modul ( SAPMM06E ).

Only executable prog can be submit .

What you can try is use "CALL TRANSACTION" statement.

Hope this helps,

Erwan

Read only

Former Member
0 Likes
700

Hi ,

Use

CALL TRANSACTION 'ME23'.

Regards

Arun