Multi company Item's

ivanvanity
Member Posts: 2
Hola, tenemos una empresa con NAV 5 y en el sistema se tienen 5 empresas, el problema que tenemos es que tenemos que tener en todas las empresas los productos (solo algunos campos), clientes y proveedores con la misma información. Y el proceso de hacerse manual ha impactado en muchos errores. Tienen alguna solución o alternativa para solucionar mi problema?? Gracias
No escribo muy bien el ingles pero el texto lo traduzco de Google:
Hello, we have a company with NAV 5 in the system have 5 Companies , The problem we have that is we have to have bathroom All Companies Products ( adj some fields only ), customers and suppliers with the same information. And the process of becoming the manual has impacted many mistakes. Any solution or alternative have to solve my problem ?? Thank you
No escribo muy bien el ingles pero el texto lo traduzco de Google:
Hello, we have a company with NAV 5 in the system have 5 Companies , The problem we have that is we have to have bathroom All Companies Products ( adj some fields only ), customers and suppliers with the same information. And the process of becoming the manual has impacted many mistakes. Any solution or alternative have to solve my problem ?? Thank you
0
Comments
-
Hello. Some solutions we've used, all of which have cost either in time or fees. I don't know if these tools are available in NAV 5; you may want to investigate upgrading. This process will also be MUCH simpler if you pick a single company to be the "master" and push updates out to the other 4 companies.
- use NAV's RapidStart tool kit to extract from one company and update the others
- RapidiOnline (rapidionline.com) ETL tools
- Scribe (scribesoft.com) ETL tools
- custom NAV webservices
Regards,
Liz0 -
Thanks,
And it can not do directly in SQL or some workflow NAV ?0 -
I'm not a NAV developer, but my understanding is that writing to NAV tables directly from SQL isn't best practice. the NAV table validations won't be triggered, so you could end up with corrupt or invalid data.
Liz0 -
Hi,
You can create some C/AL code to synchronize some fields between companies.
Please note that some fields can't (shouldn't) be synchronized. For instance the item "Inventory Posting Group" may have different configuration values and it's necessary to take extra care before synchronize this field.
I can assist you if you need help.
Regards,
parm0 -
Hi Ivan,
You can use this simple code on OnModify trigger of Item Table. Substitute Field1 to actual name of the field.
if Company.FINDSET then
REPEAT
ItemRec.CHANGECOMPANY(Company.Name);
IF ItemRec.GET("No.") THEN BEGIN
ItemRec.field1 := Field1;
ItemRec.MODIFY;
END;
UNTIL Company.NEXT=0;
Suppose it will helpNav Upgrades and DEV outsourcing
Reports transformation to RDLC
List -1h , Complex List -3h, Document -4h (dev hours)
navisionupgrade.com0 -
Otra posibilidad es cambiar la propiedad de la tabla: " DataPerCompany " = No.
de esta manera la tabla es única para todas las empresas de la base.
Y la modificación se puede hacer en cualquier Company.
Pruebe a base de pruebas para verificar .0 -
Otra posibilidad es cambiar la propiedad de la tabla: " DataPerCompany " = No.
de esta manera la tabla es única para todas las empresas de la base.
Y la modificación se puede hacer en cualquier Company.
Pruebe a base de pruebas para verificar .
I won't recommend this solution as some fields of the Item table shouldn't be shared, specially the "Cost is Adjusted" field which is updated once the Inventory Adjustment is finished.
If the field is set to true in Company A, the inventory adjustment won't run in Company B.0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions