Search found 9 matches

by amtech
Thu Feb 22, 2024 11:17 am
Forum: Automation Code Snippets
Topic: Corrupted Code Snippets for Task Automation
Replies: 4
Views: 254

Re: Corrupted Code Snippets for Task Automation

There was an indentation error in the code I posted. See below for the correct code. def SSNPopulated(): # Set default return value for test. retValue = False contact = args.Context # Short circuit and return false if contact is not a Buyer or Seller if ( str( contact.ContactType ) == "Buyer&qu...
by amtech
Thu Feb 22, 2024 11:07 am
Forum: Automation Code Snippets
Topic: Corrupted Code Snippets for Task Automation
Replies: 4
Views: 254

Re: Corrupted Code Snippets for Task Automation

My guess as to the cause of the problem is that sometimes the code snippet is hitting contacts other than buyers and sellers, despite how you have the logic properly setup to prevent this. I develop and debug my code snippets in CORs so that I can get real-time feedback on it's functionality so I te...
by amtech
Tue Sep 12, 2023 4:58 pm
Forum: ReadyDoc Development
Topic: IF statements for strings containing unpaired parentheses
Replies: 0
Views: 24067

IF statements for strings containing unpaired parentheses

I ran into this issue and couldn't find a solution here, so I thought posting both the problem and solution might be helpful to others. I was having an issue where an unpaired opening or closing parenthesis was causing the Order.ExistingLiens.Recording.AdditionalInfo field to not complete an IF stat...
by amtech
Tue Aug 22, 2023 6:35 pm
Forum: Custom Order Rules
Topic: Define Assignment CORs - Reference not working
Replies: 7
Views: 7323

Re: Define Assignment CORs - Reference not working

That did it! Custom field CORs and CORs for the three fields on ExistingLienAssignment are all working. I've gotten so used to Alt+F6 to find that information that I forgot there was another reference at the bottom of the field code browser. Reading solves most issues. The help is always very apprec...
by amtech
Tue Aug 22, 2023 5:24 pm
Forum: Custom Order Rules
Topic: Define Assignment CORs - Reference not working
Replies: 7
Views: 7323

Re: Define Assignment CORs - Reference not working

I saw your response in an older thread and thought I'd run into issues but it's working fine for the existing liens CORs on custom fields. https://i.imgur.com/eF8gW8C.png I created a new custom field with no underscores (and restarted Select) to test if that was an issue specific to Assignments and ...
by amtech
Tue Aug 22, 2023 3:16 pm
Forum: Custom Order Rules
Topic: Define Assignment CORs - Reference not working
Replies: 7
Views: 7323

Re: Define Assignment CORs - Reference not working

Also to rule out the possibility that the naming convention of the function definitions was causing the issue, I tried the below with the same results: from System import * from SoftPro.ClientModel import * from SoftPro.OrderTracking.Client import * from SoftPro.OrderTracking.Client.Orders import * ...
by amtech
Tue Aug 22, 2023 3:10 pm
Forum: Custom Order Rules
Topic: Define Assignment CORs - Reference not working
Replies: 7
Views: 7323

Re: Define Assignment CORs - Reference not working

Good afternoon Vlad, I'm running Select version 4.3.57 in hosted but I'm also testing this in an on-prem environment with the same results. Unfortunately that breaks the CORs for custom fields that were working and does not fix the Assignments. https://i.imgur.com/QEOY30R.png I'm having issues creat...
by amtech
Mon Aug 21, 2023 5:08 pm
Forum: Custom Order Rules
Topic: Define Assignment CORs - Reference not working
Replies: 7
Views: 7323

Define Assignment CORs - Reference not working

I'm attempting to write CORs for custom fields that I have on assignments however I'm having an issue with CORs not being able to find the Assignment context. I'm using the standard <Context>_<Field>_<Aspect> format. The simplest version of the code that is not working: from System import * from Sof...
by amtech
Thu Dec 08, 2022 12:49 pm
Forum: Custom Order Rules
Topic: Setting a Fee Schedule for Recording Fees and Transfer Fees
Replies: 2
Views: 9133

Re: Setting a Fee Schedule for Recording Fees and Transfer Fees

Hi Bob. Thank you so much for posting this! I've butted my head against this a couple of times. I have the COR working for CDF orders but now I need a version to cover CSS orders as well but I'm having trouble with the function name for. I used Alt+F6 to try to figure it out but I'm not having any l...