OSCAR Documentation ) Developers For developer registration the java and jsp files involved are the following

Size: px
Start display at page:

Download "OSCAR Documentation ) Developers For developer registration the java and jsp files involved are the following"

Transcription

1 OSCAR Documentation Contents 1) Technical documentation of back end process. 2) Data Dictionary of OSCAR2005 database. 3) Directory Structure of Project OSCAR. 1) Technical documentation Technical documentation contains the registration process of developers and mentors, suggesting simulation ideas and links, submitting developed animations, allocation of animation idea to developers, mentoring animation to developer groups and animation ideas, automatic mail sending process, uploading documents related to animation and source code of the animations. 1.1) Registration 1.1.1) Developers For developer registration the java and jsp files involved are the following inside directory: oscar/web INF/classes/oscarBeans/ registerdeveloperform.java registerdeveloperaction.java confirmform.java confirmaction.java inside directory: oscar/pages/ registerdeveloper.jsp registerdeveloperconfirm.jsp Formwith developer details from registerdeveloper.jsp are submitted to registerdeveloperfrom.java. The corresponding getter and setter method for each field in the jsp file are written in the registerdeveloperform.java file. When the form is submitted in the jsp file the values for each property is set in the form bean. The object of this form bean is obtained in registerdeveloperaction.java and using that object values are obtained in the action and corresponding action is performed. When a developer group registers the submit buttons value will be 'Save'. When this value is obtained in the execute method of the registerdeveloperaction.java bean, two methods insertlogindetails() and insertdeveloperdetails() are called. The first method insert the details of the developer group in the login table with values for userid, username, password, usertype, registration time and last login time. The method creates an id by adding one to the maximum value of already present login_id from the login table. The login_id is the primary key of login table. After inserting these values into the login table, the second method is executed which inserts

2 the personnal details which the developer has filled in the registerdeloper.jsp file into the developers table. Along with the filled in details it also associates the foreign key of login_id to dev_login_id to the developers table and also creates a primary key by name dev_pri_key in the developers table. After inserting values into login table and developer table the control is returned to registerdeveloperconfirm.jsp. There the username which is created for that developer group is displayed and asked for a password. The developer group notes their userid and provides a password. When submitted, the password is set in confirmform.java whose values are obtained in confirmaction.java. The execute method of confirmaction.java updates the provided passowrd to the login table corresponding to the userid. The password before updation is encrypted using md5 encryption algorithm implememnted using the HashUtil.java bean. After updating the password a mail is send to all the devlopers in registered group using the sendmail() in the SendMail.java bean confirming them about the registration and along with that their userid and password is also send ) Mentors Files involved in mentor registration are as follows inside directory: oscar/web INF/classes/oscarbeans registermentorform.java registermentroformactio.java mentorregdetailsform.java metorregdetailsfromaction.java inside directory: oscar/pages registermentor.jsp mentorregdetails.jsp Form with mentor details from registermentor.jsp are submitted to registermentorform.java. The corresponding getter and setter method for each field in the jsp file are written in the registermentorform.java file. When the form is submitted in the jsp file the values for each property is set in the form bean. The object of this form bean is obtained in registermentorformaction.java and using that object values are obtained in the action and corresponding action is performed. For a mentor to register the first page is registermentor.jsp. One has to enter the username and password in the first page. Then the method checklogin() in the registermentorformaction.java will check whether the username is already taken by some other user or not. If it is not taken then only it will allow the user to go to the next page ie mentorregdetails.jsp. Then the username and password is inserted into the table using the method insertmentorlogin(). The loginid, username,passwod and usertype(here it is mentor) are inserted into the login table. The password before insertion is encrypted using md5 encryption algorithm implememnted using the HashUtil.java bean. The loginid is created by a method called makeid().

3 In this method id is created by adding one to the maximum value of the loginid already present in the login table. This is the primary key of the login table. Then the mentor has to enter the details like name, address, phone, , organization name, organization address and designation in the MentorRegDetails.jsp file. The values entered in this jsp file are inserted in to the mentors table using the two java files mentorregdetailsform.java and mentorregdetailsformaction.java. Here the getter and setter functions are written in the mentorregdetailsform.java file and the functions which inserts the values in to table are written in the mentorregdetailsformaction.java file. The method used is insertmentorlogin(). Here id is also inserted in to the mentors table along with the details collected from the user. id is the login id which was generated in the registermentorformaction.java file and which was inserted in to the login table. Here this id is a foreign key in the mentors table which is the primary key of the login table. After the registration a mail is send to the mentor using the sendmail() in the SendMail.java bean confirming about the registration and along with the userid and password. 1.2) Animation Idea Submission Java and jsp files involved in submitting an animation idea are inside directory: oscar/web INF/classes/oscarBeans suggestsimulationform.java suggestsimulationaction.java inside directory: oscar/pages suggestanimations.jsp Details regarding an idea for suggesting an animation development is filled in the form given in suggestanimations.jsp. The filled in values are set to suggestsimulationform.java using the respective settermethods. The getter methods fro retriveing the animations are also written in the form bean. The values entered by the user are obtained in the suggestsimulationaction.java bean. In the execute method of the action bean insertsimulationdata() is called after checking that the process is not accepting, rejecting or editing of any previously suggested animation idea. This verification is obtained by checking the value of the submit button coming to the action bean for suggesting animation ideas. The values of the suggested animation idea are obtained using the getter methods in the suggestsimulationform.java bean and the values are inserted into the suggest_simulation table. If the user wants to be a developer or a mentor of the suggested animnation idea corresponding submit values are obtained from the suggestsimulation.jsp page. A session variable is set for

4 identifying the simulation idea that has been suggested. The control is send to either developer or mentor registration page as per the value of the submit button. After the user is registered their userid is stored corresponding to the animation record in the suggest_simulation table in the datebase. This process is done in the registerdeveloperaction.java file inside the insertlogindetails() method. The action bean of suggesting idea for animation also has methods updatesimlulationdata() and getusersuggestedanimations(). The first method is used to update the edited values of already suggested animation idea. The editing can be either done by administrator, who has the facility to edit all the suggested animation idea. The ideas can also be edited by registered users if the corresponding idea is suggested by that user. The editsuggestedanimation.jsp file is used as the interface which shows the administartor or other users the values of a suggested animation idea which was submitted when freshly suggesting it. The value for populating the fields in the edit form is obtained using the showsuggestedsimulation() method in simulationdata.java bean. If the user who has logged in is administrator the button for accepting or rejecting the animation is shown along with the edit button. If the logged in user is either a developer or mentor the edit button is only shown for editing the animations suggested by them. 1.3) Animation Link submission Java and jsp files involved are inside directory: oscar/web INF/classes/oscarBeans suggestsimulationlinkform.java suggestsimulationlinkaction.java inside directory: oscar/pages suggestsimulationlink.jsp Users are provided with the option to suggest any animation related link through oscar. The form to suggest animation link are provided in the suggestsimulationlink.jsp. The values filled in the form are set using the setter method in the suggestsimulationlinkform.java. The values are stored using the insertsimulationlink() method in the suggestsimulationlinkaction.java bean. A method by name getarray() creates array of suggested animation links, associated text and the category values entered in the jsp form. These values are stored in the suggest_simulation_link table. 1.4) Search Java and jsp files involved are

