On the Order Entry Summary screen (for at least 10.2.100 and higher) there’s a “Create Jobs” button. The system Help says it is activated by the “Quick Order” functionality available on that screen… but I’m not seeing it. The help states that the Create Jobs button will become available if the Line has it’s Create Jobs checkbox activated. That checkbox is only available on the List view (not the Detail view), but checking it doesn’t seem to do anything.
Hi Ernie. It appears it updates its status on JobCheckChanged().
if the EnableJobBtn var is true then btnQuickJob should be available.
Furthermore, these need to be true -
orderHedHR() - this just makes sure there is a record (head) and it is selected
NotifyBlock.IsActive ?? it’s counting instances of something
this.orderHedView.dataView[0][“CounterSale”] == false
And it checks the dtls for: CreateNewJob = true or GetDtls = true or SchedJob = true or RelJob = true
The fields are there (in the database, but not on the UI by default), and if I check them all via BPM, the Create Job button does indeed become active… but when I click it no job gets created.
Basically what I’m discovering is that using this feature will require some level of customization.
Yes, it definitely looks incomplete. Ultimately, all it does is call:
SalesOrderAdapter.ProcessQuickEntry(currentOrderNum);
I havent looked in the adapter to see what that’s supposed to do. But perhaps you could put a message box on BeforeAdatperMethod for that method to see if it fires…