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

break down notification error

former_member375795
Participant
0 Likes
774

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 .

4 REPLIES 4
Read only

Former Member
0 Likes
725

could you be more clear on your query.

Regards,

Gautham Paspala

Read only

0 Likes
725

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


Read only

rahul_mb
Active Participant
0 Likes
725

Hi Alok,

Did you create a customer project in CMOD for the enhancement QQMA0029?

Regards,

Rahul MB

Read only

Former Member
0 Likes
725

Hi,

Change this code .Mention in capital letter. This may be issue.


Instead of sy-tcode = 'iqs21'  to sy-tcode = 'IQS21'.


Thanks & Regards,

Arun