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

Issue in IW22--In Process again button

former_member221372
Participant
0 Likes
670

Hi All,

I have a requirement in IW22 T.Code.As I am ABAPER, I am unable to solve this issue.The issue is

When I clicks on "In Process Again" button , I am getting this pop-up " The function you selected cannot be carried out: Put notif. in process again ".

So pls help me to solve this issue.its urgent....

Regards

Bharath

Hi All,

I have a requirement in IW22 T.Code.As I am ABAPER, I am unable to solve this issue.The issue is

When I clicks on "In Process Again" button , I am getting this pop-up " The function you selected cannot be carried out: Put notif. in process again ".

So pls help me to solve this issue.its urgent....

Regards

Bharath

1 REPLY 1
Read only

former_member221372
Participant
0 Likes
481

Hi All,

This issue is closed..Below is some steps how we closed this issue.

go to SPRO->SAP Referenec IMG->Plant Maintenance and Customer Service->Maintenance and Service Processing->Maintenance and Service Processing->Overview of Notification Type

 

Select Notification Type & Go To STATUS PROFILE,In that Status Profile for Notificaiton & Status Profile for task should be BLANK

 

For Auth. to users ,write enhacement in this Function Module : STATUS_CHANGE_FOR_ACTIVITY in that subroutine STATUS_READ write the below code

 

IF SY-TCODE = 'IW22' and SY-UCOMM = 'WIAR'.

DATA : LV_ZTABLE TYPE ZTABLE.

CLEAR : LV_ZTABLE.

SELECT SINGLE *

  FROM ZTABLE

  INTO LV_ZTABLE

  WHERE ZPROGNAME = 'IW22'

   AND  ZUSER = SY-UNAME

   AND  FIELD_NAME = SY-UNAME.

IF SY-SUBRC = 0.

  IF LV_ZTABLE-NO_TIMES >= JEST-CHGNR.

  CLEAR STSMA.

  ENDIF.

ENDIF.

ENDIF.

Regards

Bharath