Skip to main content

Dynamics Nav Highlights for the Industry

Highlights for the industry

Dynamics Nav is a comprehensive application for the chemical, pharmaceutical, medical, cosmetics, and food industry. This integrates all business areas from financial management to merchandise management, production planning, logistics, and monitoring. Complete batch logistics is provided throughout the company and traceability is ensured. All digital standards of supply chain integration are covered. The formulation and feature management allows flexible production with variable raw materials. Integrate supplier, customer, and management processes and generate new business models.
Batch Management
  1. Batch splitting and merging
  2. Specification and classification management
  3. Status and MHD management
  4. Multi-step batch inheritance
  5. Batch tracing
Data Security
  1. Digital signature
  2. Audit trail and field-level security
  3. Process- and quality-dependent authorization system
Production
  1. Manufacturing instructions and recipe management
  2. Fillings and transfers
  3. Scheduling and control
  4. Bottleneck planning
  5. Graphic control center
  6. Automated content calculation
  7. Appropriate production
Quality
  1. Specification management
  2. Ongoing testing/LIMS
  3. Supplier evaluation, evaluation of internal supplier reliability
  4. Quality trend analyses
Logistics
  1. Roles center for warehouse management
  2. Commissioning strategies
  3. Loan and charge carrier management
  4. Logistics key figures
Connections
  1. Mobile scanner
  2. Scales
  3. Hazard materials module

Comments

Popular posts from this blog

The Difference Between Microsoft Dynamics NAV and AX

The Difference Between Microsoft Dynamics NAV and AX Microsoft Dynamics offers a variety of ERP solutions. You might say there is a solution for every purpose and every industry. Two of the offerings,  Dynamics NAV  and  Dynamics AX (now part of  Dynamics 365 ) share some of the same features so you might wonder: ‘what are the differences and which is right for my organization?’ Both ERP solutions are highly customizable, available in and adaptable to many languages and currencies used around the world. The two solutions can also be employed in a central location or across diverse satellite locations and are designed to grow as a business grows. Their industry-specific functionality can assure compliance with local and regional requirements. In short, both solutions could rightly be described as comprehensive and well equipped to manage complex requirements of supply chain and inventory. So, what is the difference? Is one better than the other for your...

How to Backup and Restore NAV Database Using SQL Server

How to Backup and Restore NAV Database Using SQL Server  Data is one of the most valuable assets of any company. To ensure you keep your data safe, database backups are essential. After the release of NAV 2013 R2, Microsoft discontinued the NAV Database backup (.fbk) feature. An additional option was added to allow for import/export of data in NAV 2013 R2, but doing a backup using the Import/Export Data feature is time consuming. For a complete Database backup, SQL Backup is the best and fastest option. Creating a Full Backup From SQL Server Management Studio Open SQL Server Management Studio from the menu Navigate to Database for which you want to create backup Right click the Database. Select Tasks → Backup Figure 1 - Select Backup from SQL Server Management Studio To create a full backup, select ‘Full’ in Backup type Choose where to  save the backup file using ‘Add’ button under Destination Under Options select ‘Verify backup when finished’ to ensu...

RUNREQUESTPAGE, EXECUTE, PRINT, SAVEAS in NAV

RUNREQUESTPAGE, EXECUTE, PRINT, SAVEAS in NAV …nice reporting functions are available from NAV 2015:  EX: RUNREQUESTPAGE, EXECUTE, PRINT, SAVEAS MY BEST FUCTION IS:  “RUNREQUESTPAGE” -> “ This function lets you run a request page for a report, without actually running the report. When the user clicks OK, the function simply returns a text value , which is an XML document describing the user’s selection and filters of the request page.”; you can use this function also to schedule a report on Job Queue (OnDemand report schedule) ex: a reports launcher page, scope of this page is run selected reports and generate PDF files after reports printing (or after preview mode report printing) The system use fiunction REPORT.RUNREQUESTPAGE to read and retrieve reports parameters RUNREQUESTPAGE XmlParameters:= REPORT.RUNREQUESTPAGE(intIDReport); … after you get the following XML document as a result: EXECUTE Now is time to run report with EXECUTE f...