How to implement applications for Smart Devices... using GeneXus.

Size: px
Start display at page:

Download "How to implement applications for Smart Devices... using GeneXus."

Transcription

1 1. How to implement applications for Smart Devices... using GeneXus. 2. Let s suppose that we need to develop a simplified application for a real estate agency... 1

2 This real estate agency works with certain neighborhoods and areas in a city, and it offers houses and apartments for sale and for rent. It has real estate agents who sign property sales and rental agreements with clients... To manage all this information, the real estate agency needs a computer system that records neighborhoods, properties, clients, agents and agreements: that is, all the entities it works with. 3. To make it accessible from any browser and from any location with Internet access, and with no infrastructure requirements, we can implement it in a cloud. The system will have a restricted area that can only be accessed by the real estate agency s staff (known as backoffice or backend), and is used to enter and work with information about neighborhoods, properties, agents, clients and agreements. In addition, it will have a public access area where visitors looking to buy or rent a property can view the list of available properties, filter the data they are interested in and eventually coordinate a visit. This is known as frontend. Since there are almost no functional differences between the backend and frontend implementation, we will only focus on the backend. 4. 2

3 5. It can have a web-based part implemented in Ruby, Java or.net... to be used from a browser. In addition, to support the agents' mobile work, part of the application will be implemented for smart devices. The programming language will depend on the device used. If we want to develop this application and sell it to various real estate agencies, we can t create it for one device in particular. But... does this mean we have to program it in the languages of each device?! 3

4 No, if we do it with GeneXus. Just like when we wanted to develop a web application... We will program the application in GeneXus and it will build it in the language of one or more devices selected. 6. How? The first thing to do is represent in GeneXus the entities of reality that will be used by the application: agents, clients, neighborhoods and properties. How can we do this? We create a GeneXus transaction object for each entity... and in each object we define the information that will be recorded about each one of them (their attributes)... For which part of the Backend? 7. 4

5 The Web or Smart Devices? Both!! Let s open GeneXus... We will show how to create the KB (with a Ruby prototype) and the Property transaction. If you are already familiar with these topics, you can move on to the next video that explains how to prototype in the cloud. (In GeneXus:) We create a knowledge base and call it RealEstateAgency. It will contain all the necessary knowledge to implement our backend. 5

6 We have to choose the default generation platform. Let's choose the default one, Ruby. Now we can start creating the transactions identified before. We will work with the Properties transaction, and we will focus on it for a while. The other transactions are very similar. So, we create the new GeneXus object... the Property transaction. We create its identifier attribute and define a domain called Id, which will be applied to all the other identifiers. Let s take a look at it among the predefined domains. 6

7 We can set it to be an autonumbered domain so that all the attributes based on this domain are automatically numbered. Next, we enter the attribute that will represent the property name. It is of character type so we can create a domain called Name in order to reuse it in other attributes that also store names. We will record the date when the property was entered into the system; it is of Date data type: 7

8 Next, we add the PropertyAddress attribute. As we can see, it automatically takes the predefined domain which is Address. Next, we need an attribute to record a photo of the front of the property. It will be of Image data type. Lastly, we need an attribute to record the type of operation, which can be sale or rent. It will be an enumerated domain with two possible values: Sale and Rent. 8

9 We could go on adding the other attributes required by reality... However, this is enough for this demo. We can also add some business rules to this transaction:... assign today s date as default value for the date on which the property is entered into the system, an error... in case the address field is left empty, and a message... to inform the user that the property name field has been left empty... We save. Below we can see the default web interface automatically created by GeneXus for this transaction: 9

10 Go back to ppt slides So far, we have only told GeneXus that at some point we will ask it to generate the web application in Ruby. Therefore, after creating the transactions, GeneXus will have to implement them in this platform. 10

11 To do so, we still have to complete the environment settings: for example, specify a location for the database and a name for it, among other things. We could store the programs and database locally... or in the cloud... We will do the latter just by changing a property value. This will be the topic of the next video... Second video Previously... We had stated our problem: to build a web backend and another backend for smart devices, for a real estate agency. We started by creating the KB in GeneXus and a transaction called Property. 11

12 So far, we have only told GeneXus that at some point we will ask it to generate the web application in Ruby. Therefore, after creating the transactions, GeneXus will have to implement them in this platform. To do so, we still have to complete the environment settings: for example, specify a location for the database and a name for it, among other things. We could store the programs and database locally... or in the cloud... We will do the latter just by changing a property value. To do this we will open the Preferences area in the knowledge base. In the Default generator properties (which in our case is Ruby), we look for the Deploy to Cloud property that is set to No by default. We change it to Yes. 12

13 Just by doing this, all the necessary information will be automatically configured for the cloud. Everything is now ready to try our web application in Ruby. We press F5 to have GeneXus generate it. 13

14 As we can see, GeneXus shows the tables that will be created in the database in the cloud. In our case, it will be the table that the Property transaction will work on. We select to create it. GeneXus creates the table and the Ruby programs for our transactions (in this case we have one called Property). Next, it uploads them to the cloud and opens a browser with the development menu automatically created for us to run our objects and give them a try. This menu is known as Developer Menu. If you are already familiar with web development in GeneXus, you can skip this part and move on to the next video. For the sake of example, we will enter a property. We can see the web interface automatically created by GeneXus. 14

