Mamut API Introduction document

Size: px
Start display at page:

Download "Mamut API Introduction document"

Transcription

1 Mamut API Introduction document Contents Introduction... 2 What is the API?... 4 Why use the API?... 4 Sales Information... 4 FAQ... 5 Functionality Check List Mamut (examples not a definite list)... 6

2 Introduction Mamut API is a supplementary product to Mamut Business Software, which makes it possible for developers to export information from and enter information into the Mamut systems without using Mamut s normal user interface. The objective of the API documentation is to cover any questions and information needed to develop specific solutions. Knowledge of how Mamut Business Software works is also required. This document is developed and updated on an ongoing basis. Techncial questions about documentation, or other comments concerning the use of Mamut API, should be directed to the following address: api@mamut.com. The Mamut system saves all information in databases. Mamut is developed in Microsoft Visual FoxPro using a Microsoft SQL Server database. The database can be accessed in different ways using ODBC, OLEDB or ADO.NET. The ODBC driver enables all users with the required level of knowledge to read information from Mamut s database. It is possible to bring up specific sales statistics, specially adapted reports and so on. Mamut API can be used to expand the existing functionality in Mamut Business Software with Web Shop, data store, customized reports/statistics, and communication with other programs. The existing version of Mamut API supports those parts of Mamut s database that covers the contact, activity, document, order and product registers, journal entry, time sheet input and payroll (not in all markets). Sample Scenario: The user has, another program that contains customer information and invoicing data. This could be an industry-specific product that fulfils special of booking, E-commerce etc. With Mamut API, such a program can search for, change and create customers/contacts in the contact register. The program can then create orders for these customers in the Mamut system so that the user avoids duplicating information entries. The user can then go into Mamut and invoice these orders in one operation (or let the API do it), at the same time as the accounting nominal ledger and customer and supplier ledger are updated. Various programs handle invoicing & customer register, payroll calculation and purchasing, but do not have a complete accounting module. Mamut API can then be used to automatically create entry lines/journals in journal entry in the Mamut system to avoid duplicate entry of information.

3 The Mamut API documentation consists of two main sections: The first section covers how information can be changed, added to and read from using the different objects in the API. This communication goes through a dedicated object DLL which is described in more detail in the full documentation. The second section of Mamut API is documentation of the most important tables in the database and how information can be retrieved from modules other than those named above. To retrieve information from modules other than contact, activity, order, payroll, document, time sheet input and product register, ODBC is used. Knowledge of how to utilize ODBC is a prerequisite, and the document consists of explanation of relationships between tables in the database, description of fields in the tables and example codes for how the most usual information can be retrieved. For Mamut ASA to be able to give user support, it is important that nobody should make changes to the content of the database by using ODBC or other tools not developed by Mamut ASA (in accordance with the Mamut License Agreement). It is only possible for Mamut users to change information in the Mamut database through Mamut s normal user interface and by means of methods described in the documentation. Any violation of this is a breach of the Mamut License Agreement, which means that Mamut ASA is not required to provide user support. Mamut API includes functions to search for, change and create new contacts, orders and products. These functions are carried out with the straightforward use of a COM component called GBAAPI. This COM component takes care of all communication with Mamut s database and the user need only tell the component what to do. Mamut API is based on COM technology. By calling on GBAAPI, objects are returning information that can be modified. This means the user can use any tool which supports ActiveX/COM.

4 What is the API? The API- Application Programming Interface is a programmer s tool that allows safe and supported access to the Mamut database. API is a COM object (Common Object Model). This means that any Windows application can use the API to communicate with Mamut as long as the language supports using COM-objects. API is a programmers tool and is commonly used to link 3 rd party systems and Mamut Business Software. API is updated in every new version of Mamut Business Software. API is.net compatible The API has different pricing models depending on your. If unsure whether Mamut API is for you, please send technical questions to api@mamut.com state your customer number if you have one, which Mamut customer/prospect you re working for and let us know that you don t yet have a API license and require more information before purchasing a license. Why use the API? When you need to integrate Mamut with other systems. No barriers! Use the API to connect systems. If you are a reseller that commonly makes links to other systems. If import/export is not able to meet the, API can probably help. A programmer can program any windows application to talk to Mamut using API. Sales Information What do I get when I buy? When you purchase Mamut API you have direct access to the technical support team via the address api@mamut.com. Our specialized support staff is on hand to guide you when using the API. Mamut can supply you with code examples in using the API. We have many code examples in C# and VBScript in our documentation. You will receive the API documentation - a complete listing of API methods and properties with description and examples of use. The API documentation also describes the most important tables, fields and relationships. Not all tables/fields are mentioned as the database is comprised of over 200 tables each with many fields. You can however build your own database diagram using SQL Management Studio (Express). For Mamut ASA to be able to give user support, it is important that nobody should make changes to the content of the database by using ODBC or other tools not developed by Mamut ASA (in accordance with the Mamut License Agreement).

5 The Mamut systems are in continual development and new functions are added and updated with each version. This requires frequent changes to be made in the database. The API documentation therefore comprises only the most central and important tables, fields and relationships - which are not likely to be changed. You will be added to the API news list from which you will receive notification of API updates and increased functionality notification between versions. When not to buy the API? The Mamut API should not by default replace Mamut ImportExport; remember you can automate Mamut ImportExport silently (means that you can also link other systems with Import/Export) to import Contacts, Company Contacts, Products, Orders and Journals automatically. The API is however a more subtle and efficient solution enhancing the integration process. The API requires programming knowledge our API support is on hand regarding technical issues with the API, not training in programming. FAQ Q: Can the API change the Mamut screens, add extra fields? A: No, The API is not a development tool to change the Mamut user interface. Q: Does the API include every field in Mamut? A: No, the API is updated on every release of Mamut and it makes available the most common fields to users. If unsure you should check with Technical support: api@mamut.com Q: I want to link my spreadsheets to Mamut using the API, is this possible? A: Yes, using VBA (Visual Basic for Applications) you can program the API from any MS-Office Application. If unsure you should check with support Q: Can I add custom tables to the Mamut database with the API? A: No, the schema for Mamut is not open, you can however link you own tables Q: Can I run my developed API software on a client without Mamut? A: No, the API requires the core libraries in Mamut client software to run. The machine running the API software must always have Mamut installed. Q: What happens when versions of Mamut change? A: The API is in principle forward compatible between versions, so your users will be able to upgrade in-line with Mamut with no or very few changes to your product. We recommend using Late Binding in programming, making the transition even easier between versions of Mamut / the API. License-holders of the API will have access to beta-versions of Mamut Business Software; enabling you to test forward compatibility before the launch of each major version. Q: In what language should I address api@mamut.com? A: We prefer English in order to ensure a quick and efficient communication

6 Functionality Check List Mamut (examples not a definite list) Contact Module Create/Change Contacts Create/Change most contact fields - check with support if you have specific Create/Change user-defined fields Create/Change contact groups Lookup Contacts Link to Project Add Bank accounts Company Contact Module Create/Change Company Contacts Create/Change most company contact fields - check with support if you have specific Activity Module Create/Change Activities Create/Change most activity fields - check with support if you have specific Lookup an activity Product Module Create/Change Products Create/Change most product fields - check with support if you have specific Look up a product Retrieve Stock count from a warehouse or all warehouses Set stock to a location/warehouse Insert a product that is part of a bundle Order Module Create Orders/Order Lines Access to most order/line fields Lookup an order Invoice an order Find an order line Update the warehouse (when invoicing) Delete orders in an unprocessed state Delete order lines on orders in an unprocessed state Journal Module Create Journals Access to most Journal properties - check with support if you have specific Payroll Module Create Payroll Access to most Payroll properties - check with support if you have specific Document Module Add document-links to Mamut Link documents to contacts/company contacts/activities/employees

7 Employee Module Create /Change employees Access to most Employee properties - check with support if you have specific Add project links to employees TimeSheet Module Create /Change timesheets Access to most timesheet properties - check with support if you have specific Create time lines Transfer to Orders / Projects / Payroll Link to employees / contacts / company contacts / orders Main Module Create Project with name Create Properties register entries Find Country settings Get VAT codes Create Product groups Create Payment terms Create Delivery Method Create Warehouse Create Warehouse locations Add Bank Accounts Add address Get Mamut Version Get API version Get expire date

Sage 100 Evolution Version 8.00 What s New?

Sage 100 Evolution Version 8.00 What s New? Sage 100 Evolution Version 8.00 What s New? At Sage 100 Evolution we continuously invest in research and development to ensure that you are kept up to date with the latest and most cutting-edge business

More information

TIS HELP VCCS TECHNICAL INFORMATION SHOP (TIS) INSTRUCTION FOR INDEPENDENT OPERATORS

TIS HELP VCCS TECHNICAL INFORMATION SHOP (TIS) INSTRUCTION FOR INDEPENDENT OPERATORS VCCS TECHNICAL INFORMATION SHOP (TIS) INSTRUCTION FOR INDEPENDENT OPERATORS CONTENTS 1 INTRODUCTION... 3 1.1 Account set up... 3 1.1.1 Independent operators with TIE access... 3 1.2 Login for registered

More information

7xPDF covers for Mike:Layout 1 15/1/07 14:53 Page 4 Transaction

7xPDF covers for Mike:Layout 1 15/1/07 14:53 Page 4 Transaction Transaction Email Sage (UK) Limited Copyright Statement Sage (UK) Limited, 2008. All rights reserved If this documentation includes advice or information relating to any matter other than using Sage software,

More information

OVERVIEW...3. Why RePOS...3 INTEGRATION...3. Control...4. Reliability...4. Accessibility...5. Flexibly...5. Support...5. RePOS Components...

OVERVIEW...3. Why RePOS...3 INTEGRATION...3. Control...4. Reliability...4. Accessibility...5. Flexibly...5. Support...5. RePOS Components... 1 P a g e CONTENTS OVERVIEW...3 Why RePOS...3 INTEGRATION...3 Control...4 Reliability...4 Accessibility...5 Flexibly...5 Support...5 RePOS Components...6 Technical Requrirements...7 RePOS Interface...7

More information

CLIENT MIGRATION GUIDE

CLIENT MIGRATION GUIDE CLIENT MIGRATION GUIDE February 2015 FreeAgent Client Migration Guide Moving your clients to an accounting system that s designed for them can save you and your practice time in the long run. Having the

More information

Graybar E-Commerce Site Welcome to our new online store! Easier to use Improved product search Streamlined availability and fulfillment