5 inside directory: oscar/web INF/classes/oscarBeans searchform.java searchaction.java inside directory: oscar/pages oscarhomebody.jsp search.jsp searchresults.jsp The request for animation related items in oscar comes from any one of the two jsp pages. The first jsp page is the oscarhomebody.jsp which is the main oscar home page. A form for search has been included in the jsp file. The values from that form are set in corresponding variables in searchform.java. These values are obtained in the searchaction.java file using the searchform.java object created in the execute method of searchaction.java. The execute method in the action bean calls three methods for searching three different animations related items. The methods are searchsuggestedsimulations(), searchavailablesimulations(), searchotherlinks(). These three methods an arraylist object of the search result found. These arraylist objects are set in the session and is obtained in the searchresults.jsp file. The three methods searches in suggested_simulations, submitted_simulations, suggested_simulation_links table respectively according to the values entered by the user. The sql search query differs according to the search criteria. 1.5) Allocating Animations to registered Developer groups Java and jsp files involved are inside directory: oscar/web INF/classes/oscarBeans allocateanimationform.java allocateanimationaction.java inside directory: oscar/pages chooseanimationidea.jsp chooseanimationidea.jsp page serves three purposes. It lists all the available animation idea for development. It allows registered developer groups to take up animation idea. It also lists all the taken up animations by a developer group. The available animation list is obtained from the simulaiondata.java bean. The method getanimationstochoose() in simlationdata.java bean returns an array list object of all the accepted animation idea which has not been yet been taken up by the logged in developer group. These animation idea titles are displayed in the chooseanimationidea.jsp page with a link on it to

6 show the details and a form to take up that animation. It will also be shown whether the animation ideas have a mentor or not. The details regarding a particular animation idea is showed as a result of the array list object returned by the showsuggestedsimulation() method of simulationdata.java bean. It returns the details of a particular animation idea of respective id passed to the method as a parameter. A button is provided after the details of the animation idea to take up the animation. When thei button is clicked action goes to the allocateanimationaction.java where the id of the animation along with the groupid who took up the animation is stored. If there is a mentor alloted for that animation that entry in the table will be updated so that the mentor will be assigned to the group. The table which contains these details is the animation_allocations table. Automatic mail goes to group when they take up an animation idea for development confirming about the operation. If the animation idea taken up by the group already has a mentor then the automatic mail will go to both the mentor and the group informing the group about the mentorship and the mentor about the group which took the animation. 1.6) Taking up mentorship java and jsp files involved are inside directory: oscar/web INF/classes/oscarBeans MentorshipAllocationAction.java MentorshipAllocationForm.java inside directory: oscar/pages mentorship.jsp ongoingprojects.jsp animationpool.jsp A registered mentor can take up mentorship for two categories of projects. One category is the ongoing projects which contains the animation ideas taken up by one or more developer groups for developing. Another category contains all the animation ideas which have not yet been taken up by any developer group for development. Mentoring ongoing projects will be done by selecting the developer groups from the ongoingprojects.jsp file. The mentorship will be alloted to that group when the mentor clicks on the mentor groups button on which action takes place in the MentorshipAllocationAction.java file in allocatementotoongoing() function. The function will update the animation_allocations table in the database where the mentor will be added against the group which they have selected for mentoring in the ongoingprojects.jsp files. Mentors can also take up animation ideas for mentoring from the animationpool.jsp file. These

7 animations won't be taken up by any developer group. When a mentor takes up an animation idea for mentoring an entry in the table animation_allocations will be added for which the developer group field for that animation will be empty. The developers can see whether there is a mentor available for an animation or not on the basis of this entry. So when the developer takes up an animation with mentor availablity the table will be updated with the group id. Automatic mail goes to mentor confirming about the mentorship when the mentor takes animation from the pool or agrees to mentor a group from the ongoing projects list. In the later case mail will go to both mentor and the group informing about the process. 1.7) Sending Mails inside directory: oscar/web INF/oscarBeans SendMail.java This java bean is used to send mails to users registered in oscar. The send() method accepts 7 parameters. They are to address, from address, cc, bcc, subject of the mail, message of the mail and the smtp server. For oscar we are using smtp.iitb.ac.in as the smtp server to send mails. The cc and bcc fields are optional fields 1.8) Uploading files inside directory: oscar/web INF/oscarBeans uploadoscardocs.java The uploaddocument() method in the java bean uploads files to the server with the help of java beans in oscar/web INF/oscarBeans/upload directory. Uploading of ducuments comes in oscar while a fully developed animation is submitted by a user. The user is given option to upload a background reading file and an experiments listed file which are in.html format. User also has to upload the source code file of an animation. These files when uploaded goes to the oscar/uploadanimationdocments directory. When administrator accepts the animation the respective files of that animation is copied to oscar/onsitedocumentsdirectory. This is done by executing the copydirectory.sh shell script in the oscar/web INF/oscarBeans directory. 1.9) Simulation Data bean inside directory: oscar/web INF/classes simulationdata.java This bean contains 7 methods. This bean is mainly responsible for retrieving animation related data from the database. Alll the methods in this bean returns an array list object. The methods in the bean are as follows.

