Search found 84 matches

by Lisa Ennis
Fri Jan 31, 2014 5:39 pm
Forum: Crystal Report Development
Topic: Order balance from register screen
Replies: 3
Views: 880

Re: Order balance from register screen

Hi Sangeetha, if you can let me know which version of our software that you are using, I can assist you with this (Classic or Select).
by Lisa Ennis
Wed Dec 18, 2013 11:34 am
Forum: Integration Development
Topic: Buyer Type
Replies: 2
Views: 604

Re: Buyer Type

Link pfm.Principal to the pfm.Contact table (pfm.Contact.RootId#=pfm.Principal.RootId# AND pfm.Contact.Id#=pfm.Principal.Id#). The pfm.Principal.BuyerSellerType field contains the code for the Type. You can link on that field to the zref.BuyerSellerType to determine if the Buyer/Seller is an Individ...
by Lisa Ennis
Wed Nov 13, 2013 4:00 pm
Forum: Crystal Report Development
Topic: Pending Fee Ledger Disbursement
Replies: 1
Views: 794

Re: Pending Fee Ledger Disbursement

To get pending fee ledger disbursements, you would search for transactions assigned to the fee ledger type and that the dbo.Transaction.ParentTransactionID is NULL.
by Lisa Ennis
Fri May 03, 2013 9:19 am
Forum: Crystal Report Development
Topic: Cutom Revenue Report
Replies: 2
Views: 751

Re: Cutom Revenue Report

You do not need a join to the Adjustment table at all for the 'Pending' transactions. I would recommend using a UNION statement where you first get all the posted transactions and their adjustments, and then UNION a SELECT statement that gets the pending transactions. Below is code from custom repor...
by Lisa Ennis
Mon Nov 05, 2012 12:59 pm
Forum: Crystal Report Development
Topic: Custom Escrow Fee Report
Replies: 2
Views: 838

Re: Custom Escrow Fee Report

The "TransferToIsRevenueLedger" flag is set on the ledger you are transferring funds to, it is not set in the order. Open the Revenue Ledger in ProTrust, and you will see the Revenue flag on the right side of the ledger header. Hope this helps, please let us know if you have additional que...
by Lisa Ennis
Thu Oct 11, 2012 8:52 am
Forum: Crystal Report Development
Topic: Default Value Parameters
Replies: 4
Views: 1140

Re: Default Value Parameters

Good morning Michael, Using a string parameter and converting it is the workaround for not being able to pass a currency parameter through Select. Hopefully we will be addressing this in an upcoming release. I would suggest that you handle the parameter through your stored procedure and convert the ...
by Lisa Ennis
Tue Oct 09, 2012 9:40 am
Forum: Crystal Report Development
Topic: Default Value Parameters
Replies: 4
Views: 1140

Re: Default Value Parameters

The Crystal currency type parameter is not a supported parameter type for use with Select. You can use a Number type parameter or a String parameter and convert it to currency using the "CCur" function. Attached is a document showing several screens of the Crystal parameters and the parame...
by Lisa Ennis
Thu Mar 01, 2012 5:33 pm
Forum: Crystal Report Development
Topic: Recording Instructions Pro Form Additional Fee GET
Replies: 1
Views: 748

Re: Recording Instructions Pro Form Additional Fee GET

It will be in the HUDLineAdditionalCharge table. To get the HUD Line number, you would INNER JOIN to the HUDLine table.
by Lisa Ennis
Wed Dec 21, 2011 11:30 am
Forum: Crystal Report Development
Topic: Background Image with Barcode
Replies: 2
Views: 785

Re: Background Image with Barcode

We edit/alter the images using PaintShop Pro, however, there are probably similiar steps in other graphic programs. Below are the steps that we use for preparing a graphic file for a background in a Crystal Report. It is best to use a bitmap file as a background image in a ReadyDoc Report. The follo...
by Lisa Ennis
Tue Jul 12, 2011 10:17 am
Forum: Crystal Report Development
Topic: Payor Name Check Stub Letters and Checks Report
Replies: 1
Views: 775

Re: Payor Name Check Stub Letters and Checks Report

There are very limited scenarios where we can accurately return the payor information for a disbursement as there can be multiple payors for a transaction. Each disbursement can contain multiple hud lines, each hud line can have multiple charges, and each charge can have mulitiple payors. I would en...