USER GUIDE (MERCHANT) MOBILE MONEY ONLINE PLATFORM. Project number: PRMTN160104

Size: px
Start display at page:

Download "USER GUIDE (MERCHANT) MOBILE MONEY ONLINE PLATFORM. Project number: PRMTN160104"

Transcription

1 MOBILE MONEY ONLINE PLATFORM Project number: PRMTN160104

2 Table of Contents 1. MERCHANT ACCOUNT CREATION Individual Merchant Account Individual Merchant with Mobile Money Account Individual Merchant with a Mobile Money Account Corporate Merchant Account AUTHENTICATION MANAGEMENT Log in Log out Forgot Password Hide menu bar Display of the home Change of language Update profile VIEW REPORTS BUTTONS MANAGEMENT View source Button source code Copy source code Insert the source code to the merchant page Change the defaults values of the button by the corrects values Display button Transaction Result CodeLess Code For the RequestPayement and Donate CodeLess Code i

3 List of Figures Figure 1. Create account page... 1 Figure 2. Select the type of merchant... 2 Figure 3. Create individual an user account... 2 Figure 4. Create individual user account form without mobile money account... 3 Figure 5. Select Merchant type Corporate... 3 Figure 6. Create enterprise user account form... 3 Figure 7. Authentication page... 4 Figure 8. Sign out view button... 5 Figure 9. I forgot my password button... 5 Figure 10. Enter the address... 5 Figure 11. Hide menu bar... 6 Figure 12. Icon of the home page... 6 Figure 13. Change language... 7 Figure 14. Update profil... 7 Figure 15. Reports buttons... 8 Figure 16. View report... 8 Figure 17. Merchant Dashboard... 9 Figure 18. Button management screen... 9 Figure 19. Button source code to be copied Figure 20. Button source code copied Figure 21. Button source on an HTML editor Figure 22. Merchant web site example ii

4 Revisions Version Date Author(s) Description /02/17 Franck HAPPI Create document /03/09 Franck HAPPI Update document /03/15 Franck NGADENE Update document /06/17 Rachida BOUBA Update document /07/01 Rachida BOUBA Update document /07/15 Jean Claude MBENG Update document /11/30 Jean Claude MBENG Update document /12/09 Eric James NKOUANKAM Proofreading and Diffusion iii

5 1. Merchant Account Creation 1.1. Individual Merchant Account Individual Merchant with Mobile Money Account To create an individual merchant with a mobile money account, user have to make tasks below: User has to click on Create my account button User has to click on Individual Merchant button Then he has to fill the form and submit it Figure 1. Create account page 1

6 Figure 2. Select the type of merchant Figure 3. Create individual an user account Individual Merchant with a Mobile Money Account To create an individual merchant mobile money account, the user have to complete the followings tasks: Fill the form with he require information All the information s are mandatory After he has filled the user submit the form A message will be sent to the merchant in his mail box with his credentials 2

7 Figure 4. Create individual user account form without mobile money account 1.2. Corporate Merchant Account To create a corporate merchant account, user have to make tasks below: User has to click on Corporate Merchant button Then he has to download Contract templates, Mobile Money registration form and list of requirements document. After download them he has to fill the Mobile Money form and Contract templates, scan them and upload them with equally needed files Next fill the form and submit it Figure 5. Select Merchant type Corporate Figure 6. Create enterprise user account form 3

8 2. Authentication Management 2.1. Log in To be connected, the user should be on platform, and then enter his credentials ( , Password). Figure 7. Authentication page 2.2. Log out To be disconnected, user has to first click on the button that has his address in right top corner. After that he click on button <Sign out> 4

9 Figure 8. Sign out view button 2.3. Forgot Password Click on I forgot my password to get a new password, Figure 9. I forgot my password button Enter the address of receipt of the link allows to change the password Figure 10. Enter the address 5

10 1.1. Hide menu bar This icon will hide the menu bar Figure 11. Hide menu bar 1.2. Display of the home Click on this icon to display the home page: Figure 12. Icon of the home page 1.3. Change of language To change the language from the home interface, simply place the field as shown: 6

11 Figure 13. Change language 1.4. Update profile The modification of the profile once connected is done as follows: Figure 14. Update profil 7

12 3. View Reports To view a report, Merchant has to click on the button of the report, then the system will display the report. The report has data of the current day. The admin will select an interval and click on Search button to reload the report. Figure 15. Reports buttons The following element (1 of 1) indicates that we are on the page and that it is a single. For period selected on the screen no report is available. Figure 16. View report 8

