Application Development 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: 

Problem with Setting Parameter ID's to ME55 Screen fields

Former Member
0 Kudos

Hello Technocrats,

I have a small problem related to "Setting Parameter ID's (eg. Purchase Requisition field) to the initial screen of ME55 transaction".

My scenario is like follows:

I have a Z program where i am listing all the Purchase Requisitions. Whenever the user selects a single Purchase Requisition and click a button called "Rel.Pur.Req" from the application tool bar, we should take him to the initial screen of ME55 carrying "purchase requisition number" with us and to set the same to the respective field.

I failed to do the same with "SET Parameter ID ...." statement.

Please suggest me is there any other option to do this.

Or-

Is it possible for ME55 transaction or not.

Thanks in advance,

Lakshmi.

1 REPLY 1

Former Member
0 Kudos

Hi Lakshmi,

The approach u shud follow is :

1. While listing out the Orders, HIDE them i.e.

LOOP AT ITAB.

WRITE : ITAB-EBELN.

HIDE ITAB-EBELN.

ENDLOOP.

2. Then in the AT LINE-SELECTION event,

use the following code:

SET PARAMETER ID : 'TEST' FIELD <P.O. Field of ME55 Transaction >

CALL TRANSACTION 'ME55' AND SKIP FIRST SCREEN.

Hope this helps.

Regards,

Himanshu