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

Problem with CALL TRANSACTION

Former Member
0 Likes
436

*Hi Experts,*

i'm using following code.

SET PARAMETER ID : 'ANR' FIELD wa_final-aufnr.

CALL TRANSACTION 'IW33' AND SKIP FIRST SCREEN.

it calls IW33 transaction . its a transaction for displaying PM orders where i have a menu called Order.

it has list of menu items. one of the menu item was "change" . its in disable mode.

how to enable it.??

if i use leave to transaction iw33. i get desired result. but i cant come back to my old session.

*Hi Experts,*

i'm using following code.

SET PARAMETER ID : 'ANR' FIELD wa_final-aufnr.

CALL TRANSACTION 'IW33' AND SKIP FIRST SCREEN.

it calls IW33 transaction . its a transaction for displaying PM orders where i have a menu called Order.

it has list of menu items. one of the menu item was "change" . its in disable mode.

how to enable it.??

if i use leave to transaction iw33. i get desired result. but i cant come back to my old session.

2 REPLIES 2
Read only

Former Member
0 Likes
397

CALL TRANSACTION Creates a internal session and when it ends return to the older internal session! ALWAYS..

WHere are you using "CALL TRANSACTION"??

Read only

0 Likes
397

yeah i came to know by another thread.

thanks for your response dude.