1

(12 replies, posted in Accounts Receivable)

Ahhhh.....relief!  I assumed this option meant that tax needed to be included, but it really means that it's assuming that tax is already included in the price.

I adjusted that option, and re-created the delivery/sales order and it worked just like I need it to.

Thank you very much for your help!

2

(12 replies, posted in Accounts Receivable)

Itronics - thanks for your help.  It's seems that what you are explaining is exactly what I've done.

I am in the US, where each state has it's own tax rate.  So I set up 3 Tax Groups, call them Group A, Group B, and Group C (one for each state our customers are in), and one for Tax Exempt customers.  Each of the 3 taxed groups only has one rate....the rate that applies to their state.  So Group A is set up for Tax A at 6%, Group B is set up for Tax B at 6.5%, and Group C is set up for Tax C at 7%.

The customer in question is not tax exempt, therefore I selected the appropriate tax group (Group C) in the customer branches setup.  Their state is at a 7% tax rate.

This is a "Direct Delivery" entry, but it seems to work the same if I try a Sales Order entry.  The order has only one item at $263, and a quantity of 4.  So the line item total shows $1,052.00, the sub-total shows $1,052.00, Shipping is $0.  All good so far.

Then the tax line shows the tax group and $68.882 for the tax.....which is NOT 1052 x .07.  It should be $73.64.  The Amount Total line still shows $1,052....which I understand (from reading the many posts on this topic) could be showing the total "value" of the goods in the order....which would exclude tax.

The real problem is that once delivered and invoiced, the invoice shows $1,052 on the TOTAL INVOICE line...so nowhere does the customer know the actual total to pay.....  which should be 1052 + 73.64 = $1,125.54

Thanks again for your help....believe me, I have tried figuring this out myself, but tax in this application is a fairly complex chain of included files and called methods on objects that are bounced around quite a bit in the code.

3

(12 replies, posted in Accounts Receivable)

I too am confused about how to set up the tax functionality.  We have some customers that are tax-exempt, and some that arent't.  The ones that are taxed can be taxed at different rates. 

So I:
set up 3 Tax Types - one for each rate
set up 4 Tax Groups - one exempt and once for each tax type
left the default Item Tax Type of Regular (non-exempt)
left the default Sales Types that include a Retail (tax included) and Tax Exempt
specified Retail for the taxed customer's Sales Type
specified the proper Tax Group for the customer branch

When a delivery note is created, it never shows tax in the total, and in the debtor_trans table, the ov_gst field is 0.  If I manually populate that field, the tax shows up.

What am I missing?

(thanks in advance)

joe wrote:

I guess you will have to split it up into different items. Or, as you say, an extension module.

/Joe

FYI....I wrote an extension module for this, which I called 'Pricing Bands'.  I had to modify the purchase order entry a bit to auto-pull the price based on the entered quantity (using AJAX).  If you are interested in this add-on, just let me know.

5

(1 replies, posted in Manufactoring)

Is there a way to push a sales order directly to a work order?  The company I'm implmenting this for is a startup and does not want to maintain finished-good inventory, but they may have several open orders at one time.  So ideally a sales order would be entered, then kicked over to production.  The production would then be linked to that sales order.

I haven't seen anything like that in FA, but didn't know if I was missing something.

The way software I've used works, you specify a transaction type in the message, and then the data definition for each type must be adhered to.  XML is probably the best fit for this, but it could be just a formatted text document.

Here are some ideas that this negotiating feature could import:

- Consumption: if there's an MES system on the production floor that control the building process, and you just want to tell FA that you've built qty X of part Y.  I have written this add-on, which fires a page periodically that summarizes the production for the day (from the MES tables), and adds a simple work order to FA for this amount.  I am mainly doing just straight inserts into FA tables.  The trickiest part of this was getting around the session and security that is part of the normal application.

- Sales orders: this is for EDI interaction.  I wrote an add-on application for FA that wakes up every 30 minutes, connects to any number of FTP servers, pulls in any 850 purchase order documents, parses them into sales orders, inserts a sales order for each PO received, creates an 855 PO acknowledgement document, and sends it back via FTP.  Again, doing straight table inserts, but would be nice if there was a native FA mechanism to handle this from 'inside' the software.  The app I wrote is in c#, which I can provide source for, if you're interested.

- Shipments: if you are shipping items with a handheld device, or some other application that handles pallet serialization, truck cubing, robotic loading, etc.

- Receipts: again, if you are using a handheld to receive incoming material via scanning.

- Adjustments: if you do inventory cycle counting using a handheld device, you could directly apply the reconciliation to FA inventory levels.

Just to be sure - I am not seeing a way to define standard bands of pricing for volume purchase discounts.  Is that true?

Meaning from the same supplier, if we buy 100 they are $x, but if we buy 5000, they are less per.

Is there any way to do that with FA, or does it have to be managed externally?  (or an add on module)

Thanks!

Hello, I am new to FA, but like what I see so far. 

Our company already has an MES system that it's customized to the product assembly process.  We keep an inventory of finished goods, so there may not always be a work order to tie production to. 

Is there any way to post a consumption transaction from another system, and have it perform all of the inventory transfers as if there was a work order?  Or, is there a way to create a blanket work order and associate production to it?

Other commercial ERP/MRP systems I've used have a 'watchdog' directory where you dump files in a certain format.  The software polls the directory at a specified interval, picks up the files, and processes the parts produced.  I don't think FA has anything like that, but I would also be willing to write an interface that calls FA functions directly.

Thanks in advance,
Steve