Search found 1290 matches

by BobRichards
Tue May 17, 2016 12:42 pm
Forum: Integration Development
Topic: look for task
Replies: 3
Views: 725

Re: look for task

Also, I want to check if any of the properties' address1 matches another address - can I do this without looping through the properties?

There is no single line answer to this.
by BobRichards
Tue May 17, 2016 12:27 pm
Forum: Integration Development
Topic: look for task
Replies: 3
Views: 725

Re: look for task

You can use LINQ expressions to hide the ugliness of some search loops. For example, if you know the checklist item Description, you can use the following to retrieve its status. dynamic order = iOrder; IEnumerable<dynamic> tasks = order.Tasks; bool taskCompleted = tasks.Any(t => t.Description == &q...
by BobRichards
Tue May 17, 2016 11:40 am
Forum: ReadyDoc Development
Topic: Checkboxes Within Document
Replies: 1
Views: 1239

Re: Checkboxes Within Document

I'm afraid that this question is a little too broad in scope. Contact a SoftPro Customer Service Representative to discuss this with someone on the Documents team for more information.
by BobRichards
Fri May 13, 2016 4:59 pm
Forum: Integration Development
Topic: 4.1 Security Error after Upgrade
Replies: 9
Views: 1206

Re: 4.1 Security Error after Upgrade

If you are getting a "Security Error." response from the Select mid-tier, then you have successfully connected. The problem at this point is the credentials the external apps are attempting to connect with are being refused by the mid-tier. I would recommend you validate this information i...
by BobRichards
Fri May 13, 2016 4:26 pm
Forum: Integration Development
Topic: 4.1 Security Error after Upgrade
Replies: 9
Views: 1206

Re: 4.1 Security Error after Upgrade

Is this the test environment? Is all the authentication information loaded properly in Select? Are these Select or ActiveDirectory based?
by BobRichards
Fri May 13, 2016 2:58 pm
Forum: Integration Development
Topic: Simple Order Validation
Replies: 18
Views: 2256

Re: Simple Order Validation

I am not aware of a way to hotspot to an attachment or document. The start page can contain customized content, but I do not know a way to hotspot to it since it is not part of an order.
by BobRichards
Fri May 13, 2016 10:48 am
Forum: Integration Development
Topic: Simple Order Validation
Replies: 18
Views: 2256

Re: Simple Order Validation

So is there a way to then programmatically attach a doc to the profile and then "hot-spot" or open that doc? You cannot attach documents to profiles. what about parcing out the pdf file and showing it in the Errors and Warnings panel Each line will hold a limited amount of text on a singl...
by BobRichards
Thu May 12, 2016 3:24 pm
Forum: Integration Development
Topic: Simple Order Validation
Replies: 18
Views: 2256

Re: Simple Order Validation

Do you mean the Errors and Warnings panel? You can hotspot to specific fields in the order, but you cannot put a URL in this area and have it hyperlink to a website or file. Add information to this panel using the IErrorList interface. Examples are in the SDK at Cookbook/All Packages and API Project...
by BobRichards
Mon May 09, 2016 5:59 pm
Forum: Integration Development
Topic: 4.1 API example for docs/reports
Replies: 13
Views: 2691

Re: 4.1 API example for docs/reports

And finally the last type of response object - IRequestRange. In this example, the document is passing multiple prompts to the program, but all we want to enter for the "Orders Received" report is the period of time specifying the last 30 days. We are ignoring all the other prompts since t...
by BobRichards
Mon May 09, 2016 5:27 pm
Forum: Integration Development
Topic: 4.1 API example for docs/reports
Replies: 13
Views: 2691

Re: 4.1 API example for docs/reports

This example shows the second of three types of responses you might need to handle cases where you are required to enter an item(s) from a list of options provided by the document prompt. In this case, we use the IRequest.ID to determine the desired response instead of the IRequest.Text as in the ot...