Search found 3 matches

by normanc
Thu Jul 20, 2023 7:54 am
Forum: Custom Order Rules
Topic: Prevent Warning on READONLY
Replies: 4
Views: 3206

Re: Prevent Warning on READONLY

Hello, I wanted to see if there was any update or possibly any additional workarounds found for this issue? Our organization is running into the same behavior when setting the Invoice.BillTo field to Read-Only when the user has selected a value: def Invoice_BillTo_ReadOnly(args): invoice = args.Cont...
by normanc
Fri Oct 14, 2022 1:52 pm
Forum: Automation Code Snippets
Topic: Exceptions/Requirements – Handling multiple references to order objects
Replies: 3
Views: 1192

Re: Exceptions/Requirements – Handling multiple references to order objects

I found a work-around for this scenario: Using the below code I am able to add multiple Requirements, and then manually set the non-specific field codes used in the Requirement Text. # Get Existing Liens matching criteria matching_liens = [lien for lien in Context.ExistingLiens if str(lien.Instrumen...
by normanc
Wed Oct 12, 2022 7:49 am
Forum: Automation Code Snippets
Topic: Exceptions/Requirements – Handling multiple references to order objects
Replies: 3
Views: 1192

Re: Exceptions/Requirements – Handling multiple references to order objects

Thank you for your answer on this. I did some additional reading in the SDK on 'Handling Disambiguities', and also read some related posts on the forum, including your very helpful post on how to work with lookup tables ( https://devforum.softprocorp.com/viewtopic.php?t=1475 ). While the lookup tabl...