Search found 8 matches

by tlyde_LCTMHS
Fri Aug 08, 2014 5:39 pm
Forum: Business Rules
Topic: Add Transaction to ledger Using SPROC
Replies: 1
Views: 2609

Add Transaction to ledger Using SPROC

We need some help with a stored procedure. We are trying to create a transaction for a ledger. I did not see any existing stored procedures for creating a transaction so I combined a few things. I insert a transaction into the Transaction table for the existing ledger, then add a ExtendedInfo item a...
by tlyde_LCTMHS
Wed Jun 11, 2014 1:58 pm
Forum: Crystal Report Development
Topic: Using MoveIt Controls for Cascading parameters
Replies: 1
Views: 679

Using MoveIt Controls for Cascading parameters

Hi, I am trying to create cascading input parameters. I have State, City, and County. I obtain a list of states and then choose cities from the states chosen. I can get the list of cities to populate when the State control is a combo box limited to 1 input but not when I change it to a Move It contr...
by tlyde_LCTMHS
Mon Jan 13, 2014 3:36 pm
Forum: Shell (User Interface)
Topic: Saving Order from Custom Package
Replies: 1
Views: 647

Saving Order from Custom Package

I have a custom package and I access the data from an open active order. I also write data to the order. My question is how can I save the order programmatically once I have written data to it. There is no Save method for the order. The code below shows how I get the active order: private IOrder get...
by tlyde_LCTMHS
Mon Jan 06, 2014 6:47 pm
Forum: Server
Topic: Setting Default Profiles
Replies: 1
Views: 999

Setting Default Profiles

I am trying to upload scanned documents to various orders. I have a login that has multiple profiles but no default selected. My code is: SelectServer sps; sps = new SelectServer(null, new Uri(@"http://SELECT-MID:8080/")); // leave off credentials if using windows login OrderTracking ot = ...
by tlyde_LCTMHS
Mon Aug 26, 2013 3:58 pm
Forum: ProForm (Order Tracking)
Topic: Failed to Authenticate the Current User Error
Replies: 3
Views: 2693

Re: Failed to Authenticate the Current User Error

Thanks John, Fixed the problem. I was trying to use my Windows credentials to login. If using Windows credentials to login, leave the credentials off: NetworkCredential credentials = new NetworkCredential(@"username", @"password", SoftPro.ClientModel.Constants.ServerDomain); Sele...
by tlyde_LCTMHS
Mon Aug 26, 2013 11:35 am
Forum: ProForm (Order Tracking)
Topic: Failed to Authenticate the Current User Error
Replies: 3
Views: 2693

Re: Failed to Authenticate the Current User Error

Yes, I can log in using the client
by tlyde_LCTMHS
Fri Aug 23, 2013 5:46 pm
Forum: ProForm (Order Tracking)
Topic: Failed to Authenticate the Current User Error
Replies: 3
Views: 2693

Failed to Authenticate the Current User Error

Hi, I am getting the below error message when trying to open a Softpro order. I am following the example givin in the SDK documentation. The lines of code and the error message are below. Also, I get the following when trying to go to the server via the browser "HTTP Error 503. The service is u...
by tlyde_LCTMHS
Wed Jul 31, 2013 1:09 pm
Forum: ProForm (Order Tracking)
Topic: List of Order Numbers
Replies: 1
Views: 2483

List of Order Numbers

I need to be able to search thru a list of open orders for various information. Is there something in the API that will provide me with a list of order numbers to loop thru or is there a way to programmatically create a temporary lookup table that can contain this information. I think someone else a...