Assembly Manager
Posted: Wed Apr 12, 2006 2:56 pm
These are some ideas that we would find useful for working with Assembly Manager:
When the Assembly is built, component stock is deducted and the Finished stock is added to the stock table. Records reflecting the transaction are recorded in the Audit_1 table. Would it be feasible to also create a "Customer" Invoice Transaction and a matching "Supplier" Invoice Transaction (using the existing tables that handle these transactions for real customers and suppliers)? I know that you can already have "Internal" Customer and Supplier accounts.
This would give a better picture of stock usage for forecasting.
Also, when an Assembly Transaction is copied from a Standard Template, the Work Notes do not appear to copy. We used these Work Notes on the Template to describe some basic steps for each assembly. Is this by design, or is it something that has changed recently? I noticed the problem in April 2005.
Is there an Installation Workshop setting that defines the number of digits to use for a Stock ID? Currently we have 10 Digits in our Stock table, but only 7 digits in every other table that also uses this field. Is this a glitch hanging over from a previous upgrade? It causes us some headaches, because any external database tools (Excel, Crystal etc) cannot use their auto-linking features on the Stock table. Advanced users can write a custom Sql join like so:
<code>
stock s inner join staux000 x on right(s.number,7) = x.auxkey
</code>
However, this makes a select few responsible for more mundane tasks that could be pushed out to others who could do the job using their "high-level" tools. Is there an easy way to fix the table without breaking Capital?
When the Assembly is built, component stock is deducted and the Finished stock is added to the stock table. Records reflecting the transaction are recorded in the Audit_1 table. Would it be feasible to also create a "Customer" Invoice Transaction and a matching "Supplier" Invoice Transaction (using the existing tables that handle these transactions for real customers and suppliers)? I know that you can already have "Internal" Customer and Supplier accounts.
This would give a better picture of stock usage for forecasting.
Also, when an Assembly Transaction is copied from a Standard Template, the Work Notes do not appear to copy. We used these Work Notes on the Template to describe some basic steps for each assembly. Is this by design, or is it something that has changed recently? I noticed the problem in April 2005.
Is there an Installation Workshop setting that defines the number of digits to use for a Stock ID? Currently we have 10 Digits in our Stock table, but only 7 digits in every other table that also uses this field. Is this a glitch hanging over from a previous upgrade? It causes us some headaches, because any external database tools (Excel, Crystal etc) cannot use their auto-linking features on the Stock table. Advanced users can write a custom Sql join like so:
<code>
stock s inner join staux000 x on right(s.number,7) = x.auxkey
</code>
However, this makes a select few responsible for more mundane tasks that could be pushed out to others who could do the job using their "high-level" tools. Is there an easy way to fix the table without breaking Capital?