8 showsuggestedsimulation() showavailablesimulation() getallsugidandtitle() getavailidandtitle() getsuggestedlinks() getanimationstochoose() animationstakenby() showsuggestedsimulation() This method retrieves the details about a suggested animation idea from the database on the basis of the suggested animation idea id. First an Sql query is fired to select all the vaues of a particular animation idea. The links and associated text specified along with the animation idea when entered for the first time is obtained and assigned to the variables of suggestsimulationform.java bean using the setter methods. The value is obtained as an array. The array is split accordingly and the values are assigned to the form bean. Other data fields which are not of array data type are asssigned directly to the form bean variable. showavailablesimulation() This method gets the details of a particular submitted animation from the database. Before setting the variables in the submitanimationform any values, a checking is done in the method to find out whether the user has uploaded any background reading or experiment file or both along with the animation source code. If there are files the variables in the submitanimationform.java bean is set correspondingly. Rest of the details about the submitted animation like the title and description are also set to th submianimationform.java bean. getsugidandtitle() This method retrieves all the suggested simulation id and title. This helps to give a link to the title displayed. The id of the animation idea is given as a parameter to the method which is padded along with the url when clicked on the title link. According to the value of this id the showsuggestedsimulation method gets the details about a suggested animation idea as explained above. getavailidandtitle() This method is used to retrieve all the submitted animation title and id. The id is associated with the title.. The details regarding the animation is obtained using the id passed as the parameter to the method. 1.10) Domain Data bean This java bean has a method getareadata() which returns an array list object which contains all the category data in oscar. The data is obtained from the are_domain table. This method is generally used to populate the drop down menus in various jsp files where the area has to be chosen by the user. The method is accessed using an object of domaindatabean.java file. 2) Data Dictionary

9 Table name >available_simulations This table is for storing the available simulation details. + av_id integer (not null) > unique id for each available simulation av_title character varying(100) > available simulation title av_category character varying(75) > available simulation category av_authors text > authors of the available simulation av_advisor character varying(100) > advisor of the available simulation av_summary text > summary of the simulation av_animationdirectory text > directory in which available simulation is stored av_rating integer > rating for available simulation av_status character varying(30) > status of available simulation av_submitted_by av_keywords character varying(30) > the person who submits the simulation character varying(150) > keywords in the simulation which can be used while searching Table name > area_domain This table is for storing the area domain for each simulation id integer(not null) > unique id for different areas for simulation areaname character varying(50) > name of each area Indexes: "area_domain_pkey" primary key, btree (id) Table name > communications This table is for storing the communication details + sentmail_id integer (not null) >unique id for each mail sentmail_to character varying(30) > to address of mails sentmail_date timestamp without time zone > date of each sent mail sentmail_subject text > subject of each mail sent sentmail_message text > message sent sentmail_read boolean > flag for mail read receipt Indexes: "communications_pkey" primary key, btree (sentmail_id)

10 Table name > developers This table is for storing the developer details + dev_login_id integer > login id of the developer group after removing the 'OSCAR100'.This is a foreign key for the login_id in the login table dev_name character varying(75) > name of each developer dev_address text > address of each developer dev_city character varying(75) > city of each develoer dev_state character varying(75) > state of each developer dev_pin character varying(10) > pincode of each developer dev_phone character varying(75) > phone number of each develoer dev_ character varying(75) > id of each developer dev_cname character varying(75) > college name of each developer dev_caddress text > college address of each develoer dev_prikey integer (not null) > unique id for each developer dev_competition character varying(25) > whether the developer wish to join the competition or not. Indexes: "dev_pkey" primary key, btree (dev_prikey) Foreign key constraints: "fk_dev_login_id" FOREIGN KEY (dev_login_id) REFERENCES login(login_id) ON UPDATE CASCADE ON DELETE CASCADE Table name > discussion_forum This table is for storing the discussion forum details + post_id integer(not null) > unique id for each posting post_userid text[] > array to store the user id's of the persons who post the first message and its replies post_scheme character varying(100) > scheme for each posting(oscar) post_category character varying(150) > category for each posting post_question text > each question in the discussion forum postings post_response text[] > array to store the responses for a particular postiing post_time text[] > array to store the time for a particular posting and its replies Indexes: "discussion_forum_pkey" primary key, btree (post_id)

11 Table name > feedback This table is for storing the feedback details + name character varying(50) > name of the person who sends feedback character varying(50) > id of the person who sends feedback comment text > feedback Table name > login This table is for storing the login details + login_id integer ( not null ) > id of each person or group who all are able to login to OSCAR login_name character varying(75) > login name of each person or group who logs in login_password character varying(75) > password for each person or group who logs in login_user_type character varying(75) > type of user (mentor or developer or admin) login_reg_time timestamp without time zone > time of registration login_lastlogin timestamp without time zone > last login time login_count integer > total number of login Indexes: "login_pkey" primary key, btree (login_id) Table name > mentors This table is for storing the mentor details + men_login_id integer login id for the mentors > This is a foreign key for the login_id in the login table men_name character varying(75) > name of the mentor men_address text > address of the menor men_phone character varying(25) > phone number of the menor men_ character varying(50) > id of the mentor men_orgname character varying(50) > organization name of the mentor men_orgaddr text > organization address of the mentor men_desig character varying(50) > designationof the mentor Foreign key constraints: "fk_menloginid" FOREIGN KEY (men_login_id) REFERENCES login(login_id) ON UPDATE CASCADE ON DELETE CASCADE

12 Table name > sponsor This table is for storing the sponsor details. Sponsor can enter their details in the sponsor page + sp_id integer > id for each sponsor sp_name character varying(50) > name of sponsor sp_ character varying(50) > id of the sponsor Table name > suggested_links This table is for storing the links suggested. + sl_id integer ( not null ) > unique is for each suggested link sl_person_name character varying(100) > name of the person who suggested the link sl_person_ character varying(100) > id of the person who suggested the link sl_category text[] > array for storing 3 categories of the 3 link suggested sl_links text[] > array for storing the 3 links suggested sl_link_texts text[] > array for storing the 3 link textsfor the 3 links suggested sl_status character varying(50) > status of the suggested links Indexes: "suggested_links_pkey" primary key, btree (sl_id) Table name > suggested_simulations This table is for storing the simulation ideas suggested + sug_id integer ( not null ) > id of the simulation idea suggested sug_author character varying(100) > author of the idea sug_title character varying(100) > title fotr the idea sug_category character varying(50) > category for the idea sug_bgreading text > background reading for the idea sug_submittedby character varying(50) > the person who submits the idea sug_ character varying(50) > id of the person who suggests the idea. sug_links text[] > array for storing the 2 associated links for the idea sug_linktexts text[] > array for storing the 2 link texts for the 2 links sug_summary text > summary o the suggested idea sug_status character varying(25) > status of the idea suggested sug_suggested_time timestamp without time zone > time of suggestion

