JournalEntry Control
Properties Methods Events Configuration Settings Errors
A JournalEntry represents a general journal entry made directly in the company's chart of accounts.
Syntax
JournalEntry
Remarks
A JournalEntry represents a general journal entry made directly in the company's chart of accounts.
A journal entry must include one or more JournalLines. To set credit or debit lines, first set the appropriate value of LineCount. Then for each line, set an Account (Name or Id) and an Amount. You may set Entity to associate a customer or vendor with the line, and Class and Memo may be set as well.
Before adding the journal entry to QuickBooks, the transaction must be in balance: The total amount of the credit lines must be equal to the total amount of the debit lines. If the transaction is not in balance, QuickBooks will return an error.
If desired, you may set a RefNumber and TransactionDate for the journal entry as well.
Required Fields (Add):JournalLines
Supported Methods:Add, Get (Id), Cancel, Delete
Example
JournalEntry1.RefNumber = "123" JournalEntry1.TransactionDate = "2013-12-16" JournalEntry1.JournalLineCount = 2 JournalEntry1.JournalLineType(0) = jltCredit JournalEntry1.JournalLineAccountName(0) = "Trucks:Depreciation" '* JournalEntry1.JournalLineEntityName(0) = "Annual Depreciation" '* JournalEntry1.JournalLineAmount(0) = "3000.00" JournalEntry1.JournalLineType(1) = jltDebit JournalEntry1.JournalLineAccountName(1) = "Depreciation Expense" '* JournalEntry1.JournalLineAmount(1) = "3000.00" JournalEntry1.Add() '*: Item must already exist in QuickBooks.
The control supports a variety of other operations as well. The control's Get, Cancel, and Delete methods may be used to retrieve, cancel, and delete journal entries, respectively. The ObjSearch Control may be used to search for JournalEntry records in the QuickBooks database.
Property List
The following is the full list of the properties of the control with short descriptions. Click on the links for further details.
Adjustment | Indicates whether this Journal Entry is an adjustment or not. |
JournalLineCount | The number of records in the JournalLine arrays. |
JournalLineAccountId | The account for this line. |
JournalLineAccountName | The account for this line. |
JournalLineAmount | Amount of the debit or credit. |
JournalLineBillableStatus | The billing status of this journal line. |
JournalLineClassId | Class of the credit line. |
JournalLineClassName | Class of the credit line. |
JournalLineEntityId | An entity Id for this credit or debit line. |
JournalLineEntityName | An entity name for this credit or debit line. |
JournalLineLineId | Identification number of the Journal line, used for Updates. |
JournalLineType | This property specifies whether the line is a Credit or Debit line. |
JournalLineMemo | Memo for this line. |
JournalLineTaxItemId | 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. |
JournalLineTaxItemName | 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. |
QBConnectionString | An aggregate consisting of various QuickBooks connection properties. |
QBRequestAggregate | The request aggregate. |
QBRequestId | The Id of the next message to be sent to QuickBooks. |
QBRequestMode | Defines whether the request is made online or stored offline. |
QBResponseAggregate | The last QBXML response aggregate received from QuickBooks. |
QBXMLVersion | The version of QBXML used in the outgoing message. |
RefId | An alphanumerical identifier generated by the server. |
RefNumber | Reference number for the transaction. |
TransactionDate | Date of transaction. |
Method List
The following is the full list of the methods of the control with short descriptions. Click on the links for further details.
Add | Adds the record into QuickBooks. |
Cancel | Cancels (voids) the transaction. |
CheckRequestStatus | Checks whether or not the specified request was processed by QuickBooks. |
CloseQBConnection | Closes a persistent connection to QuickBooks. |
Config | Sets or retrieves a configuration setting . |
Delete | Deletes the record from QuickBooks. |
Get | Gets a single record from QuickBooks. |
GetCustomField | Gets a custom field value from QuickBooks. |
ImportQBXML | Imports a QBXML response aggregate. |
OpenQBConnection | Opens a persistent connection to QuickBooks. |
Reset | Resets all properties to their defaults. |
SetCustomField | Sets a custom field value within QuickBooks. |
Update | Updates the sales order in QuickBooks. |
Event List
The following is the full list of the events fired by the control with short descriptions. Click on the links for further details.
Error | Information about errors during data delivery. |
SSLServerAuthentication | Fired after the server presents its certificate to the client. |
SSLStatus | Shows the progress of the secure connection. |
Status | Shows the progress of the QuickBooks connection. |
Warning | Fired when a warning occurs. |
Configuration Settings
The following is a list of configuration settings for the control with short descriptions. Click on the links for further details.
SendRawXML | Sends specified XML to quickbooks without modification. |
AppendAfter | Appends an XML tag after the specified QBXML element. |
TimeCreated | The time the object was created. |
TimeModified | The time the object was created. |
EditSequence | An identifier for this copy of the object. |
StopOnError | Specifies how QuickBooks is to proceed if an error occurs in processing of the current request. |
SSLAcceptServerCert | The SSL certificate being used by the Remote Connector. |
SSLAcceptServerCertFile | The SSL certificate file being used by the Remote Connector. |
EnforceMaxLength | Indicates whether to enforce max lengths for QB Fields. |
AuthFlags | Connection Flags (use for QuickBooks Simple Start). |
GetHighestVersion | Highest QBXMLVersion supported by the installed instance of QuickBooks. |
GetSupportedVersions | Returns a list of QBXMLVersions that are supported by QuickBooks. |
GetRequestProcessorDLLVersion | Returns the version of the QB Request Processor that is installed on your system. |
IsReadOnly | This causes the QuickBooks authorization dialog to display text informing the user that its access will be read-only. |
UnattendedModePref | Whether connecting while QuickBooks is closed is required or optional for the user. |
PersonalDataPref | Whether the connecting application will require access to personal data such as SSN or credit card information. |
QBOpenCompanyFile | The file currently open in QuickBooks. |
QBConnectionMode | The mode of connection to QuickBooks. |
QBFileStatus | The status of the company file as it pertains to accepting connections. |
WarningCodes | A comma-separated list of QuickBooks warning codes that should not result in an exception. |
CodePage | The system code page used for Unicode to Multibyte translations. |