13 4. Buttons Management Once the user is logged on MOMO platform by clicking on the sign in button, it accesses its administration page clicks the button buttons Management Figure 17. Merchant Dashboard 4.1. View source The buttons management page provides different types of buttons defined in the platform; button after selecting the type, the user clicks the button display the source code Figure 18. Button management screen 9

14 4.2. Button source code Viewing the source code opens a modal window containing the source code of the page Figure 19. Button source code to be copied 4.3. Copy source code The source code of the selected button is displayed with a button to copy the source code to paste into a merchant site code portion Figure 20. Button source code copied 4.4. Insert the source code to the merchant page Once copied the source code, open the page that will contain the transaction MOMO button and paste the previously copied source code on the platform 10

15 Figure 21. Button source on an HTML editor 4.5. Change the defaults values of the button by the corrects values Only two values have to be change in the button s code 1- The amount of transaction : This value is needed for both Payment operation and Refund operation. The value can be changed as explain below <input name="_amount" value="0" id="montant" autocomplete="off" type="text" /> In the button code the merchant website s developer will changed the red 0 by the true amount of the transaction In the button code the merchant website s developer will changed the red number by the true phone number which will request the transaction <input name="_tel" autocomplete="off" type="hidden" value=" " /> The value of amount should be automatically fiilled by the merchant website s depending to the development language. For example if you are using: - PHP, you can do this 11

16 <?php $value_of_cart = 1500;?> <input name="_amount" value="<?php echo $value_of_cart ;?>" id="montant" autocomplete="off" type="text" /> - ColdFusion, you can do this <cfset value_of_cart = 1500> <input name="_amount" value="<cfoutput>#value_of_cart#</cfoutput> id="montant" autocomplete="off" type="text" /> NB: The amount of the cart have to be inserted in the field programmatically by the merchant website 4.6. Display button When the button of the source code has been pasted into the page it should be displayed, it is visible on the page and click on this button redirects the customer to the merchant's MOMO platform for payment. Figure 22. Merchant web site example 12

17 4.7. Transaction Result After the transaction completion, a JSON result will be sent to the website caller 1- If the result is successfully completed the result will be {"StatusDesc":"Successfully processed transaction.","operationdate":" :04:05","Amount":"250","SenderNumber":" ","OperationType":"MoMoRequestPa yment","statuscode":"01","transactionid":" ","processingnumber":" "} The website will parse the returned result to give a correct response to the user. 2- If the transaction fails the result will be {"StatusDesc":"General failure.","operationdate":" :15:22","Amount":"250","SenderNumber":" ","OperationType":"MoMoRequestPa yment","statuscode":"100","transactionid":" ","processingnumber":" "} 4.8. CodeLess Code MoMo platform can be used on all new technologies such as JAVA,.Net, Android, PHP To intgrate MoMo on your project, you will access a web service called by this URL, some parameters will change on: For the RequestPayement and Donate CodeLess Code =2&typebouton=PAIE&_amount=AMOUNT&_tel=CLIENT_NUMBER&_clP=&_ =MERCHAN T_ &submit.x=104&submit.y=70 AMOUNT: The amount of the transaction CLIENT_NUMBER: The number of the client who want to perform the transaction MERCHANT_ The of the merchant, this must be registered on the platform For security reason Codeless Code are not available for Refund action 13

USER MANUAL. SugarPort - SugarCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

USER MANUAL. SugarPort - SugarCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Installation... 2 Drupal Manual Plug-in installation... 2 Plug-in Configuration... 4 Drupal Configuration Settings... 4

More information

USER MANUAL. SuiteCRM / SugarCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1

USER MANUAL. SuiteCRM / SugarCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Installation...2 Joomla Manual Plug-in installation...2 Plug-in Configuration...4 Joomla Configuration Settings...4 CRM Fields

More information

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements.

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. Purchase Items during Registration Administrators can now enable

More information

USER MANUAL. Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.2.1

USER MANUAL. Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.2.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 WordPress Manual Plug-in installation... 5 Plug-in

More information

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Prerequisites...1 Installation...2 Salesforce App Installation... 2 Salesforce Lightning... 2 WordPress Manual Plug-in installation...

More information

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.2

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.2 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 Plug-in Configuration... 5 Dynamics CRM Configuration

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.2

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.2 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 Joomla Manual Plug-in installation...

More information

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 Drupal Manual Plug-in installation... 4 Plug-in

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for DotNetNuke TABLE OF CONTENTS. Version: 1.2.1

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for DotNetNuke TABLE OF CONTENTS. Version: 1.2.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 DotNetNuke Manual Plug-in Installation...

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.2

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.2 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 Drupal Manual Plug-in installation...

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.2.1

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.2.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 WordPress Manual Plug-in installation... 5 Plug-in

More information

USER MANUAL. SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 2.0

USER MANUAL. SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 2.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 Joomla Manual Plug-in installation... 3 Plug-in

More information

Get Qualified User Manual

Get Qualified User Manual MALTA ENTERPRISE Get Qualified User Manual Student Guide Contents 1. Logon... 3 2. Registration... 3 3. Profile... 3 Ongoing Applications... 3 Editing your profile... 4 Profile... 4 Account... 4 Password...

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.0

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 Joomla Manual Plug-in installation...

More information

Click E Money Laravel Application

Click E Money Laravel Application Click E Money Laravel Application Admin User Manual Version 1.0 2016 Click E Money All Rights Reserved. Admin Panel User guide: Authentication: Admin sign-in Keep me logged in Forgot password Admin sign-in:

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 Drupal Manual Plug-in installation...

More information

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.1

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 Plug-in Configuration... 5 Dynamics CRM Configuration

More information

Mobile Login extension User Manual

Mobile Login extension User Manual extension User Manual Magento 2 allows your customers convenience and security of login through mobile number and OTP. Table of Content 1. Extension Installation Guide 2. Configuration 3. API Settings

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.0

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 WordPress Manual Plug-in installation... 5 Plug-in

More information

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1.0

USER MANUAL. SuitePort - SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 1.1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 Joomla Manual Plug-in installation... 3 Plug-in

More information

F O R B U S I N E S S

F O R B U S I N E S S F O R B U S I N E S S THE CORPORATE INTERNET BANKING USER GUIDE SINGLE SIGNATORY USER SINGLE SIGNATORY USER 1 Login and Change Default Password 2 3 4 Forgot Password Forgot Security Answer Look Up Account

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.1

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 WordPress Manual Plug-in installation... 5 Plug-in

More information

Almadallah Healthcare Management

Almadallah Healthcare Management Almadallah Healthcare Management This manual contains the information on provider account, the features or benefits a provider will get by having a user account with Almadallah Website. A l m a d a l l

More information

Click E Money Laravel Application

Click E Money Laravel Application Click E Money Laravel Application Member User Manual Version 1.0 2016 Click E Money All Rights Reserved. Member Panel User guide: Authentication & Registration: Member sign-in Forgot your password Member

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.1

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation & Configuration... 2 Dynamics CRM Plug-in Installation... 2 Drupal Manual Plug-in installation...

More information

Martin Baker Secure Source-to-Pay How to Access and Log In

Martin Baker Secure Source-to-Pay How to Access and Log In Martin Baker Secure Source-to-Pay How to Access and Log In December 2017 1 How to Log in to Secure Source-to-Pay The Managed Access Gateway (MAG) solution is used as the login authentication and access

More information

E-Requisition Order (E-RO UG) v1.0

E-Requisition Order (E-RO UG) v1.0 E-Requisition Order (E-RO UG) v1.0 User Manual Rev. B Information Technology Department Revision Sheet Release Date Author Revision Description No. Rev. A 22/11/2013 Chuah Chong Hee Creation of E-Requisition

More information

Getting Started with the Aloha Community Template for Salesforce Identity

Getting Started with the Aloha Community Template for Salesforce Identity Getting Started with the Aloha Community Template for Salesforce Identity Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved.

More information

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin 1 P a g e Contents 1. Introduction... 5 2. Who is it for?... 6 3. Community v/s PRO Version... 7 3.1. Which version is

More information

TROUBLE TICKET REPORTING TOOL. User Guide v1

TROUBLE TICKET REPORTING TOOL. User Guide v1 TROUBLE TICKET REPORTING TOOL User Guide v1 OVERVIEW & ACCOUNT SET UP Document Sections Overview and Account Set Up Dashboard Help Desk Account Settings Frequently Asked Questions 2018 Comcast. All rights

More information

User Guide Mobile Point-of-Sale (mpos), Version 2.0

User Guide Mobile Point-of-Sale (mpos), Version 2.0 User Guide Mobile Point-of-Sale (mpos), Version 2.0 Contents Overview... 1 Features... 1 Getting Started... 2 Login... 3 First Time Login/Password Reset... 3 Setting Security Questions... 4 Password Expiring...

More information

RouteMobile Mobile Client Manual for Android Version: 2.0

RouteMobile Mobile Client Manual for Android Version: 2.0 RouteMobile Mobile Client Manual for Android Version: 2.0 Route Mobile Limited 2018. All rights reserved 1 Contents Installation... 3 Getting Started... 5 Login Page... 6 Main Screen... 7 Send SMS... 9

