A dvanced T echnology. A id C ollege C ampuses. Design Use Cases. Food Delivery App: SNACC ATTACC. Group Members:

Size: px
Start display at page:

Download "A dvanced T echnology. A id C ollege C ampuses. Design Use Cases. Food Delivery App: SNACC ATTACC. Group Members:"

Transcription

1 1 Design Food Delivery App: SNACC ATTACC A dvanced T echnology T o A id C ollege C ampuses Group Members: Jacques Chazelle Sarah George Shweta Kinger Catherine Lin Jonathan Luck Gregory Sabado Skyler Taylor Curtis Tong Victoria Tom Ben Tucker Kevin Wu

2 2 Table of Contents DUC 1 - User Account Creation 3 DUC 2 - User Login 5 DUC 3 - Forgot Password 7 DUC 4 - Check Order History 9 DUC 5 - Check Delivery History 11 DUC 6 - Becoming a Deliverer 13 DUC 7 - View Info 14 DUC 8 - Placing an Order 15 DUC 9 - List of Placed Orders - (In Queue) for the Deliverers 17 DUC 10 - Deliverer Accepting an Order 18 DUC 11 - Chat Client Between Deliverer and Orderer 20 DUC 12 - Confirming Meal Bought w/ Receipt 21 DUC 13A - Confirm order received 23 DUC 13B - Confirm payment received 25 DUC 14 - Cancelling an order 26 DUC 15 - Rating a Deliverer 27 DUC 16 - Rating an Orderer 29 DUC 17 - Deliverer Provides Pre-made Updates to Orderer 30 DUC 18 - User Logout 32 DUC 19 - User Settings 33

3 3 DESIGN USE CASE #1 - User Account Creation Dependent Pre-conditions Trigger Design The user creates a new account using their address and a password. The user will be able to create an account that they can use. The user wishes to create an account. N/A High SR 1 An account does not already exist with the entered as input and the user is on the login page. The system shall redirect the user to the login page. The user does not have an account yet and would like to register to use the application. 1. The frontend shall render Login.js 2. The user shall click on the Register button. 3. The frontend shall render and display the SignUp.js page. 4. The user shall input their name, , password, and phone number in the corresponding textboxes and click the Register button. 5. The backend (Firebase) shall validate the form. 6. The backend shall create a new user object under users with the info provided in adduser(). 7. The backend shall send an to the user s address with a link to verify their account. 8. The frontend shall alert the user that a verification has been said to their address. 9. The user shall access the received and click on the link. 10. The backend shall verify the user object in the database. Invalid Name: 4. The user shall input an invalid name containing non-alphabetic characters. 5. The system shall notify the user that the name can only contain alphabetic characters.

4 4 Invalid 4. The user shall input an invalid or already taken The system shall notify that the is invalid or taken. Not matching Passwords: 4. The user shall input nonmatching passwords. 5. The system shall notify the user that the passwords do not match. Invalid Phone Number: 4. The user shall input an invalid phone number not containing 10 characters and/or containing non-numeric #s. 5. The system shall notify the user that the name can only contain 10 numeric characters

5 5 DESIGN USE CASE #2 - User Login Dependent Pre-conditions Trigger Design The user can access their account using their and password. The user shall be able to login to the website using their account. The user wishes to login to the website using their account. DUC 1 High SR 3 The user already has a verified account, and has navigated to the login page. The system shall keep the user logged in until they logout. The user is not logged in and wants to access the application. 1. The frontend shall render and display the Login.js page. 2. The user shall enter their login credentials into the corresponding textboxes provided ( address and password) 3. The backend shall verify that the login credentials match the info of an active user object in the database, log the user into the application, and redirect the user to the Home.js page. 4. The frontend shall display the Home.js page to the user. Incorrect format: 2. The user shall enter their without the domain name (part and click the Login button. 3. The backend shall failed to authenticate the login and reject the login attempt. 4. The frontend shall display a notification to the user that the field is incorrectly formatted. User does not exist: 2. The user shall their and password without having registered and verified their account, and click the Login button. 3. The backend shall failed to authenticate the login and reject the login attempt.

6 6 4. The frontend shall display a notification to the user that user with the given does not exist. Incorrect password: 2. The user shall correctly their into the field and leave the password field blank (or enter it with incorrect info), and click the Login button. 3. The backend shall fail to authenticate the login and reject the login attempt. 4. The frontend shall display a notification to the user that the password is incorrect.

7 7 DESIGN USE CASE #3 - Forgot Password Dependent Pre-conditions Design The user will be able to reset their password by entering their . The user is sent an containing a link for resetting their password. The user shall be able to reset their password to be able to login into their account. The user wishes to reset their password to be able to login into their account. DUC1 Low SR 4 The user already has a verified account, and is on the login page. The system shall redirect the user to the login page. Trigger The user has forgotten their password and wants to access the application. 1. The frontend shall render Login.js. 2. The user shall click the Forgot Password hyperlink underneath the text boxes. 3. The frontend shall display a text box for the user to enter their address. 4. The user shall enter their address in the text box and hit the Submit button. 5. The backend shall verify that the entered is attached to the user s object in the database, and send an to the address with a link to reset the password. 6. The frontend shall notify the user that an has been sent to the given address and redirect them to the Login.js page. 7. The user shall log into their , click on the link redirecting the user to a Firebase-generated page to reset their password. 8. The user shall enter in a new valid password. 9. The user shall hit the Submit button 10. The frontend shall display text saying Password successfully changed to the user.

8 8 Invalid address The user enters an invalid address and hits Submit button. The backend checks the input address does not match the user s address in the database. The backend shall throw an error. The frontend shall display the message Invalid address. to reset password has not been sent. to the user. Invalid password The user enters an invalid new password and hits Submit button. The backend throws an error. The frontend shall display the message Invalid password to the user.

9 9 DESIGN USE CASE #4 - Check Order History Dependent Pre-conditions Trigger Design The user can view their history of placed orders. The user is brought to a page where they can view all their completed past orders. The user wishes to see completed orders with details. DUC1, DUC2 Low The system shall allow a user to see a list of orders they have placed, including the food items ordered, the cost, and the time delivered. The user has created an account and is logged in. The system shall display the list of food orders on the screen. The user wants to see all food orders that they have placed. 1. The user shall click on the Order History button on the Home.js page. 2. The frontend shall start rendering the OrderHistory.js page. 3. The backend shall pull list of past order IDs from the user object s pastorders section 4. The backend shall generate a OrderCardWithRating for each order ID, which will pull and render the order data from the database (the restaurant, the number of items, the delivery location, the time of order, the cost of the order and the user s rating of the deliverer) along with a Details button for more info. 5. The frontend shall render and display the all OrderCardWithRating objects on the OrderHistory.js page. User clicks the Details button on one of the order cards The frontend shall display the OrderDetails.js page for that order, which will display the orderer s name, deliverer s name and number, status, restaurant, items, special requests, total, delivery location, time placed, chat and uploaded receipt. The user wishes to return to the Home page The user shall press the Burger icon in the top left of the page The frontend shall render the Home.js page

10 No past orders The frontend shall display You do not have any past orders on the OrderHistory.js page 10

11 11 DESIGN USE CASE #5 - Check Delivery History The user can view all the orders they have delivered. Dependent Design Pre-conditions The user is brought to a page where they can view all their completed past deliveries. The user wishes to view past orders that they have delivered. DUC1, DUC2 Low The system shall allow a user to see a list of orders they have delivered, including the number of food items delivered, the cost, and the time delivered. The user is logged in to an account and is at the Home.js page. The system shall bring the user to a page displaying their delivered orders. Trigger The user wishes to see all orders they have taken and their corresponding details. 1. The user shall click on the Your Delivery History button in the Delivering tab. 2. The frontend shall render the TakenHistory.js page. 3. The backend shall pull list of past order IDs from the user object s pastdelivery section 4. The backend shall generate a OrderCardWithRating for each order ID, which will pull and render the order data from the database (the restaurant, the number of items, the delivery location, the time of order, the cost of the order and the user s rating of the deliverer) along with a Details button for more info. 5. The frontend shall display the all OrderCardWithRating objects on the TakenHistory.js page. Return to Home page The user shall press Burger icon on the navigation bar at the top left of the page

12 The frontend shall render the Home.js page Has not made any deliveries The frontend will display You do not have any past deliveries on the TakenHistory.js page 12

13 13 DESIGN USE CASE #6 - Becoming a Deliverer The user can become a deliverer so that they are able take and deliver orders Dependent Design Pre-conditions Trigger The user becomes a deliverer, unlocking the delivery options The user wishes to become a deliverer DUC1, DUC2 High The system shall allow a user to become a deliverer after they have entered their preferred payment options. The user has logged in to their account, has specified their preferred payment options on the User Settings page and is at the Home.js page The system shall let the user know that they have successfully become a deliverer. The user wishes to become a deliverer to earn some extra cash. N/A 1. The user shall click Become a Deliverer button under the Settings tab 2. The backend shall call set_deliverer() which will update the user object to be a deliverer if user has already set preferred payment options in settings. 3. The frontend shall re-render the Home.js page to include a Delivering tab and remove the Become a Deliverer button from the Settings tab.

14 14 DESIGN USE CASE #7 - View Info The user will be able to learn about how the application works, including pricing, transactions, and how to become a deliverer. Dependent Design Pre-conditions Trigger The user will be able to choose what food they want to order from the list of available restaurants. The user wishes to view information on the app. DUC2 Low SR 8 The user is logged in to an account and is at the Home.js page. User will have access to the menus of each available restaurant. The user wants to learn about how the application works. N/A 1. The user shall click on the Info button under the Settings tab. 2. The system shall list information about pricing, transactions, becoming a deliverer, disclaimers, and completing an order.

15 15 DESIGN USE CASE #8 - Placing an Order Dependent Design Pre-conditions Trigger The user will be able to place and customize an order by selecting a restaurant, their choice of menu items and where they want their food dropped off. The user will also be able to optionally input any special requests they have for their order (i.e. no sauce or substitute one item for another). The user successfully places an order which will be added to the queue. The user wants to place an order for food items from a specific restaurant to have delivered to them at a specified location. The user might also want to input a special request or specific details for their order. DUC1, DUC2, DUC7 High The user s choice of restaurant to order food items from is limited to those listed in the drop down list. The system shall limit orders to 3 per day and limit transaction subtotal to $20 per order. The user shall be limited to and must choose one of the available location options in a given drop-down menu. The user is logged into an account, is on the Home.js page and has not already placed an order. The user s order is placed and added to the queue for a deliverer to pick up. The user wants to place an order for delivery. 1. The user shall click the Place an Order button under the Ordering tab on the Home page. 2. The frontend shall redirect the user to the Order.js page. 3. The backend shall pull restaurants from the database and place them into a list. 4. The frontend shall render the list of restaurants into a drop-down table under the heading Step 1: Choose a restaurant. 5. The user shall select a restaurant from the drop-down table. 6. The backend shall pull the selected restaurant s menu items & prices from the database and place them into a list. 7. The user shall click the + Add An Item button.

16 16 8. The backend will call additem() which will generate a OrderCard object containing a drop-down table of the restaurant s menu items and prices (which starts at the first menu item), the subtotal of the given item quantity, a - and + button to decrease/increase the quantity of the selected item (which starts at 0), and an X button to delete the OrderCard object. 9. The frontend will render and display the OrderCard object as well as a button below it labelled + Add Another Item which will allow the user to generate another OrderCard object if it is pressed. 10. The user shall select a food item from the drop-down table in the OrderCard. 11. The user shall increase/decrease the quantity to a number of their choice with the + and - buttons. 12. The backend shall update the item s quantity and the subtotal of the order if the new subtotal does not go over the $20 limit. 13. The frontend will display the new quantity and subtotal. 14. The backend shall pull the delivery locations from the database and place them into a list. 15. The frontend will display the list as a drop-down table. 16. The user shall select a delivery location from the drop-down table. 17. The user shall optionally input special requests in a textbox with heading Step 4: Special requests. 18. The backend will take the subtotal of the order, apply a delivery fee and tax rate to it and set the value as the order total. 19. The frontend will display the subtotal, delivery fee + tax and total. 20. The user shall check one or both of the boxes for payment preferences (Cash and/or Venmo). 21. The user shall click the Submit Order button located at the bottom of the page. 22. The backend shall call submitorder() which will generate a new Order object using the order data specified by the user and then push it to the database. 23. The frontend shall notify the user that their order has been placed and redirect them to the Home.js page. User wants to return to home page The user shall press the Burger on the navigation bar at the top left of the page to return to the Home.js page. Subtotal above $20 The user shall click the + button of an item in an OrderCard, increasing the quantity of the item and subtotal of the order.

17 The backend shall find the new subtotal to be above $20 and therefore prevent the quantity and subtotal from being increased. The frontend shall display a popup Cannot add item. Exceeds spending limit for users who have reached the spending limit. 17

18 18 DESIGN USE CASE #9 - List of Placed Orders - (In Queue) for the Deliverers The user will be able to see all the possible order they can take on Dependent Design Pre-conditions Trigger The user is able to make a choice on what orders they want to take The user wants to see available orders DUC 2, DUC 6, DUC 8 High The list will only display orders that have not already been taken on by other deliverers. User is logged into an account, has registered as a deliverer, is on the homepage and has not placed an order. None The user wishes to view what orders they can take. 1. The user shall select the View Order Queue button under Delivering tab in Home.js 2. The frontend shall redirect the user to the AvailableOrders.js page. 3. The backend shall query the list of placed orders from the database that meet the payment preferences of the user 4. The frontend shall display the list of placed orders from oldest to newest (i.e. how long ago an order was placed). No Available Orders 3. The backend shall return an empty list, implying no currently placed orders 4. The frontend shall display No available orders at this time. on the AvailableOrders.js page.

