2013 May 10 11:46 AM
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
2013 May 17 5:07 AM
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