More information

Contents. Register...3 Advertiser Area...5 Dashboard...5 Account Information...6 My Wallet...8 Promotions...8 Change Password...12 Change ...

Contents. Register...3 Advertiser Area...5 Dashboard...5 Account Information...6 My Wallet...8 Promotions...8 Change Password...12 Change  ... Contents Register...3 Advertiser Area....5 Dashboard...5 Account Information...6 My Wallet...8 Promotions...8 Change Password...12 Change Email...12 2 Register Advertisers can register on the website by

More information

Guide to Author. Journal of Mountain Science (JMS)

Guide to Author. Journal of Mountain Science (JMS) Guide to Author Journal of Mountain Science (JMS) http://jms.imde.ac.cn/ Contents 1 2 3 Account registration Account management Main menu 4 New submission process 3 Revision submission process Account

More information

ESSR European Space Software Repository

ESSR European Space Software Repository ESSR European Space Software Repository Software User Manual T/ +4 031 424814 F/ +4 0314242816 E/ hello@innobyte.com W/ www.innobyte.com A/ Bl. Regiei, nr.6b, etaj 4-5, Sector 6, București, 060204, România

More information

[SocialLogin] CED COMMERCE. ALL RIGHTS RESERVED.

[SocialLogin] CED COMMERCE. ALL RIGHTS RESERVED. CED COMMERCE. ALL RIGHTS RESERVED. SUPPORT@CEDCOMMERCE.COM [SocialLogin] SocialLogin extension is very useful extension for the magento ecommerce platform. It provides your store the feature to login /

More information

SCHOLARONE MANUSCRIPTS Author Guide

SCHOLARONE MANUSCRIPTS Author Guide SCHOLARONE MANUSCRIPTS Author Guide TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. LOGGING ON AND OFF THE AUTHOR CENTER... 1 LOGGING IN... 1 ORCID ACCOUNT

More information

Vantiv Merchant Services Referral Hub

Vantiv Merchant Services Referral Hub Vantiv Merchant Services This job aid is intended for BMO Harris employees to assist with submitting merchant referrals to Vantiv using the Referral Hub. The Referral Hub is mobile ready to accept BMO

More information

Jack s Coal Fired Pizza

Jack s Coal Fired Pizza Jack s Coal Fired Pizza WORDPRESS MANUAL TABLE OF CONTENTS Login... 3 Editing Existing Pages... 4 Adding New Pages... 7 Editing/Adding Text... 8 Creating a Link... 9 Linking to a PDF... 10 Making a Link

More information

Wishlist 1-Click Registration Manual

Wishlist 1-Click Registration Manual Wishlist 1-Click Registration Manual Table of Contents Use the quick navigation links below to navigate through the manual: Introduction to Wishlist 1-Click Registration Complete Activation Process Summary

More information

User Manual. Revview Central

User Manual. Revview Central for Revview Central (Journal Office) Powered by TNQ Technologies COPYRIGHT NOTICE 2018 TNQ Technologies. All rights reserved. Document History S. No. Version No. Revision No. Release Date Remarks 1. 1

More information

Opaali Portal Quick guide

Opaali Portal Quick guide Opaali Portal Quick guide Company information Telia Finland Oyj Teollisuuskatu 15, 00510 HELSINKI, FI Registered office: Helsinki Business ID 1475607-9, VAT No. FI14756079 1 (40) Page 2 (40) Copyright

More information

User Manual For. EFM I2File.net. September 26, 2017 Version 1.0

User Manual For. EFM I2File.net. September 26, 2017 Version 1.0 User Manual For EFM I2File.net September 26, 2017 Version 1.0 1 Table of Contents Registration... 3 Register a Firm Account... 3 Register a Self-Represented Account... 5 Login... 8 Forgot Password... 8

More information

X-AFFILIATE module for X-Cart 4.0.x

X-AFFILIATE module for X-Cart 4.0.x X-AFFILIATE module for X-Cart 4.0.x Partner Interface Reference Manual Revision Date: 2004-11-22 Copyright 2001-2004 Ruslan R. Fazliev. All rights reserved. TABLE OF CONTENTS GENERAL INFORMATION...3 REGISTRATION...4

More information

USER GUIDES. Peel International Languages Registration Parent Guide

USER GUIDES. Peel International Languages Registration Parent Guide USER GUIDES Peel International Languages Registration Parent Guide June 2017 REGISTERING FOR PEEL INTERNATIONAL LANGUAGES CLASSES To register for any Peel International Languages classes online, please

More information

Primary Source Verification. How to Apply