13 sug_by sug_taken_by character varying(75) > the person who suggests the idea character varying(20)[] > array for storing id's of the persons who selects the idea for developing or for mentoring sug_preference character varying(2)[] > preferences for development( the developer sets for ideas to develop) Indexes: "suggested_simulations_pkey" primary key, btree (sug_id) 3) Directory Structure Project OSCAR has the following directory structure. oscar AnimationAssociatedDocuments META INF WEB INF classes oscarbeans upload documents images inc onsitedocumentsdirectory pages AnimationAssociatedDocuments: This directory contains the submitted animations. There are sub directories in this directory which are the submitted animation ids. META INF: This directory contains all the library files needed for JAVA. WEB INF: This directory contains the structs configuration files and the tag library files. This also contains the classes directory where the class files and java files are stored which handles the backend process of OSCAR. documents: This directory contains the document files related to Project OSCAR and other pdf and doc files which are accessed through Project OSCAR.

14 images: All the images shown in the project OSCAr site are stored in this directory. onsitedocumentsdirectory: The animation accepted by the administrator are moved to this directory and is accessed from the Project OSCAR site. pages: This directory contains all the jsp files which forms the view part of project OSCAR.

Architecture Diagram. Figure 1 : Architecture Diagram

Architecture Diagram. Figure 1 : Architecture Diagram Architecture Diagram Figure 1 : Architecture Diagram Use Case Model Survey Patient: Figure 2 : Use Case Model Survey Patients can search for doctor and make online appointments. They also can view their

More information

Wireless Support. Mobile Node-Home Agent Shared Key. Use Case Example CHAPTER

Wireless Support. Mobile Node-Home Agent Shared Key. Use Case Example CHAPTER CHAPTER 19 This chapter provides the following information about using Cisco Prime Access Registrar (Prime Access Registrar) for wireless support: Mobile Node-Home Agent Shared Key 3GPP2 Home Agent Support

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

Virginia Henderson Global Nursing e-repository ( Henderson Repository or the repository ) Eleven-Step Instruction Guide for Submissions

Virginia Henderson Global Nursing e-repository ( Henderson Repository or the repository ) Eleven-Step Instruction Guide for Submissions A resource of the Honor Society of Nursing, Sigma Theta Tau International Virginia Henderson Global Nursing e-repository ( Henderson Repository or the repository ) Eleven-Step Instruction Guide for Submissions

More information

Andowson Chang

Andowson Chang Andowson Chang http://www.andowson.com/ All JForum templates are stored in the directory templates, where each subdirectory is a template name, being the default template name callled default. There you

More information

AIS Student Guide for submitting a Turnitin Assignment in Moodle

AIS Student Guide for submitting a Turnitin Assignment in Moodle AIS Student Guide for submitting a Turnitin Assignment in Moodle Before you start Turnitin currently accepts the following file types for upload into an assignment: Microsoft Word (.doc and.docx) Plain

More information

JOBWIRE CANDIDATE USER GUIDE

JOBWIRE CANDIDATE USER GUIDE JOBWIRE CANDIDATE USER GUIDE To access the Jobwire site, select Set up a personal account to view jobs, upload your resume and cover letters, and set up job alerts. at https://www.naceweb.org/jobwire/jobwire.aspx?referal=connections&menuid=271&nodetype

More information

EARLE B. TURNER, CLERK OF COURT CIVIL DIVISION Attorney E-File Procedures

EARLE B. TURNER, CLERK OF COURT CIVIL DIVISION Attorney E-File Procedures Created on 12/12/2011- Updated on Page 1 of 12 1. Purpose: The purpose of this document is to outline the steps for the Attorney to register and file pleadings online. 2. Who uses this business procedure:

More information

Data Service Patterns Jeff Zhuk

Data Service Patterns Jeff Zhuk Data Service Patterns Jeff Zhuk From the book and beyond Integration-Ready Architecture and Design Cambridge University Press Software Engineering With XML, Java,.NET, Wireless, Speech and Knowledge Technologies

More information

An Online Interactive Database Platform For Career Searching

An Online Interactive Database Platform For Career Searching 22 Int'l Conf. Information and Knowledge Engineering IKE'18 An Online Interactive Database Platform For Career Searching Brandon St. Amour Zizhong John Wang Department of Mathematics and Computer Science

More information

BBC Pitch. Production Company Guide

BBC Pitch. Production Company Guide BBC Pitch Production Company Guide Contents 1. Introduction... 2 2. Registration of your company... 2 3. Logging in... 5 4. Dashboard... 6 Create a new proposal... 7 Getting started... 8 Idea... 10 Adding

More information

BD-review a platform for Music Reviews

BD-review a platform for Music Reviews BD-review a platform for Music Reviews Daniel Graziotin, 4801, daniel.graziotin@stud-inf.unibz.it BD-review 1 / 21 Summary BD-review...1 Application Domain...3 Vision statement...3 Technology overview...3

More information

MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0

MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0 MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0 TABLE OF CONTENTS NO TOPICS PAGES 1 LOGIN 1-3 2 CHANGE PASSWORD 4 3 CREATE NEW REQUEST 5-7 4 VIEW REQUEST 8-9 5 LOGOUT 10 6 FORGOT

More information

WDD Fall 2016Group 4 Project Report

WDD Fall 2016Group 4 Project Report WDD 5633-2 Fall 2016Group 4 Project Report A Web Database Application on Loan Service System Devi Sai Geetha Alapati #7 Mohan Krishna Bhimanadam #24 Rohit Yadav Nethi #8 Bhavana Ganne #11 Prathyusha Mandala

More information

The Ethic Management System (EMS) User guide

The Ethic Management System (EMS) User guide The Ethic Management System (EMS) User guide On the web browser, type the URL link: https://www.witsethics.co.za Click on Login (on right corner of top menu bar) to access the Ethics Management System

More information

Contact Information: How do I get started?

Contact Information: How do I get started? eportfolio Lab Hours: Mon: 9:00am 1:00pm Tues: 2:00pm 7:00pm Wed: 12:00pm 5:00pm Thurs.: 2:00pm 7:00pm Fri: 12:00pm 5:00pm Sat: 1:00pm 5:00pm Lab Location: G606 Contact Information: 718-260-5243 itec@citytech.cuny.edu

More information

Guide to the Distributor Zone

Guide to the Distributor Zone Guide to the Distributor Zone Registering for a Distributor account Logging into the Distributor Zone Updating your profile Registering for a Challenge Registering a Participant Connecting a Participant

More information

EFM Community 3.1 Portal Administration Guide

EFM Community 3.1 Portal Administration Guide EFM Community 3.1 Portal Administration Guide WHITE PAPER For technical support please call: 1-800-787-8755 Or visit: Hwww.Vovici.comH Please contact Vovici technical support if you believe any of the

More information

The exam registration is performed by the primary level user [Lecturer/ Course advisor].

