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: 

Disable Release Flag in PM Notification

palash_mazumder
Participant
0 Kudos

Hi ABAP Guru,

I have requirement disable the PM Notification Flag IW51/IW52 Tcode,I found a User Exit QQMA0024 Deactivation of function codes in CUA menu.

But not able to implement it.How to deactivate the flag,Please help.

1 ACCEPTED SOLUTION

jogeswararao_kavala
Active Contributor
0 Kudos

Hello Palash,

Here is the solution.

Put the following code in the include ZXQQMU35 of the user-exit QQMA0024.

IF sy-tcode = 'IW51' OR sy-tcode = 'IW52'.
     APPEND 'COWO' TO t_ex_fcode.
   ENDIF.

This hides the   Notification Release flag for tcodes IW51 and IW51 as per your requirement.

If you want to confine this Hiding on the basis of Notification Type (say 'S1'), then the code will be:

IF i_tq80-qmart = 'S1'.
     APPEND 'COWO' TO t_ex_fcode.
ENDIF.

Cheers

KJogeswaraRao

3 REPLIES 3

michael_kozlowski
Active Contributor
0 Kudos

Apart from the user-exit Transaction/Screen Variant (trx SHD0) is useful for this requirement.

jogeswararao_kavala
Active Contributor
0 Kudos

Hello Palash,

Here is the solution.

Put the following code in the include ZXQQMU35 of the user-exit QQMA0024.

IF sy-tcode = 'IW51' OR sy-tcode = 'IW52'.
     APPEND 'COWO' TO t_ex_fcode.
   ENDIF.

This hides the   Notification Release flag for tcodes IW51 and IW51 as per your requirement.

If you want to confine this Hiding on the basis of Notification Type (say 'S1'), then the code will be:

IF i_tq80-qmart = 'S1'.
     APPEND 'COWO' TO t_ex_fcode.
ENDIF.

Cheers

KJogeswaraRao

0 Kudos

Hi Jogeswara,

Thanks a lot .This is working fine,,,,,,