19 19 DESIGN USE CASE #10 - Deliverer Accepting an Order The deliverer will be able to pick an order off of the queue and accept it, meaning the deliverer will fulfill it. Dependent Design The order is accepted by/assigned to the deliverer. The deliverer wants to accept an order to deliver. DUC 2, DUC 6, DUC 9 High The system shall allow a deliverer to accept an order. Pre-conditions The user is logged into an account, is a deliverer and has navigated to the Available Orders page. At least one order has been placed into the queue. Trigger The system shall assign the selected order to the deliverer. The user wants to deliver an order. 1. The user shall click on the Details button for one of the available orders. 2. The backend shall pull the order data for the selected order. 3. The frontend shall use the order data to render it s OrderDetails.js page. 4. The user shall scroll to the bottom of the OrderDetails.js page and click the Take Order button. 5. The backend will verify that the order has not been accepted, and will mark it as accepted in acceptorder(). 6. The frontend shall check the Order Taken box on the current order page for the orderer Order.js and open a chat box. Another orderer picks up order meanwhile: 4. The backend shall verify that the order has been accepted in acceptorder(), and deny the order. 5. The frontend shall display a popup to the deliverer saying Order has already been taken and remove the order from the queue in removeorder() in DQueue.js.

20 20 DESIGN USE CASE #11 - Chat Client between deliverer and orderer The app will provide an in-app chat client between deliverer and the recipient Dependent Design Pre-conditions Trigger The Deliverer and the Orderer are able to chat with each other The deliverer and orderer wish to communicate with each other UC 2, UC 6, UC 9 Medium None. The recipient has placed an order, the deliverer has taken that order. Both users navigate to the order details page for the order (i.e. orderer clicks the Your Current Order button from the home page, deliverer clicks Your Current Deliveries button then the Details button for the given order). The recipient and deliverer are able to chat with each other. The deliverer and the orderer want to communicate about the order. N/A 1. The backend shall call makechat() which will generate the chat box. 2. The user shall scroll down to the chat box, type a message in the textbox and press send. 3. The backend shall call makechatmessage() which will store the message, its sender and the time it was sent in the database. 4. The frontend shall render and display the message on the right side of the chat box for the sender of the message and on the left side of the chat box for the receiver of the message. The new message will be displayed below any earlier messages in the chat.

21 21 DESIGN USE CASE #12 - Confirming Meal Bought w/ Receipt The deliverer uploads a picture of the receipt, indicating the food has bought and is on the way. The receipt is also preserved in case of dispute. The deliverer successfully uploads a picture of the receipt for the orderer to see. The deliverer wants to inform the orderer that their food has been purchased. Dependent Design Pre-conditions Trigger DUC 2, DUC 6, DUC 9 Medium The system shall have camera and database functionality implemented to take a picture of the receipt and store it for safekeeping. The user is logged into an account and is on the Order Details page for the completed order. The image will be uploaded to the order s detail page and stored in the database for safekeeping. The deliverer wants to be able to prove they have bought the food to give an update on the order and prevent fraud. 1. The backend will call makeupload() which will generate the Upload Receipt option. 2. The frontend will display the Upload Receipt option at the bottom of the page. 3. The user (deliverer) shall scroll to the bottom of the page. 4. The user shall click the Browse button under the heading Upload Receipt. 5. The user shall choose the receipt image. 6. The user shall click the Submit Receipt button. 7. The backend shall save the receipt image to the database. 8. The frontend shall call makereceiptimage which will check for then display the receipt image.

22 22 Changing the receipt image 9. The user shall select the Browse button, which will prompt the user to select another image. 10. The user shall select an image. 11. The backend will replace the current receipt image in the database with the new image. 12. The frontend will display the new receipt image on the order detail page.

23 23 DESIGN USE CASE #13A - Confirm order received The orderer will be able to confirm that the order was received from the deliverer. Dependent Design To have a successful transaction, meaning the orderer received the food and the deliverer received payment. To notify the system that the order was received by the orderer. DUC 9 High SR 19 Pre-conditions User is logged into an account. An order has been placed and accepted by a deliverer. User is on the OrderDetail.js page for the order. Trigger The system will be notified that the transaction has been completed. The user has received the food from the deliverer. 1. The user (orderer) shall scroll down to the bottom of the page. 2. The frontend shall display a button labelled Order Received. 3. The user shall click the Order Received button. 4. The frontend will redirect the user to a Confirmation.js page for the order. 5. The backend shall set foodreceived to true in confirmorder() in OrderDetails.js. 6. The user shall click the Confirm Transaction Complete button. 7. The backend shall call checkcompleted() which will set order status to complete if moneyreceived and foodreceived have been set to true. 8. The frontend shall inform the user that the transaction has been complete. Deliverer has not confirmed money has been received.

24 6. The user shall click the Confirm Transaction Complete button. 7. The backend shall call checkcompleted() which will find that moneyreceived has not been set to true. 8. The frontend shall inform the user that they are waiting on the Deliverer to confirm money received. 24

25 25 DESIGN USE CASE #13B - Confirm payment received The deliverer will be able to confirm that the payment was received from the orderer. Dependent Design To have a successful transaction, meaning the orderer received the food and the deliverer received payment. To notify the system that the payment was received by the deliverer. DUC 9 High SR 20 Pre-conditions User is logged into an account. An order has been placed by orderer and accepted by user. User is on the OrderDetail.js page for the order. Trigger The system will be notified that the transaction has been completed. The user got prompted to finish the transaction. 1. The user (deliverer) shall scroll down to the bottom of the page. 2. The frontend shall display a button labelled Money Received. 3. The user shall click the Money Received button. 4. The frontend will redirect the user to a Confirmation.js page for the order. 5. The backend shall set moneyreceived to true. 6. The user shall click the Confirm Transaction Complete button. 7. The backend shall call checkcompleted() which will set order status to complete if moneyreceived and foodreceived have been set to true. 8. The frontend shall inform the user that the transaction has been complete. Orderer has not confirmed food has been received. 9. The user shall click the Confirm Transaction Complete button.

26 10. The backend shall call checkcompleted() which will find that foodreceived has not been set to true. 11. The frontend shall inform the user that they are waiting on the Orderer to confirm food received. 26

27 27 DESIGN USE CASE #14 - Cancelling an order The deliverer will be able to cancel an order if that order can t be completed for any reason. Dependent Design To notify the orderer that their order can not be completed. To notify the system that the order was cancelled by the deliverer. DUC 9 Medium SR 21 Pre-conditions User is logged in. An order has been placed. The order has been accepted by the deliverer. The deliverer will not be able to deliver the food for some reason. Trigger The system will be notified that the transaction has been cancelled. The deliverer could not deliver the food for some reason. N/A 1. The user shall navigate to the Delivering tab and click the Your Current Deliveries button on the home page. 2. The frontend shall render the orders and a Details button next to each order. 3. The user shall click the Details button for the order. 4. The frontend shall render the order details page as described in OrderDetails.js that will display a button that reads Cancel Order. 5. The deliverer shall click the button. 6. The backend shall mark the order as Pending in its database. 7. The frontend shall now display the order, with its new status of Pending.