The exam registration is performed by the primary level user [Lecturer/ Course advisor]. The Exam Registration can be done in 2 modes: 1. College mode Used to register students for examination in group by the college authority. 2. Student mode Used by the student to register himself/herself

More information

Creating Web Application with BEA WebLogic Workshop. Jeff (Yefim) Zhuk

Creating Web Application with BEA WebLogic Workshop. Jeff (Yefim) Zhuk Creating Web Application with BEA WebLogic Workshop Jeff (Yefim) Zhuk author of the book Integration-Ready Architecture and Design by Cambridge University Press Software Engineering With XML, Java,.NET,

More information

Tyler Identity User Account Management New World ERP Foundation

Tyler Identity User Account Management New World ERP Foundation Tyler Identity User Account Management New World ERP Foundation 2018 Tyler Technologies, Inc. Data used to illustrate the reports and screens may include names of individuals, companies, brands, and products.

More information

National Seeds Corporation Limited

National Seeds Corporation Limited BIDDER REGISTRATION MANUAL Click to the Registration link shown on the website https://indiaseeds.eproc.in Step1: Fill the details 1. Enter your USER Id (6 to 15 character) 2. Enter your Password (8 to

More information

Alpha College of Engineering and Technology. Question Bank

Alpha College of Engineering and Technology. Question Bank Alpha College of Engineering and Technology Department of Information Technology and Computer Engineering Chapter 1 WEB Technology (2160708) Question Bank 1. Give the full name of the following acronyms.

More information

Instructions for using the board s case portal

Instructions for using the board s case portal Instructions for using the board s case portal Any written inquiry concerning a case pending before the board, including submission of a defense, must be made via the case portal of the Complaints Board,

More information

Events at Towson University: Editor s Guide

Events at Towson University: Editor s Guide Events at Towson University: Editor s Guide Table of Contents INTRODUCTION... 3 LOGGING IN... 3 ADMIN DASHBOARD... 4 ADDING AND MANAGING EVENTS... 4 ADDING AN EVENT... 4 MANAGING EVENTS... 8 Editing an

More information

Administrator Level Prism Training Manual

Administrator Level Prism Training Manual Administrator Level Prism Training Manual Table of Contents Major topics to be addressed... 3 Brief description of each topic... 3 How to register on PRiSM if you are a staff member... 3 Brief Introduction

More information

The following screen will appear.

The following screen will appear. Visit : as1.ori.nic.in/quarters The following screen will appear. Who has to register in e-quarters System : 1. If you are applying for G.A. Pool quarters for the first time 2. You are existing occupant,

More information

Digitized Engineering Notebook

Digitized Engineering Notebook Governors State University OPUS Open Portal to University Scholarship All Capstone Projects Student Capstone Projects Spring 2017 Digitized Engineering Notebook Mohammed Feroz Governors State University

More information

Screen Shots and Directions on How to Submit Your Abstract for SNCURCS. For Information on Abstract Submission and Registration

Screen Shots and Directions on How to Submit Your Abstract for SNCURCS. For Information on Abstract Submission and Registration Screen Shots and Directions on How to Submit Your Abstract for SNCURCS SNCURCS2018@ncsu.edu For Information on Abstract Submission and Registration Start Here Everyone except for NC State Students and

More information

IssueTrak End User Training

IssueTrak End User Training IssueTrak End User Training Table of Contents GETTING STARTED... 3 PURPOSE... 3 DEFINITIONS... 3 SIGN IN... 4 INITIAL SETTINGS... 5 Security Question... 5 Initial Screen... 6 My Settings... 6 Changing

More information

Kroger Supplier Hub QRG September 2017

Kroger Supplier Hub QRG September 2017 Version 14.0.4 September 2017 2017 1. Process Overview... 3 2. Invitation to the Hub... 4 3. First Login and Password Requirements... 5 4. General Information... 5 5. Imported Products and Packaging...

More information

MSEDCL e-tendering Help-Contractor. MSEDCL e-tendering Contractor s Guide

MSEDCL e-tendering Help-Contractor. MSEDCL e-tendering Contractor s Guide MSEDCL e-tendering Contractor s Guide 1 Table Of Contents Getting Started... 3 Getting Started... 3 Understanding MSEDCL e-tendering System... 3 Logging in... 4 Messages... 5 Sending Reply... 5 Tenders...

More information

Electronic Submission System User procedures document MAY 2018

Electronic Submission System User procedures document MAY 2018 Electronic Submission System User procedures document MAY 2018 Electronic Submission System User Guide 1 What s new? This user guide was updated in May 2018 to include recent changes to the Electronic

More information

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop 205CDE Developing the Modern Web Assignment 2 Server Side Scripting Scenario D: Bookshop Introduction This assignment was written using PHP programming language for interactions with the website and the

More information

