2014 Mar 06 3:39 PM
Once break down of machine happen one time , it not again go for same until previous issue resolved .
I found out user exit
QQMA0029
EXIT_SAPLIQS0_018 , I include my code in
TYPES: BEGIN OF ty_qmel,
qmnum TYPE viqmel-qmnum,
END OF ty_qmel.
DATA: it_qmel TYPE TABLE OF ty_qmel.
SELECT qmnum FROM viqmel INTO TABLE it_qmel WHERE qmart = 'BS' AND phase IN ('1', '3') .
DATA:ld_lines TYPE i.
DESCRIBE TABLE it_qmel LINES ld_lines.
IF ld_lines > 1 AND sy-tcode = 'iqs21'.
MESSAGE 'There are open notifications' TYPE 'I'.
RAISE exit_from_save.
ENDIF.
and I save my project to temp and activate and I check for tcode IQS21 it but cursor is not going there on save option .
Help me out .
2014 Mar 06 6:54 PM
2014 Mar 06 10:58 PM
Sir ,
Issue related to PM module , If machine already having one issue then there should not generated again issue for the same machine until previous issue not closed .
In tcode IQS21
2014 Mar 06 6:58 PM
Hi Alok,
Did you create a customer project in CMOD for the enhancement QQMA0029?
Regards,
Rahul MB
2014 Mar 06 7:06 PM
Hi,
Change this code .Mention in capital letter. This may be issue.
Instead of sy-tcode = 'iqs21' to sy-tcode = 'IQS21'.
Thanks & Regards,
Arun