cancel
Showing results for 
Search instead for 
Did you mean: 

While reference creating the notification - long text should not be copied

Former Member
0 Kudos

Hi Everyone,

While creating the quanity notification (QN) by referencing another notification, usually systems copies all the datas from reference QN (Including the long text in subject, deffects and header tasks). Is there any standatrd configurations in QN texts to avoid copying these texts from refernce QN?

Or this need to be handled in aba developments, if so is there any User/customer exits or enhancement points?

Thanks.

Regards,

Chinna.


Accepted Solutions (1)

Accepted Solutions (1)

jogeswararao_kavala
Active Contributor
0 Kudos

Hello Chinnaveerappan,

This code in include ZXQQMU01 (user-exit QQMA0007) will give you the result.

IF I_VIQMEL-QMART = 'Q1'.
IF I_VIQMEL-QWRNUM IS NOT INITIAL.
   E_VIQMEL-INDTX = ' '.
ENDIF.
ENDIF.

Line1 and 5 confine your code to a particular Notification Type (Q1 here).

Lines 2,3,4 give you the solution.

What this code does is :

Whenever a 'Q1' notification is created with a reference Notification number in the initial screen, the Longtext of the reference notification is not carried to the Notification being created.

Good luck

KJogeswaraRao

Former Member
0 Kudos

Hi Arun & Jogeswararao,

Thanks for the immediate reply.

There is an another scenario that is when activiating the notification from the defects recording via results recording for an inspection lot, the long text in defects tab of the notifcation is already having some long text.

If any of the community memebers have come across this scenario? or is there any way to check the log on how and when the long text are created.

Regards,

Chinna


jogeswararao_kavala
Active Contributor
0 Kudos

Hello Chinna,

Please start a new discussion with more details, so that the discussion will not be lost in  a thread with different subject.

Good luck

KJogeswaraRao

Answers (1)

Answers (1)

arunsapqm
Participant
0 Kudos

Hi chinna,

Pls check this UserExit Link, & also confirm with your ABAPer as per your business requirement

Thanks in advance