ItemQuery

This is a general query to search through all the items, of every type, in contrast to the type-specific queries such as ItemInventoryQuery, ItemOtherChargeQuery, and so forth. ItemQuery will return information about all the items that are set up in the QuickBooks file. However, if you want to find out if an inventory item has had its on hand quantity modified by other QB transactions (such as ItemReceipt), then you cannot use this query! You must use the ItemInventoryQuery instead. Notice that you cannot get an inventory asset value from QuickBooks using this query. Instead, you need to use the General Summary Report query (which currently doesn’t include Assembly Items). Suppose you needed a way to search for the amount on hand of items that have had their amount changed since a certain date. Again, you would not use this query, but a GeneralDetailReportQuery that has its GeneralDetailReportType set to “InventoryValuationDetail.” This will tell you which items changed by how much. Finally, suppose you wanted the on-hand quantity from QB as of a specific date. You would use a General Summary Report of the type Inventory Valuation Summary. (Again, this report doesn’t include Inventory Assemblies.)


Request

Response

XMLOps

VB.NET

C#

Tag Type Max length Implementation Required

IItemQuery

This is a general query to search through all the items, of every type, in contrast to the type-specific queries such as ItemInventoryQuery, ItemOtherChargeQuery, and so forth. ItemQuery will return information about all the items that are set up in the QuickBooks file. However, if you want to find out if an inventory item has had its on hand quantity modified by other QB transactions (such as ItemReceipt), then you cannot use this query! You must use the ItemInventoryQuery instead. Notice that you cannot get an inventory asset value from QuickBooks using this query. Instead, you need to use the General Summary Report query (which currently doesn’t include Assembly Items). Suppose you needed a way to search for the amount on hand of items that have had their amount changed since a certain date. Again, you would not use this query, but a GeneralDetailReportQuery that has its GeneralDetailReportType set to “InventoryValuationDetail.” This will tell you which items changed by how much. Finally, suppose you wanted the on-hand quantity from QB as of a specific date. You would use a General Summary Report of the type Inventory Valuation Summary. (Again, this report doesn’t include Inventory Assemblies.)
       

metaData

This is used in a query to cause a count of query objects to be returned. You can specify that the count of query objects is to be returned with the returned objects, or you can specify that only a count and no data is returned. (The default is that no count is returned.) A common use of this feature is to specify a count with no data in order to determine how many objects to expect from the actual query. If you don’t want a query to return a count, either don’t use this feature, or specify the value NoMetaData. If you want only a count, specify the value MetaDataOnly. If you want data and a count, specify MetaDataAndResponseData. You should be aware that the count returned via this setting is not guaranteed to be exact: it could be off slightly due to new object creation or deletions.
IQBENmetaDataType   4.0 us.png  

iterator

The iterator attribute provided with most query types also allows you to break down query results in smaller and more manageable chunks of data. An iterator results in responses that contain only the specified number of objects. Iterators are only valid for the application that starts them, and they are only valid for the current QuickBooks session.
IQBENiteratorType   5.0 us.png  

iteratorID

Returned in the response in the first iteration and supplied in subsequent iterations, this identifies which iteration is to be used in the query continuing the iteration. Required because many different iterations may be currently in use.
IQBUUIDType   5.0 us.png  

ORListQuery

IORListQuery      

ListIDList

One or more ListID values. Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IBSTRList      

FullNameList

A list of one or more FullName values. FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IBSTRList      

ListFilter

The IListFilter group object allows you to search according to active status, modification date, and name.
IListFilter      

MaxReturned

Limits the number of objects that a query returns. (To get a count of how many objects could possibly be returned, use the metaData query attribute.) If you include a MaxReturned value, it must be at least 1.
IQBIntType      

ActiveStatus

Used in filters to select list objects based on whether or not they are currently enabled for use by QuickBooks. The default value is asActiveOnly, which selects only list objects that are active.
IQBENActiveStatusType      

FromModifiedDate

Selects objects modified on or after this date. See the note below regarding QBFC usage.For desktop versions of QuickBooks, the FromModifiedDate and ToModifiedDate must be between 1970-01-01 and 2038-01-19T03:14:07 (2038-01-18T19:14:07-08:00 PST). (The time portion of the field was not supported in qbXML version 1.0 or 1.1.) Also, for desktop versions of QuickBooks, if FromModifiedDate includes a date but not a time (for example, if you set FromModifiedDate to 2003-02-14), the time is assumed to be zero (2003-02-14T00:00:00). If you omit FromModifiedDate, it will be set to 1970-01-01T00:00:00 (1969-12-31T16:00:00-08:00 PST).For QBOE, the FromModifiedDate and ToModifiedDate must be between 1900-01-01T00:00:00 and 9999-12-31T00:00:00. If FromModifiedDate includes a date but not a time (for example, if you set FromModifiedDate to 2003-02-14), the time is assumed to be zero (2003-02-14T00:00:00). If you omit FromModifiedDate, it will be set to 1900-01-01T00:00:00.Note: When specifying this in QBFC, you need to supply the parameter asDateOnly, which is a Boolean. If asDateOnly is true, the date value will be represented as a date only (without a time). If asDateOnly is false, the date value will be represented as date and time, padded with zeros if necessary, and set to the beginning of the day if no time is provided. The asDateOnly parameter is especially useful in the ToModifiedDate field of a query: If asDateOnly is set to true in the ToModifiedDate field of a query, then the query includes elements modified up to the end of the day. If asDateOnly is false, the query includes elements modified up to the specified time (or up to the beginning of the day if no time is included).
IQBDateTimeType      

ToModifiedDate

Selects objects modified on or before this date. See the note below on QBFC usage.For desktop versions of QuickBooks, the ToModifiedDate and FromModifiedDate must be between 01/01/1970 and 2038-01-19T03:14:07 (2038-01-18T19:14:07-08:00 PST). (Note that the time portion of the field was not supported in qbXML version 1.0 or 1.1.) If ToModifiedDate includes a date but not a time (for example, if you set ToModifiedDate to 2003-02-14), the time is assumed to be the end of the day (2003-02-14T23:59:59). If you omit ToModifiedDate altogether, it will be set to 2038-01-19T03:14:07 (2038-01-18T19:14:07-08:00 PST).For QBOE, the ToModifiedDate and FromModifiedDate must be between 01/01/1900 and 9999-12-31T00:00:00. If ToModifiedDate includes a date but not a time (for example, if you set ToModifiedDate to 2003-02-14), the time is assumed to be the end of the day (2003-02-14T23:59:59). If you omit ToModifiedDate altogether, it will be set to 9999-12-31T00:00:00.Note: When specifying this in QBFC, you need to supply the parameter asDateOnly, which is a Boolean. If asDateOnly is true, the date value will be represented as a date only (without a time). If asDateOnly is false, the date value will be represented as date and time, padded with zeros if necessary, and set to the beginning of the day if no time is provided. The asDateOnly parameter is especially useful in the ToModifiedDate field of a query: If asDateOnly is set to true in the ToModifiedDate field of a query, then the query includes elements modified up to the end of the day. If asDateOnly is false, the query includes elements modified up to the specified time (or up to the beginning of the day if no time is included).
IQBDateTimeType      

ORNameFilter

IORNameFilter      

NameFilter

Filters according to the object’s Name.
INameFilter      

MatchCriterion

The criterion to match.
IQBENMatchCriterionType     Y

Name

The string to match.
IQBStringType     Y

NameRangeFilter

Filters according to the object’s Name.
INameRangeFilter      

FromName

The first name or item in the search range. If FromName is omitted, the range will begin with first name on the list.
IQBStringType      

ToName

The final name or item in the search range. If ToName is omitted, the range will end with last name on the list.
IQBStringType      

IncludeRetElementList

You use this if you want to limit the data that will be returned in the response. In this list, you specify the name of each top-level element or aggregate that you want to be returned in the response to the request. You cannot specify fields within an aggregate, for example, you cannot specify a City within an Address: you must specify Address and will get the entire address. The names specified in the list are not parsed, so you must be especially careful to supply valid names, properly cased. No error is returned in the status code if you specify an invalid name. Notice that if you want to return custom data or private data extensions, you must specify the DataExtRet element and you must supply the OwnerID set to either a value of 0 (custom data) or the GUID for the private data.
IBSTRList 50 chars 4.0  

OwnerIDList

Zero or more OwnerID values. OwnerID refers to the owner of a data extension:If OwnerID is 0, this is a public data extension, also known as a custom field. Custom fields appear in the QuickBooks UI.If OwnerID is a GUID, for example {6B063959-81B0-4622-85D6-F548C8CCB517}, this field is a private data extension defined by an integrated application. Private data extensions do not appear in the QuickBooks UI. Note that OwnerID values are not case-sensitive, meaning that if you enter an OwnerID value with lower-case letters, the value will be saved and returned with upper-case letters. When you share a private data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IGUIDList   2.0  
Tag Type Max length Implementation Required

IResponse

This is a general query to search through all the items, of every type, in contrast to the type-specific queries such as ItemInventoryQuery, ItemOtherChargeQuery, and so forth. ItemQuery will return information about all the items that are set up in the QuickBooks file. However, if you want to find out if an inventory item has had its on hand quantity modified by other QB transactions (such as ItemReceipt), then you cannot use this query! You must use the ItemInventoryQuery instead. Notice that you cannot get an inventory asset value from QuickBooks using this query. Instead, you need to use the General Summary Report query (which currently doesn’t include Assembly Items). Suppose you needed a way to search for the amount on hand of items that have had their amount changed since a certain date. Again, you would not use this query, but a GeneralDetailReportQuery that has its GeneralDetailReportType set to “InventoryValuationDetail.” This will tell you which items changed by how much. Finally, suppose you wanted the on-hand quantity from QB as of a specific date. You would use a General Summary Report of the type Inventory Valuation Summary. (Again, this report doesn’t include Inventory Assemblies.)
       

StatusCode

A number that corresponds to a statusSeverity and statusMessage. Five status codes relate directly to signon messages: 2000, 2010, 2020, 2030, and 2040. For details about these and other statusCode values that can be returned, see the statusCode table on the Error Codes page.
IQBIntType     Y

StatusSeverity

One of the following values: INFO The request was completed, and the results are consistent with what your application expected. WARNING The request was completed, but the results might not be consistent with what you expected. ERROR The request was not completed. No data will appear in the server’s response after the statusMessage.
IQBStringType     Y

StatusMessage

A user-readable explanation of the success or error condition that is indicated by the statusCode. For details about the statusMessage values that can be returned, see the “Explanation” column of the statusCode table on the Error Codes page.
IQBStringType     Y

retCount

The retCount is returned in a query if in the query request you specified the metaData attribute with a value of MetaDataOnly (in which case the retCount is the only data returned in the query response) or MetaDataAndResponseData (the query response contains object data AND the approximate count). The retCount value contains the approximate count of the objects that could be expected to be returned from the query. A common use of this feature is to specify a count with no data in order to determine how many objects to expect from the actual query. You should be aware that the count returned in retCount is not guaranteed to be exact: it could be off slightly due to new object creation or deletions.
IQBIntType   4.0 us.png Y

iteratorRemainingCount

This attribute is provided in the response in a query using iterators, indicating the number of objects remaining in the iteration. This can help you specify a MaxReturn value tailored to the number of objects still to be iterated through in your query.
IQBIntType   5.0 us.png Y

iteratorID

Returned in the response in the first iteration and supplied in subsequent iterations, this identifies which iteration is to be used in the query continuing the iteration. Required because many different iterations may be currently in use.
IQBUUIDType   5.0 us.png Y

Detail

IORItemRetList      

(List

of IORItemRet Objects)
       

ItemServiceRet

A service item refers to services that a business charges for or purchases. Examples include specialized labor, consulting hours, and professional fees. An ItemServiceRef aggregate refers to an item on the ItemService list. In a request, if an ItemServiceRef aggregate includes both FullName and ListID, FullName will be ignored. In a TimeTracking message, ItemServiceRef refers to the type of work. If no CustomerRef is specified, then ItemServiceRef is not needed. If IsBillable is set to true, then TimeTrackingAdd must include both ItemServiceRef and CustomerRef.
IItemServiceRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ClassRef