28 28 DESIGN USE CASE #15 - Rating a Deliverer The orderer will be able to rate their satisfaction level with the deliverer with a thumbs up or thumbs down, with an option of comments. Dependent Design Pre-conditions Trigger The orderer wants to rate their level of satisfaction with the orderer, whether positive or negative. The orderer shall be able to rate their level of satisfaction with the deliverer, whether positive or negative. DUC 13 (A and B) High SR 22 The user is logged in. An order was placed, the order was accepted, and the exchange of food and payment has taken place. The deliverer will have an updated rating attached to them from combining this rating and their previous ones. The orderer desires to leave feedback about their experience. 1. The user shall click navigate to the Ordering tab and click on the Your Order History button on the home page. 2. The frontend shall render the order history page as described in OrderHistory.js. 3. The orderer shall press the Food Received button. 4. The backend shall redirect the user to the Confirmation.js page. 5. The orderer shall give a thumbs up/down rating. 6. The backend system update the deliverer s rating. 7. The system shall return the orderer back to the home page. 1. The user shall not give a rating. 2. The system shall redirect the orderer back to the home page.

29 29 DESIGN USE CASE #16 - Rating an Orderer The deliverer will be able to rate their satisfaction level with the buyer Dependent Design Pre-conditions Trigger The deliverer will rate the buyer after having delivered and received payment for the food The deliverer wants to rate their level of satisfaction with the buyer DUC 13 (A and B) Low SR 23 The user is logged in. An order was placed, the order was accepted, and the exchange of food and payment has taken place. The deliverer has rated the food buyer The deliverer wants to rate their satisfaction with the buyer 1. The deliverer shall navigate to the Delivering tab and click on Your Delivery History button on the home page. 2. The frontend shall render the history page described by OrdersTaken.js. 3. The deliverer shall press the Money Received button. 4. The backend shall redirect the user to the Confirmation.js page. 5. The deliverer shall give the orderer a thumbs up/thumbs down rating, and then press the Confirm Transaction Complete button. 6. The backend shall update the orderer s new rating. 7. The frontend shall direct the deliverer back to the home page. 1. The user shall not give a rating. 2. The frontend shall return the orderer back to the home page.

30 30 DESIGN USE CASE #17- Deliverer provides pre-made status updates to orderer The system provides pre-made status updates to the orderer once the deliverer has completed milestones in the food delivery process (e.g. buying the food, picking it up, and arriving at the destination building) Dependent Design Pre-conditions The deliverer provides the orderer status updates. This use case provides the orderer with information regarding the status of their order without the deliverer having to type out the messages and send them. DUC 9 Medium SR 24 The deliverer is logged in. The deliverer has signed up as a deliverer. At least one orderer has placed an order. The system has added the order to the order queue. The deliverer has accepted an order off the queue. After the deliverer presses a button for each status update, the system should display the status update to the orderer. Trigger The deliverer should send status updates after completing each milestone in the delivery process. 1. The deliverer shall click the Delivering tab on the homepage, and then click the Your Current Deliveries button. 2. The frontend displays all orders that the deliverer has as described in OrdersTaken.js. 3. The deliverer shall click Details button for the order. 4. The frontend shall display pre-made status updates as described in OrderDetails.js. 5. The deliverer shall press each status update as they complete them in real-life. (e.g. press the Food Purchased button once they complete the transaction at the restaurant) 6. The frontend shall display the status updates to the orderer in make().

31 31 N/A

32 32 DESIGN USE CASE #18 - User Logout User logs out of the system Dependent Design Pre-conditions Trigger The user is successfully able to log out of the system. Allows the user to logout of the system and end his session so no one else can illegally access the user s account UC 2 Low SR 25 The user is already logged into the system. The system shows that the user is successfully logged out and has the option to return to the login page. The user is done using the application and wants to end his/her session on the program. N/A 1. The user shall press the Logout button to logout of their account. 2. The backend shall end the user s session on the program. 3. The backend shall successfully log the user out of the system using the logout button implemented in Apps.js. 4. The frontend shall redirect the user back to the login page.

33 33 DESIGN USE CASE #19 - User Settings The user will be able to update their account settings by changing their name, password, and/or payment preferences. The user will have their name, password, and/or payment preferences updated. The user wishes to update their name, password, and/or payment preferences. Dependent Design Pre-conditions Trigger DUC 2 Low SR User is logged in. The user s settings will be modified in the system. The user wishes to change their password or name for privacy concerns, or their payment preferences for convenience. 1. The user shall navigate to the Settings tab and click the User Settings button on the home page. Password: 2. The user shall enter their current and new passwords into the respective fields (new password twice for confirmation), then click the Update Password button. 3. The backend shall update the user s password in the user object under Users in the database in updateuser(). 4. The frontend shall display a notification saying Password changed to the user. Name: 2. The user shall enter their new name into the respective field then click the Update Name button. 3. The backend shall update the user s name in the user object under Users in the database in updateuser().

34 34 4. The frontend shall display a notification saying Name changed to the user. Payments: 2. The user shall select their preferred payment types and enter their Venmo username if they choose it, then click the Update Payments button. 3. The backend shall update the user s payment preferences in the user object under Users in the database in updateuser(). 4. The frontend shall display a notification saying Payment Preferences changed to the user. Incorrect Password: 2. The user shall incorrectly enter their current and new passwords into the respective fields (new password twice for confirmation), then click the Update Password button. 3. The backend shall fail to authenticate the password and reject the password change. 4. The frontend shall notify the user that the password was incorrect. No Venmo Username Provided: 2. The user shall select Venmo as a preferred payment type but omit their username, then click the Update Payments button. 3. The frontend shall notify the user that a Venmo username must be provided if the option is checked.

A dvanced T echnology. A id C ollege C ampuses. Use Cases. Food Delivery App: SNACC ATTACC. Group Members:

A dvanced T echnology. A id C ollege C ampuses. Use Cases. Food Delivery App: SNACC ATTACC. Group Members: Use Cases Food Delivery App: SNACC ATTACC A dvanced T echnology T o A id C ollege C ampuses Group Members: Jacques Chazelle Sarah George Shweta Kinger Catherine Lin Jonathan Luck Gregory Sabado Skyler

More information

esa-p EXTENDED GUIDE How to SUBMIT and APPROVE a MAC Confirmation

esa-p EXTENDED GUIDE How to SUBMIT and APPROVE a MAC Confirmation esa-p EXTENDED GUIDE How to SUBMIT and APPROVE a MAC Confirmation esa-p Extended Guide How to SUBMIT and APPROVE a MAC Confirmation CHANGE LOG REASON FOR CHANGE VERSION DATE PARAGRAPH(S) Update of the

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

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

Table of Contents. Buyer Functions Buyer Responsibilities: Create and submit orders for approval and manage personal profile and preferences.

Table of Contents. Buyer Functions Buyer Responsibilities: Create and submit orders for approval and manage personal profile and preferences. Table of Contents Buyer Functions Buyer Responsibilities: Create and submit orders for approval and manage personal profile and preferences. Web site Login Page # Login Process 3 Reset Password 4 Authorize

More information

Flex Supplier Portal How to use Flex Supplier Portal

Flex Supplier Portal How to use Flex Supplier Portal Flex Supplier Portal How to use Flex Supplier Portal TABLE OF CONTENT TABLE OF CONTENT... 2 Introduction... 4 How to access Flex Portal... 5 OKTA account registration... 5 How to login OKTA (After registration)...

More information

Trusted Advisor User Guide. inty CASCADE v 2.9.0

