Application Development 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: 

md04 transaction

Former Member
0 Kudos
75

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

1 REPLY 1

former_member235056
Active Contributor
0 Kudos
48

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