Classes can be used to separate transactions into meaningful categories. (For example, transactions could be classified according to department, business location, or type of work.) In QuickBooks, class tracking is off by default. A ClassRef aggregate refers to one of these named classes. For example, in a TimeTracking message, ClassRef refers to the QuickBooks class into which the timed activity falls. If a ClassRef aggregate includes both FullName and ListID, FullName will be ignored. In an InvoiceAdd request, if you specify a ClassRef for the whole invoice, that same ClassRef is automatically used in the line items. If you want to clear that (that is, have NO ClassRef for the line item, you can clear it in the line item by simply not specifying it in the line item.
IQBBaseRef   12.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   12.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars 12.0  

ParentRef

A reference to the list object that is one level above this one. For example, an inventory item with the FullName of GermanCars:Mercedes-Benz:CL500I99AA might have a parent object with the FullName of GermanCars:Mercedes-Benz.In a request, if a ParentRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType      

Sublevel

The number of ancestors. For example, The customer job with Name = carpets and FullName = Jones:Building2:carpets would have a sublevel of 2.
IQBIntType     Y

UnitOfMeasureSetRef

The unit of measure set consists of a base unit and 0-n related units.
IQBBaseRef   7.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   7.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 31 chars 7.0  

IsTaxIncluded

For future use with international versions of QuickBooks.
IQBBoolType   6.0 CA.png uk.png  

SalesTaxCodeRef

Each item on a sales form is assigned a sales-tax code that indicates whether the item is taxable or non-taxable, and why. Two general codes, which can be modified but not deleted, appear on the sales-tax code list by default:Non-taxable (Name = NON; Desc = Non-Taxable; IsTaxable = false)Taxable (Name = TAX; Desc = Taxable; IsTaxable = true) A sales-tax code can be deleted only if it is no longer associated with any customer, item, or transaction. If the “Do You Charge Sales Tax?” preference within QuickBooks is set to No, QuickBooks will assign the default non-taxable sales-tax code to all sales. A SalesTaxCodeRef aggregate refers to a sales-tax code on the list. In a request, if a SalesTaxCodeRef aggregate includes both FullName and ListID, FullName will be ignored. In a Customer message, SalesTaxCodeRef refers to the sales-tax code that will be used for items related to this customer. In an ItemInventory message, SalesTaxCodeRef refers to the type of sales tax that will be charged for this item, if it is a taxable item and if sales tax is set up within QuickBooks.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars    

ORSalesPurchase

IORSalesPurchase     Y

SalesOrPurchase

A SalesOrPurchase aggregate is used for items that are meant to be either purchased or sold, but not both. For example, a SalesOrPurchase aggregate would be used for a non-inventory item that is purchased but not sold, or for a service item that is sold but not purchased.
ISalesOrPurchase      

Desc

A descriptive text field.
IQBStringType 4095 chars    

ORPrice

IORPrice      

Price

The purchase price or sales price of this item.
IQBPriceType      

PricePercent

The price expressed as a percent. (For example, an auto shop that calculates the cost of labor as a percentage of the cost of parts might have a service item called “Labor” that uses PricePercent instead of Price.)
IQBPercentType      

AccountRef

The Account list is the company file’s list of accounts. An AccountRef aggregate refers to one of these accounts. (If an AccountRef aggregate includes both FullName and ListID, FullName will be ignored.) Special cases to note:In a Check message, AccountRef refers to the account from which the funds are being drawn for this check, for example, Checking or Savings.In an ExpenseLineAdd message, you must include AccountRef if the “Require accounts” check box is selected in the QuickBooks Accounting preferences. (It is selected by default.) In a CreditCardCredit message, AccountRef refers to the bank account or credit card account to which the credit is applied.In a CreditCardCharge message, AccountRef refers to the bank or credit card company to whom money is owed. How do you increase and decrease amounts in bank accounts? The following requests increase the balance in a bank account: Deposit Add ReceivePaymentAdd Journal Entry Add Sales ReceiptAdd The following requests decrease the balance in a bank account: CheckAdd Bill PaymentCheckAdd JournalEntryAdd
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

SalesAndPurchase

A SalesAndPurchase aggregate is used for items that are meant to be both purchased and sold, such as an “other charge” item that is reimbursable.
ISalesAndPurchase      

SalesDesc

Appears in the Description column of a sales form when the QuickBooks user sells this item. For a fixed asset, describes the sale of the asset (for accounting purposes).
IQBStringType 4095 chars    

SalesPrice

Price charged for this item.
IQBPriceType      

IncomeAccountRef

Refers to an income account. If an IncomeAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PurchaseDesc

Description that appears in the Description column of checks, bills, credit card charges, and item receipts (when an item is reordered). For a fixed asset, a description of the item as it was when it was purchased.
IQBStringType 4095 chars    

PurchaseCost

Amount that the QuickBooks user expects to pay when ordering or buying this item, or the amount that was actually paid for this item.
IQBPriceType      

PurchaseTaxCodeRef

Account used for taxes on purchases in CA or UK.
IQBBaseRef   6.0 CA.png uk.png  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   6.0 CA.png uk.png  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars 6.0 CA.png uk.png  

ExpenseAccountRef

Refers to an expense account. If an ExpenseAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PrefVendorRef

The preferred vendor for this item. If a PrefVendorRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 41 chars    

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemNonInventoryRet

A non-inventory item is any material or part that a business buys but does not keep on hand as inventory. There are two types of non-inventory items: Materials or parts that are part of the business’s overhead (for example, office supplies).Materials or parts that the business buys to finish a specific job and then charges back to the customer.
IItemNonInventoryRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ClassRef

Classes can be used to separate transactions into meaningful categories. (For example, transactions could be classified according to department, business location, or type of work.) In QuickBooks, class tracking is off by default. A ClassRef aggregate refers to one of these named classes. For example, in a TimeTracking message, ClassRef refers to the QuickBooks class into which the timed activity falls. If a ClassRef aggregate includes both FullName and ListID, FullName will be ignored. In an InvoiceAdd request, if you specify a ClassRef for the whole invoice, that same ClassRef is automatically used in the line items. If you want to clear that (that is, have NO ClassRef for the line item, you can clear it in the line item by simply not specifying it in the line item.
IQBBaseRef   12.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   12.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars 12.0  

ParentRef

A reference to the list object that is one level above this one. For example, an inventory item with the FullName of GermanCars:Mercedes-Benz:CL500I99AA might have a parent object with the FullName of GermanCars:Mercedes-Benz.In a request, if a ParentRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType      

Sublevel

The number of ancestors. For example, The customer job with Name = carpets and FullName = Jones:Building2:carpets would have a sublevel of 2.
IQBIntType     Y

ManufacturerPartNumber

The part number used by the manufacturer of the item.
IQBStringType 31 chars 7.0  

UnitOfMeasureSetRef

The unit of measure set consists of a base unit and 0-n related units.
IQBBaseRef   7.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   7.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 31 chars 7.0  

IsTaxIncluded

For future use with international versions of QuickBooks.
IQBBoolType   6.0 CA.png uk.png  

SalesTaxCodeRef

Each item on a sales form is assigned a sales-tax code that indicates whether the item is taxable or non-taxable, and why. Two general codes, which can be modified but not deleted, appear on the sales-tax code list by default:Non-taxable (Name = NON; Desc = Non-Taxable; IsTaxable = false)Taxable (Name = TAX; Desc = Taxable; IsTaxable = true) A sales-tax code can be deleted only if it is no longer associated with any customer, item, or transaction. If the “Do You Charge Sales Tax?” preference within QuickBooks is set to No, QuickBooks will assign the default non-taxable sales-tax code to all sales. A SalesTaxCodeRef aggregate refers to a sales-tax code on the list. In a request, if a SalesTaxCodeRef aggregate includes both FullName and ListID, FullName will be ignored. In a Customer message, SalesTaxCodeRef refers to the sales-tax code that will be used for items related to this customer. In an ItemInventory message, SalesTaxCodeRef refers to the type of sales tax that will be charged for this item, if it is a taxable item and if sales tax is set up within QuickBooks.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars    

ORSalesPurchase

IORSalesPurchase     Y

SalesOrPurchase

A SalesOrPurchase aggregate is used for items that are meant to be either purchased or sold, but not both. For example, a SalesOrPurchase aggregate would be used for a non-inventory item that is purchased but not sold, or for a service item that is sold but not purchased.
ISalesOrPurchase      

Desc

A descriptive text field.
IQBStringType 4095 chars    

ORPrice

IORPrice      

Price

The purchase price or sales price of this item.
IQBPriceType      

PricePercent

The price expressed as a percent. (For example, an auto shop that calculates the cost of labor as a percentage of the cost of parts might have a service item called “Labor” that uses PricePercent instead of Price.)
IQBPercentType      

AccountRef

The Account list is the company file’s list of accounts. An AccountRef aggregate refers to one of these accounts. (If an AccountRef aggregate includes both FullName and ListID, FullName will be ignored.) Special cases to note:In a Check message, AccountRef refers to the account from which the funds are being drawn for this check, for example, Checking or Savings.In an ExpenseLineAdd message, you must include AccountRef if the “Require accounts” check box is selected in the QuickBooks Accounting preferences. (It is selected by default.) In a CreditCardCredit message, AccountRef refers to the bank account or credit card account to which the credit is applied.In a CreditCardCharge message, AccountRef refers to the bank or credit card company to whom money is owed. How do you increase and decrease amounts in bank accounts? The following requests increase the balance in a bank account: Deposit Add ReceivePaymentAdd Journal Entry Add Sales ReceiptAdd The following requests decrease the balance in a bank account: CheckAdd Bill PaymentCheckAdd JournalEntryAdd
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

SalesAndPurchase

A SalesAndPurchase aggregate is used for items that are meant to be both purchased and sold, such as an “other charge” item that is reimbursable.
ISalesAndPurchase      

SalesDesc

Appears in the Description column of a sales form when the QuickBooks user sells this item. For a fixed asset, describes the sale of the asset (for accounting purposes).
IQBStringType 4095 chars    

SalesPrice

Price charged for this item.
IQBPriceType      

IncomeAccountRef

Refers to an income account. If an IncomeAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PurchaseDesc

Description that appears in the Description column of checks, bills, credit card charges, and item receipts (when an item is reordered). For a fixed asset, a description of the item as it was when it was purchased.
IQBStringType 4095 chars    

PurchaseCost

Amount that the QuickBooks user expects to pay when ordering or buying this item, or the amount that was actually paid for this item.
IQBPriceType      

PurchaseTaxCodeRef

Account used for taxes on purchases in CA or UK.
IQBBaseRef   6.0 CA.png uk.png  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   6.0 CA.png uk.png  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars 6.0 CA.png uk.png  

ExpenseAccountRef

Refers to an expense account. If an ExpenseAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PrefVendorRef

The preferred vendor for this item. If a PrefVendorRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 41 chars    

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemOtherChargeRet

“Other charge” items are miscellaneous charges that do not fall into the categories of service, labor, materials, or parts. Examples include delivery charges, setup fees, and service charges.
IItemOtherChargeRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ClassRef

Classes can be used to separate transactions into meaningful categories. (For example, transactions could be classified according to department, business location, or type of work.) In QuickBooks, class tracking is off by default. A ClassRef aggregate refers to one of these named classes. For example, in a TimeTracking message, ClassRef refers to the QuickBooks class into which the timed activity falls. If a ClassRef aggregate includes both FullName and ListID, FullName will be ignored. In an InvoiceAdd request, if you specify a ClassRef for the whole invoice, that same ClassRef is automatically used in the line items. If you want to clear that (that is, have NO ClassRef for the line item, you can clear it in the line item by simply not specifying it in the line item.
IQBBaseRef   12.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   12.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars 12.0  

ParentRef

A reference to the list object that is one level above this one. For example, an inventory item with the FullName of GermanCars:Mercedes-Benz:CL500I99AA might have a parent object with the FullName of GermanCars:Mercedes-Benz.In a request, if a ParentRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType      

Sublevel

The number of ancestors. For example, The customer job with Name = carpets and FullName = Jones:Building2:carpets would have a sublevel of 2.
IQBIntType     Y

IsTaxIncluded

For future use with international versions of QuickBooks.
IQBBoolType   6.0 CA.png uk.png  

SalesTaxCodeRef

Each item on a sales form is assigned a sales-tax code that indicates whether the item is taxable or non-taxable, and why. Two general codes, which can be modified but not deleted, appear on the sales-tax code list by default:Non-taxable (Name = NON; Desc = Non-Taxable; IsTaxable = false)Taxable (Name = TAX; Desc = Taxable; IsTaxable = true) A sales-tax code can be deleted only if it is no longer associated with any customer, item, or transaction. If the “Do You Charge Sales Tax?” preference within QuickBooks is set to No, QuickBooks will assign the default non-taxable sales-tax code to all sales. A SalesTaxCodeRef aggregate refers to a sales-tax code on the list. In a request, if a SalesTaxCodeRef aggregate includes both FullName and ListID, FullName will be ignored. In a Customer message, SalesTaxCodeRef refers to the sales-tax code that will be used for items related to this customer. In an ItemInventory message, SalesTaxCodeRef refers to the type of sales tax that will be charged for this item, if it is a taxable item and if sales tax is set up within QuickBooks.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars    

ORSalesPurchase

IORSalesPurchase     Y

SalesOrPurchase

A SalesOrPurchase aggregate is used for items that are meant to be either purchased or sold, but not both. For example, a SalesOrPurchase aggregate would be used for a non-inventory item that is purchased but not sold, or for a service item that is sold but not purchased.
ISalesOrPurchase      

Desc

A descriptive text field.
IQBStringType 4095 chars    

ORPrice

IORPrice      

Price

The purchase price or sales price of this item.
IQBPriceType      

PricePercent

The price expressed as a percent. (For example, an auto shop that calculates the cost of labor as a percentage of the cost of parts might have a service item called “Labor” that uses PricePercent instead of Price.)
IQBPercentType      

AccountRef

The Account list is the company file’s list of accounts. An AccountRef aggregate refers to one of these accounts. (If an AccountRef aggregate includes both FullName and ListID, FullName will be ignored.) Special cases to note:In a Check message, AccountRef refers to the account from which the funds are being drawn for this check, for example, Checking or Savings.In an ExpenseLineAdd message, you must include AccountRef if the “Require accounts” check box is selected in the QuickBooks Accounting preferences. (It is selected by default.) In a CreditCardCredit message, AccountRef refers to the bank account or credit card account to which the credit is applied.In a CreditCardCharge message, AccountRef refers to the bank or credit card company to whom money is owed. How do you increase and decrease amounts in bank accounts? The following requests increase the balance in a bank account: Deposit Add ReceivePaymentAdd Journal Entry Add Sales ReceiptAdd The following requests decrease the balance in a bank account: CheckAdd Bill PaymentCheckAdd JournalEntryAdd
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

SalesAndPurchase

A SalesAndPurchase aggregate is used for items that are meant to be both purchased and sold, such as an “other charge” item that is reimbursable.
ISalesAndPurchase      

SalesDesc

Appears in the Description column of a sales form when the QuickBooks user sells this item. For a fixed asset, describes the sale of the asset (for accounting purposes).
IQBStringType 4095 chars    

SalesPrice

Price charged for this item.
IQBPriceType      

IncomeAccountRef

Refers to an income account. If an IncomeAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PurchaseDesc

Description that appears in the Description column of checks, bills, credit card charges, and item receipts (when an item is reordered). For a fixed asset, a description of the item as it was when it was purchased.
IQBStringType 4095 chars    

PurchaseCost

Amount that the QuickBooks user expects to pay when ordering or buying this item, or the amount that was actually paid for this item.
IQBPriceType      

PurchaseTaxCodeRef

Account used for taxes on purchases in CA or UK.
IQBBaseRef   6.0 CA.png uk.png  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   6.0 CA.png uk.png  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars 6.0 CA.png uk.png  

ExpenseAccountRef

Refers to an expense account. If an ExpenseAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PrefVendorRef

The preferred vendor for this item. If a PrefVendorRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 41 chars    

SpecialItemType

Identifies the type of special item. See type for possible enum values.
IQBENSpecialItemTypeType   6.0  

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemInventoryRet

An inventory item is any merchandise or part that a business purchases, tracks as inventory, and then resells. In QuickBooks, information about an inventory item is grouped into three categories:Puchase Information includes PurchaseDesc, PurchaseCost, COGSAccountRef, and PrefVendorRef. Sales Information includes SalesDesc, SalesPrice, and SalesTaxCodeRef. Inventory Information includes AssetAccountRef, ReorderPoint, QuantityOnHand, TotalValue, and InventoryDate. The Life Cycle of Inventory Items and Effects of Sales and Purchases The value of inventory is set when an inventory item is created or bought. QuickBooks uses cost averaging and decreases the value of the inventory asset account at the price when the sale is recorded. So, lets say a company starts carrying widgets as inventory items. First the inventory item must be created in QuickBooks. If the widgets are already in inventory based on a purchase made that will not be recorded in QuickBooks, the user or application would add the inventory item description along with the quantity on hand and the value (total purchase price) of the quantity on hand. If the purchase is to be recorded in QuickBooks the inventory item would be created with quantity and value of 0 (zero). Then a bill would be added to QB which would increase the inventory quantity and value. Lets say we bought 10 widgets for $100. QuickBooks would then consider each widget to be worth $10. The next day a customer buys 5 widgets for $20 each. A sales receipt or invoice is created for the purchase, the quantity of widgets is reduced by 5, to 5 and the value is reduced by $50 to $50. The inventory asset account is reduced by $50 and the undeposited funds or accounts receivable account is increased by $100. It appears that widgets will be a big seller, so the small business owner goes out and buys 10 more widgets. However, the supplier has also noticed a widget buying trend, so he’s increased the price to $25 each. So now our quantity is increased from 5 to 15 and the value is increased from $50 to $300, so they are considered to be worth $20 each. After purchasing the widgets another customer decides to buy 10 widgets but the price has been raised to $50 each. After the sales receipt or invoice is entered, the inventory is reduced to 5 and the value is reduced to $100. The inventory asset account is reduced by $200 and the undeposited funds or accounts receivable account is increased by $500. An ItemInventoryRef aggregate refers to an inventory item. In a request, if an ItemInventoryRef aggregate includes both FullName and ListID, FullName will be ignored.
IItemInventoryRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ClassRef

Classes can be used to separate transactions into meaningful categories. (For example, transactions could be classified according to department, business location, or type of work.) In QuickBooks, class tracking is off by default. A ClassRef aggregate refers to one of these named classes. For example, in a TimeTracking message, ClassRef refers to the QuickBooks class into which the timed activity falls. If a ClassRef aggregate includes both FullName and ListID, FullName will be ignored. In an InvoiceAdd request, if you specify a ClassRef for the whole invoice, that same ClassRef is automatically used in the line items. If you want to clear that (that is, have NO ClassRef for the line item, you can clear it in the line item by simply not specifying it in the line item.
IQBBaseRef   12.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   12.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars 12.0  

ParentRef

A reference to the list object that is one level above this one. For example, an inventory item with the FullName of GermanCars:Mercedes-Benz:CL500I99AA might have a parent object with the FullName of GermanCars:Mercedes-Benz.In a request, if a ParentRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType      

Sublevel

The number of ancestors. For example, The customer job with Name = carpets and FullName = Jones:Building2:carpets would have a sublevel of 2.
IQBIntType     Y

ManufacturerPartNumber

The part number used by the manufacturer of the item.
IQBStringType 31 chars 7.0  

UnitOfMeasureSetRef

The unit of measure set consists of a base unit and 0-n related units.
IQBBaseRef   7.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   7.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 31 chars 7.0  

IsTaxIncluded

For future use with international versions of QuickBooks.
IQBBoolType   6.0 CA.png uk.png  

SalesTaxCodeRef

Each item on a sales form is assigned a sales-tax code that indicates whether the item is taxable or non-taxable, and why. Two general codes, which can be modified but not deleted, appear on the sales-tax code list by default:Non-taxable (Name = NON; Desc = Non-Taxable; IsTaxable = false)Taxable (Name = TAX; Desc = Taxable; IsTaxable = true) A sales-tax code can be deleted only if it is no longer associated with any customer, item, or transaction. If the “Do You Charge Sales Tax?” preference within QuickBooks is set to No, QuickBooks will assign the default non-taxable sales-tax code to all sales. A SalesTaxCodeRef aggregate refers to a sales-tax code on the list. In a request, if a SalesTaxCodeRef aggregate includes both FullName and ListID, FullName will be ignored. In a Customer message, SalesTaxCodeRef refers to the sales-tax code that will be used for items related to this customer. In an ItemInventory message, SalesTaxCodeRef refers to the type of sales tax that will be charged for this item, if it is a taxable item and if sales tax is set up within QuickBooks.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars    

SalesDesc

Appears in the Description column of a sales form when the QuickBooks user sells this item. For a fixed asset, describes the sale of the asset (for accounting purposes).
IQBStringType 4095 chars    

SalesPrice

Price charged for this item.
IQBPriceType      

IncomeAccountRef

Refers to an income account. If an IncomeAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PurchaseDesc

Appears in the Description column of checks, bills, credit card charges, and item receipts when this item is reordered.
IQBStringType 4095 chars    

PurchaseCost

Amount that the QuickBooks user expects to pay when ordering or buying this item, or the amount that was actually paid for this item.
IQBPriceType      

PurchaseTaxCodeRef

Account used for taxes on purchases in CA or UK.
IQBBaseRef   6.0 CA.png uk.png  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   6.0 CA.png uk.png  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars 6.0 CA.png uk.png  

COGSAccountRef

Refers to the account that QuickBooks uses to track the original cost of goods that are eventually sold. (The AccountType of this account will be CostOfGoodsSold.) In a request, if a COGSAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PrefVendorRef

The preferred vendor for this item. If a PrefVendorRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 41 chars    

AssetAccountRef

Refers to the account QuickBooks uses to track the current value of the company’s inventory. (The AccountType of this account will be FixedAsset, OtherAsset, or OtherCurrentAsset.) In a request, if an AssetAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

ReorderPoint

Quantity at which QuickBooks will remind the user to reorder this inventory item.
IQBQuanType      

Max

Maximum number of items in inventory.
IQBQuanType   13.0  

QuantityOnHand

The number of these items in inventory. QuantityOnHand times AverageCost is TotalValue in an inventory item list. To change the QuantityOnHand for an item, you would have to use InventoryAdjustmentAdd not an ItemInventoryMod.
IQBQuanType      

AverageCost

AverageCost is the total value of this item divided by QuantityOnHand. Initially the total value is the same as the QuantityOnHand times the PurchaseCost (so AverageCost equals PurchaseCost). However, the total value can be changed by an inventory adjustment so that it no longer matches QuantityOnHand times PurchaseCost.
IQBPriceType      

QuantityOnOrder

The number of these items that have been ordered from vendors (as recorded in purchase orders) but not received.
IQBQuanType      

QuantityOnSalesOrder

The number of these items that have been sold (as recorded in sales orders) but not delivered to customers.
IQBQuanType   2.0  

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemInventoryAssemblyRet

An inventory assembly item is one that is assembled or manufactured from inventory items. The items and/or assemblies that make up the assembly are called components. For Premier, an assembly can have a maximum of 100 components. For Enterprise, the maximum is 500 components.
IItemInventoryAssemblyRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ClassRef

Classes can be used to separate transactions into meaningful categories. (For example, transactions could be classified according to department, business location, or type of work.) In QuickBooks, class tracking is off by default. A ClassRef aggregate refers to one of these named classes. For example, in a TimeTracking message, ClassRef refers to the QuickBooks class into which the timed activity falls. If a ClassRef aggregate includes both FullName and ListID, FullName will be ignored. In an InvoiceAdd request, if you specify a ClassRef for the whole invoice, that same ClassRef is automatically used in the line items. If you want to clear that (that is, have NO ClassRef for the line item, you can clear it in the line item by simply not specifying it in the line item.
IQBBaseRef   12.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   12.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars 12.0  

ParentRef

A reference to the list object that is one level above this one. For example, an inventory item with the FullName of GermanCars:Mercedes-Benz:CL500I99AA might have a parent object with the FullName of GermanCars:Mercedes-Benz.In a request, if a ParentRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType      

Sublevel

The number of ancestors. For example, The customer job with Name = carpets and FullName = Jones:Building2:carpets would have a sublevel of 2.
IQBIntType     Y

ManufacturerPartNumber

The part number used by the manufacturer of the item.
IQBStringType 31 chars 12.0  

UnitOfMeasureSetRef

The unit of measure set consists of a base unit and 0-n related units.
IQBBaseRef   7.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   7.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 31 chars 7.0  

IsTaxIncluded

For future use with international versions of QuickBooks.
IQBBoolType   6.0 CA.png uk.png  

SalesTaxCodeRef

Each item on a sales form is assigned a sales-tax code that indicates whether the item is taxable or non-taxable, and why. Two general codes, which can be modified but not deleted, appear on the sales-tax code list by default:Non-taxable (Name = NON; Desc = Non-Taxable; IsTaxable = false)Taxable (Name = TAX; Desc = Taxable; IsTaxable = true) A sales-tax code can be deleted only if it is no longer associated with any customer, item, or transaction. If the “Do You Charge Sales Tax?” preference within QuickBooks is set to No, QuickBooks will assign the default non-taxable sales-tax code to all sales. A SalesTaxCodeRef aggregate refers to a sales-tax code on the list. In a request, if a SalesTaxCodeRef aggregate includes both FullName and ListID, FullName will be ignored. In a Customer message, SalesTaxCodeRef refers to the sales-tax code that will be used for items related to this customer. In an ItemInventory message, SalesTaxCodeRef refers to the type of sales tax that will be charged for this item, if it is a taxable item and if sales tax is set up within QuickBooks.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars    

SalesDesc

Appears in the Description column of a sales form when the QuickBooks user sells this item. For a fixed asset, describes the sale of the asset (for accounting purposes).
IQBStringType 4095 chars    

SalesPrice

Price charged for this item.
IQBPriceType      

IncomeAccountRef

Refers to an income account. If an IncomeAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PurchaseDesc

Description that appears in the Description column of checks, bills, credit card charges, and item receipts (when an item is reordered). For a fixed asset, a description of the item as it was when it was purchased.
IQBStringType 4095 chars    

PurchaseCost

Amount that the QuickBooks user expects to pay when ordering or buying this item, or the amount that was actually paid for this item.
IQBPriceType      

PurchaseTaxCodeRef

Account used for taxes on purchases in CA or UK.
IQBBaseRef   6.0 CA.png uk.png  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   6.0 CA.png uk.png  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars 6.0 CA.png uk.png  

COGSAccountRef

Refers to the account that QuickBooks uses to track the original cost of goods that are eventually sold. (The AccountType of this account will be CostOfGoodsSold.) In a request, if a COGSAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PrefVendorRef

The preferred vendor for this item. If a PrefVendorRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 41 chars    

AssetAccountRef

Refers to the account QuickBooks uses to track the current value of the company’s inventory. (The AccountType of this account will be FixedAsset, OtherAsset, or OtherCurrentAsset.) In a request, if an AssetAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

BuildPoint

The build notification point. The QuickBooks user will receive a notification when QuantityOnHand plus QuantityOnOrder falls below BuildPoint.
IQBQuanType      

Max

Maximum number of items in inventory.
IQBQuanType   13.0  

QuantityOnHand

The number of these items in inventory. QuantityOnHand times AverageCost is TotalValue in an inventory item list. To change the QuantityOnHand for an item, you would have to use InventoryAdjustmentAdd not an ItemInventoryMod.
IQBQuanType      

AverageCost

AverageCost is the total value of this item divided by QuantityOnHand. Initially the total value is the same as the QuantityOnHand times the PurchaseCost (so AverageCost equals PurchaseCost). However, the total value can be changed by an inventory adjustment so that it no longer matches QuantityOnHand times PurchaseCost.
IQBPriceType      

QuantityOnOrder

The number of these items that have been ordered from vendors (as recorded in purchase orders) but not received.
IQBQuanType      

QuantityOnSalesOrder

The number of these items that have been sold (as recorded in sales orders) but not delivered to customers.
IQBQuanType      

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

ItemInventoryAssemblyLineList

A list of IItemInventoryAssemblyLine objects, each representing one line in the inventory-assembly item.
IItemInventoryAssemblyLineList      

(List

of IItemInventoryAssemblyLine Objects)
       

ItemInventoryRef

An inventory item is any merchandise or part that a business purchases, tracks as inventory, and then resells. In QuickBooks, information about an inventory item is grouped into three categories:Puchase Information includes PurchaseDesc, PurchaseCost, COGSAccountRef, and PrefVendorRef. Sales Information includes SalesDesc, SalesPrice, and SalesTaxCodeRef. Inventory Information includes AssetAccountRef, ReorderPoint, QuantityOnHand, TotalValue, and InventoryDate. The Life Cycle of Inventory Items and Effects of Sales and Purchases The value of inventory is set when an inventory item is created or bought. QuickBooks uses cost averaging and decreases the value of the inventory asset account at the price when the sale is recorded. So, lets say a company starts carrying widgets as inventory items. First the inventory item must be created in QuickBooks. If the widgets are already in inventory based on a purchase made that will not be recorded in QuickBooks, the user or application would add the inventory item description along with the quantity on hand and the value (total purchase price) of the quantity on hand. If the purchase is to be recorded in QuickBooks the inventory item would be created with quantity and value of 0 (zero). Then a bill would be added to QB which would increase the inventory quantity and value. Lets say we bought 10 widgets for $100. QuickBooks would then consider each widget to be worth $10. The next day a customer buys 5 widgets for $20 each. A sales receipt or invoice is created for the purchase, the quantity of widgets is reduced by 5, to 5 and the value is reduced by $50 to $50. The inventory asset account is reduced by $50 and the undeposited funds or accounts receivable account is increased by $100. It appears that widgets will be a big seller, so the small business owner goes out and buys 10 more widgets. However, the supplier has also noticed a widget buying trend, so he’s increased the price to $25 each. So now our quantity is increased from 5 to 15 and the value is increased from $50 to $300, so they are considered to be worth $20 each. After purchasing the widgets another customer decides to buy 10 widgets but the price has been raised to $50 each. After the sales receipt or invoice is entered, the inventory is reduced to 5 and the value is reduced to $100. The inventory asset account is reduced by $200 and the undeposited funds or accounts receivable account is increased by $500. An ItemInventoryRef aggregate refers to an inventory item. In a request, if an ItemInventoryRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef     Y

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

Quantity

QuantityFor transactions: If an item line add on a transaction request specifies Quantity and Amount but not Rate, QuickBooks will use Quantity and Amount to calculate Rate. Likewise, if a request specifies Quantity and Rate but not Amount, QuickBooks will calculate the Amount. If a transaction add request includes a reference to an ItemDiscount item, do not include a Quantity element as well, or you will get an error. For Item requests: Quantity indicates how many of this item there are.
IQBQuanType      

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList      

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemFixedAssetRet

Fixed-asset items represent assets that will benefit a business for longer than one year. The purchase price of these fixed assets is typically expensed over a period of years, rather than in the year the purchase was made.
IItemFixedAssetRet   3.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ClassRef

Classes can be used to separate transactions into meaningful categories. (For example, transactions could be classified according to department, business location, or type of work.) In QuickBooks, class tracking is off by default. A ClassRef aggregate refers to one of these named classes. For example, in a TimeTracking message, ClassRef refers to the QuickBooks class into which the timed activity falls. If a ClassRef aggregate includes both FullName and ListID, FullName will be ignored. In an InvoiceAdd request, if you specify a ClassRef for the whole invoice, that same ClassRef is automatically used in the line items. If you want to clear that (that is, have NO ClassRef for the line item, you can clear it in the line item by simply not specifying it in the line item.
IQBBaseRef   12.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   12.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars 12.0  

AcquiredAs

Indicates whether this item was new or used when the business acquired it.
IQBENAcquiredAsType     Y

PurchaseDesc

Description that appears in the Description column of checks, bills, credit card charges, and item receipts (when an item is reordered). For a fixed asset, a description of the item as it was when it was purchased.
IQBStringType 50 chars   Y

PurchaseDate

The date when this asset was purchased.
IQBDateType     Y

PurchaseCost

Amount that the QuickBooks user expects to pay when ordering or buying this item, or the amount that was actually paid for this item.
IQBPriceType      

VendorOrPayeeName

The name of the vendor from whom this asset was purchased.
IQBStringType 50 chars    

AssetAccountRef

Refers to the account QuickBooks uses to track the current value of the company’s inventory. (The AccountType of this account will be FixedAsset, OtherAsset, or OtherCurrentAsset.) In a request, if an AssetAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

FixedAssetSalesInfo

Sales information, if this fixed asset was sold.
IFixedAssetSalesInfo      

SalesDesc

Appears in the Description column of a sales form when the QuickBooks user sells this item. For a fixed asset, describes the sale of the asset (for accounting purposes).
IQBStringType 50 chars   Y

SalesDate

Date when a fixed asset was sold.
IQBDateType     Y

SalesPrice

Price charged for this item.
IQBPriceType      

SalesExpense

Any expenses that were incurred during the sale of a fixed asset.
IQBPriceType      

AssetDesc

Description of the asset—maker, brand, and so on.
IQBStringType 50 chars    

Location

Where the asset is located or has been placed into service.
IQBStringType 50 chars    

PONumber

Purchase order number.
IQBStringType 30 chars    

SerialNumber

The serial number of the asset.
IQBStringType 30 chars    

WarrantyExpDate

The date when the warranty for this asset expires.
IQBDateType      

Notes

Additional information.
IQBStringType 4095 chars    

AssetNumber

The number used by the QuickBooks Fixed Asset Manager to identify this asset.
IQBStringType 10 chars    

CostBasis

The total cost of the fixed asset. This can include the cost of improvements or repairs. This amount is used to figure depreciation.
IQBAmountType      

YearEndAccumulatedDepreciation

The amount the fixed asset has lost in value since it was purchased, as of the end of the year.
IQBAmountType      

YearEndBookValue

A reasonable estimate of the sales value of the fixed asset, as of the end of the year.
IQBAmountType      

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList      

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemSubtotalRet

On a sales form, a subtotal item will add up the amounts of the item lines above it, up to the previous subtotal. Items must be subtotaled before a discount is applied (using ItemDiscount), because a discount applies only to the line that is directly above it.
IItemSubtotalRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ItemDesc

The description that will appear on a sales form when the item is used.
IQBStringType      

SpecialItemType

Identifies the type of special item. See type for possible enum values.
IQBENSpecialItemTypeType   6.0  

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemDiscountRet

A discount item is a percentage or a fixed amount that will be subtracted from a total or subtotal. Items should be subtotaled (using an ItemSubtotal item) before a discount item is applied to them, because a discount only acts on the line that is directly above it. A discount item is different from a discount for early payment, which is represented as part of a StandardTerms object or DateDrivenTerms object. Note: When you specify an ItemDiscount item in any transaction (by using an ItemRef), do not specify a Quantity in the transaction. If you do, you will receive an error. Be Sharp When Using Flat Discounts Flat rate discounts are treated VERY differently vs. percentage discounts. A percentage discount only applies to the line right above it, so all of the tax implications for discounts apply ONLY to that line (Note that the story gets more complicated here for group items, subtotal lines, etc). A flat rate discount applies to EVERY line that is recorded above the discount. Thus, the $10.00 off you see is applied equally to the $100.00 Nontaxable target and the $100.00 Taxable target. Thus, the sales tax for the 10.00 discount totals up to -$5.00. Therefore, for the desired behavior, the user must fill out the invoice like this: Item $100.00 Non Item $100.00 Tax Discount $20.00 Tax In this scenario, the $20.00 discount is properly distributed to be half taxed and half not taxed, so the taxable amount for the discount line is only -$10.00. The moral of the story: Non-Taxable Discounts are VERY dangerous. You should almost never use them unless discounts in your state are never applied to sales tax.
IItemDiscountRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ClassRef

Classes can be used to separate transactions into meaningful categories. (For example, transactions could be classified according to department, business location, or type of work.) In QuickBooks, class tracking is off by default. A ClassRef aggregate refers to one of these named classes. For example, in a TimeTracking message, ClassRef refers to the QuickBooks class into which the timed activity falls. If a ClassRef aggregate includes both FullName and ListID, FullName will be ignored. In an InvoiceAdd request, if you specify a ClassRef for the whole invoice, that same ClassRef is automatically used in the line items. If you want to clear that (that is, have NO ClassRef for the line item, you can clear it in the line item by simply not specifying it in the line item.
IQBBaseRef   12.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   12.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars 12.0  

ParentRef

A reference to the list object that is one level above this one. For example, an inventory item with the FullName of GermanCars:Mercedes-Benz:CL500I99AA might have a parent object with the FullName of GermanCars:Mercedes-Benz.In a request, if a ParentRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType      

Sublevel

The number of ancestors. For example, The customer job with Name = carpets and FullName = Jones:Building2:carpets would have a sublevel of 2.
IQBIntType     Y

ItemDesc

The description that will appear on a sales form when the item is used.
IQBStringType 4095 chars    

SalesTaxCodeRef

Each item on a sales form is assigned a sales-tax code that indicates whether the item is taxable or non-taxable, and why. Two general codes, which can be modified but not deleted, appear on the sales-tax code list by default:Non-taxable (Name = NON; Desc = Non-Taxable; IsTaxable = false)Taxable (Name = TAX; Desc = Taxable; IsTaxable = true) A sales-tax code can be deleted only if it is no longer associated with any customer, item, or transaction. If the “Do You Charge Sales Tax?” preference within QuickBooks is set to No, QuickBooks will assign the default non-taxable sales-tax code to all sales. A SalesTaxCodeRef aggregate refers to a sales-tax code on the list. In a request, if a SalesTaxCodeRef aggregate includes both FullName and ListID, FullName will be ignored. In a Customer message, SalesTaxCodeRef refers to the sales-tax code that will be used for items related to this customer. In an ItemInventory message, SalesTaxCodeRef refers to the type of sales tax that will be charged for this item, if it is a taxable item and if sales tax is set up within QuickBooks.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 3 chars    

ORDiscountRate

IORDiscountRate      

DiscountRate

The discount rate when it is given as a monetary amount. DiscountRate will be subtracted from a total or subtotal.
IQBPriceType      

DiscountRatePercent

The discount rate when it is given as a percent. DiscountRatePercent will be subtracted from a total or subtotal.
IQBPercentType      

AccountRef

The Account list is the company file’s list of accounts. An AccountRef aggregate refers to one of these accounts. (If an AccountRef aggregate includes both FullName and ListID, FullName will be ignored.) Special cases to note:In a Check message, AccountRef refers to the account from which the funds are being drawn for this check, for example, Checking or Savings.In an ExpenseLineAdd message, you must include AccountRef if the “Require accounts” check box is selected in the QuickBooks Accounting preferences. (It is selected by default.) In a CreditCardCredit message, AccountRef refers to the bank account or credit card account to which the credit is applied.In a CreditCardCharge message, AccountRef refers to the bank or credit card company to whom money is owed. How do you increase and decrease amounts in bank accounts? The following requests increase the balance in a bank account: Deposit Add ReceivePaymentAdd Journal Entry Add Sales ReceiptAdd The following requests decrease the balance in a bank account: CheckAdd Bill PaymentCheckAdd JournalEntryAdd
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemPaymentRet

A payment item is used when a partial payment is received at or before the time an invoice or statement is created. The payment item then reduces the amount owed on an invoice. (If full payment is received at the time of the sale, use a sales receipt instead of an invoice.)
IItemPaymentRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ClassRef

Classes can be used to separate transactions into meaningful categories. (For example, transactions could be classified according to department, business location, or type of work.) In QuickBooks, class tracking is off by default. A ClassRef aggregate refers to one of these named classes. For example, in a TimeTracking message, ClassRef refers to the QuickBooks class into which the timed activity falls. If a ClassRef aggregate includes both FullName and ListID, FullName will be ignored. In an InvoiceAdd request, if you specify a ClassRef for the whole invoice, that same ClassRef is automatically used in the line items. If you want to clear that (that is, have NO ClassRef for the line item, you can clear it in the line item by simply not specifying it in the line item.
IQBBaseRef   12.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   12.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars 12.0  

ItemDesc

The description that will appear on a sales form when the item is used.
IQBStringType 4095 chars    

DepositToAccountRef

Refers to the account where these funds will be (or have been) deposited. In a ReceivePaymentAdd request, the default is Undeposited Funds if this is not included in the request. In a request, if a DepositToAccountRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars    

PaymentMethodRef

A customer’s payment method, for example, cash, check, or Master Card. A PaymentMethodRef aggregate refers to an item on the PaymentMethod list. In a request, if a PaymentMethodRef aggregate includes both FullName and ListID, FullName will be ignored. In a SalesReceiptAdd, ReceivePaymentAdd, or ARRefundCreditCard request that contains credit card transaction data supplied from QBMS transaction responses, you must specify the payment method, and the payment method must be a credit card type.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 31 chars    

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemSalesTaxRet

A sales-tax item is used to calculate a single sales tax that is collected at a specified rate and paid to a single agency. (Compare with the ItemSalesTaxGroupAdd message.) An ItemSalesTaxRef aggregate refers to an item on this list. In a request, if an ItemSalesTaxRef aggregate includes both FullName and ListID, FullName will be ignored. Taxes can be reflected in transaction line items The following information refers to invoices specifically, but it also applies to sales receipts. Generally its best to assign a tax item or tax group item to an invoice and allow QuickBooks to apply the same tax to all taxable items on the invoice. However in some situations multiple tax combinations are required, so this method doesn’t work. In this case one must use techniques to apply the taxes in the invoice itself as line items. Using lines to apply taxes isn’t always straight forward. When applying taxes as line items, only single tax items can be used, tax groups can only be used for the entire invoice. If you have multiple taxes which apply to all taxable items, and one or more other taxes that only apply to some of the items on an invoice its better to use a tax group which applies to the entire invoice for the taxes which applies to all taxable items and then apply the other taxes in the invoice itself. One applies a tax or tax group to an entire invoice by using the ItemSalesTaxRef aggregate. One can use subtotals to apply a single tax line to multiple items in an invoice, but the tax is only applied automatically for the first tax line after the subtotal line. Any other tax lines which need to be applied to the subtotal line must supply their own amount. If you don’t supply an amount the amount comes out as zero and the tax line is useless. When one does supply an amount, the amount of tax on the subtotal also shows up in the rate column for that tax line. There isn’t any way for the rate to show up as anything other than the amount of the tax. If you have a complicated tax situation where no single tax applies to all taxable items on the invoice, you must choose a zero percent tax to apply for the entire invoice. It is recommended to name such a tax item “Tax Calculated On Invoice” so that it’s clear that the tax is not being applied by QuickBooks on the entire invoice.
IItemSalesTaxRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ClassRef

Classes can be used to separate transactions into meaningful categories. (For example, transactions could be classified according to department, business location, or type of work.) In QuickBooks, class tracking is off by default. A ClassRef aggregate refers to one of these named classes. For example, in a TimeTracking message, ClassRef refers to the QuickBooks class into which the timed activity falls. If a ClassRef aggregate includes both FullName and ListID, FullName will be ignored. In an InvoiceAdd request, if you specify a ClassRef for the whole invoice, that same ClassRef is automatically used in the line items. If you want to clear that (that is, have NO ClassRef for the line item, you can clear it in the line item by simply not specifying it in the line item.
IQBBaseRef   12.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   12.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 159 chars 12.0  

ItemDesc

The description that will appear on a sales form when the item is used.
IQBStringType 4095 chars    

TaxRate

The tax rate. If a nonzero TaxRate is specified, then TaxVendorRef is required.
IQBPercentType      

TaxVendorRef

Refers to the tax agency to whom collected taxes are owed. (This will be a vendor on the Vendor list.) If a nonzero TaxRate is specified, then TaxVendorRef is required. In a request, if a TaxVendorRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 41 chars    

SalesTaxReturnLineRef

Sales tax return line information.
IQBBaseRef   8.0 CA.png uk.png  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   8.0 CA.png uk.png  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType   8.0 CA.png uk.png  

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemSalesTaxGroupRet

A sales-tax group item is used for calculating two or more sales taxes grouped together and applied to the same sale. For example, local and state taxes could be tracked separately but applied to a sale as one tax. (Compare with the ItemSalesTaxAdd message.) Taxes can be reflected in transaction line items The following information refers to invoices specifically, but it also applies to sales receipts. Generally its best to assign a tax item or tax group item to an invoice and allow QuickBooks to apply the same tax to all taxable items on the invoice. However in some situations multiple tax combinations are required, so this method doesn’t work. In this case one must use techniques to apply the taxes in the invoice itself as line items. Using lines to apply taxes isn’t always straight forward. When applying taxes as line items, only single tax items can be used, tax groups can only be used for the entire invoice. If you have multiple taxes which apply to all taxable items, and one or more other taxes that only apply to some of the items on an invoice its better to use a tax group which applies to the entire invoice for the taxes which applies to all taxable items and then apply the other taxes in the invoice itself. One applies a tax or tax group to an entire invoice by using the ItemSalesTaxRef aggregate. One can use subtotals to apply a single tax line to multiple items in an invoice, but the tax is only applied automatically for the first tax line after the subtotal line. Any other tax lines which need to be applied to the subtotal line must supply their own amount. If you don’t supply an amount the amount comes out as zero and the tax line is useless. When one does supply an amount, the amount of tax on the subtotal also shows up in the rate column for that tax line. There isn’t any way for the rate to show up as anything other than the amount of the tax. If you have a complicated tax situation where no single tax applies to all taxable items on the invoice, you must choose a zero percent tax to apply for the entire invoice. It is recommended to name such a tax item “Tax Calculated On Invoice” so that it’s clear that the tax is not being applied by QuickBooks on the entire invoice.
IItemSalesTaxGroupRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ItemDesc

The description that will appear on a sales form when the item is used.
IQBStringType 4095 chars    

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

ItemSalesTaxRefList

A list of sales-tax items that are already defined in the ItemSalesTax list.
IQBBaseRefList      

(List

of IQBBaseRef Objects)
       

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 31 chars    

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

ItemGroupRet

ItemGroup objects represent items that are grouped together for fast entry, and an ItemGroupRef aggregate refers to one of these item groups. In a request, if an ItemGroupRef aggregate includes both FullName and ListID, FullName will be ignored. You can use an ItemGroupQuery request to get information about all the item groups that are set up in the QuickBooks file.
IItemGroupRet      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType     Y

TimeCreated

Time the object was created.
IQBDateTimeType     Y

TimeModified

Time the object was last modified.
IQBDateTimeType     Y

EditSequence

A number that the server generates and assigns to this object. Every time the object is changed, the server will change its EditSequence value. When you try to modify a list object, you must provide its EditSequence. The server compares the EditSequence you provide with the EditSequence in memory to make sure you are dealing with the latest copy of the object. If you are not, the server will reject the request and return an error. Because EditSequence is only used to check whether two objects match, there is no reason to interpret its value.
IQBStringType 16 chars   Y

Name

The case-insensitive name of a list object, not including the names of its ancestors. Name must be unique, unless it is the Name of a “hierarchical” list object. List objects in different hierarchies can have duplicate names because their FullNames will still be unique. For example, two objects could both have the Name kitchen, but they could have unique FullNames, such as Job12:kitchen and Baker:kitchen. For built-in currencies, Name is the internationally accepted currency name and is not editable.
IQBStringType 31 chars   Y

BarCodeValue

Value of the barcode in the item.
IQBStringType 50 chars 12.0  

IsActive

If IsActive is true, this object is currently enabled for use by QuickBooks. The default value is true.
IQBBoolType      

ItemDesc

The description that will appear on a sales form when the item is used.
IQBStringType 4095 chars    

UnitOfMeasureSetRef

The unit of measure set consists of a base unit and 0-n related units.
IQBBaseRef   7.0  

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType   7.0  

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType 31 chars 7.0  

IsPrintItemsInGroup

If true, a list of this group’s individual items their amounts will appear on printed forms.
IQBBoolType      

SpecialItemType

Identifies the type of special item. See type for possible enum values.
IQBENSpecialItemTypeType   6.0  

ExternalGUID

Allows for the attachment of a user defined GUID value.
IQBGUIDType   8.0  

ItemGroupLineList

A list of IItemGroupLine objects, each representing one descriptive line of this item.
IItemGroupLineList      

(List

of IItemGroupLine Objects)
       

ItemRef

Depending on the request containing it, ItemRef can refer to an item on any Item list such as ItemDiscount, ItemInventory, and so forth, or it may accept only a subset of item types. For example, here are some requests that impose limits on what items ItemRef can refer to. For PurchaseOrder and Bill requests, ItemRef cannot refer to discount items or sales-tax itemsFor VehicleMilageAdd requests, the ItemRef must refer to a service item or an other charge item.For BillingRateAdd requests, the ItemRef must refer to a service item. You can use an ItemQuery request to get information about all the items that are set up in the QuickBooks file. “Items” are line items used for fast entry on sales and purchase forms. They include services and goods that a business buys and sells, as well as special items that perform calculations–for example, subtotal, discount, and sales-tax items. Note: In a request, if an ItemRef aggregate includes both FullName and ListID, FullName will be ignored.
IQBBaseRef      

ListID

Along with FullName, ListID is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a ListID. A ListID is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same ListID, and a customer could not have the same ListID as an employee (because Customer and Employee are both name lists). But a customer could have the same ListID as a non-inventory item.
IQBIDType      

FullName

FullName (along with ListID) is a way to identify a list object. The FullName is the name prefixed by the names of each ancestor, for example Jones:Kitchen:Cabinets. FullName values are not case-sensitive.
IQBStringType      

Quantity

QuantityFor transactions: If an item line add on a transaction request specifies Quantity and Amount but not Rate, QuickBooks will use Quantity and Amount to calculate Rate. Likewise, if a request specifies Quantity and Rate but not Amount, QuickBooks will calculate the Amount. If a transaction add request includes a reference to an ItemDiscount item, do not include a Quantity element as well, or you will get an error. For Item requests: Quantity indicates how many of this item there are.
IQBQuanType      

UnitOfMeasure

In a transaction line item, the name of the unit of measure selected from within the item’s available units. If the company file is enabled only for single unit of measure per item, this must be the base unit!
IQBStringType 31 chars 7.0  

DataExtRetList

A list of IDataExtRet objects, each of which represents a field that has been added to QuickBooks as a data extension.
IDataExtRetList   2.0  

(List

of IDataExtRet Objects)
       

OwnerID

OwnerID refers to the owner of a data extension, and must be 0 or a valid GUID. (Custom fields, which are visible in the QuickBooks UI, always have an OwnerID of 0. ) Usually you would keep your application’s GUID confidential to prevent other applications from accessing your data extensions. But if you want to share data extensions with another application, the applications need to use the same GUID. In this case, each application could use two GUIDs, one for shared data extensions and one for confidential data extensions. (An application can have any number of GUIDs.) When you share a data extension with another application, the other application must know both the OwnerID and the DataExtName, as these together form a data extension’s unique name.
IQBGUIDType      

DataExtName

The name of the data extension. If this is a custom field, DataExtName will be visible as a label in the QuickBooks user interface. Also because OwnerID and DataExtName together make the data extension unique, and because custom fields all have the same OwnerID of zero, the DataExtName must be a unique value among existing custom fields. In contrast, the DataExtName for private data extensions must be unique only for the specified OwnerID GUID.
IQBStringType 31 chars   Y

DataExtType

The field’s data type, which corresponds to a qbXML data type. In an IDataExtDefAdd request object, if this is a custom field, DataExtType must be detSTR255TYPE.
IQBENDataExtTypeType     Y

DataExtValue

The data in this field. The maximum length of DataExtValue will depend on the DataExtType of this data extension. For example, if DataExtType is STR255TYPE, the maximum length of DataExtValue is 255 characters. If DataExtType is STR1024TYPE, the maximum size of DataExtValue is 1KB.
IQBStringType     Y

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
<?xml version="1.0" encoding="utf-8"?>
<?qbxml version="16.0"?>
<QBXML>
        <QBXMLMsgsRq onError="stopOnError">
                <ItemQueryRq metaData="ENUMTYPE" iterator="ENUMTYPE" iteratorID="UUIDTYPE">
                        <!-- BEGIN OR -->
                                <ListID >IDTYPE</ListID> <!-- optional, may repeat -->
                        <!-- OR -->
                                <FullName >STRTYPE</FullName> <!-- optional, may repeat -->
                        <!-- OR -->
                                <MaxReturned >INTTYPE</MaxReturned> <!-- optional -->
                                <!-- ActiveStatus may have one of the following values: ActiveOnly [DEFAULT], InactiveOnly, All -->
                                <ActiveStatus >ENUMTYPE</ActiveStatus> <!-- optional -->
                                <FromModifiedDate >DATETIMETYPE</FromModifiedDate> <!-- optional -->
                                <ToModifiedDate >DATETIMETYPE</ToModifiedDate> <!-- optional -->
                                <!-- BEGIN OR -->
                                        <NameFilter> <!-- optional -->
                                                <!-- MatchCriterion may have one of the following values: StartsWith, Contains, EndsWith -->
                                                <MatchCriterion >ENUMTYPE</MatchCriterion> <!-- required -->
                                                <Name >STRTYPE</Name> <!-- required -->
                                        </NameFilter>
                                <!-- OR -->
                                        <NameRangeFilter> <!-- optional -->
                                                <FromName >STRTYPE</FromName> <!-- optional -->
                                                <ToName >STRTYPE</ToName> <!-- optional -->
                                        </NameRangeFilter>
                                <!-- END OR -->
                        <!-- END OR -->
                        <IncludeRetElement >STRTYPE</IncludeRetElement> <!-- optional, may repeat -->
                        <OwnerID >GUIDTYPE</OwnerID> <!-- optional, may repeat -->
                </ItemQueryRq>

                <ItemQueryRs statusCode="INTTYPE" statusSeverity="STRTYPE" statusMessage="STRTYPE" retCount="INTTYPE" iteratorRemainingCount="INTTYPE" iteratorID="UUIDTYPE">
                        <!-- BEGIN OR -->
                                <ItemServiceRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <FullName >STRTYPE</FullName> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ClassRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ClassRef>
                                        <ParentRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ParentRef>
                                        <Sublevel >INTTYPE</Sublevel> <!-- required -->
                                        <UnitOfMeasureSetRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </UnitOfMeasureSetRef>
                                        <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional -->
                                        <SalesTaxCodeRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </SalesTaxCodeRef>
                                        <!-- BEGIN OR -->
                                                <SalesOrPurchase> <!-- optional -->
                                                        <Desc >STRTYPE</Desc> <!-- optional -->
                                                        <!-- BEGIN OR -->
                                                                <Price >PRICETYPE</Price> <!-- optional -->
                                                        <!-- OR -->
                                                                <PricePercent >PERCENTTYPE</PricePercent> <!-- optional -->
                                                        <!-- END OR -->
                                                        <AccountRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </AccountRef>
                                                </SalesOrPurchase>
                                        <!-- OR -->
                                                <SalesAndPurchase> <!-- optional -->
                                                        <SalesDesc >STRTYPE</SalesDesc> <!-- optional -->
                                                        <SalesPrice >PRICETYPE</SalesPrice> <!-- optional -->
                                                        <IncomeAccountRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </IncomeAccountRef>
                                                        <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional -->
                                                        <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional -->
                                                        <PurchaseTaxCodeRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </PurchaseTaxCodeRef>
                                                        <ExpenseAccountRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </ExpenseAccountRef>
                                                        <PrefVendorRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </PrefVendorRef>
                                                </SalesAndPurchase>
                                        <!-- END OR -->
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemServiceRet>
                        <!-- OR -->
                                <ItemNonInventoryRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <FullName >STRTYPE</FullName> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ClassRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ClassRef>
                                        <ParentRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ParentRef>
                                        <Sublevel >INTTYPE</Sublevel> <!-- required -->
                                        <ManufacturerPartNumber >STRTYPE</ManufacturerPartNumber> <!-- optional -->
                                        <UnitOfMeasureSetRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </UnitOfMeasureSetRef>
                                        <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional -->
                                        <SalesTaxCodeRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </SalesTaxCodeRef>
                                        <!-- BEGIN OR -->
                                                <SalesOrPurchase> <!-- optional -->
                                                        <Desc >STRTYPE</Desc> <!-- optional -->
                                                        <!-- BEGIN OR -->
                                                                <Price >PRICETYPE</Price> <!-- optional -->
                                                        <!-- OR -->
                                                                <PricePercent >PERCENTTYPE</PricePercent> <!-- optional -->
                                                        <!-- END OR -->
                                                        <AccountRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </AccountRef>
                                                </SalesOrPurchase>
                                        <!-- OR -->
                                                <SalesAndPurchase> <!-- optional -->
                                                        <SalesDesc >STRTYPE</SalesDesc> <!-- optional -->
                                                        <SalesPrice >PRICETYPE</SalesPrice> <!-- optional -->
                                                        <IncomeAccountRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </IncomeAccountRef>
                                                        <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional -->
                                                        <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional -->
                                                        <PurchaseTaxCodeRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </PurchaseTaxCodeRef>
                                                        <ExpenseAccountRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </ExpenseAccountRef>
                                                        <PrefVendorRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </PrefVendorRef>
                                                </SalesAndPurchase>
                                        <!-- END OR -->
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemNonInventoryRet>
                        <!-- OR -->
                                <ItemOtherChargeRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <FullName >STRTYPE</FullName> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ClassRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ClassRef>
                                        <ParentRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ParentRef>
                                        <Sublevel >INTTYPE</Sublevel> <!-- required -->
                                        <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional -->
                                        <SalesTaxCodeRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </SalesTaxCodeRef>
                                        <!-- BEGIN OR -->
                                                <SalesOrPurchase> <!-- optional -->
                                                        <Desc >STRTYPE</Desc> <!-- optional -->
                                                        <!-- BEGIN OR -->
                                                                <Price >PRICETYPE</Price> <!-- optional -->
                                                        <!-- OR -->
                                                                <PricePercent >PERCENTTYPE</PricePercent> <!-- optional -->
                                                        <!-- END OR -->
                                                        <AccountRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </AccountRef>
                                                </SalesOrPurchase>
                                        <!-- OR -->
                                                <SalesAndPurchase> <!-- optional -->
                                                        <SalesDesc >STRTYPE</SalesDesc> <!-- optional -->
                                                        <SalesPrice >PRICETYPE</SalesPrice> <!-- optional -->
                                                        <IncomeAccountRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </IncomeAccountRef>
                                                        <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional -->
                                                        <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional -->
                                                        <PurchaseTaxCodeRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </PurchaseTaxCodeRef>
                                                        <ExpenseAccountRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </ExpenseAccountRef>
                                                        <PrefVendorRef> <!-- optional -->
                                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                                        </PrefVendorRef>
                                                </SalesAndPurchase>
                                        <!-- END OR -->
                                        <!-- SpecialItemType may have one of the following values: FinanceCharge, ReimbursableExpenseGroup, ReimbursableExpenseSubtotal -->
                                        <SpecialItemType >ENUMTYPE</SpecialItemType> <!-- optional -->
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemOtherChargeRet>
                        <!-- OR -->
                                <ItemInventoryRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <FullName >STRTYPE</FullName> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ClassRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ClassRef>
                                        <ParentRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ParentRef>
                                        <Sublevel >INTTYPE</Sublevel> <!-- required -->
                                        <ManufacturerPartNumber >STRTYPE</ManufacturerPartNumber> <!-- optional -->
                                        <UnitOfMeasureSetRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </UnitOfMeasureSetRef>
                                        <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional -->
                                        <SalesTaxCodeRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </SalesTaxCodeRef>
                                        <SalesDesc >STRTYPE</SalesDesc> <!-- optional -->
                                        <SalesPrice >PRICETYPE</SalesPrice> <!-- optional -->
                                        <IncomeAccountRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </IncomeAccountRef>
                                        <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional -->
                                        <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional -->
                                        <PurchaseTaxCodeRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </PurchaseTaxCodeRef>
                                        <COGSAccountRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </COGSAccountRef>
                                        <PrefVendorRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </PrefVendorRef>
                                        <AssetAccountRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </AssetAccountRef>
                                        <ReorderPoint >QUANTYPE</ReorderPoint> <!-- optional -->
                                        <Max >QUANTYPE</Max> <!-- optional -->
                                        <QuantityOnHand >QUANTYPE</QuantityOnHand> <!-- optional -->
                                        <AverageCost >PRICETYPE</AverageCost> <!-- optional -->
                                        <QuantityOnOrder >QUANTYPE</QuantityOnOrder> <!-- optional -->
                                        <QuantityOnSalesOrder >QUANTYPE</QuantityOnSalesOrder> <!-- optional -->
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemInventoryRet>
                        <!-- OR -->
                                <ItemInventoryAssemblyRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <FullName >STRTYPE</FullName> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ClassRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ClassRef>
                                        <ParentRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ParentRef>
                                        <Sublevel >INTTYPE</Sublevel> <!-- required -->
                                        <ManufacturerPartNumber >STRTYPE</ManufacturerPartNumber> <!-- optional -->
                                        <UnitOfMeasureSetRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </UnitOfMeasureSetRef>
                                        <IsTaxIncluded >BOOLTYPE</IsTaxIncluded> <!-- optional -->
                                        <SalesTaxCodeRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </SalesTaxCodeRef>
                                        <SalesDesc >STRTYPE</SalesDesc> <!-- optional -->
                                        <SalesPrice >PRICETYPE</SalesPrice> <!-- optional -->
                                        <IncomeAccountRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </IncomeAccountRef>
                                        <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- optional -->
                                        <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional -->
                                        <PurchaseTaxCodeRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </PurchaseTaxCodeRef>
                                        <COGSAccountRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </COGSAccountRef>
                                        <PrefVendorRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </PrefVendorRef>
                                        <AssetAccountRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </AssetAccountRef>
                                        <BuildPoint >QUANTYPE</BuildPoint> <!-- optional -->
                                        <Max >QUANTYPE</Max> <!-- optional -->
                                        <QuantityOnHand >QUANTYPE</QuantityOnHand> <!-- optional -->
                                        <AverageCost >PRICETYPE</AverageCost> <!-- optional -->
                                        <QuantityOnOrder >QUANTYPE</QuantityOnOrder> <!-- optional -->
                                        <QuantityOnSalesOrder >QUANTYPE</QuantityOnSalesOrder> <!-- optional -->
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <ItemInventoryAssemblyLine> <!-- optional, may repeat -->
                                                <ItemInventoryRef> <!-- required -->
                                                        <ListID >IDTYPE</ListID> <!-- optional -->
                                                        <FullName >STRTYPE</FullName> <!-- optional -->
                                                </ItemInventoryRef>
                                                <Quantity >QUANTYPE</Quantity> <!-- optional -->
                                        </ItemInventoryAssemblyLine>
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemInventoryAssemblyRet>
                        <!-- OR -->
                                <ItemFixedAssetRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ClassRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ClassRef>
                                        <!-- AcquiredAs may have one of the following values: New, Old -->
                                        <AcquiredAs >ENUMTYPE</AcquiredAs> <!-- required -->
                                        <PurchaseDesc >STRTYPE</PurchaseDesc> <!-- required -->
                                        <PurchaseDate >DATETYPE</PurchaseDate> <!-- required -->
                                        <PurchaseCost >PRICETYPE</PurchaseCost> <!-- optional -->
                                        <VendorOrPayeeName >STRTYPE</VendorOrPayeeName> <!-- optional -->
                                        <AssetAccountRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </AssetAccountRef>
                                        <FixedAssetSalesInfo> <!-- optional -->
                                                <SalesDesc >STRTYPE</SalesDesc> <!-- required -->
                                                <SalesDate >DATETYPE</SalesDate> <!-- required -->
                                                <SalesPrice >PRICETYPE</SalesPrice> <!-- optional -->
                                                <SalesExpense >PRICETYPE</SalesExpense> <!-- optional -->
                                        </FixedAssetSalesInfo>
                                        <AssetDesc >STRTYPE</AssetDesc> <!-- optional -->
                                        <Location >STRTYPE</Location> <!-- optional -->
                                        <PONumber >STRTYPE</PONumber> <!-- optional -->
                                        <SerialNumber >STRTYPE</SerialNumber> <!-- optional -->
                                        <WarrantyExpDate >DATETYPE</WarrantyExpDate> <!-- optional -->
                                        <Notes >STRTYPE</Notes> <!-- optional -->
                                        <AssetNumber >STRTYPE</AssetNumber> <!-- optional -->
                                        <CostBasis >AMTTYPE</CostBasis> <!-- optional -->
                                        <YearEndAccumulatedDepreciation >AMTTYPE</YearEndAccumulatedDepreciation> <!-- optional -->
                                        <YearEndBookValue >AMTTYPE</YearEndBookValue> <!-- optional -->
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemFixedAssetRet>
                        <!-- OR -->
                                <ItemSubtotalRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ItemDesc >STRTYPE</ItemDesc> <!-- optional -->
                                        <!-- SpecialItemType may have one of the following values: FinanceCharge, ReimbursableExpenseGroup, ReimbursableExpenseSubtotal -->
                                        <SpecialItemType >ENUMTYPE</SpecialItemType> <!-- optional -->
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemSubtotalRet>
                        <!-- OR -->
                                <ItemDiscountRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <FullName >STRTYPE</FullName> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ClassRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ClassRef>
                                        <ParentRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ParentRef>
                                        <Sublevel >INTTYPE</Sublevel> <!-- required -->
                                        <ItemDesc >STRTYPE</ItemDesc> <!-- optional -->
                                        <SalesTaxCodeRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </SalesTaxCodeRef>
                                        <!-- BEGIN OR -->
                                                <DiscountRate >PRICETYPE</DiscountRate> <!-- optional -->
                                        <!-- OR -->
                                                <DiscountRatePercent >PERCENTTYPE</DiscountRatePercent> <!-- optional -->
                                        <!-- END OR -->
                                        <AccountRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </AccountRef>
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemDiscountRet>
                        <!-- OR -->
                                <ItemPaymentRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ClassRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ClassRef>
                                        <ItemDesc >STRTYPE</ItemDesc> <!-- optional -->
                                        <DepositToAccountRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </DepositToAccountRef>
                                        <PaymentMethodRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </PaymentMethodRef>
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemPaymentRet>
                        <!-- OR -->
                                <ItemSalesTaxRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ClassRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ClassRef>
                                        <ItemDesc >STRTYPE</ItemDesc> <!-- optional -->
                                        <TaxRate >PERCENTTYPE</TaxRate> <!-- optional -->
                                        <TaxVendorRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </TaxVendorRef>
                                        <SalesTaxReturnLineRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </SalesTaxReturnLineRef>
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemSalesTaxRet>
                        <!-- OR -->
                                <ItemSalesTaxGroupRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ItemDesc >STRTYPE</ItemDesc> <!-- optional -->
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <ItemSalesTaxRef> <!-- optional, may repeat -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </ItemSalesTaxRef>
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemSalesTaxGroupRet>
                        <!-- OR -->
                                <ItemGroupRet> <!-- optional -->
                                        <ListID >IDTYPE</ListID> <!-- required -->
                                        <TimeCreated >DATETIMETYPE</TimeCreated> <!-- required -->
                                        <TimeModified >DATETIMETYPE</TimeModified> <!-- required -->
                                        <EditSequence >STRTYPE</EditSequence> <!-- required -->
                                        <Name >STRTYPE</Name> <!-- required -->
                                        <BarCodeValue >STRTYPE</BarCodeValue> <!-- optional -->
                                        <IsActive >BOOLTYPE</IsActive> <!-- optional -->
                                        <ItemDesc >STRTYPE</ItemDesc> <!-- optional -->
                                        <UnitOfMeasureSetRef> <!-- optional -->
                                                <ListID >IDTYPE</ListID> <!-- optional -->
                                                <FullName >STRTYPE</FullName> <!-- optional -->
                                        </UnitOfMeasureSetRef>
                                        <IsPrintItemsInGroup >BOOLTYPE</IsPrintItemsInGroup> <!-- optional -->
                                        <!-- SpecialItemType may have one of the following values: FinanceCharge, ReimbursableExpenseGroup, ReimbursableExpenseSubtotal -->
                                        <SpecialItemType >ENUMTYPE</SpecialItemType> <!-- optional -->
                                        <ExternalGUID >GUIDTYPE</ExternalGUID> <!-- optional -->
                                        <ItemGroupLine> <!-- optional, may repeat -->
                                                <ItemRef> <!-- optional -->
                                                        <ListID >IDTYPE</ListID> <!-- optional -->
                                                        <FullName >STRTYPE</FullName> <!-- optional -->
                                                </ItemRef>
                                                <Quantity >QUANTYPE</Quantity> <!-- optional -->
                                                <UnitOfMeasure >STRTYPE</UnitOfMeasure> <!-- optional -->
                                        </ItemGroupLine>
                                        <DataExtRet> <!-- optional, may repeat -->
                                                <OwnerID >GUIDTYPE</OwnerID> <!-- optional -->
                                                <DataExtName >STRTYPE</DataExtName> <!-- required -->
                                                <!-- DataExtType may have one of the following values: AMTTYPE, DATETIMETYPE, INTTYPE, PERCENTTYPE, PRICETYPE, QUANTYPE, STR1024TYPE, STR255TYPE -->
                                                <DataExtType >ENUMTYPE</DataExtType> <!-- required -->
                                                <DataExtValue >STRTYPE</DataExtValue> <!-- required -->
                                        </DataExtRet>
                                </ItemGroupRet>
                        <!-- END OR -->
                </ItemQueryRs>
        </QBXMLMsgsRq>
</QBXML>

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
'The following sample code is generated as an illustration of
'Creating requests and parsing responses ONLY
'This code is NOT intended to show best practices or ideal code
'Use at your most careful discretion

imports System
imports System.Net
imports System.Drawing
imports System.Collections
imports System.ComponentModel
imports System.Windows.Forms
imports System.Data
imports System.IO
imports Interop.QBFC16

Module com.intuit.idn.samples
        Public Class Sample
                Public Sub  DoItemQuery()
                        Dim sessionBegun as Boolean
                        sessionBegun = False
                        Dim connectionOpen as Boolean
                        connectionOpen = False
                        Dim sessionManager as QBSessionManager
                        sessionManager = nothing

                        Try
                                'Create the session Manager object
                                sessionManager = new QBSessionManager

                                'Create the message set request object to hold our request
                                Dim requestMsgSet as IMsgSetRequest
                                requestMsgSet = sessionManager.CreateMsgSetRequest("US",16,0)
                                requestMsgSet.Attributes.OnError = ENRqOnError.roeContinue

                                BuildItemQueryRq(requestMsgSet)

                                'Connect to QuickBooks and begin a session
                                sessionManager.OpenConnection("","Sample Code from OSR")
                                connectionOpen = True
                                sessionManager.BeginSession("", ENOpenMode.omDontCare)
                                sessionBegun = True

                                'Send the request and get the response from QuickBooks
                                Dim responseMsgSet as IMsgSetResponse
                                responseMsgSet = sessionManager.DoRequests(requestMsgSet)

                                'End the session and close the connection to QuickBooks
                                sessionManager.EndSession()
                                sessionBegun = False
                                sessionManager.CloseConnection()
                                connectionOpen = False

                                WalkItemQueryRs(responseMsgSet)
                        Catch e as Exception
                                MessageBox.Show(e.Message, "Error")
                                if (sessionBegun) then
                                        sessionManager.EndSession()
                                End If
                                if (connectionOpen) then
                                        sessionManager.CloseConnection()
                                End If
                        End Try
                End Sub
                Public Sub BuildItemQueryRq(requestMsgSet as IMsgSetRequest)
                        Dim ItemQueryRq as IItemQuery
                        ItemQueryRq= requestMsgSet.AppendItemQueryRq()
                        Dim ORListQueryElementType14423 as String
                        ORListQueryElementType14423 = "ListIDList"
                        if (ORListQueryElementType14423 == "ListIDList") then
                                'Set field value for ListIDList
                                'May create more than one of these if needed
                                ItemQueryRq.ORListQuery.ListIDList.Add("200000-1011023419")
                        End If
                        if (ORListQueryElementType14423 == "FullNameList") then
                                'Set field value for FullNameList
                                'May create more than one of these if needed
                                ItemQueryRq.ORListQuery.FullNameList.Add("ab")
                        End If
                        if (ORListQueryElementType14423 == "ListFilter") then
                                'Set field value for MaxReturned
                                ItemQueryRq.ORListQuery.ListFilter.MaxReturned.SetValue(6)
                                'Set field value for ActiveStatus
                                ItemQueryRq.ORListQuery.ListFilter.ActiveStatus.SetValue(ENActiveStatus.asActiveOnly [DEFAULT])
                                'Set field value for FromModifiedDate
                                ItemQueryRq.ORListQuery.ListFilter.FromModifiedDate.SetValue(DateTime.Parse("12/15/2007 12:15:12"),false)
                                'Set field value for ToModifiedDate
                                ItemQueryRq.ORListQuery.ListFilter.ToModifiedDate.SetValue(DateTime.Parse("12/15/2007 12:15:12"),false)
                                Dim ORNameFilterElementType14424 as String
                                ORNameFilterElementType14424 = "NameFilter"
                                if (ORNameFilterElementType14424 == "NameFilter") then
                                        'Set field value for MatchCriterion
                                        ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameFilter.MatchCriterion.SetValue(ENMatchCriterion.mcStartsWith)
                                        'Set field value for Name
                                        ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameFilter.Name.SetValue("ab")
                                End If
                                if (ORNameFilterElementType14424 == "NameRangeFilter") then
                                        'Set field value for FromName
                                        ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameRangeFilter.FromName.SetValue("ab")
                                        'Set field value for ToName
                                        ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameRangeFilter.ToName.SetValue("ab")
                                End If
                        End If
                        'Set field value for IncludeRetElementList
                        'May create more than one of these if needed
                        ItemQueryRq.IncludeRetElementList.Add("ab")
                        'Set field value for OwnerIDList
                        'May create more than one of these if needed
                        ItemQueryRq.OwnerIDList.Add(System.Guid.NewGuid().ToString())
                End Sub




                Public Sub WalkItemQueryRs( responseMsgSet as IMsgSetResponse)
                        if (responseMsgSet is nothing) then
                                Exit Sub
                        End If

                        Dim responseList as IResponseList
                        responseList = responseMsgSet.ResponseList
                        if (responseList is nothing) then
                                Exit Sub
                        End If

                        'if we sent only one request, there is only one response, we'll walk the list for this sample
                        for j=0 to responseList.Count-1
                                Dim response as IResponse
                                response = responseList.GetAt(j)
                                'check the status code of the response, 0=ok, >0 is warning
                                if (response.StatusCode >= 0) then
                                        'the request-specific response is in the details, make sure we have some
                                        if (not response.Detail is nothing) then
                                                'make sure the response is the type we're expecting
                                                Dim responseType as ENResponseType
                                                responseType = CType(response.Type.GetValue(),ENResponseType)
                                                if (responseType == ENResponseType.rtItemQueryRs) then
                                                        'upcast to more specific type here, this is safe because we checked with response.Type check above
                                                        Dim OR as IORItemRetList
                                                        OR = CType(response.Detail,IORItemRetList)
                                                        WalkOR(OR)
                                                End If
                                        End If
                                End If
                        Next j
                End Sub




                Public Sub WalkOR(OR as IORItemRetList)
                        if (OR is nothing) then
                                Exit Sub
                        End If

                        'Go through all the elements of IORItemRetList
                        if (not OR.ItemServiceRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14425 as String
                                ListID14425 = OR.ItemServiceRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14426 as DateTime
                                TimeCreated14426 = OR.ItemServiceRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14427 as DateTime
                                TimeModified14427 = OR.ItemServiceRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14428 as String
                                EditSequence14428 = OR.ItemServiceRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14429 as String
                                Name14429 = OR.ItemServiceRet.Name.GetValue()
                                'Get value of FullName
                                Dim FullName14430 as String
                                FullName14430 = OR.ItemServiceRet.FullName.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemServiceRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14431 as String
                                        BarCodeValue14431 = OR.ItemServiceRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemServiceRet.IsActive is nothing) then
                                        Dim IsActive14432 as Boolean
                                        IsActive14432 = OR.ItemServiceRet.IsActive.GetValue()
                                End If
                                if (not OR.ItemServiceRet.ClassRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemServiceRet.ClassRef.ListID is nothing) then
                                                Dim ListID14433 as String
                                                ListID14433 = OR.ItemServiceRet.ClassRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemServiceRet.ClassRef.FullName is nothing) then
                                                Dim FullName14434 as String
                                                FullName14434 = OR.ItemServiceRet.ClassRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemServiceRet.ParentRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemServiceRet.ParentRef.ListID is nothing) then
                                                Dim ListID14435 as String
                                                ListID14435 = OR.ItemServiceRet.ParentRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemServiceRet.ParentRef.FullName is nothing) then
                                                Dim FullName14436 as String
                                                FullName14436 = OR.ItemServiceRet.ParentRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of Sublevel
                                Dim Sublevel14437 as Integer
                                Sublevel14437 = OR.ItemServiceRet.Sublevel.GetValue()
                                if (not OR.ItemServiceRet.UnitOfMeasureSetRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemServiceRet.UnitOfMeasureSetRef.ListID is nothing) then
                                                Dim ListID14438 as String
                                                ListID14438 = OR.ItemServiceRet.UnitOfMeasureSetRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemServiceRet.UnitOfMeasureSetRef.FullName is nothing) then
                                                Dim FullName14439 as String
                                                FullName14439 = OR.ItemServiceRet.UnitOfMeasureSetRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of IsTaxIncluded
                                if ( not OR.ItemServiceRet.IsTaxIncluded is nothing) then
                                        Dim IsTaxIncluded14440 as Boolean
                                        IsTaxIncluded14440 = OR.ItemServiceRet.IsTaxIncluded.GetValue()
                                End If
                                if (not OR.ItemServiceRet.SalesTaxCodeRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemServiceRet.SalesTaxCodeRef.ListID is nothing) then
                                                Dim ListID14441 as String
                                                ListID14441 = OR.ItemServiceRet.SalesTaxCodeRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemServiceRet.SalesTaxCodeRef.FullName is nothing) then
                                                Dim FullName14442 as String
                                                FullName14442 = OR.ItemServiceRet.SalesTaxCodeRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemServiceRet.ORSalesPurchase is nothing) then
                                        if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase is nothing) then
                                                if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase. is nothing) then
                                                        'Get value of Desc
                                                        if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.Desc is nothing) then
                                                                Dim Desc14444 as String
                                                                Desc14444 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue()
                                                        End If
                                                        if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice is nothing) then
                                                                if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then
                                                                        'Get value of Price
                                                                        if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then
                                                                                Dim Price14446 as Double
                                                                                Price14446 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue()
                                                                        End If
                                                                End If
                                                                if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then
                                                                        'Get value of PricePercent
                                                                        if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then
                                                                                Dim PricePercent14447 as Double
                                                                                PricePercent14447 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue()
                                                                        End If
                                                                End If
                                                        End If
                                                        if (not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID is nothing) then
                                                                        Dim ListID14448 as String
                                                                        ListID14448 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName is nothing) then
                                                                        Dim FullName14449 as String
                                                                        FullName14449 = OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                End If
                                        End If
                                        if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase is nothing) then
                                                if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase. is nothing) then
                                                        'Get value of SalesDesc
                                                        if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesDesc is nothing) then
                                                                Dim SalesDesc14450 as String
                                                                SalesDesc14450 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue()
                                                        End If
                                                        'Get value of SalesPrice
                                                        if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesPrice is nothing) then
                                                                Dim SalesPrice14451 as Double
                                                                SalesPrice14451 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue()
                                                        End If
                                                        if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID is nothing) then
                                                                        Dim ListID14452 as String
                                                                        ListID14452 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName is nothing) then
                                                                        Dim FullName14453 as String
                                                                        FullName14453 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                        'Get value of PurchaseDesc
                                                        if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc is nothing) then
                                                                Dim PurchaseDesc14454 as String
                                                                PurchaseDesc14454 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue()
                                                        End If
                                                        'Get value of PurchaseCost
                                                        if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost is nothing) then
                                                                Dim PurchaseCost14455 as Double
                                                                PurchaseCost14455 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue()
                                                        End If
                                                        if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID is nothing) then
                                                                        Dim ListID14456 as String
                                                                        ListID14456 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName is nothing) then
                                                                        Dim FullName14457 as String
                                                                        FullName14457 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                        if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID is nothing) then
                                                                        Dim ListID14458 as String
                                                                        ListID14458 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName is nothing) then
                                                                        Dim FullName14459 as String
                                                                        FullName14459 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                        if (not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID is nothing) then
                                                                        Dim ListID14460 as String
                                                                        ListID14460 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName is nothing) then
                                                                        Dim FullName14461 as String
                                                                        FullName14461 = OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                End If
                                        End If
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemServiceRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14462 as String
                                        ExternalGUID14462 = OR.ItemServiceRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemServiceRet.DataExtRetList is nothing)
                                        Dim i14463 as Integer
                                        for i14463 = 0  to OR.ItemServiceRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemServiceRet.DataExtRetList.GetAt(i14463)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14464 as String
                                                        OwnerID14464 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14465 as String
                                                DataExtName14465 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14466 as ENDataExtType
                                                DataExtType14466 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14467 as String
                                                DataExtValue14467 = DataExtRetDataExtValue.GetValue()
                                        Next i14463
                                End If
                        End If
                        if (not OR.ItemNonInventoryRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14468 as String
                                ListID14468 = OR.ItemNonInventoryRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14469 as DateTime
                                TimeCreated14469 = OR.ItemNonInventoryRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14470 as DateTime
                                TimeModified14470 = OR.ItemNonInventoryRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14471 as String
                                EditSequence14471 = OR.ItemNonInventoryRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14472 as String
                                Name14472 = OR.ItemNonInventoryRet.Name.GetValue()
                                'Get value of FullName
                                Dim FullName14473 as String
                                FullName14473 = OR.ItemNonInventoryRet.FullName.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemNonInventoryRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14474 as String
                                        BarCodeValue14474 = OR.ItemNonInventoryRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemNonInventoryRet.IsActive is nothing) then
                                        Dim IsActive14475 as Boolean
                                        IsActive14475 = OR.ItemNonInventoryRet.IsActive.GetValue()
                                End If
                                if (not OR.ItemNonInventoryRet.ClassRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemNonInventoryRet.ClassRef.ListID is nothing) then
                                                Dim ListID14476 as String
                                                ListID14476 = OR.ItemNonInventoryRet.ClassRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemNonInventoryRet.ClassRef.FullName is nothing) then
                                                Dim FullName14477 as String
                                                FullName14477 = OR.ItemNonInventoryRet.ClassRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemNonInventoryRet.ParentRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemNonInventoryRet.ParentRef.ListID is nothing) then
                                                Dim ListID14478 as String
                                                ListID14478 = OR.ItemNonInventoryRet.ParentRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemNonInventoryRet.ParentRef.FullName is nothing) then
                                                Dim FullName14479 as String
                                                FullName14479 = OR.ItemNonInventoryRet.ParentRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of Sublevel
                                Dim Sublevel14480 as Integer
                                Sublevel14480 = OR.ItemNonInventoryRet.Sublevel.GetValue()
                                'Get value of ManufacturerPartNumber
                                if ( not OR.ItemNonInventoryRet.ManufacturerPartNumber is nothing) then
                                        Dim ManufacturerPartNumber14481 as String
                                        ManufacturerPartNumber14481 = OR.ItemNonInventoryRet.ManufacturerPartNumber.GetValue()
                                End If
                                if (not OR.ItemNonInventoryRet.UnitOfMeasureSetRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemNonInventoryRet.UnitOfMeasureSetRef.ListID is nothing) then
                                                Dim ListID14482 as String
                                                ListID14482 = OR.ItemNonInventoryRet.UnitOfMeasureSetRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemNonInventoryRet.UnitOfMeasureSetRef.FullName is nothing) then
                                                Dim FullName14483 as String
                                                FullName14483 = OR.ItemNonInventoryRet.UnitOfMeasureSetRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of IsTaxIncluded
                                if ( not OR.ItemNonInventoryRet.IsTaxIncluded is nothing) then
                                        Dim IsTaxIncluded14484 as Boolean
                                        IsTaxIncluded14484 = OR.ItemNonInventoryRet.IsTaxIncluded.GetValue()
                                End If
                                if (not OR.ItemNonInventoryRet.SalesTaxCodeRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemNonInventoryRet.SalesTaxCodeRef.ListID is nothing) then
                                                Dim ListID14485 as String
                                                ListID14485 = OR.ItemNonInventoryRet.SalesTaxCodeRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemNonInventoryRet.SalesTaxCodeRef.FullName is nothing) then
                                                Dim FullName14486 as String
                                                FullName14486 = OR.ItemNonInventoryRet.SalesTaxCodeRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemNonInventoryRet.ORSalesPurchase is nothing) then
                                        if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase is nothing) then
                                                if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase. is nothing) then
                                                        'Get value of Desc
                                                        if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.Desc is nothing) then
                                                                Dim Desc14488 as String
                                                                Desc14488 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue()
                                                        End If
                                                        if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice is nothing) then
                                                                if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then
                                                                        'Get value of Price
                                                                        if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then
                                                                                Dim Price14490 as Double
                                                                                Price14490 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue()
                                                                        End If
                                                                End If
                                                                if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then
                                                                        'Get value of PricePercent
                                                                        if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then
                                                                                Dim PricePercent14491 as Double
                                                                                PricePercent14491 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue()
                                                                        End If
                                                                End If
                                                        End If
                                                        if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID is nothing) then
                                                                        Dim ListID14492 as String
                                                                        ListID14492 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName is nothing) then
                                                                        Dim FullName14493 as String
                                                                        FullName14493 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                End If
                                        End If
                                        if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase is nothing) then
                                                if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase. is nothing) then
                                                        'Get value of SalesDesc
                                                        if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesDesc is nothing) then
                                                                Dim SalesDesc14494 as String
                                                                SalesDesc14494 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue()
                                                        End If
                                                        'Get value of SalesPrice
                                                        if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesPrice is nothing) then
                                                                Dim SalesPrice14495 as Double
                                                                SalesPrice14495 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue()
                                                        End If
                                                        if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID is nothing) then
                                                                        Dim ListID14496 as String
                                                                        ListID14496 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName is nothing) then
                                                                        Dim FullName14497 as String
                                                                        FullName14497 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                        'Get value of PurchaseDesc
                                                        if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc is nothing) then
                                                                Dim PurchaseDesc14498 as String
                                                                PurchaseDesc14498 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue()
                                                        End If
                                                        'Get value of PurchaseCost
                                                        if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost is nothing) then
                                                                Dim PurchaseCost14499 as Double
                                                                PurchaseCost14499 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue()
                                                        End If
                                                        if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID is nothing) then
                                                                        Dim ListID14500 as String
                                                                        ListID14500 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName is nothing) then
                                                                        Dim FullName14501 as String
                                                                        FullName14501 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                        if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID is nothing) then
                                                                        Dim ListID14502 as String
                                                                        ListID14502 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName is nothing) then
                                                                        Dim FullName14503 as String
                                                                        FullName14503 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                        if (not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID is nothing) then
                                                                        Dim ListID14504 as String
                                                                        ListID14504 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName is nothing) then
                                                                        Dim FullName14505 as String
                                                                        FullName14505 = OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                End If
                                        End If
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemNonInventoryRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14506 as String
                                        ExternalGUID14506 = OR.ItemNonInventoryRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemNonInventoryRet.DataExtRetList is nothing)
                                        Dim i14507 as Integer
                                        for i14507 = 0  to OR.ItemNonInventoryRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemNonInventoryRet.DataExtRetList.GetAt(i14507)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14508 as String
                                                        OwnerID14508 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14509 as String
                                                DataExtName14509 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14510 as ENDataExtType
                                                DataExtType14510 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14511 as String
                                                DataExtValue14511 = DataExtRetDataExtValue.GetValue()
                                        Next i14507
                                End If
                        End If
                        if (not OR.ItemOtherChargeRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14512 as String
                                ListID14512 = OR.ItemOtherChargeRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14513 as DateTime
                                TimeCreated14513 = OR.ItemOtherChargeRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14514 as DateTime
                                TimeModified14514 = OR.ItemOtherChargeRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14515 as String
                                EditSequence14515 = OR.ItemOtherChargeRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14516 as String
                                Name14516 = OR.ItemOtherChargeRet.Name.GetValue()
                                'Get value of FullName
                                Dim FullName14517 as String
                                FullName14517 = OR.ItemOtherChargeRet.FullName.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemOtherChargeRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14518 as String
                                        BarCodeValue14518 = OR.ItemOtherChargeRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemOtherChargeRet.IsActive is nothing) then
                                        Dim IsActive14519 as Boolean
                                        IsActive14519 = OR.ItemOtherChargeRet.IsActive.GetValue()
                                End If
                                if (not OR.ItemOtherChargeRet.ClassRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemOtherChargeRet.ClassRef.ListID is nothing) then
                                                Dim ListID14520 as String
                                                ListID14520 = OR.ItemOtherChargeRet.ClassRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemOtherChargeRet.ClassRef.FullName is nothing) then
                                                Dim FullName14521 as String
                                                FullName14521 = OR.ItemOtherChargeRet.ClassRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemOtherChargeRet.ParentRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemOtherChargeRet.ParentRef.ListID is nothing) then
                                                Dim ListID14522 as String
                                                ListID14522 = OR.ItemOtherChargeRet.ParentRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemOtherChargeRet.ParentRef.FullName is nothing) then
                                                Dim FullName14523 as String
                                                FullName14523 = OR.ItemOtherChargeRet.ParentRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of Sublevel
                                Dim Sublevel14524 as Integer
                                Sublevel14524 = OR.ItemOtherChargeRet.Sublevel.GetValue()
                                'Get value of IsTaxIncluded
                                if ( not OR.ItemOtherChargeRet.IsTaxIncluded is nothing) then
                                        Dim IsTaxIncluded14525 as Boolean
                                        IsTaxIncluded14525 = OR.ItemOtherChargeRet.IsTaxIncluded.GetValue()
                                End If
                                if (not OR.ItemOtherChargeRet.SalesTaxCodeRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemOtherChargeRet.SalesTaxCodeRef.ListID is nothing) then
                                                Dim ListID14526 as String
                                                ListID14526 = OR.ItemOtherChargeRet.SalesTaxCodeRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemOtherChargeRet.SalesTaxCodeRef.FullName is nothing) then
                                                Dim FullName14527 as String
                                                FullName14527 = OR.ItemOtherChargeRet.SalesTaxCodeRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemOtherChargeRet.ORSalesPurchase is nothing) then
                                        if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase is nothing) then
                                                if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase. is nothing) then
                                                        'Get value of Desc
                                                        if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.Desc is nothing) then
                                                                Dim Desc14529 as String
                                                                Desc14529 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue()
                                                        End If
                                                        if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice is nothing) then
                                                                if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then
                                                                        'Get value of Price
                                                                        if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price is nothing) then
                                                                                Dim Price14531 as Double
                                                                                Price14531 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue()
                                                                        End If
                                                                End If
                                                                if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then
                                                                        'Get value of PricePercent
                                                                        if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent is nothing) then
                                                                                Dim PricePercent14532 as Double
                                                                                PricePercent14532 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue()
                                                                        End If
                                                                End If
                                                        End If
                                                        if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID is nothing) then
                                                                        Dim ListID14533 as String
                                                                        ListID14533 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName is nothing) then
                                                                        Dim FullName14534 as String
                                                                        FullName14534 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                End If
                                        End If
                                        if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase is nothing) then
                                                if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase. is nothing) then
                                                        'Get value of SalesDesc
                                                        if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesDesc is nothing) then
                                                                Dim SalesDesc14535 as String
                                                                SalesDesc14535 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue()
                                                        End If
                                                        'Get value of SalesPrice
                                                        if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesPrice is nothing) then
                                                                Dim SalesPrice14536 as Double
                                                                SalesPrice14536 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue()
                                                        End If
                                                        if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID is nothing) then
                                                                        Dim ListID14537 as String
                                                                        ListID14537 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName is nothing) then
                                                                        Dim FullName14538 as String
                                                                        FullName14538 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                        'Get value of PurchaseDesc
                                                        if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc is nothing) then
                                                                Dim PurchaseDesc14539 as String
                                                                PurchaseDesc14539 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue()
                                                        End If
                                                        'Get value of PurchaseCost
                                                        if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost is nothing) then
                                                                Dim PurchaseCost14540 as Double
                                                                PurchaseCost14540 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue()
                                                        End If
                                                        if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID is nothing) then
                                                                        Dim ListID14541 as String
                                                                        ListID14541 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName is nothing) then
                                                                        Dim FullName14542 as String
                                                                        FullName14542 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                        if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID is nothing) then
                                                                        Dim ListID14543 as String
                                                                        ListID14543 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName is nothing) then
                                                                        Dim FullName14544 as String
                                                                        FullName14544 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                        if (not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef. is nothing) then
                                                                'Get value of ListID
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID is nothing) then
                                                                        Dim ListID14545 as String
                                                                        ListID14545 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue()
                                                                End If
                                                                'Get value of FullName
                                                                if ( not OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName is nothing) then
                                                                        Dim FullName14546 as String
                                                                        FullName14546 = OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue()
                                                                End If
                                                        End If
                                                End If
                                        End If
                                End If
                                'Get value of SpecialItemType
                                if ( not OR.ItemOtherChargeRet.SpecialItemType is nothing) then
                                        Dim SpecialItemType14547 as ENSpecialItemType
                                        SpecialItemType14547 = OR.ItemOtherChargeRet.SpecialItemType.GetValue()
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemOtherChargeRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14548 as String
                                        ExternalGUID14548 = OR.ItemOtherChargeRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemOtherChargeRet.DataExtRetList is nothing)
                                        Dim i14549 as Integer
                                        for i14549 = 0  to OR.ItemOtherChargeRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemOtherChargeRet.DataExtRetList.GetAt(i14549)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14550 as String
                                                        OwnerID14550 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14551 as String
                                                DataExtName14551 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14552 as ENDataExtType
                                                DataExtType14552 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14553 as String
                                                DataExtValue14553 = DataExtRetDataExtValue.GetValue()
                                        Next i14549
                                End If
                        End If
                        if (not OR.ItemInventoryRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14554 as String
                                ListID14554 = OR.ItemInventoryRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14555 as DateTime
                                TimeCreated14555 = OR.ItemInventoryRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14556 as DateTime
                                TimeModified14556 = OR.ItemInventoryRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14557 as String
                                EditSequence14557 = OR.ItemInventoryRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14558 as String
                                Name14558 = OR.ItemInventoryRet.Name.GetValue()
                                'Get value of FullName
                                Dim FullName14559 as String
                                FullName14559 = OR.ItemInventoryRet.FullName.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemInventoryRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14560 as String
                                        BarCodeValue14560 = OR.ItemInventoryRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemInventoryRet.IsActive is nothing) then
                                        Dim IsActive14561 as Boolean
                                        IsActive14561 = OR.ItemInventoryRet.IsActive.GetValue()
                                End If
                                if (not OR.ItemInventoryRet.ClassRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryRet.ClassRef.ListID is nothing) then
                                                Dim ListID14562 as String
                                                ListID14562 = OR.ItemInventoryRet.ClassRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryRet.ClassRef.FullName is nothing) then
                                                Dim FullName14563 as String
                                                FullName14563 = OR.ItemInventoryRet.ClassRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemInventoryRet.ParentRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryRet.ParentRef.ListID is nothing) then
                                                Dim ListID14564 as String
                                                ListID14564 = OR.ItemInventoryRet.ParentRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryRet.ParentRef.FullName is nothing) then
                                                Dim FullName14565 as String
                                                FullName14565 = OR.ItemInventoryRet.ParentRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of Sublevel
                                Dim Sublevel14566 as Integer
                                Sublevel14566 = OR.ItemInventoryRet.Sublevel.GetValue()
                                'Get value of ManufacturerPartNumber
                                if ( not OR.ItemInventoryRet.ManufacturerPartNumber is nothing) then
                                        Dim ManufacturerPartNumber14567 as String
                                        ManufacturerPartNumber14567 = OR.ItemInventoryRet.ManufacturerPartNumber.GetValue()
                                End If
                                if (not OR.ItemInventoryRet.UnitOfMeasureSetRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryRet.UnitOfMeasureSetRef.ListID is nothing) then
                                                Dim ListID14568 as String
                                                ListID14568 = OR.ItemInventoryRet.UnitOfMeasureSetRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryRet.UnitOfMeasureSetRef.FullName is nothing) then
                                                Dim FullName14569 as String
                                                FullName14569 = OR.ItemInventoryRet.UnitOfMeasureSetRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of IsTaxIncluded
                                if ( not OR.ItemInventoryRet.IsTaxIncluded is nothing) then
                                        Dim IsTaxIncluded14570 as Boolean
                                        IsTaxIncluded14570 = OR.ItemInventoryRet.IsTaxIncluded.GetValue()
                                End If
                                if (not OR.ItemInventoryRet.SalesTaxCodeRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryRet.SalesTaxCodeRef.ListID is nothing) then
                                                Dim ListID14571 as String
                                                ListID14571 = OR.ItemInventoryRet.SalesTaxCodeRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryRet.SalesTaxCodeRef.FullName is nothing) then
                                                Dim FullName14572 as String
                                                FullName14572 = OR.ItemInventoryRet.SalesTaxCodeRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of SalesDesc
                                if ( not OR.ItemInventoryRet.SalesDesc is nothing) then
                                        Dim SalesDesc14573 as String
                                        SalesDesc14573 = OR.ItemInventoryRet.SalesDesc.GetValue()
                                End If
                                'Get value of SalesPrice
                                if ( not OR.ItemInventoryRet.SalesPrice is nothing) then
                                        Dim SalesPrice14574 as Double
                                        SalesPrice14574 = OR.ItemInventoryRet.SalesPrice.GetValue()
                                End If
                                if (not OR.ItemInventoryRet.IncomeAccountRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryRet.IncomeAccountRef.ListID is nothing) then
                                                Dim ListID14575 as String
                                                ListID14575 = OR.ItemInventoryRet.IncomeAccountRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryRet.IncomeAccountRef.FullName is nothing) then
                                                Dim FullName14576 as String
                                                FullName14576 = OR.ItemInventoryRet.IncomeAccountRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of PurchaseDesc
                                if ( not OR.ItemInventoryRet.PurchaseDesc is nothing) then
                                        Dim PurchaseDesc14577 as String
                                        PurchaseDesc14577 = OR.ItemInventoryRet.PurchaseDesc.GetValue()
                                End If
                                'Get value of PurchaseCost
                                if ( not OR.ItemInventoryRet.PurchaseCost is nothing) then
                                        Dim PurchaseCost14578 as Double
                                        PurchaseCost14578 = OR.ItemInventoryRet.PurchaseCost.GetValue()
                                End If
                                if (not OR.ItemInventoryRet.PurchaseTaxCodeRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryRet.PurchaseTaxCodeRef.ListID is nothing) then
                                                Dim ListID14579 as String
                                                ListID14579 = OR.ItemInventoryRet.PurchaseTaxCodeRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryRet.PurchaseTaxCodeRef.FullName is nothing) then
                                                Dim FullName14580 as String
                                                FullName14580 = OR.ItemInventoryRet.PurchaseTaxCodeRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemInventoryRet.COGSAccountRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryRet.COGSAccountRef.ListID is nothing) then
                                                Dim ListID14581 as String
                                                ListID14581 = OR.ItemInventoryRet.COGSAccountRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryRet.COGSAccountRef.FullName is nothing) then
                                                Dim FullName14582 as String
                                                FullName14582 = OR.ItemInventoryRet.COGSAccountRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemInventoryRet.PrefVendorRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryRet.PrefVendorRef.ListID is nothing) then
                                                Dim ListID14583 as String
                                                ListID14583 = OR.ItemInventoryRet.PrefVendorRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryRet.PrefVendorRef.FullName is nothing) then
                                                Dim FullName14584 as String
                                                FullName14584 = OR.ItemInventoryRet.PrefVendorRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemInventoryRet.AssetAccountRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryRet.AssetAccountRef.ListID is nothing) then
                                                Dim ListID14585 as String
                                                ListID14585 = OR.ItemInventoryRet.AssetAccountRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryRet.AssetAccountRef.FullName is nothing) then
                                                Dim FullName14586 as String
                                                FullName14586 = OR.ItemInventoryRet.AssetAccountRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of ReorderPoint
                                if ( not OR.ItemInventoryRet.ReorderPoint is nothing) then
                                        Dim ReorderPoint14587 as Integer
                                        ReorderPoint14587 = OR.ItemInventoryRet.ReorderPoint.GetValue()
                                End If
                                'Get value of Max
                                if ( not OR.ItemInventoryRet.Max is nothing) then
                                        Dim Max14588 as Integer
                                        Max14588 = OR.ItemInventoryRet.Max.GetValue()
                                End If
                                'Get value of QuantityOnHand
                                if ( not OR.ItemInventoryRet.QuantityOnHand is nothing) then
                                        Dim QuantityOnHand14589 as Integer
                                        QuantityOnHand14589 = OR.ItemInventoryRet.QuantityOnHand.GetValue()
                                End If
                                'Get value of AverageCost
                                if ( not OR.ItemInventoryRet.AverageCost is nothing) then
                                        Dim AverageCost14590 as Double
                                        AverageCost14590 = OR.ItemInventoryRet.AverageCost.GetValue()
                                End If
                                'Get value of QuantityOnOrder
                                if ( not OR.ItemInventoryRet.QuantityOnOrder is nothing) then
                                        Dim QuantityOnOrder14591 as Integer
                                        QuantityOnOrder14591 = OR.ItemInventoryRet.QuantityOnOrder.GetValue()
                                End If
                                'Get value of QuantityOnSalesOrder
                                if ( not OR.ItemInventoryRet.QuantityOnSalesOrder is nothing) then
                                        Dim QuantityOnSalesOrder14592 as Integer
                                        QuantityOnSalesOrder14592 = OR.ItemInventoryRet.QuantityOnSalesOrder.GetValue()
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemInventoryRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14593 as String
                                        ExternalGUID14593 = OR.ItemInventoryRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemInventoryRet.DataExtRetList is nothing)
                                        Dim i14594 as Integer
                                        for i14594 = 0  to OR.ItemInventoryRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemInventoryRet.DataExtRetList.GetAt(i14594)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14595 as String
                                                        OwnerID14595 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14596 as String
                                                DataExtName14596 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14597 as ENDataExtType
                                                DataExtType14597 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14598 as String
                                                DataExtValue14598 = DataExtRetDataExtValue.GetValue()
                                        Next i14594
                                End If
                        End If
                        if (not OR.ItemInventoryAssemblyRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14599 as String
                                ListID14599 = OR.ItemInventoryAssemblyRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14600 as DateTime
                                TimeCreated14600 = OR.ItemInventoryAssemblyRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14601 as DateTime
                                TimeModified14601 = OR.ItemInventoryAssemblyRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14602 as String
                                EditSequence14602 = OR.ItemInventoryAssemblyRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14603 as String
                                Name14603 = OR.ItemInventoryAssemblyRet.Name.GetValue()
                                'Get value of FullName
                                Dim FullName14604 as String
                                FullName14604 = OR.ItemInventoryAssemblyRet.FullName.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemInventoryAssemblyRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14605 as String
                                        BarCodeValue14605 = OR.ItemInventoryAssemblyRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemInventoryAssemblyRet.IsActive is nothing) then
                                        Dim IsActive14606 as Boolean
                                        IsActive14606 = OR.ItemInventoryAssemblyRet.IsActive.GetValue()
                                End If
                                if (not OR.ItemInventoryAssemblyRet.ClassRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryAssemblyRet.ClassRef.ListID is nothing) then
                                                Dim ListID14607 as String
                                                ListID14607 = OR.ItemInventoryAssemblyRet.ClassRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryAssemblyRet.ClassRef.FullName is nothing) then
                                                Dim FullName14608 as String
                                                FullName14608 = OR.ItemInventoryAssemblyRet.ClassRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemInventoryAssemblyRet.ParentRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryAssemblyRet.ParentRef.ListID is nothing) then
                                                Dim ListID14609 as String
                                                ListID14609 = OR.ItemInventoryAssemblyRet.ParentRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryAssemblyRet.ParentRef.FullName is nothing) then
                                                Dim FullName14610 as String
                                                FullName14610 = OR.ItemInventoryAssemblyRet.ParentRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of Sublevel
                                Dim Sublevel14611 as Integer
                                Sublevel14611 = OR.ItemInventoryAssemblyRet.Sublevel.GetValue()
                                'Get value of ManufacturerPartNumber
                                if ( not OR.ItemInventoryAssemblyRet.ManufacturerPartNumber is nothing) then
                                        Dim ManufacturerPartNumber14612 as String
                                        ManufacturerPartNumber14612 = OR.ItemInventoryAssemblyRet.ManufacturerPartNumber.GetValue()
                                End If
                                if (not OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.ListID is nothing) then
                                                Dim ListID14613 as String
                                                ListID14613 = OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.FullName is nothing) then
                                                Dim FullName14614 as String
                                                FullName14614 = OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of IsTaxIncluded
                                if ( not OR.ItemInventoryAssemblyRet.IsTaxIncluded is nothing) then
                                        Dim IsTaxIncluded14615 as Boolean
                                        IsTaxIncluded14615 = OR.ItemInventoryAssemblyRet.IsTaxIncluded.GetValue()
                                End If
                                if (not OR.ItemInventoryAssemblyRet.SalesTaxCodeRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.ListID is nothing) then
                                                Dim ListID14616 as String
                                                ListID14616 = OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.FullName is nothing) then
                                                Dim FullName14617 as String
                                                FullName14617 = OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of SalesDesc
                                if ( not OR.ItemInventoryAssemblyRet.SalesDesc is nothing) then
                                        Dim SalesDesc14618 as String
                                        SalesDesc14618 = OR.ItemInventoryAssemblyRet.SalesDesc.GetValue()
                                End If
                                'Get value of SalesPrice
                                if ( not OR.ItemInventoryAssemblyRet.SalesPrice is nothing) then
                                        Dim SalesPrice14619 as Double
                                        SalesPrice14619 = OR.ItemInventoryAssemblyRet.SalesPrice.GetValue()
                                End If
                                if (not OR.ItemInventoryAssemblyRet.IncomeAccountRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryAssemblyRet.IncomeAccountRef.ListID is nothing) then
                                                Dim ListID14620 as String
                                                ListID14620 = OR.ItemInventoryAssemblyRet.IncomeAccountRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryAssemblyRet.IncomeAccountRef.FullName is nothing) then
                                                Dim FullName14621 as String
                                                FullName14621 = OR.ItemInventoryAssemblyRet.IncomeAccountRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of PurchaseDesc
                                if ( not OR.ItemInventoryAssemblyRet.PurchaseDesc is nothing) then
                                        Dim PurchaseDesc14622 as String
                                        PurchaseDesc14622 = OR.ItemInventoryAssemblyRet.PurchaseDesc.GetValue()
                                End If
                                'Get value of PurchaseCost
                                if ( not OR.ItemInventoryAssemblyRet.PurchaseCost is nothing) then
                                        Dim PurchaseCost14623 as Double
                                        PurchaseCost14623 = OR.ItemInventoryAssemblyRet.PurchaseCost.GetValue()
                                End If
                                if (not OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.ListID is nothing) then
                                                Dim ListID14624 as String
                                                ListID14624 = OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.FullName is nothing) then
                                                Dim FullName14625 as String
                                                FullName14625 = OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemInventoryAssemblyRet.COGSAccountRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryAssemblyRet.COGSAccountRef.ListID is nothing) then
                                                Dim ListID14626 as String
                                                ListID14626 = OR.ItemInventoryAssemblyRet.COGSAccountRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryAssemblyRet.COGSAccountRef.FullName is nothing) then
                                                Dim FullName14627 as String
                                                FullName14627 = OR.ItemInventoryAssemblyRet.COGSAccountRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemInventoryAssemblyRet.PrefVendorRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryAssemblyRet.PrefVendorRef.ListID is nothing) then
                                                Dim ListID14628 as String
                                                ListID14628 = OR.ItemInventoryAssemblyRet.PrefVendorRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryAssemblyRet.PrefVendorRef.FullName is nothing) then
                                                Dim FullName14629 as String
                                                FullName14629 = OR.ItemInventoryAssemblyRet.PrefVendorRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemInventoryAssemblyRet.AssetAccountRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemInventoryAssemblyRet.AssetAccountRef.ListID is nothing) then
                                                Dim ListID14630 as String
                                                ListID14630 = OR.ItemInventoryAssemblyRet.AssetAccountRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemInventoryAssemblyRet.AssetAccountRef.FullName is nothing) then
                                                Dim FullName14631 as String
                                                FullName14631 = OR.ItemInventoryAssemblyRet.AssetAccountRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of BuildPoint
                                if ( not OR.ItemInventoryAssemblyRet.BuildPoint is nothing) then
                                        Dim BuildPoint14632 as Integer
                                        BuildPoint14632 = OR.ItemInventoryAssemblyRet.BuildPoint.GetValue()
                                End If
                                'Get value of Max
                                if ( not OR.ItemInventoryAssemblyRet.Max is nothing) then
                                        Dim Max14633 as Integer
                                        Max14633 = OR.ItemInventoryAssemblyRet.Max.GetValue()
                                End If
                                'Get value of QuantityOnHand
                                if ( not OR.ItemInventoryAssemblyRet.QuantityOnHand is nothing) then
                                        Dim QuantityOnHand14634 as Integer
                                        QuantityOnHand14634 = OR.ItemInventoryAssemblyRet.QuantityOnHand.GetValue()
                                End If
                                'Get value of AverageCost
                                if ( not OR.ItemInventoryAssemblyRet.AverageCost is nothing) then
                                        Dim AverageCost14635 as Double
                                        AverageCost14635 = OR.ItemInventoryAssemblyRet.AverageCost.GetValue()
                                End If
                                'Get value of QuantityOnOrder
                                if ( not OR.ItemInventoryAssemblyRet.QuantityOnOrder is nothing) then
                                        Dim QuantityOnOrder14636 as Integer
                                        QuantityOnOrder14636 = OR.ItemInventoryAssemblyRet.QuantityOnOrder.GetValue()
                                End If
                                'Get value of QuantityOnSalesOrder
                                if ( not OR.ItemInventoryAssemblyRet.QuantityOnSalesOrder is nothing) then
                                        Dim QuantityOnSalesOrder14637 as Integer
                                        QuantityOnSalesOrder14637 = OR.ItemInventoryAssemblyRet.QuantityOnSalesOrder.GetValue()
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemInventoryAssemblyRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14638 as String
                                        ExternalGUID14638 = OR.ItemInventoryAssemblyRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList is nothing)
                                        Dim i14639 as Integer
                                        for i14639 = 0  to OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList.Count - 1
                                                Dim ItemInventoryAssemblyLine as IItemInventoryAssemblyLine
                                                ItemInventoryAssemblyLine = OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList.GetAt(i14639)
                                                'Get value of ListID
                                                if ( not ItemInventoryAssemblyLineItemInventoryRef.ListID is nothing) then
                                                        Dim ListID14640 as String
                                                        ListID14640 = ItemInventoryAssemblyLineItemInventoryRef.ListID.GetValue()
                                                End If
                                                'Get value of FullName
                                                if ( not ItemInventoryAssemblyLineItemInventoryRef.FullName is nothing) then
                                                        Dim FullName14641 as String
                                                        FullName14641 = ItemInventoryAssemblyLineItemInventoryRef.FullName.GetValue()
                                                End If
                                                'Get value of Quantity
                                                if ( not ItemInventoryAssemblyLineQuantity is nothing) then
                                                        Dim Quantity14642 as Integer
                                                        Quantity14642 = ItemInventoryAssemblyLineQuantity.GetValue()
                                                End If
                                        Next i14639
                                End If
                                if (not OR.ItemInventoryAssemblyRet.DataExtRetList is nothing)
                                        Dim i14643 as Integer
                                        for i14643 = 0  to OR.ItemInventoryAssemblyRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemInventoryAssemblyRet.DataExtRetList.GetAt(i14643)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14644 as String
                                                        OwnerID14644 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14645 as String
                                                DataExtName14645 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14646 as ENDataExtType
                                                DataExtType14646 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14647 as String
                                                DataExtValue14647 = DataExtRetDataExtValue.GetValue()
                                        Next i14643
                                End If
                        End If
                        if (not OR.ItemFixedAssetRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14648 as String
                                ListID14648 = OR.ItemFixedAssetRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14649 as DateTime
                                TimeCreated14649 = OR.ItemFixedAssetRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14650 as DateTime
                                TimeModified14650 = OR.ItemFixedAssetRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14651 as String
                                EditSequence14651 = OR.ItemFixedAssetRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14652 as String
                                Name14652 = OR.ItemFixedAssetRet.Name.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemFixedAssetRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14653 as String
                                        BarCodeValue14653 = OR.ItemFixedAssetRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemFixedAssetRet.IsActive is nothing) then
                                        Dim IsActive14654 as Boolean
                                        IsActive14654 = OR.ItemFixedAssetRet.IsActive.GetValue()
                                End If
                                if (not OR.ItemFixedAssetRet.ClassRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemFixedAssetRet.ClassRef.ListID is nothing) then
                                                Dim ListID14655 as String
                                                ListID14655 = OR.ItemFixedAssetRet.ClassRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemFixedAssetRet.ClassRef.FullName is nothing) then
                                                Dim FullName14656 as String
                                                FullName14656 = OR.ItemFixedAssetRet.ClassRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of AcquiredAs
                                Dim AcquiredAs14657 as ENAcquiredAs
                                AcquiredAs14657 = OR.ItemFixedAssetRet.AcquiredAs.GetValue()
                                'Get value of PurchaseDesc
                                Dim PurchaseDesc14658 as String
                                PurchaseDesc14658 = OR.ItemFixedAssetRet.PurchaseDesc.GetValue()
                                'Get value of PurchaseDate
                                Dim PurchaseDate14659 as DateTime
                                PurchaseDate14659 = OR.ItemFixedAssetRet.PurchaseDate.GetValue()
                                'Get value of PurchaseCost
                                if ( not OR.ItemFixedAssetRet.PurchaseCost is nothing) then
                                        Dim PurchaseCost14660 as Double
                                        PurchaseCost14660 = OR.ItemFixedAssetRet.PurchaseCost.GetValue()
                                End If
                                'Get value of VendorOrPayeeName
                                if ( not OR.ItemFixedAssetRet.VendorOrPayeeName is nothing) then
                                        Dim VendorOrPayeeName14661 as String
                                        VendorOrPayeeName14661 = OR.ItemFixedAssetRet.VendorOrPayeeName.GetValue()
                                End If
                                if (not OR.ItemFixedAssetRet.AssetAccountRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemFixedAssetRet.AssetAccountRef.ListID is nothing) then
                                                Dim ListID14662 as String
                                                ListID14662 = OR.ItemFixedAssetRet.AssetAccountRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemFixedAssetRet.AssetAccountRef.FullName is nothing) then
                                                Dim FullName14663 as String
                                                FullName14663 = OR.ItemFixedAssetRet.AssetAccountRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemFixedAssetRet.FixedAssetSalesInfo. is nothing) then
                                        'Get value of SalesDesc
                                        Dim SalesDesc14664 as String
                                        SalesDesc14664 = OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesDesc.GetValue()
                                        'Get value of SalesDate
                                        Dim SalesDate14665 as DateTime
                                        SalesDate14665 = OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesDate.GetValue()
                                        'Get value of SalesPrice
                                        if ( not OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesPrice is nothing) then
                                                Dim SalesPrice14666 as Double
                                                SalesPrice14666 = OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesPrice.GetValue()
                                        End If
                                        'Get value of SalesExpense
                                        if ( not OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesExpense is nothing) then
                                                Dim SalesExpense14667 as Double
                                                SalesExpense14667 = OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesExpense.GetValue()
                                        End If
                                End If
                                'Get value of AssetDesc
                                if ( not OR.ItemFixedAssetRet.AssetDesc is nothing) then
                                        Dim AssetDesc14668 as String
                                        AssetDesc14668 = OR.ItemFixedAssetRet.AssetDesc.GetValue()
                                End If
                                'Get value of Location
                                if ( not OR.ItemFixedAssetRet.Location is nothing) then
                                        Dim Location14669 as String
                                        Location14669 = OR.ItemFixedAssetRet.Location.GetValue()
                                End If
                                'Get value of PONumber
                                if ( not OR.ItemFixedAssetRet.PONumber is nothing) then
                                        Dim PONumber14670 as String
                                        PONumber14670 = OR.ItemFixedAssetRet.PONumber.GetValue()
                                End If
                                'Get value of SerialNumber
                                if ( not OR.ItemFixedAssetRet.SerialNumber is nothing) then
                                        Dim SerialNumber14671 as String
                                        SerialNumber14671 = OR.ItemFixedAssetRet.SerialNumber.GetValue()
                                End If
                                'Get value of WarrantyExpDate
                                if ( not OR.ItemFixedAssetRet.WarrantyExpDate is nothing) then
                                        Dim WarrantyExpDate14672 as DateTime
                                        WarrantyExpDate14672 = OR.ItemFixedAssetRet.WarrantyExpDate.GetValue()
                                End If
                                'Get value of Notes
                                if ( not OR.ItemFixedAssetRet.Notes is nothing) then
                                        Dim Notes14673 as String
                                        Notes14673 = OR.ItemFixedAssetRet.Notes.GetValue()
                                End If
                                'Get value of AssetNumber
                                if ( not OR.ItemFixedAssetRet.AssetNumber is nothing) then
                                        Dim AssetNumber14674 as String
                                        AssetNumber14674 = OR.ItemFixedAssetRet.AssetNumber.GetValue()
                                End If
                                'Get value of CostBasis
                                if ( not OR.ItemFixedAssetRet.CostBasis is nothing) then
                                        Dim CostBasis14675 as Double
                                        CostBasis14675 = OR.ItemFixedAssetRet.CostBasis.GetValue()
                                End If
                                'Get value of YearEndAccumulatedDepreciation
                                if ( not OR.ItemFixedAssetRet.YearEndAccumulatedDepreciation is nothing) then
                                        Dim YearEndAccumulatedDepreciation14676 as Double
                                        YearEndAccumulatedDepreciation14676 = OR.ItemFixedAssetRet.YearEndAccumulatedDepreciation.GetValue()
                                End If
                                'Get value of YearEndBookValue
                                if ( not OR.ItemFixedAssetRet.YearEndBookValue is nothing) then
                                        Dim YearEndBookValue14677 as Double
                                        YearEndBookValue14677 = OR.ItemFixedAssetRet.YearEndBookValue.GetValue()
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemFixedAssetRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14678 as String
                                        ExternalGUID14678 = OR.ItemFixedAssetRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemFixedAssetRet.DataExtRetList is nothing)
                                        Dim i14679 as Integer
                                        for i14679 = 0  to OR.ItemFixedAssetRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemFixedAssetRet.DataExtRetList.GetAt(i14679)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14680 as String
                                                        OwnerID14680 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14681 as String
                                                DataExtName14681 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14682 as ENDataExtType
                                                DataExtType14682 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14683 as String
                                                DataExtValue14683 = DataExtRetDataExtValue.GetValue()
                                        Next i14679
                                End If
                        End If
                        if (not OR.ItemSubtotalRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14684 as String
                                ListID14684 = OR.ItemSubtotalRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14685 as DateTime
                                TimeCreated14685 = OR.ItemSubtotalRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14686 as DateTime
                                TimeModified14686 = OR.ItemSubtotalRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14687 as String
                                EditSequence14687 = OR.ItemSubtotalRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14688 as String
                                Name14688 = OR.ItemSubtotalRet.Name.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemSubtotalRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14689 as String
                                        BarCodeValue14689 = OR.ItemSubtotalRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemSubtotalRet.IsActive is nothing) then
                                        Dim IsActive14690 as Boolean
                                        IsActive14690 = OR.ItemSubtotalRet.IsActive.GetValue()
                                End If
                                'Get value of ItemDesc
                                if ( not OR.ItemSubtotalRet.ItemDesc is nothing) then
                                        Dim ItemDesc14691 as String
                                        ItemDesc14691 = OR.ItemSubtotalRet.ItemDesc.GetValue()
                                End If
                                'Get value of SpecialItemType
                                if ( not OR.ItemSubtotalRet.SpecialItemType is nothing) then
                                        Dim SpecialItemType14692 as ENSpecialItemType
                                        SpecialItemType14692 = OR.ItemSubtotalRet.SpecialItemType.GetValue()
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemSubtotalRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14693 as String
                                        ExternalGUID14693 = OR.ItemSubtotalRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemSubtotalRet.DataExtRetList is nothing)
                                        Dim i14694 as Integer
                                        for i14694 = 0  to OR.ItemSubtotalRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemSubtotalRet.DataExtRetList.GetAt(i14694)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14695 as String
                                                        OwnerID14695 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14696 as String
                                                DataExtName14696 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14697 as ENDataExtType
                                                DataExtType14697 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14698 as String
                                                DataExtValue14698 = DataExtRetDataExtValue.GetValue()
                                        Next i14694
                                End If
                        End If
                        if (not OR.ItemDiscountRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14699 as String
                                ListID14699 = OR.ItemDiscountRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14700 as DateTime
                                TimeCreated14700 = OR.ItemDiscountRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14701 as DateTime
                                TimeModified14701 = OR.ItemDiscountRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14702 as String
                                EditSequence14702 = OR.ItemDiscountRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14703 as String
                                Name14703 = OR.ItemDiscountRet.Name.GetValue()
                                'Get value of FullName
                                Dim FullName14704 as String
                                FullName14704 = OR.ItemDiscountRet.FullName.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemDiscountRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14705 as String
                                        BarCodeValue14705 = OR.ItemDiscountRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemDiscountRet.IsActive is nothing) then
                                        Dim IsActive14706 as Boolean
                                        IsActive14706 = OR.ItemDiscountRet.IsActive.GetValue()
                                End If
                                if (not OR.ItemDiscountRet.ClassRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemDiscountRet.ClassRef.ListID is nothing) then
                                                Dim ListID14707 as String
                                                ListID14707 = OR.ItemDiscountRet.ClassRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemDiscountRet.ClassRef.FullName is nothing) then
                                                Dim FullName14708 as String
                                                FullName14708 = OR.ItemDiscountRet.ClassRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemDiscountRet.ParentRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemDiscountRet.ParentRef.ListID is nothing) then
                                                Dim ListID14709 as String
                                                ListID14709 = OR.ItemDiscountRet.ParentRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemDiscountRet.ParentRef.FullName is nothing) then
                                                Dim FullName14710 as String
                                                FullName14710 = OR.ItemDiscountRet.ParentRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of Sublevel
                                Dim Sublevel14711 as Integer
                                Sublevel14711 = OR.ItemDiscountRet.Sublevel.GetValue()
                                'Get value of ItemDesc
                                if ( not OR.ItemDiscountRet.ItemDesc is nothing) then
                                        Dim ItemDesc14712 as String
                                        ItemDesc14712 = OR.ItemDiscountRet.ItemDesc.GetValue()
                                End If
                                if (not OR.ItemDiscountRet.SalesTaxCodeRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemDiscountRet.SalesTaxCodeRef.ListID is nothing) then
                                                Dim ListID14713 as String
                                                ListID14713 = OR.ItemDiscountRet.SalesTaxCodeRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemDiscountRet.SalesTaxCodeRef.FullName is nothing) then
                                                Dim FullName14714 as String
                                                FullName14714 = OR.ItemDiscountRet.SalesTaxCodeRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemDiscountRet.ORDiscountRate is nothing) then
                                        if (not OR.ItemDiscountRet.ORDiscountRate.DiscountRate is nothing) then
                                                'Get value of DiscountRate
                                                if ( not OR.ItemDiscountRet.ORDiscountRate.DiscountRate is nothing) then
                                                        Dim DiscountRate14716 as Double
                                                        DiscountRate14716 = OR.ItemDiscountRet.ORDiscountRate.DiscountRate.GetValue()
                                                End If
                                        End If
                                        if (not OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent is nothing) then
                                                'Get value of DiscountRatePercent
                                                if ( not OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent is nothing) then
                                                        Dim DiscountRatePercent14717 as Double
                                                        DiscountRatePercent14717 = OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent.GetValue()
                                                End If
                                        End If
                                End If
                                if (not OR.ItemDiscountRet.AccountRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemDiscountRet.AccountRef.ListID is nothing) then
                                                Dim ListID14718 as String
                                                ListID14718 = OR.ItemDiscountRet.AccountRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemDiscountRet.AccountRef.FullName is nothing) then
                                                Dim FullName14719 as String
                                                FullName14719 = OR.ItemDiscountRet.AccountRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemDiscountRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14720 as String
                                        ExternalGUID14720 = OR.ItemDiscountRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemDiscountRet.DataExtRetList is nothing)
                                        Dim i14721 as Integer
                                        for i14721 = 0  to OR.ItemDiscountRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemDiscountRet.DataExtRetList.GetAt(i14721)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14722 as String
                                                        OwnerID14722 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14723 as String
                                                DataExtName14723 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14724 as ENDataExtType
                                                DataExtType14724 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14725 as String
                                                DataExtValue14725 = DataExtRetDataExtValue.GetValue()
                                        Next i14721
                                End If
                        End If
                        if (not OR.ItemPaymentRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14726 as String
                                ListID14726 = OR.ItemPaymentRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14727 as DateTime
                                TimeCreated14727 = OR.ItemPaymentRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14728 as DateTime
                                TimeModified14728 = OR.ItemPaymentRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14729 as String
                                EditSequence14729 = OR.ItemPaymentRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14730 as String
                                Name14730 = OR.ItemPaymentRet.Name.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemPaymentRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14731 as String
                                        BarCodeValue14731 = OR.ItemPaymentRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemPaymentRet.IsActive is nothing) then
                                        Dim IsActive14732 as Boolean
                                        IsActive14732 = OR.ItemPaymentRet.IsActive.GetValue()
                                End If
                                if (not OR.ItemPaymentRet.ClassRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemPaymentRet.ClassRef.ListID is nothing) then
                                                Dim ListID14733 as String
                                                ListID14733 = OR.ItemPaymentRet.ClassRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemPaymentRet.ClassRef.FullName is nothing) then
                                                Dim FullName14734 as String
                                                FullName14734 = OR.ItemPaymentRet.ClassRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of ItemDesc
                                if ( not OR.ItemPaymentRet.ItemDesc is nothing) then
                                        Dim ItemDesc14735 as String
                                        ItemDesc14735 = OR.ItemPaymentRet.ItemDesc.GetValue()
                                End If
                                if (not OR.ItemPaymentRet.DepositToAccountRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemPaymentRet.DepositToAccountRef.ListID is nothing) then
                                                Dim ListID14736 as String
                                                ListID14736 = OR.ItemPaymentRet.DepositToAccountRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemPaymentRet.DepositToAccountRef.FullName is nothing) then
                                                Dim FullName14737 as String
                                                FullName14737 = OR.ItemPaymentRet.DepositToAccountRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemPaymentRet.PaymentMethodRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemPaymentRet.PaymentMethodRef.ListID is nothing) then
                                                Dim ListID14738 as String
                                                ListID14738 = OR.ItemPaymentRet.PaymentMethodRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemPaymentRet.PaymentMethodRef.FullName is nothing) then
                                                Dim FullName14739 as String
                                                FullName14739 = OR.ItemPaymentRet.PaymentMethodRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemPaymentRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14740 as String
                                        ExternalGUID14740 = OR.ItemPaymentRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemPaymentRet.DataExtRetList is nothing)
                                        Dim i14741 as Integer
                                        for i14741 = 0  to OR.ItemPaymentRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemPaymentRet.DataExtRetList.GetAt(i14741)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14742 as String
                                                        OwnerID14742 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14743 as String
                                                DataExtName14743 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14744 as ENDataExtType
                                                DataExtType14744 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14745 as String
                                                DataExtValue14745 = DataExtRetDataExtValue.GetValue()
                                        Next i14741
                                End If
                        End If
                        if (not OR.ItemSalesTaxRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14746 as String
                                ListID14746 = OR.ItemSalesTaxRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14747 as DateTime
                                TimeCreated14747 = OR.ItemSalesTaxRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14748 as DateTime
                                TimeModified14748 = OR.ItemSalesTaxRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14749 as String
                                EditSequence14749 = OR.ItemSalesTaxRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14750 as String
                                Name14750 = OR.ItemSalesTaxRet.Name.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemSalesTaxRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14751 as String
                                        BarCodeValue14751 = OR.ItemSalesTaxRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemSalesTaxRet.IsActive is nothing) then
                                        Dim IsActive14752 as Boolean
                                        IsActive14752 = OR.ItemSalesTaxRet.IsActive.GetValue()
                                End If
                                if (not OR.ItemSalesTaxRet.ClassRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemSalesTaxRet.ClassRef.ListID is nothing) then
                                                Dim ListID14753 as String
                                                ListID14753 = OR.ItemSalesTaxRet.ClassRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemSalesTaxRet.ClassRef.FullName is nothing) then
                                                Dim FullName14754 as String
                                                FullName14754 = OR.ItemSalesTaxRet.ClassRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of ItemDesc
                                if ( not OR.ItemSalesTaxRet.ItemDesc is nothing) then
                                        Dim ItemDesc14755 as String
                                        ItemDesc14755 = OR.ItemSalesTaxRet.ItemDesc.GetValue()
                                End If
                                'Get value of TaxRate
                                if ( not OR.ItemSalesTaxRet.TaxRate is nothing) then
                                        Dim TaxRate14756 as Double
                                        TaxRate14756 = OR.ItemSalesTaxRet.TaxRate.GetValue()
                                End If
                                if (not OR.ItemSalesTaxRet.TaxVendorRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemSalesTaxRet.TaxVendorRef.ListID is nothing) then
                                                Dim ListID14757 as String
                                                ListID14757 = OR.ItemSalesTaxRet.TaxVendorRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemSalesTaxRet.TaxVendorRef.FullName is nothing) then
                                                Dim FullName14758 as String
                                                FullName14758 = OR.ItemSalesTaxRet.TaxVendorRef.FullName.GetValue()
                                        End If
                                End If
                                if (not OR.ItemSalesTaxRet.SalesTaxReturnLineRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemSalesTaxRet.SalesTaxReturnLineRef.ListID is nothing) then
                                                Dim ListID14759 as String
                                                ListID14759 = OR.ItemSalesTaxRet.SalesTaxReturnLineRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemSalesTaxRet.SalesTaxReturnLineRef.FullName is nothing) then
                                                Dim FullName14760 as String
                                                FullName14760 = OR.ItemSalesTaxRet.SalesTaxReturnLineRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemSalesTaxRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14761 as String
                                        ExternalGUID14761 = OR.ItemSalesTaxRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemSalesTaxRet.DataExtRetList is nothing)
                                        Dim i14762 as Integer
                                        for i14762 = 0  to OR.ItemSalesTaxRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemSalesTaxRet.DataExtRetList.GetAt(i14762)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14763 as String
                                                        OwnerID14763 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14764 as String
                                                DataExtName14764 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14765 as ENDataExtType
                                                DataExtType14765 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14766 as String
                                                DataExtValue14766 = DataExtRetDataExtValue.GetValue()
                                        Next i14762
                                End If
                        End If
                        if (not OR.ItemSalesTaxGroupRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14767 as String
                                ListID14767 = OR.ItemSalesTaxGroupRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14768 as DateTime
                                TimeCreated14768 = OR.ItemSalesTaxGroupRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14769 as DateTime
                                TimeModified14769 = OR.ItemSalesTaxGroupRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14770 as String
                                EditSequence14770 = OR.ItemSalesTaxGroupRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14771 as String
                                Name14771 = OR.ItemSalesTaxGroupRet.Name.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemSalesTaxGroupRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14772 as String
                                        BarCodeValue14772 = OR.ItemSalesTaxGroupRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemSalesTaxGroupRet.IsActive is nothing) then
                                        Dim IsActive14773 as Boolean
                                        IsActive14773 = OR.ItemSalesTaxGroupRet.IsActive.GetValue()
                                End If
                                'Get value of ItemDesc
                                if ( not OR.ItemSalesTaxGroupRet.ItemDesc is nothing) then
                                        Dim ItemDesc14774 as String
                                        ItemDesc14774 = OR.ItemSalesTaxGroupRet.ItemDesc.GetValue()
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemSalesTaxGroupRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14775 as String
                                        ExternalGUID14775 = OR.ItemSalesTaxGroupRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList is nothing)
                                        Dim i14776 as Integer
                                        for i14776 = 0  to OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList.Count - 1
                                                Dim QBBaseRef as IQBBaseRef
                                                QBBaseRef = OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList.GetAt(i14776)
                                                'Get value of ListID
                                                if ( not QBBaseRefListID is nothing) then
                                                        Dim ListID14777 as String
                                                        ListID14777 = QBBaseRefListID.GetValue()
                                                End If
                                                'Get value of FullName
                                                if ( not QBBaseRefFullName is nothing) then
                                                        Dim FullName14778 as String
                                                        FullName14778 = QBBaseRefFullName.GetValue()
                                                End If
                                        Next i14776
                                End If
                                if (not OR.ItemSalesTaxGroupRet.DataExtRetList is nothing)
                                        Dim i14779 as Integer
                                        for i14779 = 0  to OR.ItemSalesTaxGroupRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemSalesTaxGroupRet.DataExtRetList.GetAt(i14779)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14780 as String
                                                        OwnerID14780 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14781 as String
                                                DataExtName14781 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14782 as ENDataExtType
                                                DataExtType14782 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14783 as String
                                                DataExtValue14783 = DataExtRetDataExtValue.GetValue()
                                        Next i14779
                                End If
                        End If
                        if (not OR.ItemGroupRet. is nothing) then
                                'Get value of ListID
                                Dim ListID14784 as String
                                ListID14784 = OR.ItemGroupRet.ListID.GetValue()
                                'Get value of TimeCreated
                                Dim TimeCreated14785 as DateTime
                                TimeCreated14785 = OR.ItemGroupRet.TimeCreated.GetValue()
                                'Get value of TimeModified
                                Dim TimeModified14786 as DateTime
                                TimeModified14786 = OR.ItemGroupRet.TimeModified.GetValue()
                                'Get value of EditSequence
                                Dim EditSequence14787 as String
                                EditSequence14787 = OR.ItemGroupRet.EditSequence.GetValue()
                                'Get value of Name
                                Dim Name14788 as String
                                Name14788 = OR.ItemGroupRet.Name.GetValue()
                                'Get value of BarCodeValue
                                if ( not OR.ItemGroupRet.BarCodeValue is nothing) then
                                        Dim BarCodeValue14789 as String
                                        BarCodeValue14789 = OR.ItemGroupRet.BarCodeValue.GetValue()
                                End If
                                'Get value of IsActive
                                if ( not OR.ItemGroupRet.IsActive is nothing) then
                                        Dim IsActive14790 as Boolean
                                        IsActive14790 = OR.ItemGroupRet.IsActive.GetValue()
                                End If
                                'Get value of ItemDesc
                                if ( not OR.ItemGroupRet.ItemDesc is nothing) then
                                        Dim ItemDesc14791 as String
                                        ItemDesc14791 = OR.ItemGroupRet.ItemDesc.GetValue()
                                End If
                                if (not OR.ItemGroupRet.UnitOfMeasureSetRef. is nothing) then
                                        'Get value of ListID
                                        if ( not OR.ItemGroupRet.UnitOfMeasureSetRef.ListID is nothing) then
                                                Dim ListID14792 as String
                                                ListID14792 = OR.ItemGroupRet.UnitOfMeasureSetRef.ListID.GetValue()
                                        End If
                                        'Get value of FullName
                                        if ( not OR.ItemGroupRet.UnitOfMeasureSetRef.FullName is nothing) then
                                                Dim FullName14793 as String
                                                FullName14793 = OR.ItemGroupRet.UnitOfMeasureSetRef.FullName.GetValue()
                                        End If
                                End If
                                'Get value of IsPrintItemsInGroup
                                if ( not OR.ItemGroupRet.IsPrintItemsInGroup is nothing) then
                                        Dim IsPrintItemsInGroup14794 as Boolean
                                        IsPrintItemsInGroup14794 = OR.ItemGroupRet.IsPrintItemsInGroup.GetValue()
                                End If
                                'Get value of SpecialItemType
                                if ( not OR.ItemGroupRet.SpecialItemType is nothing) then
                                        Dim SpecialItemType14795 as ENSpecialItemType
                                        SpecialItemType14795 = OR.ItemGroupRet.SpecialItemType.GetValue()
                                End If
                                'Get value of ExternalGUID
                                if ( not OR.ItemGroupRet.ExternalGUID is nothing) then
                                        Dim ExternalGUID14796 as String
                                        ExternalGUID14796 = OR.ItemGroupRet.ExternalGUID.GetValue()
                                End If
                                if (not OR.ItemGroupRet.ItemGroupLineList is nothing)
                                        Dim i14797 as Integer
                                        for i14797 = 0  to OR.ItemGroupRet.ItemGroupLineList.Count - 1
                                                Dim ItemGroupLine as IItemGroupLine
                                                ItemGroupLine = OR.ItemGroupRet.ItemGroupLineList.GetAt(i14797)
                                                if (not ItemGroupLineItemRef. is nothing) then
                                                        'Get value of ListID
                                                        if ( not ItemGroupLineItemRef.ListID is nothing) then
                                                                Dim ListID14798 as String
                                                                ListID14798 = ItemGroupLineItemRef.ListID.GetValue()
                                                        End If
                                                        'Get value of FullName
                                                        if ( not ItemGroupLineItemRef.FullName is nothing) then
                                                                Dim FullName14799 as String
                                                                FullName14799 = ItemGroupLineItemRef.FullName.GetValue()
                                                        End If
                                                End If
                                                'Get value of Quantity
                                                if ( not ItemGroupLineQuantity is nothing) then
                                                        Dim Quantity14800 as Integer
                                                        Quantity14800 = ItemGroupLineQuantity.GetValue()
                                                End If
                                                'Get value of UnitOfMeasure
                                                if ( not ItemGroupLineUnitOfMeasure is nothing) then
                                                        Dim UnitOfMeasure14801 as String
                                                        UnitOfMeasure14801 = ItemGroupLineUnitOfMeasure.GetValue()
                                                End If
                                        Next i14797
                                End If
                                if (not OR.ItemGroupRet.DataExtRetList is nothing)
                                        Dim i14802 as Integer
                                        for i14802 = 0  to OR.ItemGroupRet.DataExtRetList.Count - 1
                                                Dim DataExtRet as IDataExtRet
                                                DataExtRet = OR.ItemGroupRet.DataExtRetList.GetAt(i14802)
                                                'Get value of OwnerID
                                                if ( not DataExtRetOwnerID is nothing) then
                                                        Dim OwnerID14803 as String
                                                        OwnerID14803 = DataExtRetOwnerID.GetValue()
                                                End If
                                                'Get value of DataExtName
                                                Dim DataExtName14804 as String
                                                DataExtName14804 = DataExtRetDataExtName.GetValue()
                                                'Get value of DataExtType
                                                Dim DataExtType14805 as ENDataExtType
                                                DataExtType14805 = DataExtRetDataExtType.GetValue()
                                                'Get value of DataExtValue
                                                Dim DataExtValue14806 as String
                                                DataExtValue14806 = DataExtRetDataExtValue.GetValue()
                                        Next i14802
                                End If
                        End If
                End Sub




        End Class
