Member Login

Username
Password
Forget Password
New Sign Up
Search Forum

Buy Support
Incidents

If you can't find your answer in the FREE PUBLIC QDeveloper Forum, require URGENT Priority Support, or you need to send us private or confidential information:

Click Here
If you can't login and post questions or you are having trouble viewing forum posts:
Click Here
Callback
Support

If you live in USA, UK, Canada, Australia or New Zealand, you can leave us details on your question and request us to call you back and discuss them with you personally  (charges apply).

Click Here
 
Buy Support
Incidents
If you can't find your answer in the FREE PUBLIC QDeveloper Forum, require URGENT Priority Support, or you need to send us private or confidential information:
Click Here

Forum : Open POs by job report, need informationSearch Forum

Forum Home > QODBC - ODBC Driver for QuickBooks > QODBC v7 Forum

 New Topic 
 
 Post Reply 
[1]  
 Open POs by job report, need information 
 Author   Message 
  marie 
  
 Group: Members 
 Posts: 3 
 Joined: 2007-03-08 
 Profile
 Posted : 2007-03-08 04:57:06

Anyone, I'm creating a report in Crystal report.  Once similar to the Open POs by job report.  Does anyone know what tables are used, what fields are linking the tables, what fields are used for the report, and what criteria is used to know if a PO is still active or not.  Thanks, Marie 

 

  Top 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2007-03-08 10:01:59

See: How do I run a Open Purchase Orders by Job Report? for the SQL for the report and follow the instructions below:

Creating a Report with SQL or an existing QuickBooks Report
For sp_reports or manual SQL statements, Highlight “Add Command” and move the right panel.

The following window will appear. Type or paste your SQL statement or sp_report command as shown, then click “OK”

Your SQL statement is now entered; (to edit, just right click on “Command”). Click “OK”

The fields as specified in your SQL statement, are now available for selection in your report.

 

  Top 
  marie 
  
 Group: Members 
 Posts: 3 
 Joined: 2007-03-08 
 Profile
 Posted : 2007-03-09 01:49:07

I have three levels of jobs, for ex:

Company

     Job number

            ship

Third level down doesn't show up under the type field.  Plus I need to group on each level and having all of them showing up in one field doesn't work.  Then the purchase orders are not linked at all to the 'type' field so when I do my report....the po's don't show up.

 

Please, is there any way I can get the tables and how they are linked and so forth?  The QODBC website documentation is not helping me :(

Marie

 

 

  Top 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2007-03-09 09:06:54

We can also extract the same information from the PurchaseOrderLine table directly like this:

SELECT PurchaseOrderLineCustomerRefFullName as Type, TxnDate as Date,  DueDate as "Deliv Date",
RefNumber as "Num", VendorRefFullName as SourceName,PurchaseOrderLineItemRefFullName as Item,
PurchaseOrderLineQuantity as Qty, PurchaseOrderLineReceivedQuantity as Rcvd,
PurchaseOrderLineRate as Cost, TotalAmount as Amount FROM PurchaseOrderLine where IsFullyReceived = 0
and PurchaseOrderLineCustomerRefFullName is not Null order by PurchaseOrderLineCustomerRefFullName

 

  Top 
  marie 
  
 Group: Members 
 Posts: 3 
 Joined: 2007-03-08 
 Profile
 Posted : 2007-03-17 07:51:47

When I tried what you suggested below.  I let it hang for about 15 minutes and then canceled it.  So instead I opened table 'PurchaseOrderLine' and selected 'IsFullyReceived' = false, and 'CustomerRefFullName' is not "".

 

My results are as followed compared to the Quick Books "Open POs by Job" report:

 

1) Not all open POs are showing up in my report. 

 

2) Doesn't show down to third level (ex/ Ship, Instrumentation, Other). 

 

3) In Quick Books the total for one job is about 6 in all.  My results are coming out in pages worth of POs. 

 

Do you think maybe we should link to another table like, Entity?

 

PLEASE HELP!

 

Marie

 

 

  Top 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2007-03-17 09:22:33

No, I suggest you play around with the SQL you are using first in VB Demo before building your report in Crystal Reports. If you're happy with the report you see in QuickBooks, use sp_report to reproduce and a sub-report in Crystal Reports to expand it (drill down on a line).

See: How do I run a SP_REPORT Command? for more on all the options.

 

  Top 
 New Topic 
 
 Post Reply 
[1]  

Jump to