Graybar E-Commerce Site Welcome to our new online store! Easier to use Improved product search Streamlined availability and fulfillment Graybar E-Commerce Site Welcome to our new online store! Easier to use Improved product search Streamlined availability and fulfillment This help document is a reference guide to help you navigate some

More information

Defect Repair Report as of 10/10/2014

Defect Repair Report as of 10/10/2014 27.05 Page 1 of 16 Release Notes By Module Framework The system reports no longer fail due to special characters in certain report names. 27.05-632 Framework The EFI Pace server now includes a patch for

More information

Data Import Guide DBA Software Inc.

Data Import Guide DBA Software Inc. Contents 3 Table of Contents 1 Introduction 4 2 Data Import Instructions 5 3 Data Import - Customers 10 4 Data Import - Customer Contacts 16 5 Data Import - Delivery Addresses 19 6 Data Import - Suppliers

More information

Sage What s New. March 2019

Sage What s New. March 2019 Sage 100 2019 What s New March 2019 2019 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein are the trademarks of The Sage Group

More information

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS TIS HELP FOR INDEPENDENT OPERATORS CONTENTS 1 INTRODUCTION... 3 1.1 TIE... 3 1.2 Account set up in TIS... 3 1.3 VAT number (EU only)... 3 1.4 Business license number (China only)... 3 1.5 Access levels...

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Brazil Type 5 2013 Cisco Systems Ltd. All rights reserved November 2013 Table of Contents Cisco Strategy 3 Legal & Sales Agreements 3 Customer and Partner Impacts 4 Products

More information

Bank Reconciliation in Sage One. Sage One Partner Edition. Getting started

Bank Reconciliation in Sage One. Sage One Partner Edition. Getting started Bank Reconciliation in Sage One Sage One Partner Edition Getting started 1 Contents Introduction Introduction... 2 Signing Up... 7 Logging In... 7 Common Question... 8 Business & Billing Settings... 10

More information

Contact Us: For comments or suggestions regarding these release notes, send to or call

Contact Us: For comments or suggestions regarding these release notes, send  to or call Release Notes LightspeedNXT Version 3.9.7 Alert: Windows 2000 Not Supported Windows 2000 Server or client is no longer a valid operating system on which to host or run the Lightspeed application. Installation

More information

Actinic DataPlug. For Windows XP, Windows Vista, Windows 7 and Windows 8. User Guide Link for Sage 200 v2015

Actinic DataPlug. For Windows XP, Windows Vista, Windows 7 and Windows 8. User Guide Link for Sage 200 v2015 Actinic DataPlug For Windows XP, Windows Vista, Windows 7 and Windows 8 User Guide Link for Sage 200 v2015 Introduction Welcome to the user guide for Actinic s Sage 200 connector. The connector is a tool

More information

Bank Reconciliation Release 2015

Bank Reconciliation Release 2015 Bank Reconciliation Release 2015 Disclaimer This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

How to Import Customers & Suppliers into SortMyBooks Online Pt 1.

How to Import Customers & Suppliers into SortMyBooks Online Pt 1. How to Import Customers & Suppliers into SortMyBooks Online Pt 1. You can import your Customer and Suppliers address & contact details into SortMyBooks online from anywhere that can export them into.csv

More information

WebStore. Resellers. Brief User Guide. Invite. Self-Register. Log-In. Lost Password. Support. SIPHON 31 May Resellers must be invited to use

WebStore. Resellers. Brief User Guide. Invite. Self-Register. Log-In. Lost Password. Support. SIPHON 31 May Resellers must be invited to use Resellers WebStore Brief User Guide Invite Resellers must be invited to use the SIPHON WebStore. This is important as we need to approve your email address against your account. If you would like to register

More information

FAQs. Frequently Asked Questions

FAQs. Frequently Asked Questions FAQs Frequently Asked Questions 1 1. How do I order a new phone? 2. How do I upgrade my existing phone? 3. How do I order a SIM card? 4. How do I order an accessory? 5. How do I check the status of my

More information

Frequently Asked Questions ORDERING ON MYHERBALIFE.COM INDIA, January 2013

Frequently Asked Questions ORDERING ON MYHERBALIFE.COM INDIA, January 2013 Click on any of the section headers below to jump to the answers for the questions in that section. If you cannot find the answer to your question, please contact Associate Services at 080-40311444, 10

More information

Magento Integration Manual (Version /15/2017)