15 We don t assign an ID because it will be autonumbered. If we try to leave this field... we are warned that it is empty. We enter a name. We can see that the entry date has today s date as default, due to the default rule that we created before. We could change it or leave it as it is. If we try to leave the address field without entering a value, the error rule doesn't allow us to do so. We enter an address. Now we select a photo of the front of the house. Lastly, we select an operation. We confirm. We can see that the property has been successfully entered into the system. 15

16 In this way, we could continue developing the entire web backend. But... what about the backend for mobile devices? What kind of application do we have in mind for the Smart Device? 16

17 This will be the topic of the next video. Third video In previous videos... We had stated our problem: To build a backend for a real estate agency to be used on the web and Smart Devices. To do this we had started by creating a KB and the Property transaction, and had set the web backend to be generated in Ruby, in the cloud. Next, we had GeneXus build the application and finally entered a property into the system from a browser. 17

18 In this way we could continue developing the entire web backend. But... what about the backend for mobile devices? What kind of application do we have in mind for the Smart Device? It s an application that will be used by real estate agents. We begin with the simplest task... An agent needs to see the list of properties... 18

19 He selects a property from the list to see more details about the selected property... He may need to change some data... 19

20 How do we implement the panel to work with properties? In the transaction we go to the Patterns section and choose "Work With" from the patterns that can be applied to the transaction... this entity, that is to say, work with properties... will be used on Smart Devices, not on the web. 20

21 This pattern will implement the list of Real Estate Properties and for each property, its details. To do this, just like for all patterns, you only have to select the check box and save. 21

22 Here we can see what has been created... What do we have to do to generate and try our application for Smart Devices? Create a menu or point of entry (for the web, it was automatically created by GeneXus: it was the Developer Menu): To make this entry menu for Smart Devices, we create an object of Dashboard type. 22

23 We add an item to invoke the Work With Properties pattern created before... 23

24 And we configure its properties, for example, if we want the icon to be displayed with a customized image when tapping on the screen. We import the image from a file... 24

25 We can change its description. Also, we can configure its header, the dashboard icon... At this point we can have GeneXus create the programs by just pressing F5... For which device? Since we haven t changed anything, it will be for the default option: Android As we can see, GeneXus opens an Android emulator for us to try the application if we don't have an actual device to do it. Here we can see the property that we had entered... At the same time, the developer menu is opened in the browser. In addition to the links to execute the web backend, it will have a QR Code and a Download link related to the SD application. Why? In order to load and install the compiled application in our device and try it there instead of using the emulator. 25

26 s We can send this URL to anyone who has a QR Code reader installed so that they can download and install the application to give it a try. Note that there s only one listed property, and it is the one that we added using the web Developer Menu. Tapping on it... shows its details. Since the address is an Address domain attribute, the application gives the option to view it in a map. 26

27 The image is shown because the application interprets this type of data and displays it correctly on the device screen. The real estate agent may want to change some of this data, for example, the type of Operation. To do so, he would have to edit this information......he changes the operation to Rent and Saves. He may even be visiting a property to add it to his property portfolio... 27

28 Note that since the identifier is autonumbered, it doesn t prompt the user to enter a value. We enter its name. Listing Date will assume today s date value by default (because of the Default rule that we stated in the transaction), so we don t need to enter a value. 28

29 But in case we want to enter a value, since it is of Date type, the application is able to understand its meaning and displays the "Date Picker", which is a device application to easily select a date... We now enter the address: The application is aware that the following data is an image, so it gives the option to take a photo at that moment using the device, or select one of the stored images. We take a photo of the property we have in front of us... Next, we leave the following field Operation with the Sale value and Save. Now we can see the new property in the list of properties. 29

30 Just like in the web backend, the business rules that we stated are triggered. For example, entering an address was mandatory. Note that if we want to delete it......we are not allowed to do so. We may want to filter the list by Rent operation... Or go back and make a wider search, for example, by address... 30

31 What information is being shown in the list? The property's image and name. We may want to show the address instead of or in addition to the name. This and other customizations can be easily and quickly made using GeneXus. In the Work With Smart Devices object, I open the section that implements the List of Properties Layout... In addition to the name, I add the address... 31

32 I Save and press F5 to have GeneXus generate the application again

33 This is a small example of how easy it is to customize the application. We have been able to create what we wanted: one part of the web backend and another part running on the Smart Device... With some easy steps, we can have GeneXus generate the same application for devices with ios or Blackberry operating systems, just like we can have the Web application generated for Java or.net instead of Ruby. 33

34 Let s see some real life examples... And there s a lot more: Would you like to add security features? 34

35 ...or more entities which are interrelated? Would you like to customize what's being displayed, such as interfaces, the order in which data is displayed, the searches available? Do you need to add actions, such as scheduling visits on your calendar?...or add a client to the address list in the device? Or maybe send messages? To be continued... 35

GeneXus for Smart Devices course - Architecture of Smart Device Applications

GeneXus for Smart Devices course - Architecture of Smart Device Applications GeneXus for Smart Devices course - Architecture of Smart Device Applications The problem to solve is the construction of a backend for a real estate office, with a web section and another section for smart

More information

GeneXus for Smart Devices course - Panels for Smart Devices

