I have had good luck with the driver. I was able to use the write function to reorganize our preparer #s to make a little more sense. And, we have used the driver to create a couple of interactive spreadsheets to track return status for all the modules in one location.
There are three things that would really help:
1. A table that gives a description for the data contained in each field.
2. Improve the access speed. The access time is signficantly longer than when I was using the Microsoft Jet drivers last year.
3. Add a few more "custom fields". I'd like one I could use to put clients into groups and another one to help categorize clients for organizers.
Best Answer Click here
"1. A table that gives a description for the data contained in each field."
You may be interested in the files, where you have Lacerte installed:
"C:\Lacerte\18tax\MOD\usdbdef.?##"
(There is a file in each module's directory; use three-letter MODule [ind, par, sco, gif, whatever] in that path, and the letter in the extension varies by module [p, s, n, whatever]; last two digits of the extension are the tax year being done.)
I use these column headers (column letter, text):
COL USAGE
a FILE
b Field
c Long Name
d Short Title
e Field Type
f Field Size
p Toggle Type
q Info Type
Bring that document into your spreadsheet, add the row of column headers, and you will find much made clear to you.
Robert
Here's how you can access the field definitions:
There's some information in the GL Bridge SDK as well (starting on p26 for the toggle codes, and p31 for the field descriptions). For example if you look at the usdbdef.i18 file at line 488 it looks like:
1 87 Dependent Status Dep. Status N 1 ... 58
This is C1_87 and matches what you see on p32 of the GL Bridge SDK indicating a toggle of 58. P31 of the GL Bridge SDK shows the toggle 58 means this:
58 1=Not Applicable 2=Taxpayer Could Be a Dependent 3=Taxpayer Claimed as a Dependent
It's important to make a copy of the usdbdef file just in case you accidentally change something and overwrite it - the program uses this file internally.
"1. A table that gives a description for the data contained in each field."
You may be interested in the files, where you have Lacerte installed:
"C:\Lacerte\18tax\MOD\usdbdef.?##"
(There is a file in each module's directory; use three-letter MODule [ind, par, sco, gif, whatever] in that path, and the letter in the extension varies by module [p, s, n, whatever]; last two digits of the extension are the tax year being done.)
I use these column headers (column letter, text):
COL USAGE
a FILE
b Field
c Long Name
d Short Title
e Field Type
f Field Size
p Toggle Type
q Info Type
Bring that document into your spreadsheet, add the row of column headers, and you will find much made clear to you.
Robert
Here's how you can access the field definitions:
There's some information in the GL Bridge SDK as well (starting on p26 for the toggle codes, and p31 for the field descriptions). For example if you look at the usdbdef.i18 file at line 488 it looks like:
1 87 Dependent Status Dep. Status N 1 ... 58
This is C1_87 and matches what you see on p32 of the GL Bridge SDK indicating a toggle of 58. P31 of the GL Bridge SDK shows the toggle 58 means this:
58 1=Not Applicable 2=Taxpayer Could Be a Dependent 3=Taxpayer Claimed as a Dependent
It's important to make a copy of the usdbdef file just in case you accidentally change something and overwrite it - the program uses this file internally.
Thank you! This is very helpful.
Doug.
Thank you!! This is very helpful.