End Module

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
//The following sample code is generated as an illustration of
//Creating requests and parsing responses ONLY
//This code is NOT intended to show best practices or ideal code
//Use at your most careful discretion

using System;
using System.Net;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.IO;
using Interop.QBFC16;

namespace com.intuit.idn.samples
{
        public class Sample
        {
                public void  DoItemQuery()
                {
                        bool sessionBegun = false;
                        bool connectionOpen = false;
                        QBSessionManager sessionManager = null;

                        try
                        {
                                //Create the session Manager object
                                sessionManager = new QBSessionManager();

                                //Create the message set request object to hold our request
                                IMsgSetRequest requestMsgSet = sessionManager.CreateMsgSetRequest("US",16,0);
                                requestMsgSet.Attributes.OnError = ENRqOnError.roeContinue;

                                BuildItemQueryRq(requestMsgSet);

                                //Connect to QuickBooks and begin a session
                                sessionManager.OpenConnection("","Sample Code from OSR");
                                connectionOpen = true;
                                sessionManager.BeginSession("", ENOpenMode.omDontCare);
                                sessionBegun = true;

                                //Send the request and get the response from QuickBooks
                                IMsgSetResponse responseMsgSet = sessionManager.DoRequests(requestMsgSet);

                                //End the session and close the connection to QuickBooks
                                sessionManager.EndSession();
                                sessionBegun = false;
                                sessionManager.CloseConnection();
                                connectionOpen = false;

                                WalkItemQueryRs(responseMsgSet);
                        }
                        catch (Exception e)
                        {
                                MessageBox.Show(e.Message, "Error");
                                if (sessionBegun)
                                {
                                        sessionManager.EndSession();
                                }
                                if (connectionOpen)
                                {
                                        sessionManager.CloseConnection();
                                }
                        }
                }
                void BuildItemQueryRq(IMsgSetRequest requestMsgSet)
                {
                        IItemQuery ItemQueryRq= requestMsgSet.AppendItemQueryRq();
                        //Set attributes
                        //Set field value for metaData
                        ItemQueryRq.metaData.SetValue("IQBENmetaDataType");
                        //Set field value for iterator
                        ItemQueryRq.iterator.SetValue("IQBENiteratorType");
                        //Set field value for iteratorID
                        ItemQueryRq.iteratorID.SetValue("IQBUUIDType");
                        string ORListQueryElementType14039 = "ListIDList";
                        if (ORListQueryElementType14039 == "ListIDList")
                        {
                                //Set field value for ListIDList
                                //May create more than one of these if needed
                                ItemQueryRq.ORListQuery.ListIDList.Add("200000-1011023419");
                        }
                        if (ORListQueryElementType14039 == "FullNameList")
                        {
                                //Set field value for FullNameList
                                //May create more than one of these if needed
                                ItemQueryRq.ORListQuery.FullNameList.Add("ab");
                        }
                        if (ORListQueryElementType14039 == "ListFilter")
                        {
                                //Set field value for MaxReturned
                                ItemQueryRq.ORListQuery.ListFilter.MaxReturned.SetValue(6);
                                //Set field value for ActiveStatus
                                ItemQueryRq.ORListQuery.ListFilter.ActiveStatus.SetValue(ENActiveStatus.asActiveOnly [DEFAULT]);
                                //Set field value for FromModifiedDate
                                ItemQueryRq.ORListQuery.ListFilter.FromModifiedDate.SetValue(DateTime.Parse("12/15/2007 12:15:12"),false);
                                //Set field value for ToModifiedDate
                                ItemQueryRq.ORListQuery.ListFilter.ToModifiedDate.SetValue(DateTime.Parse("12/15/2007 12:15:12"),false);
                                string ORNameFilterElementType14040 = "NameFilter";
                                if (ORNameFilterElementType14040 == "NameFilter")
                                {
                                        //Set field value for MatchCriterion
                                        ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameFilter.MatchCriterion.SetValue(ENMatchCriterion.mcStartsWith);
                                        //Set field value for Name
                                        ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameFilter.Name.SetValue("ab");
                                }
                                if (ORNameFilterElementType14040 == "NameRangeFilter")
                                {
                                        //Set field value for FromName
                                        ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameRangeFilter.FromName.SetValue("ab");
                                        //Set field value for ToName
                                        ItemQueryRq.ORListQuery.ListFilter.ORNameFilter.NameRangeFilter.ToName.SetValue("ab");
                                }
                        }
                        //Set field value for IncludeRetElementList
                        //May create more than one of these if needed
                        ItemQueryRq.IncludeRetElementList.Add("ab");
                        //Set field value for OwnerIDList
                        //May create more than one of these if needed
                        ItemQueryRq.OwnerIDList.Add(Guid.NewGuid().ToString());
                }




