How can I change Epicor ERP10 standard system code for Purchase Requisition Entry in the Line pane? I would like to change the Due Date from displaying current date to blank everytime making a new line. Please help me.
How can I change Epicor ERP10 standard system code for Purchase Requisition Entry in the Line pane? I would like to change the Due Date from displaying current date to blank everytime making a new line. Please help me.
You can do this using Method Directives.
Here's how to add one.
Method Code
, select your business object (Req
in your case).Search
and select the appropriate method from there (since it is an Add Line event that you want to work with, it should look something likeGetNew...Detail
). Click OK.Post Processing
tab and hitNew
on the toolbar.Design
.Set Field
icon to the right from theSetters
section.Set Field...
icon is selected, it should show you a table with a column calledAction
. The next part should be intuitive in itself, but I have gone through the steps and written it here anyways.DueDate
field of theReqDetail
table (underspecified
field section). Set it tonull
forthe new row
here.This should do the job, or if it doesn't do exactly what you want. There's always more options in the Method Directives Maintenance section that you can fiddle around with. Good luck.