GeneXus for Smart Devices course - Panels for Smart Devices GeneXus for Smart Devices course - Panels for Smart Devices So far we have studied one type of screen, that of WorkWiths. We saw that, when we apply the pattern to a transaction, objects are automatically

More information

Web Applications Development - Part 1

Web Applications Development - Part 1 Web Applications Development - Part 1 Work has been done in the following fields of the GeneXus X Evolution 2 web generator: Security Performance Prototyping in the Cloud with just one click, and User

More information

GeneXus course - Defining more transactions

GeneXus course - Defining more transactions GeneXus course - Defining more transactions We will create a transaction for countries: We will call it Country... Here we create a country identifier attribute... CountryId And we can see that GeneXus

More information

HOW TO COPY A RESIDENTIAL LISTING

HOW TO COPY A RESIDENTIAL LISTING HOW TO COPY A RESIDENTIAL LISTING OVERVIEW: If a listing for sale is also available for rent, instead of entering two separate listings in the system, you may save time and effort by entering one listing

More information

First Transaction Design

First Transaction Design First Transaction Design Once the Knowledge Base has been created, the next step is to describe the objects of reality using GeneXus objects... Page1 To identify these objects of reality, we recommend

More information

HOW TO COPY A COMMERCIAL LISTING FOR SALE TO COMMERCIAL LEASE LISTING

HOW TO COPY A COMMERCIAL LISTING FOR SALE TO COMMERCIAL LEASE LISTING HOW TO COPY A COMMERCIAL LISTING FOR SALE TO COMMERCIAL LEASE LISTING OVERVIEW: If a listing for sale is also available for rent, instead of entering two separate listings in the system, you may save time

More information

Connecting to Telegram

Connecting to Telegram SOCIAL MEDIA MARKETING Connecting to Telegram POST TO: And many more... What s in this guide? What is Telegram? Creating a Telegram account. What is a Telegram bot? Connecting your Telegram account to

More information

Epicollect5 Reference Guide

Epicollect5 Reference Guide EpiCollect5 is a free web-based tool that enables you to collect customized data (including location and media) on the web or in the field using a mobile device. You can create a data collection form that

More information

myinsight for Documentum User Guide Mobile

myinsight for Documentum User Guide Mobile myinsight for Documentum User Guide Mobile 1. Version History Date Changes Version number 2-June-2016 First publication of the documentation of the new mobile application. 1.0 21- Update for myinsight

More information

Mobile Computing Professor Pushpedra Singh Indraprasth Institute of Information Technology Delhi Andriod Development Lecture 09

Mobile Computing Professor Pushpedra Singh Indraprasth Institute of Information Technology Delhi Andriod Development Lecture 09 Mobile Computing Professor Pushpedra Singh Indraprasth Institute of Information Technology Delhi Andriod Development Lecture 09 Hello, today we will create another application called a math quiz. This

More information

How to Customize Your CT Homes Replica Site

How to Customize Your CT Homes Replica Site How to Customize Your CT Homes Replica Site 1 Table of Contents How to Change the Logo... 1 How to Change the Phone Number... 2 How to Change the Business Name... 2 How to Change Your Email Address...

More information

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials AGENT123 Full Q&A and Tutorials Table of Contents Website IDX Agent Gallery Step-by-Step Tutorials WEBSITE General 1. How do I log into my website? 2. How do I change the Meta Tags on my website? 3. How

More information

Creating a Data Collection Form with EpiCollect5

Creating a Data Collection Form with EpiCollect5 Reference Guide for Creating Field Surveys Epicollect5 is a free web-based tool that enables you to collect customized data (including location and media) in the field using a mobile device. You can easily

More information

Top Producer IDX User Guide

Top Producer IDX User Guide Top Producer IDX User Guide i Top Producer IDX User Guide Top Producer IDX Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious

More information

CS 577A Team 1 DCR ARB. PicShare

CS 577A Team 1 DCR ARB. PicShare CS 577A Team 1 DCR ARB PicShare Team and Project Review (DEN) Project Evaluation Positives Resilient Agile detailed design promotes thoroughness before any code is written Development time should be reduced

More information

IDX Quick Start Guide. A Guide for New Clients

IDX Quick Start Guide. A Guide for New Clients IDX Quick Start Guide A Guide for New Clients Introduction Congratulations on your decision to integrate IDX property search and lead capture tools into your website! With these IDX tools, your website

More information

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows,

2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, 2012 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Excel, Lync, Outlook, SharePoint, Silverlight, SQL Server, Windows, Windows Server, and other product names are or may be registered

More information

MFA (Multi-Factor Authentication) Enrollment Guide

MFA (Multi-Factor Authentication) Enrollment Guide MFA (Multi-Factor Authentication) Enrollment Guide Morristown Medical Center 1. Open Internet Explorer (Windows) or Safari (Mac) 2. Go to the URL: https://aka.ms/mfasetup enter your AHS email address and

More information

Classroom Blogging. Training wiki:

Classroom Blogging. Training wiki: Classroom Blogging Training wiki: http://technologyintegrationshthornt.pbworks.com/create-a-blog 1. Create a Google Account Navigate to http://www.google.com and sign up for a Google account. o Use your

More information

Rules in Transactions - More Knowledge

