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: 

Function Module to Unlock Notification number.

Former Member
0 Kudos

Hi all Gurus,

Does any one know any function module to unlock (dequeue) Notification run time.

Thanxs In advance,

Nainesh.

1 ACCEPTED SOLUTION

Sandeep_Kumar
Advisor
Advisor
0 Kudos

try this Fm : DEQUEUE_EIQMEL

9 REPLIES 9

Sandeep_Kumar
Advisor
Advisor
0 Kudos

try this Fm : DEQUEUE_EIQMEL

0 Kudos

I try this Function module with below paramaters but not able to unlock.Can u tell me which paramaters are required ?

MODE_QMEL E

MANDT 110

QMNUM 300041790

X_QMNUM

_SCOPE 3

_SYNCHRON

_COLLECT X

Thanks In advance,

Nainesh.

0 Kudos

Find it in debugging mode.

Go to IW52, key in /h to activate debugging. Set breakpoint at statement 'CALL FUNCTION'.

Every FM you see there that has "ENQUEUE' on it are also needed to be applied in your coding to lock other objects related to that Notification.

0 Kudos

I want to unlock objectnot lock.

0 Kudos

Hi,

Function module DEQUEUE_EIQMEL will work. Use conversion exit "CONVERSION_EXIT_ALPHA_INPUT" to change the value of variable QMNUM (12 characters). May be 300041790 should be 000300041790.

Regards

Vinod

Edited by: Vinod Kumar on Sep 15, 2010 5:02 PM

0 Kudos

I have use this above solution but not able to unlock.

Can anyone give me FM to unlock iw31 order?

0 Kudos

is the function raising any exception or is sy-subrc = 0 after function call?

Former Member
0 Kudos

CALL FUNCTION 'DEQUEUE_EIQMEL'
 EXPORTING
   mode_qmel = 'E'             
   mandt = SY-MANDT            
   qmnum =                    
   x_qmnum = SPACE             
   _synchron = SPACE          
   _collect = ' '             
    .  

also visit following link Sowjanya barli explain very well

Edited by: kk.adhvaryu on Sep 15, 2010 2:07 PM

Former Member
0 Kudos

Hi,

Use SM12 to find out the lock object and lock mode. Unlock using the function module based on the object and mode. You could have been calling with the wrong mode.

Hope it helps.

Sujay