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

Change Notification

Former Member
0 Likes
592

Dear expert,

i m selecting multiple notification, and calling iw 58 through report program for change the notification, but the this report is calling the IW53, in this i m unable to change the notification. Do any suggestion, how i can change the notification.

Thnaks

2 REPLIES 2
Read only

Former Member
0 Likes
517

Hi,

Notification change transaction code is IW53 only, you can change the Notification from IW53

Regards

Sudheer

Read only

Former Member
0 Likes
517

hi vikrant,

i guess u must be using submit report or call tcode stmt. but befor that declare a range and use SET parameter ID stmt for notification field.

here is an example

loop at itab8.

r_matnr-low = itab8-matnr.

r_matnr-sign = 'I'.

r_matnr-option = 'EQ'.

append r_matnr.

clear r_matnr.

endloop.

set parameter id: 'MAT' field itab8-matnr,

'CAR' FIELD itab8-matkl.

  • 'CON' FIELD connection.

SUBMIT RWSORT40 WITH s_matNR in r_MATNR

WITH p_aldat = sy-datum

with AUF_SAM = 'X'

with C_SIMPLE = 'X'

with CHECK_PO = 'X'

with CHECK_ST = 'X'

with CHECK_SD = 'X'

with D_LICOND = 'X'

with D_INFREC = 'X'

with S_LVORM = 'X'

with PRINTALL = 'X'

with TEST = 'X'

with P_BATCH = 'X'

with P_ALLERR = 'X'

AND return.

regards,

alson