Link to home
Start Free TrialLog in
Avatar of zippy21
zippy21

asked on

EDI Form 810 Import Data from Access

I use EDI to do my invoicing.  However, I have an Access db that I keep invoice information in for future reference.  I exported the Access information to a .cvs file format.  Now, my question is how do I import it into the EDI system?  Do I have to use Xml tags between the field names?  Is there a certain format for the XML tags if you are using form 810?  If anyone has done this before I would really be interested in knowing what is involved in doing this.  I am using TrustedLink as my EDI system.  Any information would be healpful, since I have never done this before.
Avatar of payperpage
payperpage

I have done this with a number of EDI systems, but not specifically with form 810.  If you can get me a copy of the software, I might be able to help.
Avatar of zippy21

ASKER

I can't give you a copy, since you'd have to register it to use it, but all I need to know is what language I would need to use to write this, and what kind of format would it have to be in...basically how do I get started and how do I do this?  We have other forms that I would like to add to my EDI processing as well and would love to know how to go about doing this.  If you could suggest a book or tell me where you learned to convert files for use with EDI then that would be great!  
ASKER CERTIFIED SOLUTION
Avatar of payperpage
payperpage

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
One other small comment - EDI was always supposed to 'standardise' the process of sending invoices and other documents, and XML is just the latest standard in the EDI idea that goes back 20 years.  

OK, fair enough - a 'standard format' makes it easy for one company to send invoices to another company.  But what always seemed to happen with the companies I worked with was that as soon as a company used EDI with multiple trading-partners, each one used the standards in a slightly different way.  The same is true with XML - the DTD ties things down somewhat, but each company will tend to use the DTD in a subtly different way.  This becomes more of a problem if you are receiving messages in from your partners, rather than sending message out to them, but it pays in the long run to write your interface software in a very flexible way, so that it can cope with all the different ways your different trading partners make use of the standards.  
http://www.navy-nex.com/command/contractor_vendor/edi/transaction_set/4010-810.html gives some details of the structure of the 810 message, and a web search will probably find some other references for you.  

I would say that you should try to get hold of an example of an actual EDI file, so that you can relate this to the documented standard, and see how your data fits to the file.  

One other small wrinkle to beware of - although 810 is a 'standard', the standard changes over time, and comes in various 'versions'.  Make sure you know which version of the standard your trading partners are expecting, and build your interface software so that it can cope with multiple versions for different trading partners.

You would also want to build in test facilities - when you are trying out a new trading partner, or a new message, or a new version, you and your trading partner will want to work in 'test mode' at first to check that everything is OK before you go live.  You might find that the format of the test message is slightly different from the format of the live message, so make sure that your software can do this - for instance, when your partner specifies that they are going to start using a new version of the message standard, they may want to receive your invoices in the old version in 'live' mode, and copies of the same invoices in the next version up, in 'test' mode.
Avatar of zippy21

ASKER

Wow, there seems to be alot to this.  I will try what you said and see what I can do.  Hopefully, I can figure it out.  Thank-you for all the information you gave me, I know it will help me.