2007 Jul 23 6:24 AM
Hi,
i want to update all the dates which are having the production order as order type and its exception is 15 r 10 for the tcode md04.
If the exception is 15 r 10 i want update the process date as 2 r 3days in future .
how can i do that . For this tcode is md04.For 15 the Exception mesage is reschedule out and for 10 is reschedule in .any one can helpme out
thx & regards,
rk
Message was edited by:
sunder
2007 Jul 23 3:59 PM
Hi,
Use the code:
data: <datefield> type i(2).
If <datefield> = '15'.
message e000.
elseif <datefield> = '10'.
message e001.
else.
<continue ur work>.
endif.
Doubleclick on e000 and e001 and write exception u want in it.
I hope u get the steps to write ur code.
Pls reward points for the efforts.
Regards,.
Ameet