‎2007 May 15 8:06 AM
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
‎2007 May 15 8:11 AM
Hi,
Notification change transaction code is IW53 only, you can change the Notification from IW53
Regards
Sudheer
‎2007 May 15 8:14 AM
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