Primary Source Verification. How to Apply Primary Source Verification Dubai Corporation for Ambulance Services (DCAS) How to Apply A Step By Step Guide for Completing Your Application If you are a new applicant, follow the instructions from step

More information

USER MANUAL. SuitePort - SuiteCRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 2.5.0

USER MANUAL. SuitePort - SuiteCRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 2.5.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 WordPress Manual Plug-in installation... 3 Plug-in

More information

Document Upload for IELTS ORS

Document Upload for IELTS ORS Document Upload for IELTS ORS Overview... 1 Setting up document upload... 1 Uploading a document (as a candidate)... 2 Managing documents in the admin system... 3 The Summary Dashboard... 3 The Candidate

More information

This chapter provides an overview of user access management and Segment Management pods in the SNTC portal.

This chapter provides an overview of user access management and Segment Management pods in the SNTC portal. SNTC Administration This chapter provides an overview of user access management and Segment Management pods in the SNTC portal. Overview The Administration tab in the SNTC portal allows the customer administrator

More information

EXPORTER PORTAL USER MANUAL

EXPORTER PORTAL USER MANUAL EXPORTER PORTAL USER MANUAL CONTENTS INTRODUCTION... 2 1 LOGIN... 2 1.1 EXPORTER PORTAL URL... 2 1.2 LOG-IN PAGE... 3 1.3 CREATE A NEW ACCOUNT... 4 2 HOME PAGE... 7 3 ACTIONS... 10 3.1 PENDING TASKS...

More information

Contents. 1. Using Cherry 1.1 Getting started 1.2 Logging in

Contents. 1. Using Cherry 1.1 Getting started 1.2 Logging in 1 Contents 1. Using Cherry 1.1 Getting started 1.2 Logging in 2. Site Page Hierarchy Management 2.1 Page Addition 2.2 Page Deletion 2.3 Editing Page Details 3. Page Content Modification 3.1 Page Revisions

More information

INTRODUCTION TO BLACKBOARD

INTRODUCTION TO BLACKBOARD INTRODUCTION TO BLACKBOARD Working URL - https://www.d11.org Layout of the site MY START BAR CHANNEL BAR HEADER GLOBAL ICONS Logging In Use your email as your username and your network password. SITE MANAGER

More information

Sign-up Forms Builder for Magento 2.x. User Guide

Sign-up Forms Builder for Magento 2.x. User Guide eflyermaker Sign-up Forms Builder 2.0.5 for Magento 2.x User Guide 2 eflyermaker Dear Reader, This User-Guide is based on eflyermaker s Signup-Form Builder Plugin for Magento ecommerce. What follows is

More information

Ariba Supplier Self-Registration

Ariba Supplier Self-Registration About this document When your company is selected as an Elia supplier, it is registered in the Elia system so that a purchase order can be issued. The first step is that you register as an Elia supplier

More information

SCHOLARONE MANUSCRIPTS Author Guide

SCHOLARONE MANUSCRIPTS Author Guide SCHOLARONE MANUSCRIPTS Author Guide TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. LOGGING ON AND OFF THE AUTHOR CENTER... 1 LOGGING IN... 1 ORCID ACCOUNT

More information

Quick Start Guide. Visual Planning 6 New Features

Quick Start Guide. Visual Planning 6 New Features Visual Planning 6 New Features Contents Chapter 1. ADMIN CENTER... 3 1.1. Admin Center Dashboard... 3 1.2. Planner Menu... 3 1.3. Document storage and file navigator... 3 1.4. Connection history... 3 1.5.

More information

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central Table of Contents Installation Guide... 3 eshop Account Registration in Dynamics 365 Business Central:... 3 eshop Setup

More information

OSLA (Office of Staff Legal Assistance) User Manual. Created Date: 09 th December, 2016 Version: 2.0

OSLA (Office of Staff Legal Assistance) User Manual. Created Date: 09 th December, 2016 Version: 2.0 OSLA (Office of Staff Legal Assistance) User Manual Created Date: 09 th December, 2016 Version: 2.0 Table of Contents (Re-generate the TOC after modifications to the document) Contents Table of Contents

More information

STEPS FOR CANDIDATE FOR SCHEDULING ITB EXAM

STEPS FOR CANDIDATE FOR SCHEDULING ITB EXAM STEPS FOR CANDIDATE FOR SCHEDULING ITB EXAM 1. Candidates can start registering through the Register for an ITB Certification link on www.pearsonvue.com/itb or directly by clicking on Enrollment link of

More information

(SM) User Guide. For Schools ************************************************************************* SchoolMagica.com