Rules in Transactions - More Knowledge Rules in Transactions - More Knowledge In a previous video we saw that the controls requested by users, or those we have to validate in transactions, are defined in the RULES section. We have already explained

More information

Visit Connect Full User Guide R3.15

Visit Connect Full User Guide R3.15 Visit Connect Full User Guide R3.15 Contents 1. Welcome to Visit Connect... 3 Scan app... 3 Barcode Scanners... 3 Web Portal... 3 2. Getting started... 4 3. Scan App for Mobile Devices... 5 Download...

More information

Multiple Custom Forms

Multiple Custom Forms Multiple Custom Forms for Magento 2 Extension for Magento 2 User Guide Table of contents 1. Module Features 2. Module Configuration 3. Manage Forms 4. Add Field 4.1. Text Field 4.2. Text Area 4.3. Drop

More information

Digital Media & Society CAO: GA884

Digital Media & Society CAO: GA884 * Digital Media & Society CAO: GA884 1 *You re going to build your own website using Weebly *Weebly is a free tool that can be used to build websites quickly. *The instructions should help you work through

More information

How to get your subscription account ready for the GDPR. Step-guide for getting the consent you may need from your subscribers.

How to get your  subscription account ready for the GDPR. Step-guide for getting the consent you may need from your subscribers. How to get your email subscription account ready for the GDPR. Step-guide for getting the consent you may need from your subscribers. Please be aware this document does not constitute legal advice. It

More information

LEAD RETRIEVAL BY FIRA BARCELONA

LEAD RETRIEVAL BY FIRA BARCELONA LEAD RETRIEVAL BY FIRA BARCELONA Summary 1. What is Lead Retrieval and how does it work? 2. When and how is used Lead Retrieval Mobile Scanner? 3. When and how is used Lead Retrieval Web Portal? 4. Why

More information

Oracle. Sales Cloud Integrating with Oracle Marketing Cloud. Release 13 (update 18B)

Oracle. Sales Cloud Integrating with Oracle Marketing Cloud. Release 13 (update 18B) Oracle Sales Cloud Integrating with Oracle Marketing Cloud Release 13 (update 18B) Release 13 (update 18B) Part Number E94441-01 Copyright 2011-2018, Oracle and/or its affiliates. All rights reserved.

More information

Parallels Plesk Panel 11 Hands-on Product Tour for Website Owners

Parallels Plesk Panel 11 Hands-on Product Tour for Website Owners Parallels Plesk Panel 11 Hands-on Product Tour for Website Owners This document provides a brief hands-on tour of Parallels Plesk Panel 11 hosting control panel for a website owner who is evaluating the

More information

P a g e 0. CIDRZ Website Manual.

P a g e 0. CIDRZ Website Manual. P a g e 0 2015 CIDRZ Website Manual http://cidrz.org/ Manual Contents 1. Overview... 2 Getting Started... 2 The Frontend... 2 The Backend... 2 2.0 Managing the website... 4 Adding & editing pages... 4

More information

Using PowerPoint - 1

Using PowerPoint - 1 Using PowerPoint - 1 Introduction to the course. Before we start, we need to know what power point is. I m sure most of you know about ppt, but for those of you who may be new to this: [1a-c] When you

More information

Installing Dolphin on Your PC

Installing Dolphin on Your PC Installing Dolphin on Your PC Note: When installing Dolphin as a test platform on the PC there are a few things you can overlook. Thus, this installation guide won t help you with installing Dolphin on

More information

Social Portfolio Theme Installation Guide

Social Portfolio Theme Installation Guide Welcome and thank you for your purchase! We have created a detailed guide on installing and setting up the Social Portfolio Theme. Please go through it and let us know if you get stuck at step. The initial

More information

WordPress is free and open source, meaning it's developed by the people who use it.

WordPress is free and open source, meaning it's developed by the people who use it. 1 2 WordPress Workshop by BBC July 2015 Contents: lorem ipsum dolor sit amet. page + WordPress.com is a cloudhosted service that runs WordPress where you can set up your own free blog or website without

More information

ELDES SECURITY APP QUICK GUIDE

