Sage 100

 View Only
Expand all | Collapse all

4.40 SO Invoice Import - have to import the same l

  • 1.  4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 14:06
    4.40 SO Invoice Import - have to import the same lines twice because they contain both an item number and a restock fee (sometimes). After the 2nd import, the NONTAXABLE totals only contain what was imported a second time. Am I missing something, or do I have to do some fricking perform logic to get the totals to be correct? I don't recall it being this difficult in prior versions.


  • 2.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 14:09
    Is the nontaxable total an import field? It may need to be a cumulative amount in the import file.


  • 3.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 14:14
    Hell, no - not anymore. TaxableAmount and NonTaxableAmount are not available any more. Because Sage knows best how to figure those amounts...


  • 4.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 15:14
    When you say same lines are are you running a second import using the same source lines creating new lines on the invoice or are you using the line key and importing over the existing lines?


  • 5.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 16:34
    New lines on the invoice. There are 2 fields in the same line in the import file that translate into 2 separate lines in the actual invoice.


  • 6.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 16:36
    You could use a union query to seperate the items into their own lines and do one import.


  • 7.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 16:55
    Thats my thought too. I was going to ask what your source file was. I'd probably run it through a script and split the lines out.


  • 8.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 17:08
    Sounds like a bug in the existing perform logic so Dan's/Brett's suggestion should work around it.


  • 9.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 17:14
    The beauty of a union query is that there are no extra steps. It just works - kind of like a filter. V/I sees the data through the query which is interpreted with software built into Windows (MDAC) and no other software is required.


  • 10.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 17:16
    Tell me more, because you be talking jibberish right now... :-)


  • 11.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 17:24
    One can use MS Access or SQL to build a query file (""Select * From YourimportCSV where <record 1 criteria> Union All Select * from YourImportCSV where <record 2 criteria>"" Order by <invoice/line>) to which you direct V/I. V/I will see two records (an item and a restock fee) for every one. I recommend MS Access because you don't have to have it or anyother software installed. You can create the file off site.


  • 12.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 10-31-2011 17:58
    I think the social cast iPod app lost my last post. Oh well. Sweet solution Dan. I tend to fall back to my coding roots. I'd just use a script to open the file, write out the necessary extra lines and then use the script to run the import while I was at it.


  • 13.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 11-01-2011 06:08
    Dan - INteresting..... off to play around and see what damage I can do...


  • 14.  RE: 4.40 SO Invoice Import - have to import the same l

    Posted 11-01-2011 06:34
    Oh, the power of Access queries. VERY handy tools!!!