Master Data Import: Difference between revisions

From HelpWiki Highnix
Jump to navigation Jump to search
 
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
__FORCETOC__
__FORCETOC__
===<span id="Data Importation Procedure">'''Master Data Importation Procedure'''</span>===
===<span id="Data Importation Procedure">'''Master Data Importation Procedure'''</span>===
[[#Data Importation Procedure|Tag:#Data Importation Procedure]]
[[#Data Importation Procedure|Tag:#Data Importation Procedure]]


This page is for support team or administration.  The Master Data Importation covers the mass importation of:
This page is for support team or implementation professional of Highnix.  The Master Data Importation covers the mass importation of:


* Customer Master
* Customer Master
Line 11: Line 9:
* Product Item Master
* Product Item Master


As and when required, the following may be added with additional fees.  Depending on the type of customers, friendly customer normally we offer free. Demanding customers, the following requires additional 3 man-days.
As and when required, the following may be added with additional fees.  Depending on the type of customers, friendly customer normally we offer free. Demanding customers, the following requires additional man-days.
 
* Chart of Account, Chart Class, Chart Type and GL Accounts. (2 to 3 man-days)
* Initial Inventory (2 to 4 man-days)
* Product Selling Price (2 to 4 man-days)
 
----
 
===='''Preparation'''====
 
The following must be prepared:
 
* Empty the tables as necessary using the following mysql commands:
 
{| class="wikitable"
|+
|'''To empty'''
|'''MySql Commands'''
|-
|### Chart of Account
|TRUNCATE `0_chart_class`;
TRUNCATE `0_chart_master`;
 
TRUNCATE `0_chart_types`;
|-
|### Customers and Suppliers
|TRUNCATE `0_crm_contacts`;
TRUNCATE `0_crm_persons`;


* Chart of Account
TRUNCATE `0_cust_branch`;
* Initial Inventory
* Product Selling Price


TRUNCATE `0_debtors_master`;
TRUNCATE `0_suppliers`;
|-
|### Stocks
|TRUNCATE `0_item_codes`;
TRUNCATE `0_loc_stock`;
TRUNCATE `0_uom_stock`;
TRUNCATE `0_stock_master`;
TRUNCATE `0_stock_moves`;
'''<u>TRUNCATE `0_item_units`;</u>'''
'''<u>TRUNCATE `0_stock_category`</u>''';
|}
* Upload the following tables first:
** Chart of Account, Chart Class and Chart type.
** Product Category
** Unit of Measurement (This step is needed only when the user's UOM is totally different from the default UOM)
** Update the Account codes in the System and General GL before uploading the Customer Master Data.  The mass upload data will retrieve the account code from this page.
[[File:System and General GL.png|border|1000x1000px]]


[[#Top|<u>Go to Top</u>]]
[[#Top|<u>Go to Top</u>]]
Line 33: Line 81:


Similar to COA, the new master data importation will required this Product Category to be first uploaded as it will check against the COA used in the table.  In the system, there is a default categories.  Unless it is totally different, normally use system interface to update is sufficient.
Similar to COA, the new master data importation will required this Product Category to be first uploaded as it will check against the COA used in the table.  In the system, there is a default categories.  Unless it is totally different, normally use system interface to update is sufficient.
[[#Top|<u>Go to Top</u>]]
----
===='''Unit of Measurement'''====
Unit of Measurement upload is needed only when the users have a totally different set of UOM from the system. If this is the case, use the 0_item_units template to fill the uom and upload.


[[#Top|<u>Go to Top</u>]]
[[#Top|<u>Go to Top</u>]]


----
----

Latest revision as of 16:47, 31 October 2023

Master Data Importation Procedure

Tag:#Data Importation Procedure

This page is for support team or implementation professional of Highnix. The Master Data Importation covers the mass importation of:

  • Customer Master
  • Supplier Master
  • Product Item Master

As and when required, the following may be added with additional fees. Depending on the type of customers, friendly customer normally we offer free. Demanding customers, the following requires additional man-days.

  • Chart of Account, Chart Class, Chart Type and GL Accounts. (2 to 3 man-days)
  • Initial Inventory (2 to 4 man-days)
  • Product Selling Price (2 to 4 man-days)

Preparation

The following must be prepared:

  • Empty the tables as necessary using the following mysql commands:
To empty MySql Commands
### Chart of Account TRUNCATE `0_chart_class`;

TRUNCATE `0_chart_master`;

TRUNCATE `0_chart_types`;

### Customers and Suppliers TRUNCATE `0_crm_contacts`;

TRUNCATE `0_crm_persons`;

TRUNCATE `0_cust_branch`;

TRUNCATE `0_debtors_master`;

TRUNCATE `0_suppliers`;

### Stocks TRUNCATE `0_item_codes`;

TRUNCATE `0_loc_stock`;

TRUNCATE `0_uom_stock`;

TRUNCATE `0_stock_master`;

TRUNCATE `0_stock_moves`;

TRUNCATE `0_item_units`;

TRUNCATE `0_stock_category`;

  • Upload the following tables first:
    • Chart of Account, Chart Class and Chart type.
    • Product Category
    • Unit of Measurement (This step is needed only when the user's UOM is totally different from the default UOM)
    • Update the Account codes in the System and General GL before uploading the Customer Master Data. The mass upload data will retrieve the account code from this page.

System and General GL.png

Go to Top


Chart of Account

The new master data importation will required this Chart of Account to be first uploaded as it will check against the COA used in the table.

Go to Top


Product Category

Similar to COA, the new master data importation will required this Product Category to be first uploaded as it will check against the COA used in the table. In the system, there is a default categories. Unless it is totally different, normally use system interface to update is sufficient.

Go to Top


Unit of Measurement

Unit of Measurement upload is needed only when the users have a totally different set of UOM from the system. If this is the case, use the 0_item_units template to fill the uom and upload.

Go to Top