The Net Tools Company - 800.225.4190
Search: 
Available in: QUICKBOOKS
QBObject Component [QuickBooks Integrator V5]

Properties   Methods   Events   Configuration Settings  

A generic QuickBooks object, allowing users to extend the product's functionality.

NOTE: What follows is a very short description of the component interfaces. For more information, please consult the help files that come with the respective package.

Remarks

QBObject is implemented for extensibility, and allows the user to extend the functionality of the component set. The component handles the XML parsing and QuickBooks connection, and leaves it to the user to specify the list of properties to include.

QBObject may be used to implement any object supported by version 1.1 of the QuickBooks SDK. For example, it could be used to implement a transaction line item. The full list of objects and their properties is in the SDK documentation; users of QBObject should download and refer to the SDK documentation for this information.

To add an object to QuickBooks, first set ObjectName to the name of the object being implemented; for example, "ItemService". Then, set ObjectType to the type of object: "List" for a list item, or "Txn" for a transaction item. Then, specify each property in order using the AddProperty method. Finally, invoke Add.

To get an object, set ObjectName and ObjectType as before, and then invoke Get. The object's property values may then be inspected using GetProperty. The object may also be deleted by invoking Delete.

The component does not implement any knowledge of QuickBooks business rules, and simply constructs QBXML based on ObjectName, ObjectType, and the calls to AddProperty. If the component is unable to construct valid QBXML it will typically fail with an uninformative error. In this case, the GetQBAddRequestAggregate or GetQBUpdateRequestAggregate methods can be used to inspect the QBXML that is being sent.

The following pseudocode shows how to add a service line item to QuickBooks.


QBObject1.ObjectName = "ItemService"
QBObject1.ObjectType = "Txn"
QBObject1.AddProperty("Name", "Item name here")
QBObject1.AddProperty("SalesOrPurchase",
  "<AccountRef><FullName>Account name here</FullName></AccountRef>")
QBObject1.Add()

Property List


The following is the full list of the properties of the component with short descriptions. Click on the links for further details.

ObjectNameThe name of the object.
ObjectTypeThe type of the object - generally List or Txn.
QBConnectionStringAn aggregate consisting of various QuickBooks connection properties.
QBRequestIdThe Id of the next message to be sent to QuickBooks.
QBResponseAggregateThe last XML response aggregate received from QuickBooks.
QBXMLVersionThe version of QBXML used in the outgoing message.
ResultCountThe number of records in the Result arrays.
ResultAggregateOne response XML aggregate returned from QuickBooks.
ResultObjNameIndicates which component is used to parse the corresponding Aggregate .
XChildCountNumber of children for the current element.
XElementThe name of the current element.
XPathProvides a way to point to a specific element in the document.
XTextThe text of the current element.

Method List


The following is the full list of the methods of the component with short descriptions. Click on the links for further details.

AddAdds the record into QuickBooks.
AddPropertySets the value of the specified property.
CheckRequestStatusChecks whether or not the specified request was processed by QuickBooks.
CloseQBConnectionCloses a persistent connection to QuickBooks.
ConfigSets or retrieves a configuration setting.
DeleteDeletes the record from QuickBooks.
GetGets a single record from QuickBooks.
GetByNameGets a single record from QuickBooks.
GetPropertyGets the value of the specified property.
GetQBAddRequestAggregateRequest aggregate for an Add.
GetQBUpdateRequestAggregateRequest aggregate for an Update.
HasXPathDetermines whether a specific element exists in the document.
OpenQBConnectionOpens a persistent connection to QuickBooks.
ProcessQueueProcesses the current queue of transactions.
QueueAdds a transaction to the queue.
ResetResets all properties to their defaults.
ResetQueueResets the transaction queue.
SendRawXMLSends the provided XML string to the QBXML Request Processor.
UpdateUpdates the entity object in QuickBooks.

Event List


The following is the full list of the events fired by the component with short descriptions. Click on the links for further details.

ErrorInformation about errors during data delivery.
SSLServerAuthenticationFired after the server presents its certificate to the client.
SSLStatusShows the progress of the secure connection.
StatusShows the progress of the QuickBooks connection.
WarningFired when a warning occurs.

Configuration Settings


The following is a list of configuration settings for the component with short descriptions. Click on the links for further details.

StopOnErrorSpecifies how QuickBooks is to proceed if an error occurs in processing of the current request.
SSLAcceptServerCertThe SSL certificate being used by the Remote Connector.
SSLAcceptServerCertFileThe SSL certificate file being used by the Remote Connector.
EnforceMaxLengthIndicates whether to enforce max lengths for QB Fields.
IgnoreQBOEWarningsIgnores warnings returned from QuickBooks Online.
AuthFlagsConnection Flags (use for QuickBooks Simple Start).
GetHighestVersionHighest QBXMLVersion supported by the installed instance of QuickBooks.
GetSupportedVersionsReturns a list of QBXMLVersions that are supported by QuickBooks.
GetRequestProcessorDLLVersionReturns the version of the QB Request Processor that is installed on your system.
QBOpenCompanyFileThe file currently open in QuickBooks.
QBConnectionModeThe mode of connection to QuickBooks.
CodePageThe system code page used for Unicode to Multibyte translations.
| About | Privacy Policy | Terms of Use |
© Copyright 2012 /n software inc.