Trusted Advisor User Guide. inty CASCADE v 2.9.0 Trusted Advisor User Guide inty CASCADE v 2.9.0 Table of Contents 1. Overview... 2 2. Logging in to inty CASCADE... 2 2.1 Forgotten Password... 4 2.2 Password Complexity... 5 3. Home Page... 7 4. Navigation...

More information

Contact: Wealth Passport Help Center

Contact: Wealth Passport Help Center Wealth Passport Mobile Version 1.0 Getting Started Guide Contact: Wealth Passport Help Center 888-635-5350 1 DOWNLOADING THE WEALTH PASSPORT APP iphone Download 1. Open the Apple App Store app on your

More information

Updates To The Reliance Bank Mobile Banking App

Updates To The Reliance Bank Mobile Banking App Updates To The Reliance Bank Mobile Banking App February 2018 Table of Contents: (Click on a section to navigate there.) Add a Biller in BillPay (Person) page 2 Add a Biller in BillPay (Company) page 4

More information

FLP Merchant Website. User Guide. Version 0.14

FLP Merchant Website. User Guide. Version 0.14 FLP Merchant Website User Guide Version 0.14 Revision History Responsible Revision Date Version Vitalii Vysotskyi Created the initial version of the user guide 2017-11-28 0.1 Vitalii Vysotskyi Small updates

More information

Complete On-Demand Clone Documentation

Complete On-Demand Clone Documentation Complete On-Demand Clone Documentation Table of Contents 1. How Complete On-Demand Clone works...4 2. Primary Pages of App...8 A. App...8 B. Auth....10 C. Sell...11 D. Business...12 E. Driver...12 F. Admin/Dashboard...13

More information

TRAINING GUIDE - REGISTERED SUPPLIER GUIDE Lamprell Energy Limited Procurement and Supply Chain. Version: 1.0

TRAINING GUIDE - REGISTERED SUPPLIER GUIDE Lamprell Energy Limited Procurement and Supply Chain. Version: 1.0 TRAINING GUIDE - REGISTERED SUPPLIER GUIDE Lamprell Energy Limited Procurement and Supply Chain Version: 1.0 Table of Contents Introduction... 3 Login... 3 Login Assistance... 3 Homepage... 4 Sourcing...

More information

SCP Embraer Supplier Guide

SCP Embraer Supplier Guide SCP Embraer Supplier Guide Revised 1 Contents Introduction... 5 Getting Started... 5 How to Log In to SCP... 5 Steps to Complete First Time Login... 6 Steps to Log-in to SCP... 7 General Navigation and

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

How to Use Your EV Connect Account

How to Use Your EV Connect Account How to Use Your EV Connect Account Accessing the EV Connect Network To access the EV Connect network, point your web browser to http://network.evconnect.com. This brings you to the account login page.

More information

SSPR Registration. 1. Use your SVSU credentials to log in to

SSPR Registration. 1. Use your SVSU credentials to log in to Self-Service Password Reset (SSPR) SVSU uses a Self-Service Password Reset system to make it easy to recover your password if you ever forget it. To ensure you never lose access to your account, you must

More information

USER GUIDE FOR SUPPLIERS. OpusCapita Business Network

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

More information

Production Assistance for Cellular Therapies (PACT) PACT Application System User s Guide

Production Assistance for Cellular Therapies (PACT) PACT Application System User s Guide Production Assistance for Cellular Therapies (PACT) PACT Application System User s Guide Version 1.0 February 9, 2017 Version 1.0 TABLE OF CONTENTS 1.0 Getting Started... 1 1.1 Access to the Internet...

More information

Mobile Client. User Manual. Version: 2.0.0

Mobile Client. User Manual. Version: 2.0.0 Mobile Client User Manual Version: 2.0.0 Index Sr. No. Topic Page 1 Requirement 3 2 How to use Mobile Client 4 3 Compose Message 5 4 Select Contacts 6 5 Manage Contacts 17 6 Manage Distribution List 23

More information

Business Bill Pay User Guide

Business Bill Pay User Guide Business Bill Pay User Guide Convenience doesn t just happen 9 to 5, it works overtime. Business Bill Pay is designed to help small businesses manage their bills and account information. This user guide

More information

daa isupplier User Guide

daa isupplier User Guide daa isupplier User Guide December 2017 Contents Prerequisites... 3 Introduction... 4 1.1 Registration... 6 1.2 Login... 6 1.3 Basic Overview of the isupplier Portal Homepage... 7 1.4 Purchase Order Acceptance

More information

... 4 Free Signup File Cabinet Selection Access Files & Folders Edit Files & Folders View Files Edit Index Fields

... 4 Free Signup File Cabinet Selection Access Files & Folders Edit Files & Folders View Files Edit Index Fields Dokmee Mobile Table of Contents Getting Started Login... 4 Free Signup... 5 File Cabinet Selection... 6 Access Files & Folders... 7 Edit Files & Folders... 8 View Files... 10 Edit Index Fields... 12 Email

More information

Odyssey File & Serve. Firm Administrator User Guide Release 3.10

Odyssey File & Serve. Firm Administrator User Guide Release 3.10 Odyssey File & Serve Firm Administrator User Guide Release 3.10 OFS-FS-220-3324 v.1 April 2015 Copyright and Confidentiality Copyright 2015 Tyler Technologies, Inc. All rights reserved. All documentation,

More information

LCNB National Bank mymobilemoneyaccess Quick Reference Guide. Getting Set Up

LCNB National Bank mymobilemoneyaccess Quick Reference Guide. Getting Set Up Getting Set Up If you have an Android or an iphone, please visit your app store and search for My Mobile Money Access. Download the app to your phone. Then follow these simple steps: Open the app and have

More information

WebPrint Quick Start User Guide

WebPrint Quick Start User Guide WebPrint Quick Start User Guide Getting Started Accessing Print Center Navigate your Web browser to Print Center Log in page. If you do not have an acocunt, you will need to create a new User account.

More information

IP2PGO APP USER GUIDE Version 2

IP2PGO APP USER GUIDE Version 2 IP2PGO APP USER GUIDE Version 2 9 November 2018 Sections A. Registration B. Downloading the App C. Getting started on the App D. Creating your Wallet E. Making a Deposit F. Creating a Sell Offer G. When

More information

UNFPA esupplier Connection

UNFPA esupplier Connection UNFPA esupplier Connection Supplier User Guide October, 2015 UNFPA esupplier Connection User Guide 20.docx 1 Contents UNFPA esupplier Connection... 3 Vendor Self Service... 3 Register as a Vendor User...

More information

Empathy Parent Manual

Empathy Parent Manual Empathy Parent Manual www.itschools.co.za Contents Overview... 1 What is Empathy?... 1 How to Order Books... 1 Getting Started: Registration and Login... 1 Registration for New Users... 1 Account Creation...

More information

Install Application Start Download the Application

Install Application Start Download the Application Install Application Start Download the Application Apple Android Enter A cardholder will download the app from either the itunes app store or the Android Google Play Store. 6 Install Application Completion

More information

Testing Documentation

Testing Documentation Testing Documentation Create-A-Page Group 9: John Campbell, Matthew Currier, Dan Martin 5/1/2009 This document defines the methods for testing Create-A-Page, as well as the results of those tests and the

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

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