(SM) User Guide. For Schools ************************************************************************* SchoolMagica.com SchoolMagica (SM) User Guide For Schools ************************************************************************* Table of Contents Start using SchoolMagica:... 3 Login Screen:... 4 Settings:... 5 Payment

More information

User Manual for Request for Proposal PMKVY

User Manual for Request for Proposal PMKVY User Manual for Request for Proposal PMKVY (Pradhan Mantri Kaushal Vikas Yojana) Powered by Hard Shell Technologies (P) Ltd. 1 Table of Contents 1. Home Page... 3 1.1. Dashboard... 3 2. Training Partner

More information

ScholarOne Manuscripts. Author User Guide

ScholarOne Manuscripts. Author User Guide ScholarOne Manuscripts Author User Guide 1-May-2018 Clarivate Analytics ScholarOne Manuscripts Author User Guide Page i TABLE OF CONTENTS LOGIN AND ACCOUNT CREATION... 1 Logging In... 1 ORCID Account Creation

More information

GE Transportation Customer Web Center (CWC)

GE Transportation Customer Web Center (CWC) GE Transportation Customer Web Center (CWC) User Guide Using GE Single Sign On for Customer Web Center TABLE OF CONTENTS 1 INTRODUCTION...3 1.1 SCOPE... 3 1.2 INTENDED USERS... 3 2 CWC USER REGISTRATION...3

More information

ISUPPLIER PORTAL USER MANUAL ADERP VERSION 1.0

ISUPPLIER PORTAL USER MANUAL ADERP VERSION 1.0 ISUPPLIER PORTAL USER MANUAL ADERP VERSION 1.0 Contents Contents... i Oracle isupplier Portal Overview...1 Recommended Browsers and Settings...2 Advanced Settings...2 Turn-off pop-up blocker or Allow pop-up

More information

Get started ASAP! Thank your donors.

Get started ASAP! Thank your donors. Participant Fundraising Tips Get started ASAP! Don't pull an all-nighter and wait until the day before your event to start asking for donations. You'll keep stress at bay and avoid disappointment if you

More information

E-Requisition Order (E-RO PDP) v1.0

E-Requisition Order (E-RO PDP) v1.0 E-Requisition Order (E-RO PDP) v1.0 User Manual Rev. A Information Technology Department Revision Sheet Release Date Author Revision Description No. Rev. A 22/11/2013 Chuah Chong Hee Creation of E Requisition

More information

Girls on the Run SoleMates Fundraising How to use RacePlanner.com

Girls on the Run SoleMates Fundraising How to use RacePlanner.com Girls on the Run SoleMates Fundraising How to use RacePlanner.com Contents 1. Register for SoleMates... 2 2. Build Your Fundraising Page... 3 3. Manage Your Fundraiser... 6 A. Org Home... 6 B. Dashboard...

More information

CMS and e-commerce Solutions. version 1.0. Please, visit us at: or contact directly by

CMS and e-commerce Solutions. version 1.0. Please, visit us at:   or contact directly by Frequently Asked Questions for Magento User Guide version 1.0 created by IToris IToris Table of contents 1. Introduction... 3 1.1. Purpose... 3 2. Installation and License... 3 2.1. System Requirements...

More information

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of MageMob Admin... 1 Installation & Activation... 2 Pre-requisite... 2 Installation Steps... 2 Installation via Composer... 4 Extension Activation...

More information

OnBoarding with CalyxPod. Step 1 : Activate your Profile

OnBoarding with CalyxPod. Step 1 : Activate your Profile OnBoarding with CalyxPod CalyxPod is a platform which helps students to understand about the placement events taking place in their respective colleges for both On Campus as well as Off Campus events wherein

More information

User Guide for REP User

User Guide for REP User User Guide for REP User Home Page This document will cover the features and functions of the TNMP Historical Usage Request / LOA site. The features on this site include the following: User Guide provides

More information

Now Let s Get STARTED! Once you have returned the signed contract that outlines the services of your choice; you are ready to dive into the Hub!

Now Let s Get STARTED! Once you have returned the signed contract that outlines the services of your choice; you are ready to dive into the Hub! Getting Started Welcome to the T-Mobile M2M Platform aka the Hub! We are happy you have chosen our solution. We have several years of knowledge we can bring to help you manage your business in a global

More information

Registering as an Elia supplier on Ariba on invitation

Registering as an Elia supplier on Ariba on invitation Registering as an Elia supplier on Ariba on invitation About this document When an Elia buyer publishes a sourcing event and invites you to participate, you receive an invitation e-mail from Ariba, the

More information

VENDOR HELP MANUAL E-Auction Vendor Help Manual. Central Public Work Department

