Figuring out how to import GL entries from 3rd party

Where can I find documentation about what an import file for a GL entry requires?  To figure out what data elements were affected, I did an entry and exported it to see all of the data.  There are so many fields beyond what the source system has (it has date, GL account, amount and not much else), how do I figure out what the developer needs to plug and what not?  And do we have to put in each field with blanks/zeros...

Thanks.

Parents
  • 0

    For a GL import you only need a couple of fields.

    You need a Header and a Detail record, the Detail will have at least 2 lines (presuming you want a balanced entry).

    You don't say what format and you don't say what fields YOU require... so I'll assume CSV and the minimum fields.

    First you need field names in the file:

    "RECTYPE","BATCHID","BTCHENTRY","SRCELEDGER","SRCETYPE","JRNLDESC","DATEENTRY"

    "RECTYPE","BATCHNBR","JOURNALID","TRANSNBR","ACCTID","SCURNAMT","TRANSDESC","TRANSREF"

    "RECTYPE","BATCHNBR","JOURNALID","TRANSNBR","OPTFIELD","VALUE"

    Then the Header record:

    1,0,1,"GL","JE","Entry 1",20130930

    The the Detail records:

    2,0,1,0,"1000",100.00,"Detail line 1","Ref 1"

    2,0,1,0,"1001",-100.00,"Detail line 2","Ref 2"

Reply
  • 0

    For a GL import you only need a couple of fields.

    You need a Header and a Detail record, the Detail will have at least 2 lines (presuming you want a balanced entry).

    You don't say what format and you don't say what fields YOU require... so I'll assume CSV and the minimum fields.

    First you need field names in the file:

    "RECTYPE","BATCHID","BTCHENTRY","SRCELEDGER","SRCETYPE","JRNLDESC","DATEENTRY"

    "RECTYPE","BATCHNBR","JOURNALID","TRANSNBR","ACCTID","SCURNAMT","TRANSDESC","TRANSREF"

    "RECTYPE","BATCHNBR","JOURNALID","TRANSNBR","OPTFIELD","VALUE"

    Then the Header record:

    1,0,1,"GL","JE","Entry 1",20130930

    The the Detail records:

    2,0,1,0,"1000",100.00,"Detail line 1","Ref 1"

    2,0,1,0,"1001",-100.00,"Detail line 2","Ref 2"

Children