Journal Entry Import Setup


Data can be imported from outside systems into SGA as a journal entry batch. This can be used for payroll, sales systems, etc. Journal entries, A/P invoices, etc. can also be imported from a spreadsheet. The import format must be in place before you can import data into SGA. These are maintained under menu Settings > General Ledger > Journal Entry Imports. The following are the settings for various types of import formats.

Name: The name that will be displayed as the name of the import.

General: See import connections for help with setting up a connection to a file to import.

Source: The JE source when importing to journal entry.

Account: You can either import the account# as just one column or multiple columns. The account# column(s) in Excel must be formatted as Text in order to import correctly. The formatting must be done before entry is made or Excel will interpret the account# as numeric instead of text, which will not import correctly into SGA.

Relative Account: Defines what account number to relate to from the system being imported from. If the account number structure being imported from doesn’t relate to the SGA structure then you will need to use an Alias or a cross reference. When importing or validating, if any account is not found or is inactive, a log will be displayed with the accounts.

Chars Before: Specify any characters to add before the column.

Column: The column for the account or account division. If the account# is in just one column, then choose that column for each division and specify the start and length for each division.

Start/Length: You can substring the column if you wish; if not then leave this blank.

Pad Char: Fills the text with this character for the length specified.

Justify: Used for the pad character only.

Chars After: Specify any characters to add after the column.

__________________________________________________________________________________________________________________

Columns

Amount format: Determines how amounts are imported.

One column per row: Amounts are contained within a single column. Credits are determined as negatives numbers. The negative symbol must be on the left side of the amount.

One column per row: another column dictates sign: Amounts are contained within a single column. However, another column determines if it is a debit or credit. Debits are identified by a “D” or “Debit”. Credits are identified by a “C” or “Credit”.

Separate columns for debits and credits: Amounts consist of two separate columns; one for debits and the other for credits.

Specify date: Check this if you have a column with a date so that it uses that date. Otherwise, it will use today’s date.

Specify period: Check this if you have a column with a period so that it uses that period. Otherwise, it will use the current period, but you will have the option to change it when posting.

Comments: Specify the comments columns if you have one that you’d like to use. If not, you can specify a comment for all line items in the “comments before”.

__________________________________________________________________________________________________________________

Update

Update rows imported: If you need to update rows that are imported in the original file check this box. You would do this if you want to make sure you don’t import the same records twice. However, this can only be done if the file allows for it because it needs a posted status column or something to that effect.

For example, say you have a column called Posted that has a value of 0 or 1. In your SELECT command text you would include the following:

SELECT * FROM Transactions
 WHERE Posted = 0

Then in the UPDATE command text you would include the following:

UPDATE Transactions
 SET Posted = 1

Command text: The UPDATE command, which should include the SET clause. This should not include a WHERE clause because the WHERE clause from the SELECT command will be appended to it.

If importing entries with multiple lines per account and you wish to summarize your journal entry you can do so. Just key something like this in the command text:

SELECT Account, SUM(Amount), MIN(Comments) AS Comments, Date, Month
 FROM MySourceTable
 GROUP BY Account, Date, Month

Menu option to import is Daily > Journal Entry Batches > New/Import. Click the Import button. Click the Edit button to select the file to import. You may click the Validate button before doing the actual import. Upon clicking the Import button, the data will be imported onto the screen for review. The batch can then be review and edited if necessary before posting.