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 : When I run the open purchase orders by job report it returns nothing other than "National insuranceSearch Forum

Forum Home > QODBC - ODBC Driver for QuickBooks > QODBC Bug Reports

 New Topic 
 
 Post Reply 
[1]  
 When I run the open purchase orders by job report it returns nothing other than "National insurance 
 Author   Message 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2006-02-21 11:57:12

We're sorry, but this is a bug within Intuit's QuickBooks qbXML SDK for the UK and Australia.

The sp_report for Open Purchase Orders by Job report :-

sp_report OpenPOsByJob show Amount_Title, Text, Blank, TxnType, Date, DeliveryDate, RefNumber, SourceName, Item, Quantity, ReceivedQuantity, UnitPrice, Amount parameters DateMacro = 'All'

returns nothing other than "National insurance contributions" under the "Amount_title" column. The same sp_report in the USA versions of QuickBooks works correctly.

The Open Purchase Orders sp_report:

sp_report OpenPOs show Amount_Title, Blank, TxnType, Date, Name, RefNumber, DeliveryDate, Amount parameters DateMacro = 'All'

works correctly. So you will need to use it instead. If you know what supplier has jobs, then you can filter out the supplier like this:-

sp_report OpenPOs show Amount_Title, Blank, TxnType, Date, Name, RefNumber, DeliveryDate, Amount parameters DateMacro = 'All' where Name='Remarkable Hotel'

 

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

You 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 
 New Topic 
 
 Post Reply 
[1]  

Jump to