Magento Integration Manual (Version /15/2017) Magento Integration Manual (Version 2.1.1-05/15/2017) Copyright Notice The software that this user documentation manual refers to, contains proprietary content of Megaventory Inc. and Magento (an ebay

More information

Sage Installation and Administration Guide. May 2018

Sage Installation and Administration Guide. May 2018 Sage 300 2019 Installation and Administration Guide May 2018 This is a publication of Sage Software, Inc. 2018 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product

More information

Getting Started Sage 500 ERP 2014

Getting Started Sage 500 ERP 2014 Getting Started Sage 500 ERP 2014 This is a publication of Sage Software, Inc. Version 2014 Copyright 2013 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

More information

AccountsIQ Tips and Tricks. Updated 20/10/2008. Purpose. 1. List and describe what heading and text will be containing in each of the Tip s and tricks

AccountsIQ Tips and Tricks. Updated 20/10/2008. Purpose. 1. List and describe what heading and text will be containing in each of the Tip s and tricks AccountsIQ Tips and Tricks Updated 20/10/2008 Purpose 1. List and describe what heading and text will be containing in each of the Tip s and tricks 2. Outline what FAQ s will be released on the System

More information

YourStore A GUIDE TO

YourStore A GUIDE TO A GUIDE TO YourStore 3.0 Selling contact lenses online has never been easier! This is the homepage of YourStore 3.0. 1. The header displays just your company name as its default. The rectangular space

More information

MYOB Exo Business. Release Notes

MYOB Exo Business. Release Notes MYOB Exo Business Release Notes 2019.1 Contents Introduction 1 What s New in this Release?... 1 Installation 2 Pre Install Requirements... 2 Other Requirements... 2 Installing MYOB Exo Business... 2 Post

More information

Designing Role Based Security to Make Your Job Easier

Designing Role Based Security to Make Your Job Easier Designing Role Based Security to Make Your Job Easier Many sites are still using the User Based security schema put into place many Munis versions ago. This is creating extra work with maintenance of security.

More information

IDEA Integrations using ODBC

IDEA Integrations using ODBC IDEA Integrations using ODBC.and Some Other Interesting News - London User Group: October 2018 - James Loughlin - Head of Technical & Training AuditWare Systems Agenda IDEA News IDEA Integrations Using

More information

SANOFI ELECTRONIC INVOICING

SANOFI ELECTRONIC INVOICING 2 SANOFI ELECTRONIC INVOICING GUIDELINES TO SUPPORT TIMELY PAYMENT OF SUPPLIER INVOICES 1 CONTENT 1. PURPOSE OF THIS DOCUMENT... 3 2. UNDERSTAND SANOFI S REQUIREMENTS... 3 2.1. HOW DO WE BUY FROM OUR SUPPLIERS?...

More information

Philippines. Vietnam. Thailand. Malaysia. Singapore. Indonesia. Hong Kong

Philippines. Vietnam. Thailand. Malaysia. Singapore. Indonesia. Hong Kong FBL: Fulfilment by Lazada Hong Kong Indonesia Malaysia Philippines Singapore Thailand Vietnam Index What is FBL? Why does FBL make sense? How much does FBL cost? How to move to FBL? What changes? Joining

More information

Your trusted partner SIMS/FMS USER GUIDE

Your trusted partner SIMS/FMS USER GUIDE Your trusted partner SIMS/FMS USER GUIDE 2016/2017 Freephone 0808 281 9440 kcs4education.co.uk KCS SIMS/FMS Setup Guide Contents 1. Introduction & Before You Begin 2. Checking & Modifying Establishment

More information

Simplifiying the Cisco Software Experience

Simplifiying the Cisco Software Experience Simplifiying the Cisco Software Experience Software Smart Licensing and Smart Accounts FAQs Partner, Distributor & Customer Table of Contents I. Smart Accounts 1. Smart Accounts Overview 2. Creating and

More information

CONVERSION GUIDE. Use this guide to help you convert from CMS Professional to Denali

CONVERSION GUIDE. Use this guide to help you convert from CMS Professional to Denali CONVERSION GUIDE Use this guide to help you convert from CMS Professional to Denali Conversion Guide Copyright Notification At Cougar Mountain Software, Inc., we strive to produce high-quality software

More information

What s New: Sage 200 Evolution Version 9.10

What s New: Sage 200 Evolution Version 9.10 What s New: Sage 200 Evolution Version 9.10 Sage 200 Evolution Version 9.10: What s New Content: New Installation 1 New Database Create Wizard 2 User Interface Refresh and Navigation Enhancements 3 Scheduled

More information

Top Server V6. Activation and Licensing Procedures

Top Server V6. Activation and Licensing Procedures Top Server V6 Activation and Licensing Procedures Table of Contents Introduction... 3 Information Needed... 3 All Support... 3 Software Licensing/Registration... 3 Software License Support Renewal... 4

More information

1 Hardware requirements pg 2. 2 How to install Sage Pastel Xpress Version 12 pg 2. 3 Starting Sage Pastel Xpress Version 12 pg 6

1 Hardware requirements pg 2. 2 How to install Sage Pastel Xpress Version 12 pg 2. 3 Starting Sage Pastel Xpress Version 12 pg 6 Installation Guide Sage Pastel: +27 11 304 3000 Sage Pastel Intl: +27 11 304 3400 www.pastel.co.za www.sagepastel.com info@pastel.co.za info@sagepastel.com Sage Pastel Accounting 2013 XPRESS_InterimInstallerGuideCover.indd

More information

Choosing a Development Tool

Choosing a Development Tool Microsoft Dynamics GP 2013 Choosing a Development Tool White Paper This paper provides guidance when choosing which development tool to use to create an integration for Microsoft Dynamics GP. Date: February

More information

The Client is responsible for regularly updating its registered details.

The Client is responsible for regularly updating its registered details. 1 (6) Page Contract terms, client Introduction SSG Standard Solutions Group AB (hereinafter referred to as SSG ) provides various services for clients that work in industry, such as a web platform for

More information

Basic System. Tutorial Guide API PRO. Open.7

Basic System. Tutorial Guide API PRO. Open.7 Tutorial Guide API PRO Basic System Open.7 The Basic system, or module 2.1 is the backbone in API PRO and it is an absolute pre-condition to run any of the other modules in API PRO that the basic system

More information

Quick Start Guide. Microinvest Warehouse Pro

Quick Start Guide. Microinvest Warehouse Pro Quick Start Guide Warehouse Pro 2012 I. Application installation During the initial installation of the product, the application gets to know the computer system, on which it shall work and configures

More information

iquote User Guide 01 August 2018

iquote User Guide 01 August 2018 iquote User Guide 01 August 2018 Contents 1. Introduction to this User Guide... 3 2. Introduction to iquote... 3 2.1 iquote Homepage... 3 2.2 Notifications... 4 3. How to create a New Quote... 4 3.1 Launching

More information

British Broadcasting Corporation Microcomputer System Z80 Second Processor

British Broadcasting Corporation Microcomputer System Z80 Second Processor British Broadcasting Corporation Microcomputer System Z80 Second Processor PROFESSIONAL - COMPUTING Connect up a Z80TM and your BBC Microcomputer becomes a complete business micro, with all the computing

More information

Enhanced new user experience with simple to use navigation and better buying experience. Trade accounts will see current order status, and history

Enhanced new user experience with simple to use navigation and better buying experience. Trade accounts will see current order status, and history NEW FEATURES AT ATLANTIC.REXEL.CA What s New? Enhanced new user experience with simple to use navigation and better buying experience Updated search functionality Trade accounts will see current order

More information

Infusion Business Software Version 6.00

Infusion Business Software Version 6.00 Infusion Business Software Version 6.00 1 V6 - System Wide Changes The backup procedure has changed so that there is now no prompt option to test it - it is always done. We have removed the Web ninja CRM

More information

Nissan Merchandise Store - Manual https://nissan.sapplive.co.za

Nissan Merchandise Store - Manual https://nissan.sapplive.co.za Contents About Sapphire Logistics How to place an order with us Contact Information Payment Methods & Banking Details Support & Returns Reset Website Password Website Registration Request Retailer Information

More information

E-COMMERCE EDITOR USER GUIDE:

E-COMMERCE EDITOR USER GUIDE: USER GUIDE: E-COMMERCE EDITOR 0. Before starting... 2 0.1 Setting up your online shop... 2... 2 1. User area... 4 1.1 Shop overview:... 4 1.2 Orders... 6 1.3 General settings... 7 1.4 VAT... 8 1.5 Shipping

More information

How to correct Dynamics GP Errors Lab Exercises

How to correct Dynamics GP Errors Lab Exercises How to correct Dynamics GP Errors Lab Exercises Matt Mason mmason@manersolutions.com Fixing GP Errors Lab Exercise 1 Running Check Links Screen: (From Toolbar). Microsoft Dynamics GP Maintenance Check

More information

Setup Specification Document

Setup Specification Document Setup Specification Document Project: Quickbooks Data Interface Developed For: Quickbooks users Date: January 7, 2007 T3C, Inc. DBA Vital Link POS 8567 Vinup Rd. Lynden WA 98284 (360) 318-9946 Voice (360)

More information

2016 Autosoft, Inc. All rights reserved.

2016 Autosoft, Inc. All rights reserved. Copyright 2016 Autosoft, Inc. All rights reserved. The information in this document is subject to change without notice. No part of this document may be reproduced, stored in a retrieval system, or transmitted

More information

Backup / Restore TurboCASH FIXED

Backup / Restore TurboCASH FIXED Table of Contents Backup / Restore TurboCASH5.0.0.307 FIXED...2 Registration Error on TurboCASH5.0.0.293...2 Help File...2 Updated...2 Updated Books...2 Updated Tutorials...3 Batch Entry Report Added...3

More information

AIM FAQs. How Do I a Create Student Profile for Each Student? How Do I Set Up Student Application and Templates?

AIM FAQs. How Do I a Create Student Profile for Each Student? How Do I Set Up Student Application and  Templates? AIM FAQs How Do I a Create Student Profile for Each Student? How Do I Set Up Student Application and Email Templates? Once the User Profile information is in each system for each student, the Student tab

More information

Adobe - WoodWing Tablet Publishing FAQ

Adobe - WoodWing Tablet Publishing FAQ Adobe - WoodWing Tablet Publishing FAQ Questions addressed in the document What does WoodWing do? What is the agreement between Adobe and WoodWing? Why did Adobe and WoodWing enter into this agreement?

More information

BraindumpsIT. BraindumpsIT - IT Certification Company provides Braindumps pdf!

BraindumpsIT.  BraindumpsIT - IT Certification Company provides Braindumps pdf! BraindumpsIT http://www.braindumpsit.com BraindumpsIT - IT Certification Company provides Braindumps pdf! Exam : 1z0-961 Title : Oracle Financials Cloud: Payables 2017 Implementation Essentials Vendor

More information

Lorna Jane. Wholesale Website Guide

Lorna Jane. Wholesale Website Guide Lorna Jane Wholesale Website Guide Wholesale Website Guide Contents New Look Features... 2 Header... 3 Footer... 4 Logging In... 5 Forgot Password... 6 Change Language... 6 Searching for Products... 7

More information

Sage One Accountant Edition. User Guide. Professional user guide for Sage One and Sage One Accountant Edition. Banking. Invoicing. Expenses.

Sage One Accountant Edition. User Guide. Professional user guide for Sage One and Sage One Accountant Edition. Banking. Invoicing. Expenses. Banking Invoicing Professional user guide for and Canadian Table of contents 2 2 5 Banking 8 Invoicing 15 21 22 24 34 35 36 37 39 Overview 39 clients 39 Accessing client books 46 Dashboard overview 48

More information

Set 2 MCQ

Set 2 MCQ 1. ETCS means A) Enable Tax Collected at Source B) Electronic Tax Collected at Source C) Electric Tax Collected at Source D) None of these 2. To get Payroll Reports choose A) Gateway of Tally > Display