                void WalkItemQueryRs(IMsgSetResponse responseMsgSet)
                {
                        if (responseMsgSet == null) return;
                        IResponseList responseList = responseMsgSet.ResponseList;
                        if (responseList == null) return;
                        //if we sent only one request, there is only one response, we'll walk the list for this sample
                        for(int i=0; i < responseList.Count; i++)
                        {
                                IResponse response = responseList.GetAt(i);
                                //check the status code of the response, 0=ok, >0 is warning
                                if (response.StatusCode >= 0)
                                {
                                        //the request-specific response is in the details, make sure we have some
                                        if (response.Detail != null)
                                        {
                                                //make sure the response is the type we're expecting
                                                ENResponseType responseType = (ENResponseType)response.Type.GetValue();
                                                if (responseType == ENResponseType.rtItemQueryRs)
                                                {
                                                        //upcast to more specific type here, this is safe because we checked with response.Type check above
                                                        IORItemRetList OR = (IORItemRetList)response.Detail;
                                                        WalkOR(OR);
                                                }
                                        }
                                }
                        }
                }




                void WalkOR(IORItemRetList OR)
                {
                        if (OR == null) return;
                        //Go through all the elements of IORItemRetList
                        if (OR.ItemServiceRet != null)
                        {
                                //Get value of ListID
                                string ListID14041 = (string)OR.ItemServiceRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14042 = (DateTime)OR.ItemServiceRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14043 = (DateTime)OR.ItemServiceRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14044 = (string)OR.ItemServiceRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14045 = (string)OR.ItemServiceRet.Name.GetValue();
                                //Get value of FullName
                                string FullName14046 = (string)OR.ItemServiceRet.FullName.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemServiceRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14047 = (string)OR.ItemServiceRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemServiceRet.IsActive != null)
                                {
                                        bool IsActive14048 = (bool)OR.ItemServiceRet.IsActive.GetValue();
                                }
                                if (OR.ItemServiceRet.ClassRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemServiceRet.ClassRef.ListID != null)
                                        {
                                                string ListID14049 = (string)OR.ItemServiceRet.ClassRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemServiceRet.ClassRef.FullName != null)
                                        {
                                                string FullName14050 = (string)OR.ItemServiceRet.ClassRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemServiceRet.ParentRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemServiceRet.ParentRef.ListID != null)
                                        {
                                                string ListID14051 = (string)OR.ItemServiceRet.ParentRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemServiceRet.ParentRef.FullName != null)
                                        {
                                                string FullName14052 = (string)OR.ItemServiceRet.ParentRef.FullName.GetValue();
                                        }
                                }
                                //Get value of Sublevel
                                int Sublevel14053 = (int)OR.ItemServiceRet.Sublevel.GetValue();
                                if (OR.ItemServiceRet.UnitOfMeasureSetRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemServiceRet.UnitOfMeasureSetRef.ListID != null)
                                        {
                                                string ListID14054 = (string)OR.ItemServiceRet.UnitOfMeasureSetRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemServiceRet.UnitOfMeasureSetRef.FullName != null)
                                        {
                                                string FullName14055 = (string)OR.ItemServiceRet.UnitOfMeasureSetRef.FullName.GetValue();
                                        }
                                }
                                //Get value of IsTaxIncluded
                                if (OR.ItemServiceRet.IsTaxIncluded != null)
                                {
                                        bool IsTaxIncluded14056 = (bool)OR.ItemServiceRet.IsTaxIncluded.GetValue();
                                }
                                if (OR.ItemServiceRet.SalesTaxCodeRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemServiceRet.SalesTaxCodeRef.ListID != null)
                                        {
                                                string ListID14057 = (string)OR.ItemServiceRet.SalesTaxCodeRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemServiceRet.SalesTaxCodeRef.FullName != null)
                                        {
                                                string FullName14058 = (string)OR.ItemServiceRet.SalesTaxCodeRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemServiceRet.ORSalesPurchase != null)
                                {
                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase != null)
                                        {
                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase != null)
                                                {
                                                        //Get value of Desc
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.Desc != null)
                                                        {
                                                                string Desc14060 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue();
                                                        }
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice != null)
                                                        {
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null)
                                                                {
                                                                        //Get value of Price
                                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null)
                                                                        {
                                                                                double Price14062 = (double)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue();
                                                                        }
                                                                }
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null)
                                                                {
                                                                        //Get value of PricePercent
                                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null)
                                                                        {
                                                                                double PricePercent14063 = (double)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue();
                                                                        }
                                                                }
                                                        }
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID != null)
                                                                {
                                                                        string ListID14064 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName != null)
                                                                {
                                                                        string FullName14065 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue();
                                                                }
                                                        }
                                                }
                                        }
                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase != null)
                                        {
                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase != null)
                                                {
                                                        //Get value of SalesDesc
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesDesc != null)
                                                        {
                                                                string SalesDesc14066 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue();
                                                        }
                                                        //Get value of SalesPrice
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesPrice != null)
                                                        {
                                                                double SalesPrice14067 = (double)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue();
                                                        }
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID != null)
                                                                {
                                                                        string ListID14068 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName != null)
                                                                {
                                                                        string FullName14069 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue();
                                                                }
                                                        }
                                                        //Get value of PurchaseDesc
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc != null)
                                                        {
                                                                string PurchaseDesc14070 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue();
                                                        }
                                                        //Get value of PurchaseCost
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost != null)
                                                        {
                                                                double PurchaseCost14071 = (double)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue();
                                                        }
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID != null)
                                                                {
                                                                        string ListID14072 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName != null)
                                                                {
                                                                        string FullName14073 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue();
                                                                }
                                                        }
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID != null)
                                                                {
                                                                        string ListID14074 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName != null)
                                                                {
                                                                        string FullName14075 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue();
                                                                }
                                                        }
                                                        if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID != null)
                                                                {
                                                                        string ListID14076 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName != null)
                                                                {
                                                                        string FullName14077 = (string)OR.ItemServiceRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue();
                                                                }
                                                        }
                                                }
                                        }
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemServiceRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14078 = (string)OR.ItemServiceRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemServiceRet.DataExtRetList != null)
                                {
                                        for (int i14079 = 0; i14079 < OR.ItemServiceRet.DataExtRetList.Count; i14079++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemServiceRet.DataExtRetList.GetAt(i14079);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14080 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14081 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14082 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14083 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemNonInventoryRet != null)
                        {
                                //Get value of ListID
                                string ListID14084 = (string)OR.ItemNonInventoryRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14085 = (DateTime)OR.ItemNonInventoryRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14086 = (DateTime)OR.ItemNonInventoryRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14087 = (string)OR.ItemNonInventoryRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14088 = (string)OR.ItemNonInventoryRet.Name.GetValue();
                                //Get value of FullName
                                string FullName14089 = (string)OR.ItemNonInventoryRet.FullName.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemNonInventoryRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14090 = (string)OR.ItemNonInventoryRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemNonInventoryRet.IsActive != null)
                                {
                                        bool IsActive14091 = (bool)OR.ItemNonInventoryRet.IsActive.GetValue();
                                }
                                if (OR.ItemNonInventoryRet.ClassRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemNonInventoryRet.ClassRef.ListID != null)
                                        {
                                                string ListID14092 = (string)OR.ItemNonInventoryRet.ClassRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemNonInventoryRet.ClassRef.FullName != null)
                                        {
                                                string FullName14093 = (string)OR.ItemNonInventoryRet.ClassRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemNonInventoryRet.ParentRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemNonInventoryRet.ParentRef.ListID != null)
                                        {
                                                string ListID14094 = (string)OR.ItemNonInventoryRet.ParentRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemNonInventoryRet.ParentRef.FullName != null)
                                        {
                                                string FullName14095 = (string)OR.ItemNonInventoryRet.ParentRef.FullName.GetValue();
                                        }
                                }
                                //Get value of Sublevel
                                int Sublevel14096 = (int)OR.ItemNonInventoryRet.Sublevel.GetValue();
                                //Get value of ManufacturerPartNumber
                                if (OR.ItemNonInventoryRet.ManufacturerPartNumber != null)
                                {
                                        string ManufacturerPartNumber14097 = (string)OR.ItemNonInventoryRet.ManufacturerPartNumber.GetValue();
                                }
                                if (OR.ItemNonInventoryRet.UnitOfMeasureSetRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemNonInventoryRet.UnitOfMeasureSetRef.ListID != null)
                                        {
                                                string ListID14098 = (string)OR.ItemNonInventoryRet.UnitOfMeasureSetRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemNonInventoryRet.UnitOfMeasureSetRef.FullName != null)
                                        {
                                                string FullName14099 = (string)OR.ItemNonInventoryRet.UnitOfMeasureSetRef.FullName.GetValue();
                                        }
                                }
                                //Get value of IsTaxIncluded
                                if (OR.ItemNonInventoryRet.IsTaxIncluded != null)
                                {
                                        bool IsTaxIncluded14100 = (bool)OR.ItemNonInventoryRet.IsTaxIncluded.GetValue();
                                }
                                if (OR.ItemNonInventoryRet.SalesTaxCodeRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemNonInventoryRet.SalesTaxCodeRef.ListID != null)
                                        {
                                                string ListID14101 = (string)OR.ItemNonInventoryRet.SalesTaxCodeRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemNonInventoryRet.SalesTaxCodeRef.FullName != null)
                                        {
                                                string FullName14102 = (string)OR.ItemNonInventoryRet.SalesTaxCodeRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemNonInventoryRet.ORSalesPurchase != null)
                                {
                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase != null)
                                        {
                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase != null)
                                                {
                                                        //Get value of Desc
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.Desc != null)
                                                        {
                                                                string Desc14104 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue();
                                                        }
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice != null)
                                                        {
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null)
                                                                {
                                                                        //Get value of Price
                                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null)
                                                                        {
                                                                                double Price14106 = (double)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue();
                                                                        }
                                                                }
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null)
                                                                {
                                                                        //Get value of PricePercent
                                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null)
                                                                        {
                                                                                double PricePercent14107 = (double)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue();
                                                                        }
                                                                }
                                                        }
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID != null)
                                                                {
                                                                        string ListID14108 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName != null)
                                                                {
                                                                        string FullName14109 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue();
                                                                }
                                                        }
                                                }
                                        }
                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase != null)
                                        {
                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase != null)
                                                {
                                                        //Get value of SalesDesc
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesDesc != null)
                                                        {
                                                                string SalesDesc14110 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue();
                                                        }
                                                        //Get value of SalesPrice
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesPrice != null)
                                                        {
                                                                double SalesPrice14111 = (double)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue();
                                                        }
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID != null)
                                                                {
                                                                        string ListID14112 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName != null)
                                                                {
                                                                        string FullName14113 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue();
                                                                }
                                                        }
                                                        //Get value of PurchaseDesc
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc != null)
                                                        {
                                                                string PurchaseDesc14114 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue();
                                                        }
                                                        //Get value of PurchaseCost
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost != null)
                                                        {
                                                                double PurchaseCost14115 = (double)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue();
                                                        }
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID != null)
                                                                {
                                                                        string ListID14116 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName != null)
                                                                {
                                                                        string FullName14117 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue();
                                                                }
                                                        }
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID != null)
                                                                {
                                                                        string ListID14118 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName != null)
                                                                {
                                                                        string FullName14119 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue();
                                                                }
                                                        }
                                                        if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID != null)
                                                                {
                                                                        string ListID14120 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName != null)
                                                                {
                                                                        string FullName14121 = (string)OR.ItemNonInventoryRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue();
                                                                }
                                                        }
                                                }
                                        }
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemNonInventoryRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14122 = (string)OR.ItemNonInventoryRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemNonInventoryRet.DataExtRetList != null)
                                {
                                        for (int i14123 = 0; i14123 < OR.ItemNonInventoryRet.DataExtRetList.Count; i14123++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemNonInventoryRet.DataExtRetList.GetAt(i14123);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14124 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14125 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14126 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14127 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemOtherChargeRet != null)
                        {
                                //Get value of ListID
                                string ListID14128 = (string)OR.ItemOtherChargeRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14129 = (DateTime)OR.ItemOtherChargeRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14130 = (DateTime)OR.ItemOtherChargeRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14131 = (string)OR.ItemOtherChargeRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14132 = (string)OR.ItemOtherChargeRet.Name.GetValue();
                                //Get value of FullName
                                string FullName14133 = (string)OR.ItemOtherChargeRet.FullName.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemOtherChargeRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14134 = (string)OR.ItemOtherChargeRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemOtherChargeRet.IsActive != null)
                                {
                                        bool IsActive14135 = (bool)OR.ItemOtherChargeRet.IsActive.GetValue();
                                }
                                if (OR.ItemOtherChargeRet.ClassRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemOtherChargeRet.ClassRef.ListID != null)
                                        {
                                                string ListID14136 = (string)OR.ItemOtherChargeRet.ClassRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemOtherChargeRet.ClassRef.FullName != null)
                                        {
                                                string FullName14137 = (string)OR.ItemOtherChargeRet.ClassRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemOtherChargeRet.ParentRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemOtherChargeRet.ParentRef.ListID != null)
                                        {
                                                string ListID14138 = (string)OR.ItemOtherChargeRet.ParentRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemOtherChargeRet.ParentRef.FullName != null)
                                        {
                                                string FullName14139 = (string)OR.ItemOtherChargeRet.ParentRef.FullName.GetValue();
                                        }
                                }
                                //Get value of Sublevel
                                int Sublevel14140 = (int)OR.ItemOtherChargeRet.Sublevel.GetValue();
                                //Get value of IsTaxIncluded
                                if (OR.ItemOtherChargeRet.IsTaxIncluded != null)
                                {
                                        bool IsTaxIncluded14141 = (bool)OR.ItemOtherChargeRet.IsTaxIncluded.GetValue();
                                }
                                if (OR.ItemOtherChargeRet.SalesTaxCodeRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemOtherChargeRet.SalesTaxCodeRef.ListID != null)
                                        {
                                                string ListID14142 = (string)OR.ItemOtherChargeRet.SalesTaxCodeRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemOtherChargeRet.SalesTaxCodeRef.FullName != null)
                                        {
                                                string FullName14143 = (string)OR.ItemOtherChargeRet.SalesTaxCodeRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemOtherChargeRet.ORSalesPurchase != null)
                                {
                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase != null)
                                        {
                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase != null)
                                                {
                                                        //Get value of Desc
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.Desc != null)
                                                        {
                                                                string Desc14145 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.Desc.GetValue();
                                                        }
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice != null)
                                                        {
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null)
                                                                {
                                                                        //Get value of Price
                                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price != null)
                                                                        {
                                                                                double Price14147 = (double)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue();
                                                                        }
                                                                }
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null)
                                                                {
                                                                        //Get value of PricePercent
                                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent != null)
                                                                        {
                                                                                double PricePercent14148 = (double)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.ORPrice.PricePercent.GetValue();
                                                                        }
                                                                }
                                                        }
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID != null)
                                                                {
                                                                        string ListID14149 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName != null)
                                                                {
                                                                        string FullName14150 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesOrPurchase.AccountRef.FullName.GetValue();
                                                                }
                                                        }
                                                }
                                        }
                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase != null)
                                        {
                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase != null)
                                                {
                                                        //Get value of SalesDesc
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesDesc != null)
                                                        {
                                                                string SalesDesc14151 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesDesc.GetValue();
                                                        }
                                                        //Get value of SalesPrice
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesPrice != null)
                                                        {
                                                                double SalesPrice14152 = (double)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.SalesPrice.GetValue();
                                                        }
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID != null)
                                                                {
                                                                        string ListID14153 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName != null)
                                                                {
                                                                        string FullName14154 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.IncomeAccountRef.FullName.GetValue();
                                                                }
                                                        }
                                                        //Get value of PurchaseDesc
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc != null)
                                                        {
                                                                string PurchaseDesc14155 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseDesc.GetValue();
                                                        }
                                                        //Get value of PurchaseCost
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost != null)
                                                        {
                                                                double PurchaseCost14156 = (double)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseCost.GetValue();
                                                        }
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID != null)
                                                                {
                                                                        string ListID14157 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName != null)
                                                                {
                                                                        string FullName14158 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PurchaseTaxCodeRef.FullName.GetValue();
                                                                }
                                                        }
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID != null)
                                                                {
                                                                        string ListID14159 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName != null)
                                                                {
                                                                        string FullName14160 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.ExpenseAccountRef.FullName.GetValue();
                                                                }
                                                        }
                                                        if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef != null)
                                                        {
                                                                //Get value of ListID
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID != null)
                                                                {
                                                                        string ListID14161 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.ListID.GetValue();
                                                                }
                                                                //Get value of FullName
                                                                if (OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName != null)
                                                                {
                                                                        string FullName14162 = (string)OR.ItemOtherChargeRet.ORSalesPurchase.SalesAndPurchase.PrefVendorRef.FullName.GetValue();
                                                                }
                                                        }
                                                }
                                        }
                                }
                                //Get value of SpecialItemType
                                if (OR.ItemOtherChargeRet.SpecialItemType != null)
                                {
                                        ENSpecialItemType SpecialItemType14163 = (ENSpecialItemType)OR.ItemOtherChargeRet.SpecialItemType.GetValue();
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemOtherChargeRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14164 = (string)OR.ItemOtherChargeRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemOtherChargeRet.DataExtRetList != null)
                                {
                                        for (int i14165 = 0; i14165 < OR.ItemOtherChargeRet.DataExtRetList.Count; i14165++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemOtherChargeRet.DataExtRetList.GetAt(i14165);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14166 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14167 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14168 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14169 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemInventoryRet != null)
                        {
                                //Get value of ListID
                                string ListID14170 = (string)OR.ItemInventoryRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14171 = (DateTime)OR.ItemInventoryRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14172 = (DateTime)OR.ItemInventoryRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14173 = (string)OR.ItemInventoryRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14174 = (string)OR.ItemInventoryRet.Name.GetValue();
                                //Get value of FullName
                                string FullName14175 = (string)OR.ItemInventoryRet.FullName.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemInventoryRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14176 = (string)OR.ItemInventoryRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemInventoryRet.IsActive != null)
                                {
                                        bool IsActive14177 = (bool)OR.ItemInventoryRet.IsActive.GetValue();
                                }
                                if (OR.ItemInventoryRet.ClassRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryRet.ClassRef.ListID != null)
                                        {
                                                string ListID14178 = (string)OR.ItemInventoryRet.ClassRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryRet.ClassRef.FullName != null)
                                        {
                                                string FullName14179 = (string)OR.ItemInventoryRet.ClassRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemInventoryRet.ParentRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryRet.ParentRef.ListID != null)
                                        {
                                                string ListID14180 = (string)OR.ItemInventoryRet.ParentRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryRet.ParentRef.FullName != null)
                                        {
                                                string FullName14181 = (string)OR.ItemInventoryRet.ParentRef.FullName.GetValue();
                                        }
                                }
                                //Get value of Sublevel
                                int Sublevel14182 = (int)OR.ItemInventoryRet.Sublevel.GetValue();
                                //Get value of ManufacturerPartNumber
                                if (OR.ItemInventoryRet.ManufacturerPartNumber != null)
                                {
                                        string ManufacturerPartNumber14183 = (string)OR.ItemInventoryRet.ManufacturerPartNumber.GetValue();
                                }
                                if (OR.ItemInventoryRet.UnitOfMeasureSetRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryRet.UnitOfMeasureSetRef.ListID != null)
                                        {
                                                string ListID14184 = (string)OR.ItemInventoryRet.UnitOfMeasureSetRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryRet.UnitOfMeasureSetRef.FullName != null)
                                        {
                                                string FullName14185 = (string)OR.ItemInventoryRet.UnitOfMeasureSetRef.FullName.GetValue();
                                        }
                                }
                                //Get value of IsTaxIncluded
                                if (OR.ItemInventoryRet.IsTaxIncluded != null)
                                {
                                        bool IsTaxIncluded14186 = (bool)OR.ItemInventoryRet.IsTaxIncluded.GetValue();
                                }
                                if (OR.ItemInventoryRet.SalesTaxCodeRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryRet.SalesTaxCodeRef.ListID != null)
                                        {
                                                string ListID14187 = (string)OR.ItemInventoryRet.SalesTaxCodeRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryRet.SalesTaxCodeRef.FullName != null)
                                        {
                                                string FullName14188 = (string)OR.ItemInventoryRet.SalesTaxCodeRef.FullName.GetValue();
                                        }
                                }
                                //Get value of SalesDesc
                                if (OR.ItemInventoryRet.SalesDesc != null)
                                {
                                        string SalesDesc14189 = (string)OR.ItemInventoryRet.SalesDesc.GetValue();
                                }
                                //Get value of SalesPrice
                                if (OR.ItemInventoryRet.SalesPrice != null)
                                {
                                        double SalesPrice14190 = (double)OR.ItemInventoryRet.SalesPrice.GetValue();
                                }
                                if (OR.ItemInventoryRet.IncomeAccountRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryRet.IncomeAccountRef.ListID != null)
                                        {
                                                string ListID14191 = (string)OR.ItemInventoryRet.IncomeAccountRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryRet.IncomeAccountRef.FullName != null)
                                        {
                                                string FullName14192 = (string)OR.ItemInventoryRet.IncomeAccountRef.FullName.GetValue();
                                        }
                                }
                                //Get value of PurchaseDesc
                                if (OR.ItemInventoryRet.PurchaseDesc != null)
                                {
                                        string PurchaseDesc14193 = (string)OR.ItemInventoryRet.PurchaseDesc.GetValue();
                                }
                                //Get value of PurchaseCost
                                if (OR.ItemInventoryRet.PurchaseCost != null)
                                {
                                        double PurchaseCost14194 = (double)OR.ItemInventoryRet.PurchaseCost.GetValue();
                                }
                                if (OR.ItemInventoryRet.PurchaseTaxCodeRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryRet.PurchaseTaxCodeRef.ListID != null)
                                        {
                                                string ListID14195 = (string)OR.ItemInventoryRet.PurchaseTaxCodeRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryRet.PurchaseTaxCodeRef.FullName != null)
                                        {
                                                string FullName14196 = (string)OR.ItemInventoryRet.PurchaseTaxCodeRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemInventoryRet.COGSAccountRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryRet.COGSAccountRef.ListID != null)
                                        {
                                                string ListID14197 = (string)OR.ItemInventoryRet.COGSAccountRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryRet.COGSAccountRef.FullName != null)
                                        {
                                                string FullName14198 = (string)OR.ItemInventoryRet.COGSAccountRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemInventoryRet.PrefVendorRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryRet.PrefVendorRef.ListID != null)
                                        {
                                                string ListID14199 = (string)OR.ItemInventoryRet.PrefVendorRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryRet.PrefVendorRef.FullName != null)
                                        {
                                                string FullName14200 = (string)OR.ItemInventoryRet.PrefVendorRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemInventoryRet.AssetAccountRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryRet.AssetAccountRef.ListID != null)
                                        {
                                                string ListID14201 = (string)OR.ItemInventoryRet.AssetAccountRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryRet.AssetAccountRef.FullName != null)
                                        {
                                                string FullName14202 = (string)OR.ItemInventoryRet.AssetAccountRef.FullName.GetValue();
                                        }
                                }
                                //Get value of ReorderPoint
                                if (OR.ItemInventoryRet.ReorderPoint != null)
                                {
                                        int ReorderPoint14203 = (int)OR.ItemInventoryRet.ReorderPoint.GetValue();
                                }
                                //Get value of Max
                                if (OR.ItemInventoryRet.Max != null)
                                {
                                        int Max14204 = (int)OR.ItemInventoryRet.Max.GetValue();
                                }
                                //Get value of QuantityOnHand
                                if (OR.ItemInventoryRet.QuantityOnHand != null)
                                {
                                        int QuantityOnHand14205 = (int)OR.ItemInventoryRet.QuantityOnHand.GetValue();
                                }
                                //Get value of AverageCost
                                if (OR.ItemInventoryRet.AverageCost != null)
                                {
                                        double AverageCost14206 = (double)OR.ItemInventoryRet.AverageCost.GetValue();
                                }
                                //Get value of QuantityOnOrder
                                if (OR.ItemInventoryRet.QuantityOnOrder != null)
                                {
                                        int QuantityOnOrder14207 = (int)OR.ItemInventoryRet.QuantityOnOrder.GetValue();
                                }
                                //Get value of QuantityOnSalesOrder
                                if (OR.ItemInventoryRet.QuantityOnSalesOrder != null)
                                {
                                        int QuantityOnSalesOrder14208 = (int)OR.ItemInventoryRet.QuantityOnSalesOrder.GetValue();
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemInventoryRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14209 = (string)OR.ItemInventoryRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemInventoryRet.DataExtRetList != null)
                                {
                                        for (int i14210 = 0; i14210 < OR.ItemInventoryRet.DataExtRetList.Count; i14210++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemInventoryRet.DataExtRetList.GetAt(i14210);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14211 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14212 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14213 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14214 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemInventoryAssemblyRet != null)
                        {
                                //Get value of ListID
                                string ListID14215 = (string)OR.ItemInventoryAssemblyRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14216 = (DateTime)OR.ItemInventoryAssemblyRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14217 = (DateTime)OR.ItemInventoryAssemblyRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14218 = (string)OR.ItemInventoryAssemblyRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14219 = (string)OR.ItemInventoryAssemblyRet.Name.GetValue();
                                //Get value of FullName
                                string FullName14220 = (string)OR.ItemInventoryAssemblyRet.FullName.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemInventoryAssemblyRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14221 = (string)OR.ItemInventoryAssemblyRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemInventoryAssemblyRet.IsActive != null)
                                {
                                        bool IsActive14222 = (bool)OR.ItemInventoryAssemblyRet.IsActive.GetValue();
                                }
                                if (OR.ItemInventoryAssemblyRet.ClassRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryAssemblyRet.ClassRef.ListID != null)
                                        {
                                                string ListID14223 = (string)OR.ItemInventoryAssemblyRet.ClassRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryAssemblyRet.ClassRef.FullName != null)
                                        {
                                                string FullName14224 = (string)OR.ItemInventoryAssemblyRet.ClassRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemInventoryAssemblyRet.ParentRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryAssemblyRet.ParentRef.ListID != null)
                                        {
                                                string ListID14225 = (string)OR.ItemInventoryAssemblyRet.ParentRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryAssemblyRet.ParentRef.FullName != null)
                                        {
                                                string FullName14226 = (string)OR.ItemInventoryAssemblyRet.ParentRef.FullName.GetValue();
                                        }
                                }
                                //Get value of Sublevel
                                int Sublevel14227 = (int)OR.ItemInventoryAssemblyRet.Sublevel.GetValue();
                                //Get value of ManufacturerPartNumber
                                if (OR.ItemInventoryAssemblyRet.ManufacturerPartNumber != null)
                                {
                                        string ManufacturerPartNumber14228 = (string)OR.ItemInventoryAssemblyRet.ManufacturerPartNumber.GetValue();
                                }
                                if (OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.ListID != null)
                                        {
                                                string ListID14229 = (string)OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.FullName != null)
                                        {
                                                string FullName14230 = (string)OR.ItemInventoryAssemblyRet.UnitOfMeasureSetRef.FullName.GetValue();
                                        }
                                }
                                //Get value of IsTaxIncluded
                                if (OR.ItemInventoryAssemblyRet.IsTaxIncluded != null)
                                {
                                        bool IsTaxIncluded14231 = (bool)OR.ItemInventoryAssemblyRet.IsTaxIncluded.GetValue();
                                }
                                if (OR.ItemInventoryAssemblyRet.SalesTaxCodeRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.ListID != null)
                                        {
                                                string ListID14232 = (string)OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.FullName != null)
                                        {
                                                string FullName14233 = (string)OR.ItemInventoryAssemblyRet.SalesTaxCodeRef.FullName.GetValue();
                                        }
                                }
                                //Get value of SalesDesc
                                if (OR.ItemInventoryAssemblyRet.SalesDesc != null)
                                {
                                        string SalesDesc14234 = (string)OR.ItemInventoryAssemblyRet.SalesDesc.GetValue();
                                }
                                //Get value of SalesPrice
                                if (OR.ItemInventoryAssemblyRet.SalesPrice != null)
                                {
                                        double SalesPrice14235 = (double)OR.ItemInventoryAssemblyRet.SalesPrice.GetValue();
                                }
                                if (OR.ItemInventoryAssemblyRet.IncomeAccountRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryAssemblyRet.IncomeAccountRef.ListID != null)
                                        {
                                                string ListID14236 = (string)OR.ItemInventoryAssemblyRet.IncomeAccountRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryAssemblyRet.IncomeAccountRef.FullName != null)
                                        {
                                                string FullName14237 = (string)OR.ItemInventoryAssemblyRet.IncomeAccountRef.FullName.GetValue();
                                        }
                                }
                                //Get value of PurchaseDesc
                                if (OR.ItemInventoryAssemblyRet.PurchaseDesc != null)
                                {
                                        string PurchaseDesc14238 = (string)OR.ItemInventoryAssemblyRet.PurchaseDesc.GetValue();
                                }
                                //Get value of PurchaseCost
                                if (OR.ItemInventoryAssemblyRet.PurchaseCost != null)
                                {
                                        double PurchaseCost14239 = (double)OR.ItemInventoryAssemblyRet.PurchaseCost.GetValue();
                                }
                                if (OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.ListID != null)
                                        {
                                                string ListID14240 = (string)OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.FullName != null)
                                        {
                                                string FullName14241 = (string)OR.ItemInventoryAssemblyRet.PurchaseTaxCodeRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemInventoryAssemblyRet.COGSAccountRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryAssemblyRet.COGSAccountRef.ListID != null)
                                        {
                                                string ListID14242 = (string)OR.ItemInventoryAssemblyRet.COGSAccountRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryAssemblyRet.COGSAccountRef.FullName != null)
                                        {
                                                string FullName14243 = (string)OR.ItemInventoryAssemblyRet.COGSAccountRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemInventoryAssemblyRet.PrefVendorRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryAssemblyRet.PrefVendorRef.ListID != null)
                                        {
                                                string ListID14244 = (string)OR.ItemInventoryAssemblyRet.PrefVendorRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryAssemblyRet.PrefVendorRef.FullName != null)
                                        {
                                                string FullName14245 = (string)OR.ItemInventoryAssemblyRet.PrefVendorRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemInventoryAssemblyRet.AssetAccountRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemInventoryAssemblyRet.AssetAccountRef.ListID != null)
                                        {
                                                string ListID14246 = (string)OR.ItemInventoryAssemblyRet.AssetAccountRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemInventoryAssemblyRet.AssetAccountRef.FullName != null)
                                        {
                                                string FullName14247 = (string)OR.ItemInventoryAssemblyRet.AssetAccountRef.FullName.GetValue();
                                        }
                                }
                                //Get value of BuildPoint
                                if (OR.ItemInventoryAssemblyRet.BuildPoint != null)
                                {
                                        int BuildPoint14248 = (int)OR.ItemInventoryAssemblyRet.BuildPoint.GetValue();
                                }
                                //Get value of Max
                                if (OR.ItemInventoryAssemblyRet.Max != null)
                                {
                                        int Max14249 = (int)OR.ItemInventoryAssemblyRet.Max.GetValue();
                                }
                                //Get value of QuantityOnHand
                                if (OR.ItemInventoryAssemblyRet.QuantityOnHand != null)
                                {
                                        int QuantityOnHand14250 = (int)OR.ItemInventoryAssemblyRet.QuantityOnHand.GetValue();
                                }
                                //Get value of AverageCost
                                if (OR.ItemInventoryAssemblyRet.AverageCost != null)
                                {
                                        double AverageCost14251 = (double)OR.ItemInventoryAssemblyRet.AverageCost.GetValue();
                                }
                                //Get value of QuantityOnOrder
                                if (OR.ItemInventoryAssemblyRet.QuantityOnOrder != null)
                                {
                                        int QuantityOnOrder14252 = (int)OR.ItemInventoryAssemblyRet.QuantityOnOrder.GetValue();
                                }
                                //Get value of QuantityOnSalesOrder
                                if (OR.ItemInventoryAssemblyRet.QuantityOnSalesOrder != null)
                                {
                                        int QuantityOnSalesOrder14253 = (int)OR.ItemInventoryAssemblyRet.QuantityOnSalesOrder.GetValue();
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemInventoryAssemblyRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14254 = (string)OR.ItemInventoryAssemblyRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList != null)
                                {
                                        for (int i14255 = 0; i14255 < OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList.Count; i14255++)
                                        {
                                                IItemInventoryAssemblyLine ItemInventoryAssemblyLine = OR.ItemInventoryAssemblyRet.ItemInventoryAssemblyLineList.GetAt(i14255);
                                                //Get value of ListID
                                                if (ItemInventoryAssemblyLine.ItemInventoryRef.ListID != null)
                                                {
                                                        string ListID14256 = (string)ItemInventoryAssemblyLine.ItemInventoryRef.ListID.GetValue();
                                                }
                                                //Get value of FullName
                                                if (ItemInventoryAssemblyLine.ItemInventoryRef.FullName != null)
                                                {
                                                        string FullName14257 = (string)ItemInventoryAssemblyLine.ItemInventoryRef.FullName.GetValue();
                                                }
                                                //Get value of Quantity
                                                if (ItemInventoryAssemblyLine.Quantity != null)
                                                {
                                                        int Quantity14258 = (int)ItemInventoryAssemblyLine.Quantity.GetValue();
                                                }
                                        }
                                }
                                if (OR.ItemInventoryAssemblyRet.DataExtRetList != null)
                                {
                                        for (int i14259 = 0; i14259 < OR.ItemInventoryAssemblyRet.DataExtRetList.Count; i14259++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemInventoryAssemblyRet.DataExtRetList.GetAt(i14259);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14260 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14261 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14262 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14263 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemFixedAssetRet != null)
                        {
                                //Get value of ListID
                                string ListID14264 = (string)OR.ItemFixedAssetRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14265 = (DateTime)OR.ItemFixedAssetRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14266 = (DateTime)OR.ItemFixedAssetRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14267 = (string)OR.ItemFixedAssetRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14268 = (string)OR.ItemFixedAssetRet.Name.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemFixedAssetRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14269 = (string)OR.ItemFixedAssetRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemFixedAssetRet.IsActive != null)
                                {
                                        bool IsActive14270 = (bool)OR.ItemFixedAssetRet.IsActive.GetValue();
                                }
                                if (OR.ItemFixedAssetRet.ClassRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemFixedAssetRet.ClassRef.ListID != null)
                                        {
                                                string ListID14271 = (string)OR.ItemFixedAssetRet.ClassRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemFixedAssetRet.ClassRef.FullName != null)
                                        {
                                                string FullName14272 = (string)OR.ItemFixedAssetRet.ClassRef.FullName.GetValue();
                                        }
                                }
                                //Get value of AcquiredAs
                                ENAcquiredAs AcquiredAs14273 = (ENAcquiredAs)OR.ItemFixedAssetRet.AcquiredAs.GetValue();
                                //Get value of PurchaseDesc
                                string PurchaseDesc14274 = (string)OR.ItemFixedAssetRet.PurchaseDesc.GetValue();
                                //Get value of PurchaseDate
                                DateTime PurchaseDate14275 = (DateTime)OR.ItemFixedAssetRet.PurchaseDate.GetValue();
                                //Get value of PurchaseCost
                                if (OR.ItemFixedAssetRet.PurchaseCost != null)
                                {
                                        double PurchaseCost14276 = (double)OR.ItemFixedAssetRet.PurchaseCost.GetValue();
                                }
                                //Get value of VendorOrPayeeName
                                if (OR.ItemFixedAssetRet.VendorOrPayeeName != null)
                                {
                                        string VendorOrPayeeName14277 = (string)OR.ItemFixedAssetRet.VendorOrPayeeName.GetValue();
                                }
                                if (OR.ItemFixedAssetRet.AssetAccountRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemFixedAssetRet.AssetAccountRef.ListID != null)
                                        {
                                                string ListID14278 = (string)OR.ItemFixedAssetRet.AssetAccountRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemFixedAssetRet.AssetAccountRef.FullName != null)
                                        {
                                                string FullName14279 = (string)OR.ItemFixedAssetRet.AssetAccountRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemFixedAssetRet.FixedAssetSalesInfo != null)
                                {
                                        //Get value of SalesDesc
                                        string SalesDesc14280 = (string)OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesDesc.GetValue();
                                        //Get value of SalesDate
                                        DateTime SalesDate14281 = (DateTime)OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesDate.GetValue();
                                        //Get value of SalesPrice
                                        if (OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesPrice != null)
                                        {
                                                double SalesPrice14282 = (double)OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesPrice.GetValue();
                                        }
                                        //Get value of SalesExpense
                                        if (OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesExpense != null)
                                        {
                                                double SalesExpense14283 = (double)OR.ItemFixedAssetRet.FixedAssetSalesInfo.SalesExpense.GetValue();
                                        }
                                }
                                //Get value of AssetDesc
                                if (OR.ItemFixedAssetRet.AssetDesc != null)
                                {
                                        string AssetDesc14284 = (string)OR.ItemFixedAssetRet.AssetDesc.GetValue();
                                }
                                //Get value of Location
                                if (OR.ItemFixedAssetRet.Location != null)
                                {
                                        string Location14285 = (string)OR.ItemFixedAssetRet.Location.GetValue();
                                }
                                //Get value of PONumber
                                if (OR.ItemFixedAssetRet.PONumber != null)
                                {
                                        string PONumber14286 = (string)OR.ItemFixedAssetRet.PONumber.GetValue();
                                }
                                //Get value of SerialNumber
                                if (OR.ItemFixedAssetRet.SerialNumber != null)
                                {
                                        string SerialNumber14287 = (string)OR.ItemFixedAssetRet.SerialNumber.GetValue();
                                }
                                //Get value of WarrantyExpDate
                                if (OR.ItemFixedAssetRet.WarrantyExpDate != null)
                                {
                                        DateTime WarrantyExpDate14288 = (DateTime)OR.ItemFixedAssetRet.WarrantyExpDate.GetValue();
                                }
                                //Get value of Notes
                                if (OR.ItemFixedAssetRet.Notes != null)
                                {
                                        string Notes14289 = (string)OR.ItemFixedAssetRet.Notes.GetValue();
                                }
                                //Get value of AssetNumber
                                if (OR.ItemFixedAssetRet.AssetNumber != null)
                                {
                                        string AssetNumber14290 = (string)OR.ItemFixedAssetRet.AssetNumber.GetValue();
                                }
                                //Get value of CostBasis
                                if (OR.ItemFixedAssetRet.CostBasis != null)
                                {
                                        double CostBasis14291 = (double)OR.ItemFixedAssetRet.CostBasis.GetValue();
                                }
                                //Get value of YearEndAccumulatedDepreciation
                                if (OR.ItemFixedAssetRet.YearEndAccumulatedDepreciation != null)
                                {
                                        double YearEndAccumulatedDepreciation14292 = (double)OR.ItemFixedAssetRet.YearEndAccumulatedDepreciation.GetValue();
                                }
                                //Get value of YearEndBookValue
                                if (OR.ItemFixedAssetRet.YearEndBookValue != null)
                                {
                                        double YearEndBookValue14293 = (double)OR.ItemFixedAssetRet.YearEndBookValue.GetValue();
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemFixedAssetRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14294 = (string)OR.ItemFixedAssetRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemFixedAssetRet.DataExtRetList != null)
                                {
                                        for (int i14295 = 0; i14295 < OR.ItemFixedAssetRet.DataExtRetList.Count; i14295++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemFixedAssetRet.DataExtRetList.GetAt(i14295);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14296 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14297 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14298 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14299 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemSubtotalRet != null)
                        {
                                //Get value of ListID
                                string ListID14300 = (string)OR.ItemSubtotalRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14301 = (DateTime)OR.ItemSubtotalRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14302 = (DateTime)OR.ItemSubtotalRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14303 = (string)OR.ItemSubtotalRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14304 = (string)OR.ItemSubtotalRet.Name.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemSubtotalRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14305 = (string)OR.ItemSubtotalRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemSubtotalRet.IsActive != null)
                                {
                                        bool IsActive14306 = (bool)OR.ItemSubtotalRet.IsActive.GetValue();
                                }
                                //Get value of ItemDesc
                                if (OR.ItemSubtotalRet.ItemDesc != null)
                                {
                                        string ItemDesc14307 = (string)OR.ItemSubtotalRet.ItemDesc.GetValue();
                                }
                                //Get value of SpecialItemType
                                if (OR.ItemSubtotalRet.SpecialItemType != null)
                                {
                                        ENSpecialItemType SpecialItemType14308 = (ENSpecialItemType)OR.ItemSubtotalRet.SpecialItemType.GetValue();
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemSubtotalRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14309 = (string)OR.ItemSubtotalRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemSubtotalRet.DataExtRetList != null)
                                {
                                        for (int i14310 = 0; i14310 < OR.ItemSubtotalRet.DataExtRetList.Count; i14310++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemSubtotalRet.DataExtRetList.GetAt(i14310);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14311 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14312 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14313 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14314 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemDiscountRet != null)
                        {
                                //Get value of ListID
                                string ListID14315 = (string)OR.ItemDiscountRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14316 = (DateTime)OR.ItemDiscountRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14317 = (DateTime)OR.ItemDiscountRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14318 = (string)OR.ItemDiscountRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14319 = (string)OR.ItemDiscountRet.Name.GetValue();
                                //Get value of FullName
                                string FullName14320 = (string)OR.ItemDiscountRet.FullName.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemDiscountRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14321 = (string)OR.ItemDiscountRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemDiscountRet.IsActive != null)
                                {
                                        bool IsActive14322 = (bool)OR.ItemDiscountRet.IsActive.GetValue();
                                }
                                if (OR.ItemDiscountRet.ClassRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemDiscountRet.ClassRef.ListID != null)
                                        {
                                                string ListID14323 = (string)OR.ItemDiscountRet.ClassRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemDiscountRet.ClassRef.FullName != null)
                                        {
                                                string FullName14324 = (string)OR.ItemDiscountRet.ClassRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemDiscountRet.ParentRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemDiscountRet.ParentRef.ListID != null)
                                        {
                                                string ListID14325 = (string)OR.ItemDiscountRet.ParentRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemDiscountRet.ParentRef.FullName != null)
                                        {
                                                string FullName14326 = (string)OR.ItemDiscountRet.ParentRef.FullName.GetValue();
                                        }
                                }
                                //Get value of Sublevel
                                int Sublevel14327 = (int)OR.ItemDiscountRet.Sublevel.GetValue();
                                //Get value of ItemDesc
                                if (OR.ItemDiscountRet.ItemDesc != null)
                                {
                                        string ItemDesc14328 = (string)OR.ItemDiscountRet.ItemDesc.GetValue();
                                }
                                if (OR.ItemDiscountRet.SalesTaxCodeRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemDiscountRet.SalesTaxCodeRef.ListID != null)
                                        {
                                                string ListID14329 = (string)OR.ItemDiscountRet.SalesTaxCodeRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemDiscountRet.SalesTaxCodeRef.FullName != null)
                                        {
                                                string FullName14330 = (string)OR.ItemDiscountRet.SalesTaxCodeRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemDiscountRet.ORDiscountRate != null)
                                {
                                        if (OR.ItemDiscountRet.ORDiscountRate.DiscountRate != null)
                                        {
                                                //Get value of DiscountRate
                                                if (OR.ItemDiscountRet.ORDiscountRate.DiscountRate != null)
                                                {
                                                        double DiscountRate14332 = (double)OR.ItemDiscountRet.ORDiscountRate.DiscountRate.GetValue();
                                                }
                                        }
                                        if (OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent != null)
                                        {
                                                //Get value of DiscountRatePercent
                                                if (OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent != null)
                                                {
                                                        double DiscountRatePercent14333 = (double)OR.ItemDiscountRet.ORDiscountRate.DiscountRatePercent.GetValue();
                                                }
                                        }
                                }
                                if (OR.ItemDiscountRet.AccountRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemDiscountRet.AccountRef.ListID != null)
                                        {
                                                string ListID14334 = (string)OR.ItemDiscountRet.AccountRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemDiscountRet.AccountRef.FullName != null)
                                        {
                                                string FullName14335 = (string)OR.ItemDiscountRet.AccountRef.FullName.GetValue();
                                        }
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemDiscountRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14336 = (string)OR.ItemDiscountRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemDiscountRet.DataExtRetList != null)
                                {
                                        for (int i14337 = 0; i14337 < OR.ItemDiscountRet.DataExtRetList.Count; i14337++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemDiscountRet.DataExtRetList.GetAt(i14337);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14338 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14339 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14340 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14341 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemPaymentRet != null)
                        {
                                //Get value of ListID
                                string ListID14342 = (string)OR.ItemPaymentRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14343 = (DateTime)OR.ItemPaymentRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14344 = (DateTime)OR.ItemPaymentRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14345 = (string)OR.ItemPaymentRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14346 = (string)OR.ItemPaymentRet.Name.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemPaymentRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14347 = (string)OR.ItemPaymentRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemPaymentRet.IsActive != null)
                                {
                                        bool IsActive14348 = (bool)OR.ItemPaymentRet.IsActive.GetValue();
                                }
                                if (OR.ItemPaymentRet.ClassRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemPaymentRet.ClassRef.ListID != null)
                                        {
                                                string ListID14349 = (string)OR.ItemPaymentRet.ClassRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemPaymentRet.ClassRef.FullName != null)
                                        {
                                                string FullName14350 = (string)OR.ItemPaymentRet.ClassRef.FullName.GetValue();
                                        }
                                }
                                //Get value of ItemDesc
                                if (OR.ItemPaymentRet.ItemDesc != null)
                                {
                                        string ItemDesc14351 = (string)OR.ItemPaymentRet.ItemDesc.GetValue();
                                }
                                if (OR.ItemPaymentRet.DepositToAccountRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemPaymentRet.DepositToAccountRef.ListID != null)
                                        {
                                                string ListID14352 = (string)OR.ItemPaymentRet.DepositToAccountRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemPaymentRet.DepositToAccountRef.FullName != null)
                                        {
                                                string FullName14353 = (string)OR.ItemPaymentRet.DepositToAccountRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemPaymentRet.PaymentMethodRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemPaymentRet.PaymentMethodRef.ListID != null)
                                        {
                                                string ListID14354 = (string)OR.ItemPaymentRet.PaymentMethodRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemPaymentRet.PaymentMethodRef.FullName != null)
                                        {
                                                string FullName14355 = (string)OR.ItemPaymentRet.PaymentMethodRef.FullName.GetValue();
                                        }
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemPaymentRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14356 = (string)OR.ItemPaymentRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemPaymentRet.DataExtRetList != null)
                                {
                                        for (int i14357 = 0; i14357 < OR.ItemPaymentRet.DataExtRetList.Count; i14357++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemPaymentRet.DataExtRetList.GetAt(i14357);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14358 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14359 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14360 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14361 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemSalesTaxRet != null)
                        {
                                //Get value of ListID
                                string ListID14362 = (string)OR.ItemSalesTaxRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14363 = (DateTime)OR.ItemSalesTaxRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14364 = (DateTime)OR.ItemSalesTaxRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14365 = (string)OR.ItemSalesTaxRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14366 = (string)OR.ItemSalesTaxRet.Name.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemSalesTaxRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14367 = (string)OR.ItemSalesTaxRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemSalesTaxRet.IsActive != null)
                                {
                                        bool IsActive14368 = (bool)OR.ItemSalesTaxRet.IsActive.GetValue();
                                }
                                if (OR.ItemSalesTaxRet.ClassRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemSalesTaxRet.ClassRef.ListID != null)
                                        {
                                                string ListID14369 = (string)OR.ItemSalesTaxRet.ClassRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemSalesTaxRet.ClassRef.FullName != null)
                                        {
                                                string FullName14370 = (string)OR.ItemSalesTaxRet.ClassRef.FullName.GetValue();
                                        }
                                }
                                //Get value of ItemDesc
                                if (OR.ItemSalesTaxRet.ItemDesc != null)
                                {
                                        string ItemDesc14371 = (string)OR.ItemSalesTaxRet.ItemDesc.GetValue();
                                }
                                //Get value of TaxRate
                                if (OR.ItemSalesTaxRet.TaxRate != null)
                                {
                                        double TaxRate14372 = (double)OR.ItemSalesTaxRet.TaxRate.GetValue();
                                }
                                if (OR.ItemSalesTaxRet.TaxVendorRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemSalesTaxRet.TaxVendorRef.ListID != null)
                                        {
                                                string ListID14373 = (string)OR.ItemSalesTaxRet.TaxVendorRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemSalesTaxRet.TaxVendorRef.FullName != null)
                                        {
                                                string FullName14374 = (string)OR.ItemSalesTaxRet.TaxVendorRef.FullName.GetValue();
                                        }
                                }
                                if (OR.ItemSalesTaxRet.SalesTaxReturnLineRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemSalesTaxRet.SalesTaxReturnLineRef.ListID != null)
                                        {
                                                string ListID14375 = (string)OR.ItemSalesTaxRet.SalesTaxReturnLineRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemSalesTaxRet.SalesTaxReturnLineRef.FullName != null)
                                        {
                                                string FullName14376 = (string)OR.ItemSalesTaxRet.SalesTaxReturnLineRef.FullName.GetValue();
                                        }
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemSalesTaxRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14377 = (string)OR.ItemSalesTaxRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemSalesTaxRet.DataExtRetList != null)
                                {
                                        for (int i14378 = 0; i14378 < OR.ItemSalesTaxRet.DataExtRetList.Count; i14378++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemSalesTaxRet.DataExtRetList.GetAt(i14378);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14379 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14380 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14381 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14382 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemSalesTaxGroupRet != null)
                        {
                                //Get value of ListID
                                string ListID14383 = (string)OR.ItemSalesTaxGroupRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14384 = (DateTime)OR.ItemSalesTaxGroupRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14385 = (DateTime)OR.ItemSalesTaxGroupRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14386 = (string)OR.ItemSalesTaxGroupRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14387 = (string)OR.ItemSalesTaxGroupRet.Name.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemSalesTaxGroupRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14388 = (string)OR.ItemSalesTaxGroupRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemSalesTaxGroupRet.IsActive != null)
                                {
                                        bool IsActive14389 = (bool)OR.ItemSalesTaxGroupRet.IsActive.GetValue();
                                }
                                //Get value of ItemDesc
                                if (OR.ItemSalesTaxGroupRet.ItemDesc != null)
                                {
                                        string ItemDesc14390 = (string)OR.ItemSalesTaxGroupRet.ItemDesc.GetValue();
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemSalesTaxGroupRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14391 = (string)OR.ItemSalesTaxGroupRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList != null)
                                {
                                        for (int i14392 = 0; i14392 < OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList.Count; i14392++)
                                        {
                                                IQBBaseRef QBBaseRef = OR.ItemSalesTaxGroupRet.ItemSalesTaxRefList.GetAt(i14392);
                                                //Get value of ListID
                                                if (QBBaseRef.ListID != null)
                                                {
                                                        string ListID14393 = (string)QBBaseRef.ListID.GetValue();
                                                }
                                                //Get value of FullName
                                                if (QBBaseRef.FullName != null)
                                                {
                                                        string FullName14394 = (string)QBBaseRef.FullName.GetValue();
                                                }
                                        }
                                }
                                if (OR.ItemSalesTaxGroupRet.DataExtRetList != null)
                                {
                                        for (int i14395 = 0; i14395 < OR.ItemSalesTaxGroupRet.DataExtRetList.Count; i14395++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemSalesTaxGroupRet.DataExtRetList.GetAt(i14395);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14396 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14397 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14398 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14399 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                        if (OR.ItemGroupRet != null)
                        {
                                //Get value of ListID
                                string ListID14400 = (string)OR.ItemGroupRet.ListID.GetValue();
                                //Get value of TimeCreated
                                DateTime TimeCreated14401 = (DateTime)OR.ItemGroupRet.TimeCreated.GetValue();
                                //Get value of TimeModified
                                DateTime TimeModified14402 = (DateTime)OR.ItemGroupRet.TimeModified.GetValue();
                                //Get value of EditSequence
                                string EditSequence14403 = (string)OR.ItemGroupRet.EditSequence.GetValue();
                                //Get value of Name
                                string Name14404 = (string)OR.ItemGroupRet.Name.GetValue();
                                //Get value of BarCodeValue
                                if (OR.ItemGroupRet.BarCodeValue != null)
                                {
                                        string BarCodeValue14405 = (string)OR.ItemGroupRet.BarCodeValue.GetValue();
                                }
                                //Get value of IsActive
                                if (OR.ItemGroupRet.IsActive != null)
                                {
                                        bool IsActive14406 = (bool)OR.ItemGroupRet.IsActive.GetValue();
                                }
                                //Get value of ItemDesc
                                if (OR.ItemGroupRet.ItemDesc != null)
                                {
                                        string ItemDesc14407 = (string)OR.ItemGroupRet.ItemDesc.GetValue();
                                }
                                if (OR.ItemGroupRet.UnitOfMeasureSetRef != null)
                                {
                                        //Get value of ListID
                                        if (OR.ItemGroupRet.UnitOfMeasureSetRef.ListID != null)
                                        {
                                                string ListID14408 = (string)OR.ItemGroupRet.UnitOfMeasureSetRef.ListID.GetValue();
                                        }
                                        //Get value of FullName
                                        if (OR.ItemGroupRet.UnitOfMeasureSetRef.FullName != null)
                                        {
                                                string FullName14409 = (string)OR.ItemGroupRet.UnitOfMeasureSetRef.FullName.GetValue();
                                        }
                                }
                                //Get value of IsPrintItemsInGroup
                                if (OR.ItemGroupRet.IsPrintItemsInGroup != null)
                                {
                                        bool IsPrintItemsInGroup14410 = (bool)OR.ItemGroupRet.IsPrintItemsInGroup.GetValue();
                                }
                                //Get value of SpecialItemType
                                if (OR.ItemGroupRet.SpecialItemType != null)
                                {
                                        ENSpecialItemType SpecialItemType14411 = (ENSpecialItemType)OR.ItemGroupRet.SpecialItemType.GetValue();
                                }
                                //Get value of ExternalGUID
                                if (OR.ItemGroupRet.ExternalGUID != null)
                                {
                                        string ExternalGUID14412 = (string)OR.ItemGroupRet.ExternalGUID.GetValue();
                                }
                                if (OR.ItemGroupRet.ItemGroupLineList != null)
                                {
                                        for (int i14413 = 0; i14413 < OR.ItemGroupRet.ItemGroupLineList.Count; i14413++)
                                        {
                                                IItemGroupLine ItemGroupLine = OR.ItemGroupRet.ItemGroupLineList.GetAt(i14413);
                                                if (ItemGroupLine.ItemRef != null)
                                                {
                                                        //Get value of ListID
                                                        if (ItemGroupLine.ItemRef.ListID != null)
                                                        {
                                                                string ListID14414 = (string)ItemGroupLine.ItemRef.ListID.GetValue();
                                                        }
                                                        //Get value of FullName
                                                        if (ItemGroupLine.ItemRef.FullName != null)
                                                        {
                                                                string FullName14415 = (string)ItemGroupLine.ItemRef.FullName.GetValue();
                                                        }
                                                }
                                                //Get value of Quantity
                                                if (ItemGroupLine.Quantity != null)
                                                {
                                                        int Quantity14416 = (int)ItemGroupLine.Quantity.GetValue();
                                                }
                                                //Get value of UnitOfMeasure
                                                if (ItemGroupLine.UnitOfMeasure != null)
                                                {
                                                        string UnitOfMeasure14417 = (string)ItemGroupLine.UnitOfMeasure.GetValue();
                                                }
                                        }
                                }
                                if (OR.ItemGroupRet.DataExtRetList != null)
                                {
                                        for (int i14418 = 0; i14418 < OR.ItemGroupRet.DataExtRetList.Count; i14418++)
                                        {
                                                IDataExtRet DataExtRet = OR.ItemGroupRet.DataExtRetList.GetAt(i14418);
                                                //Get value of OwnerID
                                                if (DataExtRet.OwnerID != null)
                                                {
                                                        string OwnerID14419 = (string)DataExtRet.OwnerID.GetValue();
                                                }
                                                //Get value of DataExtName
                                                string DataExtName14420 = (string)DataExtRet.DataExtName.GetValue();
                                                //Get value of DataExtType
                                                ENDataExtType DataExtType14421 = (ENDataExtType)DataExtRet.DataExtType.GetValue();
                                                //Get value of DataExtValue
                                                string DataExtValue14422 = (string)DataExtRet.DataExtValue.GetValue();
                                        }
                                }
                        }
                }




        }
}