VENDOR HELP MANUAL E-Auction Vendor Help Manual. Central Public Work Department E-Auction Vendor Help Manual. Central Public Work Department 1 P a g e TABLE OF CONTENT GLOSSARY OF TERMS:.3 ACTION BUTTONS / ICONS:..4 LOGIN PROCEDURE IN Tender wizard:.5 DESCRIPTION OF ICONS: 6 REGISTRATION

More information

WELCOME SCREEN. Enter User ID. Enter Password. Click if you forgot your User ID or Password

WELCOME SCREEN. Enter User ID. Enter Password. Click if you forgot your User ID or Password WELCOME SCREEN Welcome to the ScrapConnect iphone app. With this app you can log on to access the ASNE (Advance Ship Notice Entry) and FastPay Applications. Your User ID and Password are the same as your

More information

1 Copyright FATbit Technologies. All Rights Reserved.

1 Copyright FATbit Technologies. All Rights Reserved. Contents 1.0 Affiliate Module... 2 1.1 Registration... 3 2.0 Sharing... 5 3.0 Profile... 5 3.1 My Account... 6 3.1.1 My Account... 6 3.1.2 Payment Information... 8 3.2 My Credits... 9 3.3 Change Password...

More information

QuickBooks Payments For WooCommerce : Introduction: Installation: Requirements:

QuickBooks Payments For WooCommerce : Introduction: Installation: Requirements: QuickBooks Payments For WooCommerce : Introduction: QuickBooks Payments For WooCommerce provides an easier, cost effective and simple alternative for a small business for accepting credit cards. Customers

More information

MERCHANT INTEGRATION GUIDE. Version 2.7

MERCHANT INTEGRATION GUIDE. Version 2.7 MERCHANT INTEGRATION GUIDE Version 2.7 CHANGE LOG 1. Showed accepted currencies per payment option. 2. Added validation for RUB payments. INTRODUCTION MegaTransfer provides a wide range of financial services

More information

PHPBasket 4 Administrator Documentation

PHPBasket 4 Administrator Documentation PHPBasket 4 Please ensure you have the latest version of this document from http://www.phpbasket.com Contents CONTENTS 2 REQUIREMENTS 3 INSTALLATION 4 PREPARATION 4 UPLOAD 4 INSTALLATION 4 ADMINISTRATOR

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

Donation Cart. User Guide

Donation Cart. User Guide Donation Cart User Guide Rev 6/5/2009 2008 CHARGE Anywhere, LLC. All trademarks, service marks, and trade names referenced in this material are the property of their respective owners. Contents 1 PURPOSE...

More information

BUSINESS CARDS. WHEN ORDERING, REFERENCE BID # on your requisition. Example: Qty of Business Cards for John Runnels

BUSINESS CARDS. WHEN ORDERING, REFERENCE BID # on your requisition. Example: Qty of Business Cards for John Runnels BUSINESS CARDS Awarded Vendor: Thermcraft MUNIS VENDOR NUMBER: 9754 WHEN ORDERING, REFERENCE BID #007-16 on your requisition. Enter your requisition to the vendor listed above. In your description field

More information

ReCPro TM User Manual Version 1.15

ReCPro TM User Manual Version 1.15 Contents Web Module (recpro.net)... 2 Login... 2 Site Content... 3 Create a New Content Block... 4 Add / Edit Content Item... 5 Navigation Toolbar... 6 Other Site Tools... 7 Menu... 7 Media... 8 Documents...

More information

ROAMpay TM. X4 User's Guide

ROAMpay TM. X4 User's Guide ROAMpay TM X4 User's Guide Last Modified: 06/14/2013 Contents 1 Activating ROAMpay X4 2 Using the System 2 Login 2 First-time Login 2 Default Settings 3 Retrieving Your Password 3 Online Sales 4 Saved

More information

HOTDOCS DOCUMENT SERVICES

HOTDOCS DOCUMENT SERVICES HotDocs Document Services ~ February 2012 Page 1 HOTDOCS DOCUMENT SERVICES Getting Started in the Cloud AT A GLANCE Sign up for HotDocs Document Services Receive contract order confirmation email Install

More information

https://agent.pointandpay.net/pointandpay_counter/

https://agent.pointandpay.net/pointandpay_counter/ Quick Reference Guide 1. How to login Point & Pay Save the Point&Pay Admin Web-URL in your favorites: https://agent.pointandpay.net/pointandpay_counter/ Always use Internet Explorer. Note: Avoid upgrading

More information

Affiliate Guide. Version Jan 2017

Affiliate Guide. Version Jan 2017 Website: http://magehit.com Contact: sale@magehit.com Affiliate Guide Version 4.0.5 - Jan 2017 Configuration Go to System >> Configurations >> MageHit >> Affiliate Pro (or Affiliate Pro >> Configuration)

More information

SPECIFICATIONS Insert Client Name

SPECIFICATIONS Insert Client Name ESSENTIAL LMS BRANDING SPECIFICATIONS Insert Client Name Creation Date: June 23, 2011 Last Updated: July 11, 2017 Version: 16.5 Page 1 Contents Branding Elements... 3 Theme Management... 3 Header Images...

More information

BSE-SINGLE SIGN ON. For Brokers/ Banks/ Mutual Funds

BSE-SINGLE SIGN ON. For Brokers/ Banks/ Mutual Funds BSE-SINGLE SIGN ON For Brokers/ Banks/ Mutual Funds Contents Introduction:... 2 Features:... 2 Advantages:... 2 On-boarding process.... 3 SSO application Login Process... 7 Authentication via OTP... 7

More information

OLLI Online Registration Training

OLLI Online Registration Training OLLI Online Registration Training 1 Locating New OLLI at UK Online Registration Website There are two ways to find the OLLI at UK new online registration website: 1. Type the web address directly into

More information

The Deanship of Academic Research The University Of Jordan. A Manual for the Journals Portal (Reviewer)

The Deanship of Academic Research The University Of Jordan. A Manual for the Journals Portal (Reviewer) The Deanship of Academic Research The University Of Jordan A Manual for the Journals Portal (Reviewer) A Manual for the journals portal (Dirasat) / (Reviewer) This file illustrates the steps needed to

More information

Supplier Guide: Responding to a Contracting Opportunity

Supplier Guide: Responding to a Contracting Opportunity Supplier Guide: Responding to a Contracting Opportunity Steps to Respond to a Contracting Opportunity: 1) Access the ProcureOne login page by clicking the link found within the supplier section of Fanniemae.com

More information

TSSA PORTAL TRAINING GUIDE

TSSA PORTAL TRAINING GUIDE TSSA PORTAL TRAINING GUIDE Owner Processes Page 0 Table of Contents Contents 1.1 Redeem Invitation... 2 1.2 Reset Password... 5 1.3 Manage Profile... 7 2.1 View Your Record(s) of Inspection... 8 2.2 Validate

More information

Integrate LinkedIn. Contents

Integrate LinkedIn. Contents Integrate LinkedIn LinkedIn has become a powerful content platform, with B2B marketers telling us that half of the traffic they receive from social networks comes from LinkedIn. Make sure your content

More information

ADERP ISUPPLIER PORTAL USER MANUAL VERSION 1.2

ADERP ISUPPLIER PORTAL USER MANUAL VERSION 1.2 ADERP ISUPPLIER PORTAL USER MANUAL VERSION 1.2 Document Control Change Record 4 Date Author Version Change Reference 12-Dec-2016 DOF 1.0 08-Feb-2017 DOF 1.1 Updated with new URL links 23-Mar-2017 DOF 1.2

More information

Getting Around. Welcome Quest. My Fundraising Tools

Getting Around. Welcome Quest. My Fundraising Tools As a registered participant of this event, you have a variety of tools at your fingertips to help you reach your goals! Your fundraising center will be the hub for managing your involvement and fundraising

More information

zipform Plus OREF Order Process

zipform Plus OREF Order Process OREF Order Process Starting in zipform Plus New Users 1. Create a new zipform account at www.ziplogix.com 2. Add the OREF Form Package to your shopping cart. The OREF forms will be available at no cost.

More information

Registration Cheat Sheet

Registration Cheat Sheet Registration Cheat Sheet Click on the links below for step-by-step instructions on how to register for the Vitality Walk online at www.parkinsonrockies.org/vitalitywalk A few important notes before you

More information

Magento Enterprise Edition. User Guide. Part IV: Customers Sales & Orders Payments Shipping Taxes. Version

Magento Enterprise Edition. User Guide. Part IV: Customers Sales & Orders Payments Shipping Taxes. Version Magento Enterprise Edition User Guide Part IV: Customers Sales & Orders Payments Shipping Taxes Version 1.14.2 Contents Customers 1 Chapter 1: Customer Accounts 3 Customer Account Configuration 4 Customer

More information

Ajax login Magento2 Extension

Ajax login Magento2 Extension Ajax login Magento2 Extension Table of Contents Introduction to Ajax Login... 3 Version & Compatibility Support... 3 Features... 4 How to install this Module?... 4 Module Configuration... 5 General Configuration...

More information