More information

Magento 2 Integration Manual (Version /10/2017)

Magento 2 Integration Manual (Version /10/2017) Magento 2 Integration Manual (Version 1.1.0-13/10/2017) Copyright Notice The software that this user documentation manual refers to, contains proprietary content of Megaventory Inc. and Magento (an ebay

More information

1. Invitation: Look out for this with subject: Welcome to Amazon for Business. Click Accept the Invitation button.

1.  Invitation: Look out for this  with subject: Welcome to Amazon for Business. Click Accept the Invitation button. Steps to accept the Amazon Business invitation: Edinboro University Cardholders will receive an email invitation directly from Amazon Business to join the Edinboro University Amazon Business account. Cardholders

More information

Getting Around QuickBooks Online

Getting Around QuickBooks Online QuickBooks Online Student Guide Chapter 2 Getting Around QuickBooks Online Chapter 2 Chapter 2 Now that you ve finished your company setup in QuickBooks Online, you re ready to get started. It s a good

More information

Download installation package and documentation Installation procedure. Network installation Installing updates

Download installation package and documentation Installation procedure. Network installation Installing updates -Manual d-basics I Manual d-basics Table of Contents Chapter I Introduction 1 Chapter II Installation 3 1... Download installation package and documentation 4 2... Installation procedure 4 3... Registration

More information

SMS for REST Professional

SMS for REST Professional RockendSMS Enhanced Integration SMS for REST Professional RockendSMS has newly designed and developed an upgrade to the way you send SMS through REST Professional V14 and above (RockendSMS Enhanced Integration).

More information

HCSS Accounting Release Notes v1.2

HCSS Accounting Release Notes v1.2 HCSS Accounting Release Notes v1.2 Page 1 HCSS Accounting Release Notes v1.2 1. Auto Generation of Reference Numbers This function automatically generates reference numbers for transactions. A bespoke

More information

Questions and Answers AutoCAD 2013 for Mac

Questions and Answers AutoCAD 2013 for Mac Autodesk Questions and Answers AutoCAD 2013 for Mac This document answers common questions about AutoCAD 2013 for Mac. Contents 1. What is AutoCAD 2013 for Mac?... 3 2. When will AutoCAD for Mac be available

More information

WorkBook release note

WorkBook release note WorkBook version: 8.2.67 Release date: 01/10/2012 Author: René Præstholm rp@workbook.net General notice As new views, tab s and reports are not automatically added to each user due to access rights controls

More information

RESELLER & SYSTEM INSTALLER APPLICATION

RESELLER & SYSTEM INSTALLER APPLICATION PLEASE FAX OR EMAIL THIS FORM TO ORDERS@DATAVIDEO.COM 7048 Elmer Ave, Whittier, CA 90602 USA Voice: 562-696-2324 Fax: 562-698-6930 RESELLER & SYSTEM INSTALLER APPLICATION DESCRIPTION OF YOUR BUSINESS What

More information

Pegasus Opera II. Hints and Tips (2) From AMA Business Systems Ltd Tech Support Team

Pegasus Opera II. Hints and Tips (2) From AMA Business Systems Ltd Tech Support Team Pegasus Opera II Hints and Tips (2) From AMA Business Systems Ltd Tech Support Team Contents Page 3: Introduction Page 4: Tip 1 Creating a new Opera II User Page 5: Tip 2 Restricting User Menu Access Page

More information

Oracle Copy Inventory Organization

Oracle Copy Inventory Organization Oracle Copy Inventory Organization Implementation Guide Release 11i October 2001 Part No. A95116-01 Oracle Copy Inventory Organization Implementation Guide, Release 11i Part No. A95116-01 Copyright 1996,

More information

Xerox PagePack Program FAQs & Troubleshooting Tips

Xerox PagePack Program FAQs & Troubleshooting Tips Table of Contents PagePack Registration 1 SCOT Tool 2 PagePack Assistant 3 PagePack Customer Portal 3 Meter Reads 4 Supplies 5 Training 9 Service 9 Leasing / Purchase 10 Sales 10 Billing 11 PagePack Contract

More information

Veco Administration Guides. QuickBooks Import

Veco Administration Guides. QuickBooks Import Veco Administration Guides QuickBooks Import Introduction It is possible to import accounting transactions information into QuickBooks from Veco using the instructions below. Veco transactions are imported

More information

Chapter 10. Administration

Chapter 10. Administration Chapter 10 Administration This Page Left Blank Intentionally CTAS User Manual 10-1 Administration: Introduction The Admin section is where you enter your local government s required and optional system

More information

Frooition Implementation guide

Frooition Implementation guide Frooition Implementation guide Version: 2.0 Updated: 14/12/2016 Contents Account Setup: 1. Software Checklist 2. Accessing the Frooition Software 3. Completing your Account Profile 4. Updating your Frooition

More information

2013 TRIM-P.O.S. Software Corp. (519) Flashpoint POS Software

2013 TRIM-P.O.S. Software Corp. (519) Flashpoint POS Software CORPORATE OPERATIONS...3 SETTING UP THE CORPORATE CONTROLLER...4 CORPORATE ENCRYPTION...4 SETUP REGIONS AND LOCATIONS...5 Setup Locations...5 Setup Regions...7 Web Management...8 CORPORATE EMPLOYEE SETUP...9

More information

DELIVERY NOTES 4 YOU for VTIGER CRM 6.x

DELIVERY NOTES 4 YOU for VTIGER CRM 6.x DELIVERY NOTES 4 YOU for VTIGER CRM 6.x Introduction Delivery Notes 4 You allows you: Create Delivery Note Invoice products, services from Delivered product(s), service(s) 1 Content Introduction...1 License

More information

Talking Sage 200. talkingsage200.wordpress.com Sage 200 Navigating the Desktop

Talking Sage 200. talkingsage200.wordpress.com Sage 200 Navigating the Desktop Talking Sage 200 talkingsage200.wordpress.com Twitter: @talkingsage200 Sage 200 Navigating the Desktop Contents Preface... 4 Desktop... 6 Tool bar... 6 Navigation bar... 6 Work area... 7 3 talkingsage200.wordpress.com

More information

1

1 www.clearbooks.co.uk 1 Content Clear Books Demo 1. Customising your Dashboard 2. Setting up for the first time A) Details B) Toggle Features C) Reporting Periods D) Adding a new user E) Invoice Themes

More information

Table of contents. Portal User Guide. 1. How to get started. 2. How to create a quote. 3. How to order Paxton10 products

Table of contents. Portal User Guide. 1. How to get started. 2. How to create a quote. 3. How to order Paxton10 products Portal User Guide Portal User Guide Table of contents 1. How to get started What is the Paxton10 portal? Registering for your account Logging in The homepage My account My account opening a credit account

More information

Supplier Guide: How to register as a supplier in Lavante

Supplier Guide: How to register as a supplier in Lavante Supplier Guide: How to register as a supplier in Lavante Shared Services Center Americas May 2018 Registering as a Shire Supplier Shire s Shared Services Centre Americas (SSCA), based in Exton, PA is responsible

More information

02_Setting up Memberships_Nov2014 Draft

02_Setting up Memberships_Nov2014 Draft 02_Setting up Memberships_Nov2014 Draft 1 Overview of today s training session Today s session is about covering concepts that will help you understand what is involved in setting up membership types,

More information

Frequently Asked Questions

Frequently Asked Questions Click on any of the frequently asked questions below to display the answer. If you cannot find the answer to your question, please contact Member Services on 08 8154 0200, 9.00 am to 5.00 pm Adelaide time,

More information

QuickBooks 2008 Software Installation Guide

QuickBooks 2008 Software Installation Guide 12/11/07; Ver. APD-1.2 Welcome This guide is designed to support users installing QuickBooks: Pro or Premier 2008 financial accounting software, especially in a networked environment. The guide also covers

More information

Updated: April, 2018 (see what s new) Table of Contents. Overview Switching from Maintenance to Subscription Pricing for Switching...

Updated: April, 2018 (see what s new) Table of Contents. Overview Switching from Maintenance to Subscription Pricing for Switching... Important Updates on Maintenance Plans Frequently Asked Questions Customers This document answers frequently asked questions about maintenance plan changes as we move to one business model. Updated: April,

More information

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters Microsoft Dynamics GP Release 10.0 Integration Guide For Microsoft Retail Management System Headquarters Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable

More information

USER GUIDE FOR SUPPLIERS. OpusCapita Business Network

USER GUIDE FOR SUPPLIERS. OpusCapita Business Network USER GUIDE FOR SUPPLIERS OpusCapita Business Network Contents 1. Introduction... 3 2. Finalizing registration and changing your password... 4 2.1 Finalize your registration... 4 2.2 Change your forgotten

More information

Client User Manual. Page 1 of 31

Client User Manual. Page 1 of 31 Client User Manual Page 1 of 31 C o n t e n t 1. Introduction... i. System & Client qualifications... ii. Accessing e-volve Online... iii. e-volve Client Home Page overview iv. Site Navigation... 2. Client

More information

Shopkeeper V Update Notes

Shopkeeper V Update Notes Shopkeeper V8.0.14 Update Notes April 2014 Shopkeeper V8.0.14 Update Notes Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious

More information

ACN INDEPENDENT BUSINESS OWNER GUIDE TO CUSTOMER EXPERIENCE

ACN INDEPENDENT BUSINESS OWNER GUIDE TO CUSTOMER EXPERIENCE ACN INDEPENDENT BUSINESS OWNER GUIDE TO CUSTOMER EXPERIENCE JOi MOBILE Denmark So what and who is JOi? JOi is a brand and trademark of ACN. The new JOi Mobile service in Denmark is provided by ACN European

More information

HCSS Accounting. User Manual. Customers and Suppliers including Catalogue

HCSS Accounting. User Manual. Customers and Suppliers including Catalogue HCSS Accounting User Manual Customers and Suppliers including Catalogue Contents 1 Suppliers... 3 a Add a Supplier... 3 b Edit a Supplier... 8 c Duplicate a Supplier... 9 d Delete a Supplier... 10 e Search

More information

