Search found 24 matches

by yatin.t
Thu Sep 05, 2019 4:34 pm
Forum: Integration Development
Topic: Adding groups to plugin package via the API
Replies: 2
Views: 1724

Re: Adding groups to plugin package via the API

if (plugin != null) { Console.WriteLine($"plugin {plugin.Name}"); plugin.Members.Add(mainUserGrp); } This code would add the group to the Members collection on the in-memory plugin object. Information will be persisted in the system only after you ask the pluginManager to save changes tha...
by yatin.t
Fri Aug 23, 2019 3:11 pm
Forum: Integration Development
Topic: Missing DLL?
Replies: 14
Views: 17407

Re: Missing DLL?

I'd be surprised if the MSTest execution engine IO error is related to the problem. What version of Select are you running this code on? Also, Fusion Log Viewer should tell you the location from where the AppDomain is trying and failing to load the Microsoft.AI.ServerTelemetryChannel.dll. This utili...
by yatin.t
Fri Aug 23, 2019 7:58 am
Forum: Integration Development
Topic: Missing DLL?
Replies: 14
Views: 17407

Re: Missing DLL?

Try this if you haven't already: Check the CLR Exceptions flag on the Debug->Exception Settings window of Visual Studio so you can catch an unhandled exception that is most likely being thrown here. Please attach the call stack when you catch that exception so we can troubleshoot this better.
by yatin.t
Wed May 25, 2016 12:32 pm
Forum: Integration Development
Topic: 4.1 Print Pipeline IDocument is now IDocumentInfo
Replies: 6
Views: 1247

Re: 4.1 Print Pipeline IDocument is now IDocumentInfo

The IDocumentGroup interface has been removed from the documents API in 4.1. We apologize for the inconvenience but that interface was not really utilized in a meaningful way by Select, especially in version 3.0 and up. Select 2.6 used it to determine the order in which documents were printed but th...
by yatin.t
Wed Jan 20, 2016 2:39 pm
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2651

Re: Check Processing: Order Number

Try this in your custom print job handler - the same approach applies to other ledger document types. var item = printJob.Items.FirstOrDefault(); if (item != null && item.Properties.ContainsKey("Document")) { var document = item.Properties["Document"] as IDocument; if (do...
by yatin.t
Wed Jan 20, 2016 12:28 pm
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2651

Re: Check Processing: Order Number

The GUID value encoded in " &rootid=cb2cca5a-8bc3-e411-b614-00155de06a66 " would be the ledger ID if it's a check document that's going through the print job pipeline. I'd parse the ledger ID and try the following code to get the order number. using SoftPro.Accounting.Client; using Sof...
by yatin.t
Wed Jan 20, 2016 11:04 am
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2651

Re: Check Processing: Order Number

Thanks for the snippet. " The closest I can find that has any promise is to pull the Document ID out of the Context URI " - that somehow told me that you have a handle on the Report Context Uri and that you can parse Document ID from it? I ask because if such is the case, you could potenti...
by yatin.t
Tue Jan 19, 2016 6:51 pm
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2651

Re: Check Processing: Order Number

Understood. Could you post a snippet of your code that grabs the DocumentID from the Report Uri? Are you using the IReportContext<T> interface to get that information?
by yatin.t
Tue Jan 19, 2016 5:53 pm
Forum: Shell (User Interface)
Topic: Check Processing: Order Number
Replies: 9
Views: 2651

Re: Check Processing: Order Number

Please see my reply to this post. Hope it helps.

Thanks.
by yatin.t
Fri Oct 30, 2015 4:42 pm
Forum: Integration Development
Topic: Accessing the FullLoanRateTable of a Policy using the API
Replies: 4
Views: 913

Re: Accessing the FullLoanRateTable of a Policy using the AP

Try the following code snippet and let me know if you have questions. var server = GetService<SelectServer>(); // or however you get an instance of SelectServer in your integration code var lookups = server.GetService<ILookups>(); var spec = new LookupQuerySpec { Table = "Policy Lookup Table&qu...