The system has several front-end content discovery options. Here are examples of their interfaces (see more on our site at

The system has several front-end content discovery options. Here are examples of their interfaces (see more on our site at November, 2014 1 TrenDemon is a content marketing platform which helps boost conversions from your existing traffic and content using personalized recommendations and call to actions. The system has several

More information

PROVIDER WEBSITE SITE ADMINISTRATOR GUIDE » PATIENT INQUIRY» CLAIM CENTER» FIND A DOCTOR» CLAIMS EDITING SYSTEM (CES)

PROVIDER WEBSITE SITE ADMINISTRATOR GUIDE » PATIENT INQUIRY» CLAIM CENTER» FIND A DOCTOR» CLAIMS EDITING SYSTEM (CES) PROVIDER WEBSITE SITE ADMINISTRATOR GUIDE» PATIENT INQUIRY» CLAIM CENTER» FIND A DOCTOR» CLAIMS EDITING SYSTEM (CES) 2018 WPS Health Plan, Inc. 1 All rights reserved. JO7048 28898-085-1801 ADMINISTRATIVE

More information

User Guide Published: 08/02/2010

User Guide Published: 08/02/2010 User Guide Published: 08/02/2010 Table of Contents 1 Revision History... 4 2 Introduction... 5 3 Accessing the TRAC Connect System... 5 3.1 Getting Started... 5 3.2 Registration... 8 3.3 Login... 11 3.4

More information

RCR Registry Signup Portal Steps for Signup Updated September 2015

RCR Registry Signup Portal Steps for Signup Updated September 2015 RCR Registry Signup Portal Steps for Signup Updated September 2015 2015 FIGMD, Inc. & American College of Rheumatology Contents 2 Introduction 2 Sign up 3 Log into the Signup Portal 4 Signup Portal Overview

More information

Lab 1 - Getting started with OIM 11g

Lab 1 - Getting started with OIM 11g Lab 1 - Getting started with OIM 11g Contents Lab 1 - Getting started with OIM 11g... 1 1. Introduction... 1 2. Contents... 3 2.1 VM Accessibility... 3 2.2 Understand directory structures... 4 2.3 Database

More information

Table Of Contents Table Of Contents... 1 Definitions... 2 Account Creation/Retrieval... 2 Individual Papers... 6 Poster presentations...

Table Of Contents Table Of Contents... 1 Definitions... 2 Account Creation/Retrieval... 2 Individual Papers... 6 Poster presentations... AllAcademic Submission Manual Table Of Contents Table Of Contents... 1 Definitions... 2 Account Creation/Retrieval... 2 Individual Papers... 6 Poster presentations... 10 Definitions An individual paper

More information

SRM Training Manual Supplier

SRM Training Manual Supplier SRM Training Manual Supplier Create Date: 10/10/2016 REVIEW: 005 Last Modify Date: 11/09/2016 AM/NS Calvert SRM TECHNICAL SUPPORT EMAIL: AMNS_SupplierTechSupport@ArcelorMittal.com PHONE: 866-377-7754 Summary

More information

INCOSE Submission Instructions

INCOSE Submission Instructions INCOSE Submission Instructions About this document This document will help you using INCOSE s online submission system. The software used is called EasyChair. This guideline will help you to submit a paper,

More information

LIFESCREEN CASE MANAGEMENT SYSTEM (CMS) ADVISOR USER GUIDE

LIFESCREEN CASE MANAGEMENT SYSTEM (CMS) ADVISOR USER GUIDE LIFESCREEN CASE MANAGEMENT SYSTEM (CMS) ADVISOR USER GUIDE 1 CONTENTS 1. LOGGING IN (PAGES 3-5) 2. ANNOUNCEMENTS (PAGE 6) 3. HOME PAGE, DESCRIPTION OF TERMS (PAGES 7-8) 4. SEARCH FUNCTIONS (PAGE 9) 5.

More information

erequest How to apply guide

erequest How to apply guide Overview is an application that assists UCB in request life cycle management. UCB has clear guidance in place on what they can support or sponsor. Online requests will go through an internal review and

More information

Website Designing for

Website Designing for 5 Website Designing for www.scap.com.pk Complete Proposal for website designing and associated web solutions of www.scap.com.pk. The web solutions included, Search Engine Optimization and web hosting.

More information

Important Information

Important Information February 2017 Important Information The following information applies to Proofpoint Essentials US2 data center only. User Interface Access https://usproofpointessentials.com MX Records mx1-usppe-hosted.com

More information

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE)

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Data Dictionary User Guide Version 1.1 (20 May 2016) Prepared By: (On behalf of Alion Science and Technology) For: US Army

More information

Presented by: Victoria Ossenfort Office of Library and Information Services

Presented by: Victoria Ossenfort Office of Library and Information Services Presented by: Victoria Ossenfort Office of Library and Information Services Introduction What is the SUNY Digital Repository? A digital archive used to collect, manage, maintain and disseminate the intellectual

More information

User Guideline v 2.1. For assistance please contact Grapevine on or

User Guideline v 2.1. For assistance please contact Grapevine on or SMS Broadcast User Guideline v 2.1 Support : Feedback : For assistance please contact Grapevine on +27 21 702 3333 or email support@vine.co.za Please email info@vine.co.za with your comments and feedback

More information

Tier II Portal Tutorial. Latest Revision January

Tier II Portal Tutorial. Latest Revision January Tier II Portal Tutorial Latest Revision January 2018 2018 Topics to be covered 1. Creating the Tier2Submit file 2. Accessing the portal 3. Populating the input fields on the portal 4. Uploading your Tier2Submit

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

ECONOMIC OPERATOR USER MANUAL EUROPEAN DYNAMICS S.A.

ECONOMIC OPERATOR USER MANUAL EUROPEAN DYNAMICS S.A. Republic of Armenia Armenian e-procurement System (ARMEPS) ECONOMIC OPERATOR USER MANUAL EUROPEAN DYNAMICS S.A. Table of Contents Table of Contents... 2 1. ARMEPS workflow and terms... 8 2. General Functionality...

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

RTI Online NODAL OFFICER MODULE

RTI Online NODAL OFFICER MODULE RTI Online NODAL OFFICER MODULE URL To access RTI Application The URL of the RTIMIS software is : rtionline.gov.in/rtimis RTIMIS should be in capital letters. Login Window After providing the username

More information

User Guide My Account

User Guide My Account User Guide My Account Page 1 of 14 Table of Contents Welcome...3 Registration...4 Log onto My Account...6 View Account Balances...9 View Cylinder Balances...9 Copy Documents...10 Legal & Privacy Documentation...13

More information

Commissioner of Geology and Mining Quarry Permit

Commissioner of Geology and Mining Quarry Permit Commissioner of Geology and Mining Quarry Permit User Manual Version 1.0 Date: April 2018 2016 (n)code Solutions A Division of GNFC Ltd Table of Contents Application URL... 3 Online user registration...

More information

Digitized Engineering Notebook

Digitized Engineering Notebook Governors State University OPUS Open Portal to University Scholarship All Capstone Projects Student Capstone Projects Spring 2017 Digitized Engineering Notebook Naga Venkata Sandeep Kavuru Governors State

More information

California Career Development Event Online Registration

California Career Development Event Online Registration California Career Development Event Online Registration 1 Table of Contents About This Program... 1 Event Registration... 1... 5 Field Day Setup... 6 Field Day Event Setup... 6 Contest Setup... 7 Mailing

More information

Instructions for EasyChair Abstract Submission SET UP YOUR ACCOUNT

Instructions for EasyChair Abstract Submission SET UP YOUR ACCOUNT Instructions for EasyChair Abstract Submission SET UP YOUR ACCOUNT The submission of abstract for APRC2 will be managed through an online conference paper management system called EasyChair. This system

More information

User Guide for the Online Application. OCC Front Office Portal G3 Front Office2.5

User Guide for the Online Application. OCC Front Office Portal G3 Front Office2.5 User Guide for the Online Application OCC Front Office Portal G3 Front Office2.5 0 TABLE OF CONTENTS ONLINE APPLICATION PROCESS o How Do I Apply For Export Market Access? 2 COMPETING THE APPLICATION FORM

More information

Using the Migration Utility to Migrate Data from ACS 4.x to ACS 5.5

Using the Migration Utility to Migrate Data from ACS 4.x to ACS 5.5 6 CHAPTER Using the Migration Utility to Migrate Data from ACS 4.x to ACS 5.5 This chapter describes how to migrate data from ACS 4.x to ACS 5.5 and contains: Introduction, page 6-1 Running the Migration

More information

PIAB Solicitors Portal. A solicitor user guide:

PIAB Solicitors Portal. A solicitor user guide: PIAB Solicitors Portal A solicitor user guide: The PIAB Solicitors Portal is a secure, web based platform where authorised users can access information in relation to their client s claims and correspond

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

Visual Guide to Editorial Manager

Visual Guide to Editorial Manager Visual Guide to Editorial Manager 0 P a g e QUICK AND EASY EDITORS GUIDE TO EDITORIAL MANAGER The following is the step-by-step process for the submission and handling of manuscripts on this system. I.

More information

SSH Device Manager user guide.

SSH Device Manager user guide. SSH Device Manager user guide Contact yulia@switcharena.com Table of Contents Operation... 3 First activation... 3 Adding a device... 4 Adding a script... 5 Adding a group... 7 Assign or remove a device

More information

For other details about the campaign including Frequently Asked Questions, please visit

For other details about the campaign including Frequently Asked Questions, please visit EMPLOYEE CAMPAIGN PLEDGE FORM HELP GUIDE I have an @ledcor.com email address This guide will help you register and login to the Ledcor Cares Employee Campaign pledge form and walk you through the easy

More information

City of Aurora. Development Review Plans Submission and Referral Website. Public and Agency Referral Instruction Guide

City of Aurora. Development Review Plans Submission and Referral Website. Public and Agency Referral Instruction Guide City of Aurora Development Review Plans Submission and Referral Website Public and Agency Referral Instruction Guide Table of Contents Introduction... 3 Project Search (Public only)... 4 Project Search

More information

Important Information

Important Information May 2014 Important Information The following information applies to Proofpoint Essentials US1 data center only. User Interface Access https://usproofpointessentials.com MX Records mx1-usppe-hosted.com

More information

Design and Implementation of READ, REVIEW & ASSESS SYSTEM GRADUATE PROJECT SPRING 2002 ABHIJEET TRIVEDI COMMITTEE MEMBERS

Design and Implementation of READ, REVIEW & ASSESS SYSTEM GRADUATE PROJECT SPRING 2002 ABHIJEET TRIVEDI COMMITTEE MEMBERS Texas A&M University Corpus Christi College of Science and Technology Department of Computing and Mathematical Sciences Design and Implementation of READ, REVIEW & ASSESS SYSTEM GRADUATE PROJECT SPRING

More information

APA On-Line Fellows Application Platform Instructions for Applicants

APA On-Line Fellows Application Platform Instructions for Applicants APA On-Line Fellows Application Platform Instructions for Applicants Introduction... 2 Accessing the System... 2 Authorization... 3 Create New Application... 3 Add Contact Information... 4 Educational

More information

Go to the Directory at and click on the Login link.

Go to the Directory at  and click on the Login link. Welcome to Terra Dotta s Study Abroad Directory! Creating your programs for the directory is a simple task. These instructions will outline how to create, activate and update your program brochures. Logging

More information

MEMBER GUIDE. Username / Password Reset. If you have not yet requested a password reset, that would be the first step. To do this: STEP 1

MEMBER GUIDE. Username / Password Reset. If you have not yet requested a password reset, that would be the first step. To do this: STEP 1 Account Information 23 sabrestreasurer Log Out MEMBER GUIDE Username/Password Reset Update Credit Card/Cancel Subscription Change/Add Email Multi-Site Access Claim Dibs Signup Errors Username / Password

More information

JINC THE ADMINISTRATION GUIDE

JINC THE ADMINISTRATION GUIDE JINC THE ADMINISTRATION GUIDE Author Lhacky Date 06 September 2010 Version 1.0 Software Version JINC 0.7 1 SUMMARY About this document...3 Intended audience...3 JINC Capabilities...4 JINC Installation...6

More information

3.0 Record Book Functionality by User

3.0 Record Book Functionality by User 3.0 Record Book Functionality by User 3.1 Student 3.1.1 Login Training Guide - Department of Accountancy, University of Kelaniya To login with the student credentials click on Student icon which is shown

More information

Customer Online Support Demonstration. 1

Customer Online Support Demonstration.  1 Customer Online Support Demonstration 1 Introduction SATHYA is committed to simplifying and improving your support experience. As we launch our enhanced online case management capabilities, you will see

More information

Table of Contents RURO, Inc. All Rights Reserved

Table of Contents RURO, Inc. All Rights Reserved Table of Contents ABOUT THIS GUIDE... 7 Purpose of this Guide...7 ACCESSING THE SYSTEM AS A CLIENT PORTAL USER... 7 Navigating the Client Portal...7 Creating and Submitting a New Requisition...8 Accepting

More information

webcamp is a flexible software system that the Indiana CTSI uses for its internal pilot funding programs, as do many CTSAs across the nation.

webcamp is a flexible software system that the Indiana CTSI uses for its internal pilot funding programs, as do many CTSAs across the nation. Indiana University webcamp User Guide Application submission guide Abhijeet Malatpure, Ryan Long 10-1-2017 webcamp is a flexible software system that the Indiana CTSI uses for its internal pilot funding

More information

Hibernate OGM Architecture

Hibernate OGM Architecture HIBERNATE OGM Hibernate OGM Architecture Hibernate OGM Architecture http://docs.jboss.org/hibernate/ogm/4.0/reference/en-us/html_single/ Data Persistence How is Data Persisted Abstraction between the application

More information

AvePoint Office Connect Online Manager 1.0

AvePoint Office Connect Online Manager 1.0 AvePoint Office Connect Online Manager 1.0 Administration Guide Issued August 2017 1 Table of Contents Introduction...3 Submitting Documentation Feedback to AvePoint...4 Required Permissions...5 Brower

More information

15-415: Database Applications Project 2. CMUQFlix - CMUQ s Movie Recommendation System

15-415: Database Applications Project 2. CMUQFlix - CMUQ s Movie Recommendation System 15-415: Database Applications Project 2 CMUQFlix - CMUQ s Movie Recommendation System School of Computer Science Carnegie Mellon University, Qatar Spring 2016 Assigned date: February 18, 2016 Due date:

More information

Virginia Henderson International Nursing Library online research repository ( VHL repository or the repository )

Virginia Henderson International Nursing Library online research repository ( VHL repository or the repository ) A resource of the Honor Society of Nursing, Sigma Theta Tau International Virginia Henderson International Nursing Library online research repository ( VHL repository or the repository ) Ten-Step Instruction

More information

Transaction Cordinator: Design and Planning

Transaction Cordinator: Design and Planning Transaction Cordinator: Design and Planning Joshua Lee, Damon McCormick, Kim Ly, Chris Orimoto, John Wang, and Daniel LeCheminant October 4, 2004 Contents 1 Overview 2 2 Document Revision History 2 3 System

More information

Dubai Financial Services Authority DFSA eportal User Guide v1.docx Page 1 of 26

Dubai Financial Services Authority DFSA eportal User Guide v1.docx Page 1 of 26 Page 1 of 26 Table of Contents 1 Introduction... 3 1.1 Objective of the User Guide... 3 1.2 About Online Forms... 3 1.3 Security... 3 1.3.1 Security... 3 1.4 Overview of Online Forms Submission Process...

More information

BUSINESS ACCOUNT MANAGEMENT SYSTEMS (BAMS) AND TRAVEL MANAGEMENT COMPANIES (BAMS)

BUSINESS ACCOUNT MANAGEMENT SYSTEMS (BAMS) AND TRAVEL MANAGEMENT COMPANIES (BAMS) BUSINESS ACCOUNT MANAGEMENT SYSTEMS (BAMS) AND TRAVEL MANAGEMENT COMPANIES (BAMS) USER GUIDE Contents Contents Contents Contents 2 1. Introduction 3 2. Account Activation 4 3. BAMS 5 3.1 Logon 5 3.2 TMC

More information

Register yourself (for new applicants who are registering for Examination 2016)

Register yourself (for new applicants who are registering for Examination 2016) Carefully read this guide before you proceed for filling up the form. It will help you to gain knowledge as to how to fill up and submit your Application Form. This segment will guide you through the operational

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

name (network location id) network copy spokenname network location ntp server

name (network location id) network copy spokenname network location ntp server N name ( id) network copy spokenname ntp server 107 name ( id) N name ( id) To specify the name of a, use the name command in location configuration mode. To set the name to an empty string, use the no

More information

How to Activate Student Log in to the student Registration system (also known as My Community Education or Banner ).

How to Activate Student Log in to the student Registration system (also known as My Community Education or Banner ). How to Activate Student E-Mail 1. Log in to the student Registration system (also known as My Community Education or Banner ). 2. The new account notice shows at the top of the screen once signed in. Click

More information

Employer Data Service (EDS) User Guide: the Employer Reference Number in the Individualised Learner Record.

Employer Data Service (EDS) User Guide: the Employer Reference Number in the Individualised Learner Record. Employer Data Service (EDS) User Guide: the Employer Reference Number in the Individualised Learner Record. An Employer Reference Number (also known as ERN or Employer Identifier Number) is a requirement

More information

CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th

CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th Note: This project is done by two people team or individual. This project must be completed

More information

Aaple Sarkar DBT Portal

Aaple Sarkar DBT Portal Aaple Sarkar DBT Portal Aaple Sarkar DBT Portal (Direct Benefit Transfer) is an initiative taken by the Government of Maharashtra, which is a unique Platform for Citizens to help them to avail benefits

More information

CANVAS OBSERVER GUIDE

CANVAS OBSERVER GUIDE CANVAS OBSERVER GUIDE This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License Table of Contents Introduction...3 What is the Observer role?...4 How can I use Canvas

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

ABOUT THIS DOCUMENT. 2 CONTACT US. 2 REGISTRATION. 3 HOME PAGE. 5 CREATING AND COMPLETING A GRANT APPLICATION. 5 MANAGING AN APPLICATION.

ABOUT THIS DOCUMENT. 2 CONTACT US. 2 REGISTRATION. 3 HOME PAGE. 5 CREATING AND COMPLETING A GRANT APPLICATION. 5 MANAGING AN APPLICATION. Contents ABOUT THIS DOCUMENT... 2 CONTACT US... 2 REGISTRATION... 3 HOME PAGE... 5 CREATING AND COMPLETING A GRANT APPLICATION... 5 MANAGING AN APPLICATION... 8 SUBMISSION AND BEYOND... 9 CO-APPLICANTS

More information

Creating an Account. 1 P a g e A n g e l a V. P r o c t o r , A u g u s t 2 7

Creating an Account. 1 P a g e A n g e l a V. P r o c t o r , A u g u s t 2 7 HOW TO SUBMIT AND UPLOAD TO PROQUEST/UMI ETD Creating an Account From the main page of the ETD [Electronic Thesis and Dissertation]. Homepage site: http://www.etdadmin.com/subr At the top of the page on

More information

Magento Survey Extension User Guide

Magento Survey Extension User Guide Magento Survey Extension User Guide Page 1 Table of Contents To Access Plugin, Activate API Key... 3 Create Questions... 5 Manage Survey... 6 Assign Question to Survey... 7 Reveal Survey In Three Ways...

More information

Joint Venture Hospital Laboratories. Secure File Transfer Protocol (SFTP) Secure Socket Shell (SSH) User s Guide for plmweb.jvhl.

Joint Venture Hospital Laboratories. Secure File Transfer Protocol (SFTP) Secure Socket Shell (SSH) User s Guide for plmweb.jvhl. Joint Venture Hospital Laboratories Secure File Transfer Protocol (SFTP) Secure Socket Shell (SSH) User s Guide for plmweb.jvhl.org For Secure File Transfers via the Internet Introduction Version 2.2 April

More information

CCGT Grant Application System User Guide for Applicants

CCGT Grant Application System User Guide for Applicants CCGT Grant Application System User Guide for Applicants About this document This document describes how to register as a user of the CCGT Grant Application System, and how to use the system to apply for

More information

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link.

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link. How to Order a Four Panel Brochure through Print Services Go to the Print Services Web Page and select the Online Store link. 1 Enter your Username and Password on the Print Services Online Ordering home

More information

CONTENTS IN DETAIL INTRODUCTION 1 THE FAQS OF LIFE THE SCRIPTS EVERY PHP PROGRAMMER WANTS (OR NEEDS) TO KNOW 1 2 CONFIGURING PHP 19

CONTENTS IN DETAIL INTRODUCTION 1 THE FAQS OF LIFE THE SCRIPTS EVERY PHP PROGRAMMER WANTS (OR NEEDS) TO KNOW 1 2 CONFIGURING PHP 19 CONTENTS IN DETAIL INTRODUCTION xiii 1 THE FAQS OF LIFE THE SCRIPTS EVERY PHP PROGRAMMER WANTS (OR NEEDS) TO KNOW 1 #1: Including Another File as a Part of Your Script... 2 What Can Go Wrong?... 3 #2:

More information