Search found 18 matches

by sweinstock
Mon Feb 27, 2017 4:28 am
Forum: Crystal Report Development
Topic: split to in additional title charges screen
Replies: 2
Views: 2380

Re: split to in additional title charges screen

Thank you. Exactly what I needed.
by sweinstock
Mon Feb 20, 2017 3:32 pm
Forum: Crystal Report Development
Topic: split to in additional title charges screen
Replies: 2
Views: 2380

split to in additional title charges screen

Where in the database can I find who the additional title charges was split to? I see excess split to but I want who the item was split to (for example if they choose underwriter, etc.)

Thank you
by sweinstock
Tue Feb 14, 2017 6:43 am
Forum: Crystal Report Development
Topic: Accessing custom fields in order information screen
Replies: 1
Views: 2435

Accessing custom fields in order information screen

I have values saved in the order information screen custom fields. I need to retrieve them from the database, but I can't seem to find them. (Label, value)
The custom fields from the other screens are in the entity table but these are not there.

Thanks
by sweinstock
Mon Oct 31, 2016 3:06 am
Forum: Integration Development
Topic: Get Instrument Type from existing liens via api
Replies: 6
Views: 1022

Re: Get Instrument Type from existing liens via api

Thank you, I needed to add the casting. Also after seeing your code and testing I see that the instrument type only works within an open connection. I was first retrieving the dynamic objects and then setting the columns with the .select. It seems like instrument type needs an open connection. All i...
by sweinstock
Sun Oct 30, 2016 7:08 am
Forum: Crystal Report Development
Topic: Ordering Requirements the same way as within the file
Replies: 8
Views: 4236

Re: Ordering Requirements the same way as within the file

I still didn't get a reply. Do I need to use the api to get the existing liens from the file in the same order that it's listed in the file (just like the requirements I need to get via api) or is there a way to get from the database directly?

Thanks!
by sweinstock
Thu Oct 13, 2016 6:53 am
Forum: Integration Development
Topic: Get Instrument Type from existing liens via api
Replies: 6
Views: 1022

Re: Get Instrument Type from existing liens via api

Thanks for your reply. I changed it to code and description but both still gave me an error. I don't think it's a JSON issue though because in debug mode when I look at the object, it's showing instrument type with an error, while the other properties have values This is from the debugger window, In...
by sweinstock
Wed Oct 05, 2016 3:06 am
Forum: Integration Development
Topic: Get Instrument Type from existing liens via api
Replies: 6
Views: 1022

Re: Get Instrument Type from existing liens via api

Thanks for your reply, I can get all the info from existing liens but when I add InstrumentType to the list I get a null exception. This works: IEnumerable<dynamic> ExistingLiens = existingLiensSelect.Select(x => new { x.Mortgagor, x.Mortgagee, x.OriginalPrincipalAmount, x.ConsiderationAmount, x.Rec...
by sweinstock
Wed Sep 28, 2016 5:58 am
Forum: Integration Development
Topic: Get Instrument Type from existing liens via api
Replies: 6
Views: 1022

Get Instrument Type from existing liens via api

Hi, I'm trying to get all existing liens from the softpro file to display on my web page. I'm accessing via api the mortagee, mortgagor, originalprincipalamount, etc. all return fine. When I try to access the insrumenttype I get the following error Object reference not set to an instance of an objec...
by sweinstock
Wed Sep 28, 2016 3:18 am
Forum: Crystal Report Development
Topic: Ordering Requirements the same way as within the file
Replies: 8
Views: 4236

Re: Ordering Requirements the same way as within the file

I need to do the same as the above for the existing liens. Is there a field in the database that enables me to order that same way that it's in the file?

Thanks!
by sweinstock
Sun Aug 07, 2016 11:23 am
Forum: Integration Development
Topic: Accessing all requirements with the API
Replies: 2
Views: 620

Re: Accessing all requirements with the API

I can't delete this post so I will update with the following question: I would like to just convert this object to a regular C# object without having to specify an exact mapping of each property. I tried to convert to JSON and then I would convert back to an object. I added this line to my code: dyn...