Mobile Banking App Guide (ios and Android Apps) Mobile Banking App Guide (ios and Android)

Mobile Banking App Guide (ios and Android Apps) Mobile Banking App Guide (ios and Android) Mobile Banking App Guide (ios and Android) Page 1 A safe and efficient way of accessing your People s Choice Credit Union accounts, paying bills Contents. 1. Mobile Banking using the People s Choice iphone

More information

STORE CREDIT USER GUIDE

STORE CREDIT USER GUIDE support@magestore.com sales@magestore.com Phone: 084.4.8585.4587 STORE CREDIT USER GUIDE Version 1.0.0 Magento Compatibility: CE 2.0 Table of Contents 1. INTRODUCTION... 3 2. HOW TO USE (Frontend)... 5

More information

Scholastic Oracle Cloud Supplier Portal User Guide

Scholastic Oracle Cloud Supplier Portal User Guide Scholastic Oracle Cloud Supplier Portal User Guide Table of Contents Introduction to the Supplier Portal... 3 What is the Supplier Portal?... 3 Navigating the Supplier portal... 3 Logging in... 3 Homepage

More information

Test Results. Generation Java. ID-10t Consultations. Assistant Professor Department of Computer Science Siena College

Test Results. Generation Java. ID-10t Consultations. Assistant Professor Department of Computer Science Siena College Test Results Requested by: Dr. Darren Lim Assistant Professor Department of Computer Science Siena College Mrs. Pauline White Visiting Professor Department of Computer Science Siena College Generation

More information

EMPLOYEE WEBSITE NAVIGATION MANUAL

EMPLOYEE WEBSITE NAVIGATION MANUAL EMPLOYEE WEBSITE NAVIGATION MANUAL Table of Contents Table of Contents... 2 Web Map... 3 Log on to Employee Share Plan Website... 4 PIN Reset Self-Service... 8 View and Change Personal Details... 10 Update

More information

Visa Payments Control

Visa Payments Control Visa Payments Control Getting Started Guide Effective: June 2017 2017 Visa. All Rights Reserved. Notices and Disclaimers This document is protected by copyright restricting its use, copying, distribution,

More information

Nanyang Technological University(NTU)

Nanyang Technological University(NTU) Nanyang Technological University(NTU) Buying and Invoicing Light Account Suppliers This User Guide is created for Light Account Suppliers trading with NTU using Ariba Network It contains key steps for

More information

EZ Parent Center Directions Parent Sign Up and Meal Preordering

EZ Parent Center Directions Parent Sign Up and Meal Preordering EZ Parent Center Directions Parent Sign Up and Meal Preordering Sign Up for Returning Parents Who Used EZ School Lunch POS the Previous Year (All others scroll down to New Parent Sign Up) Parents should

More information

MyTeleMed iphone User Guide

MyTeleMed iphone User Guide Table of Contents Log In 2 Incorrect Login Information 2 Registering your iphone 2 Main Menu 3 Messages 3 Compose a New Message 4 Message Recipients 4 Archiving Messages 4 Message Detail 5 Add Comments

More information

ACHieve Access 4.3 USER GUIDE

ACHieve Access 4.3 USER GUIDE ACHieve Access 4.3 USER GUIDE TABLE OF CONTENTS SECTION 1: OVERVIEW...3 Chapter 1: Introduction...3 How to Use This Manual...3 Overview of ACHieve Access Administrative Functions...3 System Access and

More information

COTY PROJECT USER MANUAL

COTY PROJECT USER MANUAL COTY PROJECT USER MANUAL _EN_GLO_YYYYMMDD FUNCTION: Supply Chain Planning TOPIC Confirmation through the portal a. Order Status b. Response Options c. Submitted confirmation Confirmation through Excel

More information

WELCOME to Qantas Group isupplier

WELCOME to Qantas Group isupplier WELCOME to Qantas Group isupplier A manual for suppliers Welcome to our isupplier help manual. You re receiving this manual as you are one of our preferred suppliers with access to the isupplier Portal.

More information

Welcome to the USF Computer Store Web Store. Or navigate directly to:

Welcome to the USF Computer Store Web Store. Or navigate directly to: Welcome to the USF Computer Store Web Store Access via: http://www.usf.edu/techpurchases/ for complete USF Tech Purchases guidelines Or navigate directly to: https://usm.channelonline.com/bellind/usfstore/login/?destination=/bellind/usfstore/

More information

User Manual. DTCM Classification System Partner Interface. Version 1.2

User Manual. DTCM Classification System Partner Interface. Version 1.2 User Manual DTCM Classification System Partner Interface Version 1.2 Table of Contents 1. General Information... 1 1.1 Overview... 1 1.2 Purpose... 1 2. Accessing DTCM Partner Interface Module... 2 2.1

More information

INBUSINESS BANKING SYSTEM

INBUSINESS BANKING SYSTEM Introducing your new INBUSINESS BANKING SYSTEM Companion Guide to Business Banking Video Tutorials Updated 0.09.8 WELCOME TO THE INBUSINESS SYSTEM The InBusiness System will help you efficiently and securely

More information

Welcome to the Online User Guide

Welcome to the Online User Guide Welcome to the Online User Guide The online guide is a simple and convenient aid to help you stay in control. This booklet will help you to navigate our site and transact on your accounts. To get started,

More information

Getting Started Guide. Prepared by-fatbit Technologies

Getting Started Guide. Prepared by-fatbit Technologies Getting Started Guide Prepared by-fatbit Technologies 1 Contents 1. Manage Settings... 3 1.1. General... 4 1.2. Local... 6 1.3. SEO... 7 1.4. Option... 8 1.5. Live Chat... 19 1.6. Third Part API s... 20

More information

Admin/User Manual SoftPal.com.ng

Admin/User Manual SoftPal.com.ng Admin/User Manual SoftPal.com.ng 2 THIS MANUAL IS DIVIDED INTO THREE PARTS: 1. THE MEMBER CONTROL PANEL 2. THE ADMIN CONROL PANEL 3. THE CONTENT MANAGEMENT PANEL THE MEMBER CONTROL PANEL is visible to

More information

A Consultant s Guide to Prolog Converge. Topic: How to Answer a RFI online

A Consultant s Guide to Prolog Converge. Topic: How to Answer a RFI online A Consultant s Guide to Prolog Converge Topic: How to Answer a RFI online 1) Make sure you have the appropriate credentials to log in. You will need a username and password. These credentials are assigned

More information

Odyssey File & Serve. Review Queue User Guide Release 3.11

Odyssey File & Serve. Review Queue User Guide Release 3.11 Odyssey File & Serve Review Queue User Guide Release 3.11 OFS-FS 200 3375 v.1 June 2015 COPYRIGHT AND CONFIDENTIALITY Copyright 2015 Tyler Technologies, Inc. All rights reserved. All documentation, source

More information

User Guide. For optimal use of this site, we recommend Internet Explorer 7.0 or later version.

User Guide. For optimal use of this site, we recommend Internet Explorer 7.0 or later version. User Guide For optimal use of this site, we recommend Internet Explorer 7.0 or later version. Table of Contents User Name and Password... 3 Global menu... 4 Site map... 5 Catalog... 5 Customer information...

More information

Welcome to our online Web Help for the Activity Fund Accounting System software.

Welcome to our online Web Help for the Activity Fund Accounting System software. Welcome to our online Web Help for the Activity Fund Accounting System software. Version 1.2 LOCAL GOVERNMENT CORPORATION ALL RIGHTS RESERVED 2010-2018 REV. 02/06/2018 Portions copyright 1988 - Acucorp,

More information

NetTeller Online Banking Functionality Training Guide

NetTeller Online Banking Functionality Training Guide February 7, 2017 NetTeller Online Banking Functionality... 4 NetTeller Login Process... 4 Login Screen... 4 Online Agreement... 4 Multi-Factor Authentication...5 Watermark Selection... 5 Password Change...

More information

Odyssey File & Serve Firm Administrator User Guide Release 3.16

Odyssey File & Serve Firm Administrator User Guide Release 3.16 Odyssey File & Serve Firm Administrator User Guide Release 3.16 OFS-FS-220-3911 v.1 May 2017 COPYRIGHT AND CONFIDENTIALITY Copyright 2017 Tyler Technologies, Inc. All rights reserved Use of these materials

More information

Access Expense App Tutorial

Access Expense App Tutorial Contents Access Expense App Tutorial Where to download... 2 The Basics - Logging In... 3 The Directory Button... 3 Creating an Expense... 4 Add a receipt... 4 Change the Type... 4 Changing the values...

More information

efiletexas.gov Review Queue User Guide Release

efiletexas.gov Review Queue User Guide Release efiletexas.gov Review Queue User Guide Release 2017.1 EFS-TF-200-4075 v.1 October 2017 Copyright and Confidentiality Copyright 2017 Tyler Technologies, Inc. All rights reserved Use of these materials is

More information

Residential Voice SUBSCRIBER GUIDE

Residential Voice SUBSCRIBER GUIDE Residential Voice SUBSCRIBER GUIDE RESIDENTIAL VOICE SUBSCRIBER GUIDE TABLE OF CONTENTS Table of Contents Getting Started... 6 Requirements... 6 First Login... 6 Features Management... 0 Basic Features...

More information

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

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

More information

Imagine Customer Support:

Imagine Customer Support: As the chosen inventory and fulfillment vendor, Imagine! Print Solutions is here to provide customer satisfaction through innovative techniques and superior service. We will strive to fully understand

More information

HOW TO SETUP A NEW USER

HOW TO SETUP A NEW USER In this guide you will learn how to create a new user, define their settings, assign limits and permissions, and establish their Single Sign On credentials in the Online Banking System. User Administration

More information

Tenant Portal Guide PURPOSE. Page 1. The purpose of this document is to review the features associated with the Tenant Portal.

Tenant Portal Guide PURPOSE. Page 1. The purpose of this document is to review the features associated with the Tenant Portal. Tenant Portal Guide Page 1 PURPOSE The purpose of this document is to review the features associated with the Tenant Portal. Page 2 Table of Contents Tenant Portal... 3 Logging into the Tenant Portal...

More information

ServiceDesk User manual (English)

ServiceDesk User manual (English) ServiceDesk User manual (English) Content Introduction... 3 Login page... 3 Welcome... 3 Create case... 4 Receipt... 6 View cases... 7 View cases - detailed... 8 Important!... 9 Introduction Elanders offers

More information

Gradintelligence student support FAQs

Gradintelligence student support FAQs Gradintelligence student support FAQs Account activation issues... 2 I have not received my activation link / I cannot find it / it has expired. Please can you send me a new one?... 2 My account is showing

More information

GARAGE SALE PERMIT APPLICATION ON LINE

GARAGE SALE PERMIT APPLICATION ON LINE GARAGE SALE PERMIT APPLICATION ON LINE The Village of Pinecrest makes it easy for you to apply for certain types of permits online using etrakit.net. This also includes garage sale permits. To access etrakit.net,

More information

EZ Parent Center Directions Parent Sign Up and Purchase Preordering

EZ Parent Center Directions Parent Sign Up and Purchase Preordering EZ Parent Center Directions Parent Sign Up and Purchase Preordering Parents should contact your school (or caterer) when any type of support is needed. You can use the following link https://www.ezparentcenter.com/site/ezparentcenter_contact.aspx

More information

Affinity Provider Portal Training Manual

Affinity Provider Portal Training Manual Training Manual Login This page enables a user to either login and/or register if he/she is not already a regstered user (ie. Providers and Staff users). The following are the functionalities which can

More information

In partnership with. PO Convert User Guide - Service-Type Purchase Orders

In partnership with. PO Convert User Guide - Service-Type Purchase Orders In partnership with PO Convert User Guide - Service-Type Purchase Orders Imperial College phases out paper invoices with electronic invoicing Imperial College London has implemented a series of changes

More information

Self Service Password Reset User Guide Canada Version 1-2 Date: 2017/05/11

Self Service Password Reset User Guide Canada Version 1-2 Date: 2017/05/11 Self Service Password Reset User Guide Canada Version 1-2 Date: 2017/05/11 Contents Introduction... 3 IMPORTANT: Before you begin... 3 How to Register for Self-Service Password Reset... 4 How to Reset

More information

Supplier Relationship Management. Vendor user manual. Creation of Advance Shipment Notification (ASN)

Supplier Relationship Management. Vendor user manual. Creation of Advance Shipment Notification (ASN) Supplier Relationship Management Vendor user manual Creation of Advance Shipment Notification (ASN) Ways to access Internet Explorer 3. Click on Internet Explorer 2. Click on All programs 1. Go to the

More information

Light Account Supplier Quick Guide. Version: 1.0 / July 2018

Light Account Supplier Quick Guide. Version: 1.0 / July 2018 Light Account Supplier Quick Guide Version: 1.0 / July 2018 Agenda What is the Ariba Network Light Account Light Account Registration and Setup PO Handling Order Confirmation Handling Advanced Shipping

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

inty CASCADE Management Portal Self Service Ticketing Guide (Trusted Advisor)

inty CASCADE Management Portal Self Service Ticketing Guide (Trusted Advisor) inty CASCADE Management Portal Self Service Ticketing Guide (Trusted Advisor) Contents 1. Overview... 2 2. Accessing the Portal... 2 3. Logging In... 2 4. Forgotten Your Password?... 3 5. Creating a New

More information

PROST USER GUIDE FOR VENDORS

PROST USER GUIDE FOR VENDORS PROST USER GUIDE FOR VENDORS Revised 06/18/2018 Introduction Setup Welcome Email Account Verification Vendor Login Preferences Services Provided Voucher Voucher Inbox Invoice Inbox Security My Profile

More information

Scholastic Oracle Cloud Supplier Portal User Guide

Scholastic Oracle Cloud Supplier Portal User Guide Scholastic Oracle Cloud Supplier Portal User Guide Table of Contents Introduction to the Supplier Portal... 3 What is the Supplier Portal?... 3 Navigating the Supplier portal... 3 Logging in... 3 Homepage

More information

HOW TO ENROLL...3 To Enroll in NBT Online Banker and Bill Pay... 3 Existing NBT Online Banker and NBT Online Banker for Business Users...

HOW TO ENROLL...3 To Enroll in NBT Online Banker and Bill Pay... 3 Existing NBT Online Banker and NBT Online Banker for Business Users... TABLE OF CONTENTS HOW TO ENROLL...3 To Enroll in NBT Online Banker and Bill Pay... 3 Existing NBT Online Banker and NBT Online Banker for Business Users... 4 NAVIGATING YOUR PAYMENT CENTER...5 Payments

More information

New Password Reset for Dental Connect Provider

New Password Reset for Dental Connect Provider New Password Reset for Dental Connect Provider 1 INDEX Access Dental Connect for Providers:... 3 1. Username verification:... 4 1.1 user name not provided:... 5 1.2 Invalid user name:... 6 1.3 Invalid

More information

Nextsense Support System

Nextsense Support System Nextsense Support System Customer manual Author Nextsense Partizanski odredi 62, Skopje Macedonia www.nextsense.com Table of Contents Introduction... 3 Accessing the system... 4 Logging in... 4 I forgot

More information

The Beer Store On-line Ordering System User Guide

The Beer Store On-line Ordering System User Guide Registration Customers must register with The Beer Store to obtain a username and password required to use the Internet ordering facility. If you are a customer with multiple licenses/locations you must

More information

ELSEVIER REFERENCE MODULES EDITORIAL-PRODUCTION SYSTEM (EPS) AUTHOR GUIDE

ELSEVIER REFERENCE MODULES EDITORIAL-PRODUCTION SYSTEM (EPS) AUTHOR GUIDE 1 ELSEVIER REFERENCE MODULES EDITORIAL-PRODUCTION SYSTEM (EPS) AUTHOR GUIDE Introduction This document is designed as a comprehensive help resource for authors using the EPS interface to submit original

More information

K12PaymentCenter.com Parent User Manual

K12PaymentCenter.com Parent User Manual K12PaymentCenter.com Parent User Manual Education Management Systems, Inc. 4110 Shipyard Blvd, Wilmington, NC 28403 www.mealsplus.com or (800) 541-8999 Table of Contents 1.0 Welcome to K12PaymentCenter.com...

More information

Supplier Quick Reference and How To Guide

Supplier Quick Reference and How To Guide and How To Guide For Help or Support support@primerevenue.com Toll Free USA & Canada: 1 800 557 8047 Toll Free Europe: 00800 7746 3000 Toll Free Asia: 001 800 7746 3000 Toll Free Australia: 1 800 217 718

More information

KHEDS Account Creation and Maintenance URL:

KHEDS Account Creation and Maintenance URL: KHEDS Account Creation and Maintenance URL: www.kansasregents.org The KBOR website has both a public and private section. Aggregate reports appropriate for public viewing can be found on the website without

More information

2. or by navigation through the industry supplier portal: European Space Agency

2. or by navigation through the industry supplier portal:   European Space Agency Purpose The aim of this work instruction is to provide a step-by-step procedure to create and approve a Milestone Achievement Certificate (MAC) referred to in esa-p as 'Confirmation' or 'Goods Receipt'.

More information

The SAP Concur mobile app iphone

The SAP Concur mobile app iphone Introduction to... The SAP Concur mobile app iphone Version 9.66 March 22, 2019 Applies to these SAP Concur solutions: Expense in Travel & Expense Travel Travel in Travel & Expense Invoice Request You

More information

International Trade Online

International Trade Online International Trade Online USER GUIDE For informational purposes only, not considered an advertisement. INTERNATIONAL TRADE ONLINE International Trade Online is the web-based offering from M&T Bank to

More information

K12PaymentCenter.com Parent User Manual

K12PaymentCenter.com Parent User Manual K12PaymentCenter.com Parent User Manual Education Management Systems, Inc. 4110 Shipyard Blvd, Wilmington, NC 28403 www.mealsplus.com or (800) 541-8999 Table of Contents 1.0 Welcome to K12PaymentCenter.com...

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

Online Services User Guide

Online Services User Guide Online Services User Guide Welcome to Online & Mobile Banking! Whether you re online or using a mobile device, manage your money whenever and wherever it s convenient for you. Access Visit BankMidwest.com

More information

SIS offline. Getting Started

SIS offline. Getting Started SIS offline We highly recommend using Firefox version 3.0 or newer with the offline SIS. Internet Explorer is specifically not recommended because of its noncompliance with internet standards. Getting

More information

Student Guide INTRODUCTION TO ONLINE RESOURCES

Student Guide INTRODUCTION TO ONLINE RESOURCES Student Guide INTRODUCTION TO ONLINE RESOURCES Date: 12. March. 2018 By: Technical Support Team Table of Contents 1) Introduction 3 2) Student Panel (SIS) 3 2.1) Student Panel (SIS) Login 3 2.1.1) Definitions

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

Quick Data Entry Guide

Quick Data Entry Guide Quick Data Entry Guide 1 Contributing to the V3P database (data entry) This quick data entry guide provides an overview of the data submission procedure to the V3P database. Before submitting data, please

More information

User s Guide. (Virtual Terminal Edition)

User s Guide. (Virtual Terminal Edition) User s Guide (Virtual Terminal Edition) Table of Contents Home Page... 4 Receivables Summary... 4 Past 30 Day Payment Summary... 4 Last 10 Customer Transactions... 4 View Payment Information... 4 Customers

More information

ipad Frequently Asked Questions Page 1

ipad Frequently Asked Questions Page 1 ipad Frequently Asked Questions Q: What is Mobile Banking? A: In short, Mobile Banking is a way to access your Verity accounts on the go. From your phone or tablet, you can check balances, pay bills, deposit

More information

ivisions Employee Guide Portal Employee User Guide Town of Needham Terry Wolfson Created: 1/27/2014 Updated: 10/5/2016

ivisions Employee Guide Portal Employee User Guide Town of Needham Terry Wolfson Created: 1/27/2014 Updated: 10/5/2016 ivisions Employee Guide Portal Employee User Guide Town of Needham Terry Wolfson Created: 1/27/2014 Updated: 10/5/2016 Contents What is ivisions?... 2 Registering to ivisions Portal... 3 Logging into the

More information

PLCU Business Online

PLCU Business Online PLCU Business Online Contents Logging In... 2 Online Agreement... 3 Password Change... 3 Watermark Selection... 3 Multi-Factor Authentication Security Question Collection... 4 My NetTeller... 5 My NetTeller

More information

2. Type in User Name and Password [Password is case-sensitive]. 7. Type in any Additional Comments. 8. Click the Review Tab to review your order.

2. Type in User Name and Password [Password is case-sensitive]. 7. Type in any Additional Comments. 8. Click the Review Tab to review your order. Log In 1. Open your Internet web browser and type in the following address: https://www.marshfieldlabs.org/reference 2. Type in User Name and Password [Password is case-sensitive]. 3. Click Log In. NOTE:

More information

HSA BANK. Table of Contents MEMBER WEBSITE GUIDE

HSA BANK. Table of Contents MEMBER WEBSITE GUIDE MEMBER WEBSITE GUIDE Table of Contents Member Website Overview...4 Initial Login Process... 4 Future Login... 6 Forgot Username/Password... 6 Home... 7 Accounts... 8 Online Contributions and Distributions...

More information