QuickBooks Integrator 2016 Java Edition
QuickBooks Integrator 2016 Java Edition
Questions / Feedback?

Address Bean

Properties   Methods   Events   Configuration Settings   Errors  

An Address represents a geographical address.

Syntax

InQB.Address

Remarks

Address is a utility object which allows the user to easily edit and copy addresses. It is designed to interact with other beans, rather than QuickBooks.

To add an address to another bean, such as a Customer, first instantiate an Address bean, and set any or all of the properties: Line1, Line2, Line3, Line4, Line5, City, State, PostalCode, and Country. Then, the Aggregate property may be used to construct an aggregate of the entire address. This aggregate should be passed to the other bean.

Example

Address1.Line1 = "100 Main Street"
Address1.City = "Anytown"
Address1.State = "CA"
Customer1.BillingAddress = Address1.Aggregate
The same process may be used in reverse to get an address from another bean. For example, this pseudocode will get the address of a Vendor:


Vendor.Get("ACME Inc.")
Address.Aggregate = Vendor.Address

Property List


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

AggregateThe entire address.
CityThe city.
CountryThe country.
Line1The first line of the address.
Line2The second line of the address.
Line3The third line of the address.
Line4The fourth line of the address.
Line5The fifth line of the address.
NoteNote line of the address aggregate.
PostalCodeThe postal code.
StateThe state.

Method List


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

configSets or retrieves a configuration setting .

Event List


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

ErrorInformation about errors during data delivery.

Configuration Settings


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

NameThe name associated with the address.
StopOnErrorSpecifies how QuickBooks is to proceed if an error occurs in processing of the current request.
SSLAcceptServerCertThe SSL certificate being used by the Remote Connector.
SSLAcceptServerCertFileThe SSL certificate file being used by the Remote Connector.
EnforceMaxLengthIndicates whether to enforce max lengths for QB Fields.
AuthFlagsConnection Flags (use for QuickBooks Simple Start).
GetHighestVersionHighest QBXMLVersion supported by the installed instance of QuickBooks.
GetSupportedVersionsReturns a list of QBXMLVersions that are supported by QuickBooks.
GetRequestProcessorDLLVersionReturns the version of the QB Request Processor that is installed on your system.
IsReadOnlyThis causes the QuickBooks authorization dialog to display text informing the user that its access will be read-only.
UnattendedModePrefWhether connecting while QuickBooks is closed is required or optional for the user.
PersonalDataPrefWhether the connecting application will require access to personal data such as SSN or credit card information.
QBOpenCompanyFileThe file currently open in QuickBooks.
QBConnectionModeThe mode of connection to QuickBooks.
QBFileStatusThe status of the company file as it pertains to accepting connections.
WarningCodesA comma-separated list of QuickBooks warning codes that should not result in an exception.
GUIAvailableTells the component whether or not a message loop is available for processing events.
UseDaemonThreadsWhether threads created by the component are daemon threads.
UseInternalSecurityAPITells the component whether or not to use the system security libraries or an internal implementation.

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
QuickBooks Integrator 2016 Java Edition - Version 16.0 [Build 7353]