ELDES SECURITY APP QUICK GUIDE ELDES SECURITY APP QUICK GUIDE en Contents 1. INSTALLATION... 3 2. REGISTRATION... 3 3. ENABLING ELDES SECURITY APP ON ALARM PANEL... 4 4. LAUNCHING THE APP... 5 4.1. HOW TO RESET YOUR PASSWORD (IN CASE

More information

Salesforce Classic Guide for iphone

Salesforce Classic Guide for iphone Salesforce Classic Guide for iphone Version 35.0, Winter 16 @salesforcedocs Last updated: October 27, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

WebSite Tonight. Getting Started Guide. Getting Your Small Business Online in One Night. Small Business // WebSite Tonight

WebSite Tonight. Getting Started Guide. Getting Your Small Business Online in One Night. Small Business // WebSite Tonight Getting Started Guide WebSite Tonight Getting Your Small Business Online in One Night Getting Started Guide Page 1 Getting Started Guide: WebSite Tonight Small Business Version 1.0 (04.7.10) Copyright

More information

A Guide to CMS Functions

A Guide to CMS Functions 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Contents 1 INTRODUCTION... 3 1.1 Who Should Read This Guide 3 1.2 What You Will Learn 3 2 WHAT IS A CMS

More information

shwedirectory v4.0 Php Web & Business Directory Script Top 12 Features of shwedirectory Premium Edition

shwedirectory v4.0 Php Web & Business Directory Script Top 12 Features of shwedirectory Premium Edition shwedirectory v4.0 Php Web & Business Directory Script Top 12 Features of shwedirectory Premium Edition 1. Admin Subdomain 2. Content Security Policy (CSP) Header 3. Subdomain for each city and country

More information

From a laptop or desktop computer.

From a laptop or desktop computer. Using Office 365 Signing in to Office 365 Office 365 is a web-based office suite that allows the user to create, edit, and share documents and presentations from any internet enabled computer, tablet,

More information

MT4 ANDROID USER GUIDE

MT4 ANDROID USER GUIDE MT4 ANDROID USER GUIDE HOW TO DOWNLOAD AND INSTALL From your Android device visit the Google Play store and search for the MetaTrader 4 application. To download the application, simply click the Install

More information

Website Design and Development CSCI 311

Website Design and Development CSCI 311 Website Design and Development CSCI 311 Learning Objectives Understand good practices in designing and developing web sites Learn some of the challenges web design Activity In pairs: describe how you d

More information

User Manual. Microdigital IP-cameras with built-in Ivideon software. Cloud Video Surveillance

User Manual. Microdigital IP-cameras with built-in Ivideon software. Cloud Video Surveillance User Manual Microdigital IP-cameras with built-in Ivideon software Cloud Video Surveillance Table of Contents Ivideon: basic concepts 3 What is Ivideon? 3 What is an IP camera with built-in Ivideon software?

More information

MT4 ANDROID USER GUIDE USER GUIDE

MT4 ANDROID USER GUIDE USER GUIDE MT4 ANDROID USER GUIDE USER GUIDE TABLE OF CONTENTS 1. HOW TO DOWNLOAD AND INSTALL... 3 2. NAVIGATING WITHIN THE PLATFORM... 3 3. APPLICATION MENU... 3 4. TRADING ACCOUNTS... 3 5. QUOTES TAB... 4 6. CHARTS

More information

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit Oracle Cloud Mobile Cloud Service Known Issues 18.1.3 E93163-01 February 2018 General MCS Instance Has Predefined Storage Limit Each MCS instance has a set storage space that can t be changed manually.

More information

5th April Installation Manual. Department of Computing and Networking Software Development Degree

5th April Installation Manual. Department of Computing and Networking Software Development Degree 5th April 2017 Installation Manual Department of Computing and Networking Software Development Degree Project name: Student: Student Number: Supervisor: MaaP (Message as a Platform) Chihabeddine Ahmed

More information

Embedding Graphics in JavaDocs (netbeans IDE)

Embedding Graphics in JavaDocs (netbeans IDE) Embedding Graphics in JavaDocs (netbeans IDE) This note describes how to embed HTML-style graphics within your JavaDocs, if you are using Netbeans. Additionally, I provide a few hints for package level

More information

Salesforce Classic Mobile Guide for iphone

Salesforce Classic Mobile Guide for iphone Salesforce Classic Mobile Guide for iphone Version 41.0, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

User Guide. Cloud Connect App Board

User Guide. Cloud Connect App Board User Guide Cloud Connect App Board 2017-03-03 Contents 1. Orientation... 3 1.1 Introduction... 3 1.1.1 Thing overview... 3 1.2 Access and logging in... 3 1.2.1 Access... 3 1.2.2 Sign up and Log in... 3

More information

FAQs. A guide for school app administrators

FAQs. A guide for school app administrators FAQs A guide for school app administrators Introduction myschoolapp is a simple and cost-effective way to engage with today s mobile parents and carers who run their lives from their phones. It helps you

More information

THE ALL-IN-ONE CLOUD BASED STREAMING AND VIDEO-ON- DEMAND PORTAL

THE ALL-IN-ONE CLOUD BASED STREAMING AND VIDEO-ON- DEMAND PORTAL THE ALL-IN-ONE CLOUD BASED STREAMING AND VIDEO-ON- DEMAND PORTAL LIVE STREAMING AND VIDEO SHARING ConnectedViews Conference is the all-in-one cloud based live streaming and video sharing content platform.

More information

Workplace Online Using a standard web browser, simply login at us.awp.autotask.net using the credentials you ve been given.

Workplace Online Using a standard web browser, simply login at us.awp.autotask.net using the credentials you ve been given. Quick Start Guide WELCOME Thank you for taking the time to evaluate Autotask Workplace. This guide will help you quickly see how Workplace can benefit your business, especially for collaboration and working

More information

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018

TeamViewer User Guide for Microsoft Dynamics CRM. Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 TeamViewer User Guide for Microsoft Dynamics CRM Document Information Version: 0.5 Version Release Date : 20 th Feb 2018 1 P a g e Table of Contents TeamViewer User Guide for Microsoft Dynamics CRM 1 Audience

More information

Creating a Custom TinyWebDB service

Creating a Custom TinyWebDB service Creating a Custom TinyWebDB service 1. TinyWebDB is an App Inventor component that allows you to store data persistently in a database on the web. Because the data is stored on the web instead of a particular

More information

Note-Taking Guide. ü To get the most out of this course you will need three things:

Note-Taking Guide. ü To get the most out of this course you will need three things: Episode: Introduction ü This course provides teachers with a step-by-step walkthrough for using Google s free set of. ü Classroom tips will also be provided to help you with using these resources right

More information

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration Oracle Cloud Using the Google Calendar Adapter with Oracle Integration E85501-05 January 2019 Oracle Cloud Using the Google Calendar Adapter with Oracle Integration, E85501-05 Copyright 2017, 2019, Oracle

More information

BUYING DECISION CRITERIA WHEN DEVELOPING IOT SENSORS

BUYING DECISION CRITERIA WHEN DEVELOPING IOT SENSORS BUYING DECISION CRITERIA WHEN DEVELOPING IOT SENSORS PHILIP POULIDIS VIDEO TRANSCRIPT What is your name and what do you do? My name is Philip Poulidis and I m the VP and General Manager of Mobile and Internet

More information

Using Devices with Microsoft HealthVault

Using Devices with Microsoft HealthVault Using Devices with Microsoft HealthVault A Microsoft HealthVault Step-by-Step Guide This guide will help you get started using Microsoft HealthVault Connection Center to send information from your health

More information

Listing Manager. Click here to add a new listing. Click here to edit an existing listing.

Listing Manager. Click here to add a new listing. Click here to edit an existing listing. Listing Manager 1 From the Main Menu locate the section called Manage Your Listings and click the Manage Listings button. This will bring you to the Listing Manager tool where you can add new listings,

More information

Comparison: OneDrive versus Google Drive, Dropbox and icloud

Comparison: OneDrive versus Google Drive, Dropbox and icloud Comparison: OneDrive versus Google Drive, Dropbox and icloud When you sign up for OneDrive.com, you get 7 GB of free storage space. Additional storage options are also available to purchase. Apart from

More information

Synchronizing Your PC

Synchronizing Your PC Synchronizing Your PC A Guide to -- North Texas PC Users Group November 18, 2017 AN INTERNATIONAL ASSOCIATION OF TECHNOLOGY AND COMPUTER USER GROUPS 1 Introduction There are numerous ways to sync desktops,

More information

Connect with Remedy: SmartIT: Social Event Manager Webinar Q&A

Connect with Remedy: SmartIT: Social Event Manager Webinar Q&A Connect with Remedy: SmartIT: Social Event Manager Webinar Q&A Q: Will Desktop/browser alerts be added to notification capabilities on SmartIT? A: In general we don't provide guidance on future capabilities.

More information

Welcome to the RFMA 2016 Annual Conference Mobile App!

Welcome to the RFMA 2016 Annual Conference Mobile App! Welcome to the RFMA 2016 Annual Conference Mobile App! You re the Star & We re Putting on the Show Simply everything you need to know, at your fingertips! The Restaurant Facility Management Association

More information

WolkAbout IoT Tool Mobile Application v2.2. User Manual

WolkAbout IoT Tool Mobile Application v2.2. User Manual WolkAbout IoT Tool Mobile Application v2.2 User Manual 1 Table of Contents: Introduction 3 Account Registration 3 Mobile registration 3 Web registration 4 Mobile Application Installation and Configuration

More information

Oracle Cloud. Content and Experience Cloud Android Mobile Help E

Oracle Cloud. Content and Experience Cloud Android Mobile Help E Oracle Cloud Content and Experience Cloud Android Mobile Help E82091-01 Februrary 2017 Oracle Cloud Content and Experience Cloud Android Mobile Help, E82091-01 Copyright 2017, Oracle and/or its affiliates.

More information

EMCO Remote Installer Professional 5. Copyright EMCO. All rights reserved.

EMCO Remote Installer Professional 5. Copyright EMCO. All rights reserved. EMCO Remote Installer Professional 5 Copyright 2001-2017 EMCO. All rights reserved. Company web site: emcosoftware.com Support e-mail: support@emcosoftware.com Table of Contents Chapter... 1: Introduction

More information

Facebook Remarketing :

Facebook Remarketing : Facebook Remarketing : contact@viraljadhav.com What is Re-Marketing When it comes to sales you cannot expect any prospect or inquiry to convert into sales in the first meeting or first contact. We have

More information

Google Drive. Table of Contents. Install Google Drive 2. Google Drive for Mac or PC 2. Google Drive Mobile 2. Creating New Files 3.

Google Drive. Table of Contents. Install Google Drive 2. Google Drive for Mac or PC 2. Google Drive Mobile 2. Creating New Files 3. Google Drive Table of Contents Install Google Drive 2 Google Drive for Mac or PC 2 Google Drive Mobile 2 Google Drive (Web Interface) 2 Creating New Files 3 Sharing 3 Sharing Files (web interface) 3 Sharing

More information

Committee Chair Manual for AIA SEATTLE S ONLINE MEMBER COMMUNICATION TOOL. Questions? Contact AIA Seattle s Communications team.

Committee Chair Manual for AIA SEATTLE S ONLINE MEMBER COMMUNICATION TOOL. Questions? Contact AIA Seattle s Communications team. Contents Access to edit aiaseattle.org... 1 Committee Hub Pages... 2 Hub Page Editor... 2 Main Content Block... 2 Featured Image... 3 Files... 3 Events... 5 Recurring Committee Meetings... 8 Posts... 8

More information

Lanyon Conference July Connect. User Guide

Lanyon Conference July Connect. User Guide Lanyon Conference July 2014 Connect User Guide 2005-2014 Lanyon Solutions, Inc. All rights reserved. If this guide is distributed with software that includes an end user agreement, this guide, as well

More information

QQ and WeChat Training 2015

QQ and WeChat Training 2015 1 QQ & WECHAT I started with my mobile devices first, then the computer. WeChat is best accessed on the computer from either www.wechat.com or QQ international. I find it easier with QQ. WECHAT (ENGLISH)

More information

Know which Edition is right for you by using this sales tool!

Know which Edition is right for you by using this sales tool! Know which Edition is right for you by using this sales tool! Online Product Matrix CLICK HERE All CardExchange Editions provide Unlimited Records and Multiple Card Layouts Custom individual settings for

More information

Oracle Cloud. Content and Experience Cloud ios Mobile Help E

Oracle Cloud. Content and Experience Cloud ios Mobile Help E Oracle Cloud Content and Experience Cloud ios Mobile Help E82090-01 February 2017 Oracle Cloud Content and Experience Cloud ios Mobile Help, E82090-01 Copyright 2017, 2017, Oracle and/or its affiliates.

More information

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER?

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER? 1 A Quick Tour WHAT S IN THIS CHAPTER? Installing and getting started with Visual Studio 2012 Creating and running your fi rst application Debugging and deploying an application Ever since software has

More information

Project "THE4BEES Transnational Holistic Ecosystem 4 Better Energy Efficiency Through Social Innovation"

Project THE4BEES Transnational Holistic Ecosystem 4 Better Energy Efficiency Through Social Innovation Project "THE4BEES Transnational Holistic Ecosystem 4 Better Energy Efficiency Through Social Innovation" Work Package No. T3.5 DELIVERABLE Development of a dashboard for evaluators and high level users

More information

RIDA SMART APP User manual

RIDA SMART APP User manual R-Biopharm AG x RIDA SMART APP User manual All rights reserved. This manual may be used only for its intended purpose. It may not be reproduced in whole or in part or be translated into another language

More information

FAQ for KULT Basic. Connections. Settings. Calls. Apps. Media

FAQ for KULT Basic. Connections. Settings. Calls. Apps. Media FAQ for KULT Basic 1. What do the Icons mean that can be found in notifications bar at the top of my screen? 2. How can I move an item on the home screen? 3. How can I switch between home screens? 4. How

More information

Business Chat Onboarding Your Business Chat Accounts. September

Business Chat Onboarding Your Business Chat Accounts. September Onboarding Your Accounts September 2018.1 Contents Overview 3 Create a Brand Profile... 4 Configure the Messages Header... 4 Create a Account... 4 Connecting to Your Customer Service Platform... 5 Connect

More information

Table of Contents HOL-1757-MBL-5

Table of Contents HOL-1757-MBL-5 Table of Contents Lab Overview - - VMware AirWatch: Mobile App Management and App Development... 2 Lab Guidance... 3 Module 1 - Introduction to AppConfig (30 minutes)... 8 Login to the AirWatch Console...

More information

Printing from anywhere to Thousand Oaks Library s printers

Printing from anywhere to Thousand Oaks Library s printers Printing from anywhere to Thousand Oaks Library s printers The Library provides mobile printing from laptops, tablets and smartphones. There are 4 ways to send print jobs remotely to the Library s printers:

More information

Oracle Digital Assistant: Strategies for Escaping the Validation Loop

Oracle Digital Assistant: Strategies for Escaping the Validation Loop Oracle Digital Assistant TechExchange Article. Oracle Digital Assistant: Strategies for Escaping the Validation Loop Frank Nimphius, February 2019 Dialog flows in Oracle Digital Assistant intelligently

More information

Schrole Cover Manual Table of Contents

Schrole Cover Manual Table of Contents Cover User Manual Schrole Cover Manual Table of Contents Contents User Schrole Cover as a Cover (Relief) User... 3 Navigating around Schrole Cover... 3 Website Cover Dashboard... 4 Swapping Between Roles...

More information

How to apply: Available positions: Fill your candidacy details in the form: Designer.

How to apply: Available positions: Fill your candidacy details in the form:   Designer. How to apply: Fill your candidacy details in the form: https://goo.gl/forms/ku95hg7i3j7mn4pc2 Available positions: Designer UX Researcher Frontend Engineer Backend Engineer Copywriter Blockchain Engineer

More information

Media Library Help Guide

Media Library Help Guide 1 Media Library Help Guide TABLE OF CONTENTS LOGIN/REGISTER...3 DASHBOARD...4-5 NOTIFICATIONS/SETTINGS...6-7 BASIC SEARCH...8-10 CATEGORY SEARCH...11 SEARCH TIPS...12-13 QUICK SEARCH GUIDE...14 DOWNLOADING

More information

Update Manual App World Blackberry Disappeared After Software

Update Manual App World Blackberry Disappeared After Software Update Manual App World Blackberry Disappeared After Software Upgrade your BlackBerry 10 OS to the latest 10.3.2 software to enable advanced Android apps for BlackBerry If you haven't updated recently,

More information

Joining Flickr. Each of the above steps is detailed below: Step 1: Sign up for a Yahoo! account (skip this step if you already have one)

Joining Flickr. Each of the above steps is detailed below: Step 1: Sign up for a Yahoo! account (skip this step if you already have one) Joining Flickr Flickr is a photo sharing website. The photography group at the Library has organized a group for members to post and share their photos. Here s how to join: 1. Sign up for a Yahoo! account

More information

One Place Agent Websites User s Guide. Setting up your Real Estate One Family of Companies Personal Agent Website.

One Place Agent Websites User s Guide. Setting up your Real Estate One Family of Companies Personal Agent Website. One Place Agent Websites User s Guide Setting up your Real Estate One Family of Companies Personal Agent Website. Rev. 2016 Log in Go to http://www.ouroneplace.net (User name last six digits of your state

More information

Social Services Contract Register. Guide for Agency Users May 2016

Social Services Contract Register. Guide for Agency Users May 2016 Social Services Contract Register Guide for Agency Users May 2016 May 2016 New Zealand Government Procurement PO Box 1473 Wellington 6140 New Zealand www.procurement.govt.nz procurement@mbie.govt.nz CROWN

More information

AWS Lambda: Event-driven Code in the Cloud

AWS Lambda: Event-driven Code in the Cloud AWS Lambda: Event-driven Code in the Cloud Dean Bryen, Solutions Architect AWS Andrew Wheat, Senior Software Engineer - BBC April 15, 2015 London, UK 2015, Amazon Web Services, Inc. or its affiliates.

More information

HOW TO ADD A COMMERCIAL LISTING FOR SALE WITH MEDIA

HOW TO ADD A COMMERCIAL LISTING FOR SALE WITH MEDIA HOW TO ADD A COMMERCIAL LISTING FOR SALE WITH MEDIA OVERVIEW: Adding and updating listings are performed in the LISTING section of CREST EDG. Not only will you be able to add / update your listing but

More information

Sage Construction Central Setup Guide (Version 18.1)

Sage Construction Central Setup Guide (Version 18.1) Sage 300 Construction and Real Estate Sage Construction Central Setup Guide (Version 18.1) Certified course curriculum Important Notice The course materials provided are the product of Sage. Please do

More information

Sales Order Configurator

Sales Order Configurator Sales Order Configurator User Guide Version 4.1 Mar 2016 Objective This user guide describes the Sales Order Configurator (SOC) system which is be used to place orders for Schneider software products.

More information

Umoja Sales-Based Least-Out

Umoja Sales-Based Least-Out Umoja Sales-Based Least-Out Use this How-To- as a reference when carrying out activities related to Sales-Based Lease-Outs in Real Estate. Sales-Based Lease-Outs are leases with a commercial entity where

More information

VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Manager

VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Manager VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Table of Contents Lab Overview - HOL-1857-03-UEM - Workspace ONE UEM with App & Access Management... 2 Lab Guidance... 3 Module 1 - Workspace

More information

What about when it s down? An Application for the Enhancement of the SAS Middle Tier User Experience

What about when it s down? An Application for the Enhancement of the SAS Middle Tier User Experience Paper 11421-2016 What about when it s down? An Application for the Enhancement of the SAS Middle Tier User Experience Christopher Blake, Royal Bank of Scotland ABSTRACT The SAS Web Application Server goes

More information

Frequently Asked Questions Table of Contents

Frequently Asked Questions Table of Contents Frequently Asked Questions Table of Contents What is my user name and password?... 3 How do I change my Password?... 3 How do I set up a view?... 3 How do I load a photo to a listing?... 3 How do I run

More information

5 Fast & *FREE* Ways To Generate MORE Seller Leads Right NOW...

5 Fast & *FREE* Ways To Generate MORE Seller Leads Right NOW... 5 Fast & *FREE* Ways To Generate MORE Seller Leads Right NOW... PLUS: The "5X Formula For Seller Lead Success" - so you'll always have a pipeline of *motivated* sellers & listings... Housekeeping Items:

More information

Agent Profiles on NRT s Enhanced Web Partners. Logging In or Updating Your Realtor.com Profile

Agent Profiles on NRT s Enhanced Web Partners. Logging In or Updating Your Realtor.com Profile Agent Profiles on NRT s Enhanced Web Partners As a sales associate, you automatically receive a profile on Realtor.com and can manually create a profile for Trulia and Zillow where you can add your title,

More information

IBM Workplace Services Express - Technical Overview and Directions. Stuart Duguid Asia Pacific Portal & Workplace Technical Lead

IBM Workplace Services Express - Technical Overview and Directions. Stuart Duguid Asia Pacific Portal & Workplace Technical Lead IBM Workplace Services Express - Technical Overview and Directions Stuart Duguid Asia Pacific Portal & Workplace Technical Lead Disclaimer The following material is directional in nature and does not imply

More information

Introduction to Kony Fabric

Introduction to Kony Fabric Kony Fabric Introduction to Kony Fabric Release V8 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated on the Revision

More information

Sitecore E-Commerce Cookbook

Sitecore E-Commerce Cookbook Sitecore E-Commerce Cookbook Rev: 2011-09-12 Sitecore E-Commerce Fundamental Edition 1.1 Sitecore E-Commerce Cookbook A marketer's guide to the Sitecore E-Commerce Fundamental Edition Sitecore E-Commerce

More information