Quick Start Guide. Microinvest Warehouse Pro Mobile

Quick Start Guide. Microinvest Warehouse Pro Mobile Quick Start Guide Microinvest Warehouse Pro Mobile 2016 I. Application Installation The Microinvest Warehouse Pro Mobile is the point of sale application for mobile devices that works in tandem with the

More information

UK GroundScope User Guide

UK GroundScope User Guide UK GroundScope User Guide You can access the tool via the travel portal home page From the home page you can do a number of things: View our FAQ s See our average journey times Contact information Provide

More information

Fulfillment User Guide FULFILLMENT

Fulfillment User Guide FULFILLMENT Fulfillment User Guide FULFILLMENT TABLE OF CONTENTS I. System Requirements II. Logging In III. Launchpad a. Home b. Profile c. Settings IV. Dashboard Tab a. Actionable Insights b. Open Orders V. Transactions

More information

Release 28 - Alpha Tracker Release Notes

Release 28 - Alpha Tracker Release Notes Release 28 - Alpha Tracker Release Notes New Features / Changes (from SVN2841 to SVN3056) 1. With the introduction of GDPR, there are some important new features now available in Alpha Tracker. There is

More information

If you need help with Skype Connect, you can find more answers in our Skype Connect FAQs section: support.skype.com/category/skype_connect

If you need help with Skype Connect, you can find more answers in our Skype Connect FAQs section: support.skype.com/category/skype_connect About this guide Skype Connect provides connectivity between your business and the Skype community. By adding Skype Connect to your existing SIP-enabled PBX, your business could save on your communication

More information

CK Sagelink. A Guide for the Installation and use of CK Sagelink for the Pegasus Opera II/3 Accounting System. (Updated 01/06/13)

CK Sagelink. A Guide for the Installation and use of CK Sagelink for the Pegasus Opera II/3 Accounting System. (Updated 01/06/13) CK Sagelink A Guide for the Installation and use of CK Sagelink for the Pegasus Opera II/3 Accounting System. (Updated 01/06/13) CK Sagelink Page 1 CK Sagelink USER GUIDE CONTENTS 1.0 Important information

More information

POS Themes & Wide Screens. New Clients New Training Option. Improve Server Speed. Customise Favourites Menu. EzyAccounts.NET

POS Themes & Wide Screens. New Clients New Training Option. Improve Server Speed. Customise Favourites Menu. EzyAccounts.NET New Clients 2016 Australia Schild Estate Gooree Park Rusden Wines Murray Street Sidewood Estate Bimbadgen Wines POS Themes & Wide Screens South Africa Cloof Wine Estate Barnard Boyes Wines De Grendel Wines

More information

Improved Import / Export Magento 2 Extension Manual. Manual for Improved Import / Export extension for Magento 2

Improved Import / Export Magento 2 Extension Manual. Manual for Improved Import / Export extension for Magento 2 Improved Import / Export Magento 2 Extension Manual February 24, 2017 - Magento 2, Our extensions Manual for Improved Import / Export extension for Magento 2 Improved Import and Export extension allows

More information

Fyndiq Magento Extension

Fyndiq Magento Extension Fyndiq Magento Extension User guide. Version 3.0 Introduction 2 Fyndiq Merchant Support 2 Prerequisites 2 Seller account 3 Create the account 3 Your company 4 Contact information 4 Your webshop on Fyndiq

More information

User Wise Activity Tracking & Logging

User Wise Activity Tracking & Logging User Wise Activity Tracking & Logging (Version 2.0) IMPRESSIVE STAR SOFTWARES (P) LTD. {Tally Integration, Extension, Distribution, Training & Service Partner} {Tally Shoper Retail Solution Partner} F-3,

More information

Welcome to Groupon: Deal Centre for Merchants

Welcome to Groupon: Deal Centre for Merchants 2016 Welcome to Groupon: Deal Centre for Merchants GROUPON GOODS GLOBAL GMBH What can I find in this Guide? 1) How does Groupon work? 2) Who will be my points of contact? 3) Pre-deal Preparation with DEAL

More information

Studio Designer Basic

Studio Designer Basic Studio Designer Pricing Studio Designer Basic Studio Designer Professional $35 / User / Month $45 / User / Month Feature Basic Professional Address Client and Vendor Address Maintenance X X Client and

More information

SIMS FMS E-PROCUREMENT EASY REFERENCE GUIDE FOR IMPLEMENTING SEAMLESS INTEGRATION ACROSS YOUR SCHOOL

SIMS FMS E-PROCUREMENT EASY REFERENCE GUIDE FOR IMPLEMENTING SEAMLESS INTEGRATION ACROSS YOUR SCHOOL SIMS FMS E-PROCUREMENT EASY REFERENCE GUIDE FOR IMPLEMENTING SEAMLESS INTEGRATION ACROSS YOUR SCHOOL To help make buying with us as easy as possible, we ve introduced our new, fully integrated e- Procurement

More information

SQUARE BOOKLET. Please read carefully the following lines to obtain the best results. CS or later compatible.psd DETAILS:

SQUARE BOOKLET. Please read carefully the following lines to obtain the best results. CS or later compatible.psd DETAILS: Hi! First of all, THANK YOU for purchasing this item and supporting me! I hope it will fit perfectly with your needs. This is a complete Square Brochure / Catalogue Template; this layout is not limited

More information