Page 1 of 1

Policy Number, Policy Schedule A Screen

Posted: Thu May 10, 2018 5:10 pm
by bthorson
I'm trying to develop a formula that pulls information from the Policy Number field on the Policy - Schedule A Screen, the field code is {{Order.Title.TitleInsuranceCalculations.LoanPolicy.Number}} ,however, I receive the following error "Set<TitleInsuranceCalculation>' does not contain a definition of 'LoanPolicy'. Do you have any recommendations on what field code I can use to pull from this field?

Thank you,
Bryan

Re: Policy Number, Policy Schedule A Screen

Posted: Thu May 10, 2018 5:26 pm
by BobRichards
TitleInsuranceCalculations (plural) is a set of one or more TitleInsuranceCalculation objects. You must pick the one that has the Loan Policy you are interested in. For example, the first TitleInsuranceCalculation in the set is selected as follows:

Code: Select all

{{Order.Title.TitleInsuranceCalculations[1].LoanPolicy.Number}}
                                        ^^^
In the future, this forum is for Automation Code Snippets - not formulas. Please post to "Integration Development" or "Integration Development / General" instead. Thanks.