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 : Updating Inventory Assembly Items...Custom FieldsSearch Forum

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

 New Topic 
 
 Post Reply 
[1]  
 Updating Inventory Assembly Items...Custom Fields 
 Author   Message 
  Gary 
  
 Group: Members 
 Posts: 30 
 Joined: 2006-04-08 
 Profile
 Posted : 2008-03-07 02:54:33

Is there any way to do this with an Access Update Query.  I get the message "....update on linked table "Item" failed.  "...Not Supported"(#10003)

I tried also in single user mode...same message. 

I lost my data for these fields when I imported an *.iif file through through QB import, export functions. QB support finally admitted they had the same problem when trying to update the assembly items; their custom data also disappeared.

 

  Top 
  Tom 
  6c3c1_sdk-qodbc.gif
 Group: Administrator 
 Posts: 5510 
 Joined: 2006-02-17 
 Profile
 Posted : 2008-03-07 08:25:19

Not a problem, in this example I will try to change the CustomFieldColor for a Assembly header. First I need to determine the exact ItemInventoryAssemblyLine row I would like to update:

Select CustomFieldColor, ListID, ItemInventoryAssemblyLnSeqNO,
ItemInventoryAssemblyLnItemInventoryRefListID
from ItemInventoryAssemblyLine
where ListID='430001-1071511103' and ItemInventoryAssemblyLnSeqNO = 1
and ItemInventoryAssemblyLnItemInventoryRefListID='130000-933272656'

I then update the CustomField with the color value I want, for example 'Red':

UPDATE ItemInventoryAssemblyLine SET CustomFieldColor = 'Red'
where ListID='430001-1071511103' and ItemInventoryAssemblyLnSeqNO = 1
and ItemInventoryAssemblyLnItemInventoryRefListID='130000-933272656'

And all CustomField values were updated for the assembly (header custom field):

Select CustomFieldColor, ListID, ItemInventoryAssemblyLnSeqNO,
ItemInventoryAssemblyLnItemInventoryRefListID
from ItemInventoryAssemblyLine

 

  Top 
 New Topic 
 
 Post Reply 
[1]  

Jump to