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 like GetNew...Detail
). Click OK.Post Processing
tab and hit New
on the toolbar.Design
.Set Field
icon to the right from the Setters
section.Set Field...
icon is selected, it should show you a table with a column called Action
. The next part should be intuitive in itself, but I have gone through the steps and written it here anyways. DueDate
field of the ReqDetail
table (under specified
field section). Set it to null
for the 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.