SmartPad4i SystemObjects 2017 Release version 2.0 Page: 1/55

Size: px
Start display at page:

Download "SmartPad4i SystemObjects 2017 Release version 2.0 Page: 1/55"

Transcription

1 SmartPad4i SystemObjets 2017 Release version 2.0 Page: 1/55

2 Development Tutorial for Rdi SmartPad4i SystemObjets 2017 Release version 2.0 Page: 2/55

3 This tutorial is provided to reate quikly and simply your first appliations with the Express version of SmartPad4i. In this tutorial, we will use the database file COUNTRY in the library SP4I. We will do three programs: display the COUNTRY reords, add a new ountry entry, modify a reord. Before to begin, please make sure that two sub-systems CO406JTCP and SP4I are running on the System i: Work with Ative Jobs CPU %: Opt.0 03/14/17 Ative jobs: 194 Elapsed time: 00:00:00 Current Subsystem/Job User Type CPU % Funtion CO406JTCP CO406JSVR.0.0 PGM-SERVSOCKET.0 PGM-SP4IMSG QSYS QSECOFR SBS ASJ SYSOBJ 09:39:07 Status DEQW TIMW SP4I SP4IMSGW QSYS QUSER SBS.0 ASJ DEQW MSGW More... ===> F21=Display instrutions/keys The sub-system CO406JTCP is started with the ommand: STRSBS CO406J/CO406JTCP In this subs-system, the job CO406JSVR is the sever program that listens on port This program must be running. The sub-system SP4I is started with the ommand: STRSBS SP4I/SP4I In this sub-system, the job SP4IMSGW waits for any SmartPad4i eventual error message ourred in QSYSOPR message-queue in order to prevent the user. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 3/55

4 How to reate an appliation The general proess to reate an appliation is the following: Create your HTML doument with all your presentation and fields, Publish this page to your web server, in the C:\Program Files\Apahe Software Foundation\Tomat 7.0\webapps\smartpad4i\html\TUTORIAL diretory. The C:\Program Files\Apahe Software Foundation\Tomat 7.0\webapps\smartpad4i\html\ diretory exists already. Create sub-diretory TUTORIAL. TUTORIAL must be upperase. On the System i, reate library TUTORIAL, Use SmartPad4i Designer and desribe your ative omponents, From SmartPad4i Designer, deploy the appliation to the System i. This ation will reate System i objets like I/O external data strutures and program skeleton, From SmartPad4i Designer, deploy the appliation to your web server, Use PDM in your System i to add the logi program inside the SmartPad4i generated program, Compile your program, Run your appliation. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 4/55

5 Create Display the COUNTRY reords appliation If you run DSPFFD SP4I/COUNTRY, you will see the file desription as follows: Reord format : COUNTRY Format level identifier : 381CBE4ECAF4B Number of fields : 4 Reord length : 74 Field Level Information Field Data Type Field Length Buffer Length Buffer Position Field Usage Column Heading C_NAME CHAR Both C_NAME C_CON00001 CHAR Both C_CONTINENT C_DATE DATE Both C_DATE LANGID CHAR Both LANGID We reate then a HTML file that we name ountry.html and we plae this file in the C:\Program Files\Apahe Software Foundation\Tomat 7.0\webapps\smartpad4i \html\tutorial diretory. This ountry.html file an ontain all features suh as ompany logo, bakground image, bakground olor, images, CSS. These features will not be used by the System i program. What we need in this file is a table of five olumns to display database file reords: a hek box to selet the reord to modify, a olumn for C_NAME, a olumn for C_CON00001, a olumn for C_DATE, a olumn for LANGID. a button for adding new reord entry, a button for modifying seleted reord, a button for appliation exit. And So we reate the file as the following ode: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 5/55

6 <html> <head> <title>list of ountries</title> </head> <body bgolor="#a6deee"> <form method="post"> <div style="text-align: enter;"> List of Countries<br> </div> <br> <div style="text-align: enter;"> <input id="bt1" value="add" type="button"> <input id="bt2" value="modify" type="button"> <input id="bt3" value="exit" type="button"> </div> <br> <table id="tbl1" border="1" ellpadding="1" width="100%"> <thead> <tr> <td style="text-align: enter;" width="10%"> Seletion </td> <td width="40%"> Country name</td> <td width="30%"> Continent name </td> <td width="10%"> Date </td> <td width="10%"> Language ID</td> </tr> </thead> <tbody> <tr> <td style="text-align: enter;"> <input id="hek" type="hekbox"> </td> <td id="name">my ountry name</td> <td id="ont">my ontinent name</td> <td id="date"> </td> <td id="lang">enu</td> </tr> </tbody> </table> </form> </body> </html> In this ode, we put only one row in the <Tbody> blo. This row defines one reord entry of the database file COUNTRY. It s the System i program to redefine and display the number of rows or reords. The ountry.html file an be previewed on the browser as the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 6/55

7 At this step, we have reated: System i library TUTORIAL, Country.html file in the C:\Program Files\Apahe Software Foundation\Tomat 7.0\webapps\smartpad4i \html\tutorial diretory. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 7/55

8 Now we are going to reate the appliation with SmartPad4i Designer. In RDI environment open "SmartPad4i" perspetive, as below: SmartPad4i Designer will open as the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 8/55

9 On the menu bar selet "File" and "New Projet" like in the sreen below: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 9/55

10 In the window as below, selet the diretory where you want to save your projet and type the name of your projet, for example List of ountries Projet1 in the same diretory of the ountry.html file (C:\Program Files\Apahe Software Foundation\Tomat 7.0\webapps\smartpad4i\html\TUTORIAL) : SmartPad4i SystemObjets 2017 Release version 2.0 Page: 10/55

11 Clik on the "Open" button. the following sreen will shown so you an set the System i IP address and its CCSID ode. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 11/55

12 (You an obtain the above sreen with Menu bar/options/system i) IP Address: Type IP address of the System i, example Port Number: This value is also set in the data-area TCPPORTSRV in the CO406J library. Timeout: In milliseonds, time to onnet to System i, Default value is milliseonds. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 12/55

13 CCSID: CCSID of your System i. Charset for DBCS: this information onerns Japanese language. Example x-sjis. Clik on the button "Chek Connetion» to be sure that the input values are orret. You should be prompted to the Sign on sreen to onnet to your System i: Type your User ID, your password and lik on OK button. If the onnetion to your System i is suessful, you will reeive the message "Connetion Test Suessful" on the sreen. See the sreen below: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 13/55

14 Clik on Selet button, you should be prompted again to the Sign on sreen to onnet to your System i: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 14/55

15 Type your User ID, your password and lik on OK button You return to SmartPad4i Designer main sreen. On the menu bar selet "Options" and "Selet Html File Pathname". You will get a sreen like the sreen below: Selet C:\Program Files\Apahe Software Foundation\Tomat 7.0\webapps\ smartpad4i\ html\tutorial diretory. Clik on Choose. You ome bak to the SmartPad4i as follows: On the menu bar selet "Options" and "Selet WebServer deployment Root". SmartPad4i SystemObjets 2017 Release version 2.0 Page: 15/55

16 Selet C:\Program Files\Apahe Software Foundation\Tomat 7.0\webapps, as below: Clik on Choose button. You ome bak to the Smarpad4i Designer main sreen. Now lik on the button of the toolbar. You will get the following sreen: Open ountry.html file. You will ome bak to the SmarPad4i Designer main menu as follows: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 16/55

17 Enter: System i Name System i Length Ation BT1 AD BT2 UP BT3 F3 CHECK Usage Input CNAME 40 CCONT 20 DATE 10 CLANG 4 The result on the sreen should be the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 17/55

18 Clik on the button to save the projet On the menu bar selet "Deployment" and "Deploy Projet to the System i", as shown on the following sreen: You will get a sreen like the sreen below: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 18/55

19 Type ountry in the System i program Name and press Enter. The word ountry beomes COUNTRY. Chek ILE RPG and lik on Deploy button. The SmartPad4i Designer generates soure ode in the TUTORIAL library and after all shows the following report: Clik OK button. On the menu bar selet "Deployment" and "Deploy Projet to WebServer, the SmartPad4i Designer generates result to the Apahe Tomat Server and shows the following report: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 19/55

20 At this step, lose the SmartPad4i Perspetive. Open iprojets perspetive Exeute on the System i the follozing ommand: CALL TUTORIAL/SETENV You will see the library list of your environment, as follows SmartPad4i SystemObjets 2017 Release version 2.0 Page: 20/55

21 Open and edit the soure file COUNTRY.RPGLE in library TUTORIAL Insert one line after line 15 and define database file COUNTRY as the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 21/55

22 Go now to line 459 and add after this line the following ode: C C *in50 *in50 ount move z-add doweq read ifeq add our endif enddo Z-ADD *off *in50 0 ount *off fountry *off 1 ount SOOF02 OCNAME = C_NAME OCCONT = C_CON00001 ODATE = C_DATE OCLANG = LANGID ount SPL901 The sreen should look like the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 22/

23 In this ode, we read and display all the existing reords in the database file COUNTRY. The variable SPL102 indiates the first reord in the data-struture SOOF02 to display and SPL901 indiates the last reord to show. Beause in our ode we intend to show all the reords, so we set the value SPL901 to the value of COUNT. We an also deide to do a loop for only 20 times to display 20 reords and then to prepare two buttons on the sreen for roll-up and roll-down and we need to manage the pagination in the ode. Save the member. Create the program in the library Tutorial, with options CVTOPT(*DATETIME) and ALWNULL(*YES), as follows: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 23/55

24 Start Apahe Tomat servie, as shown in the following figure: Open a browser and type: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 24/55

25 SmartPad4i SystemObjets 2017 Release version 2.0 Page: 25/55

26 Enter : your System i user profile, your password, program to Start: COUNTRY, environment Library: TUTORIAL. As shown in the following figure: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 26/55

27 Press Enter, you will get the result as the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 27/55

28 SmartPad4i SystemObjets 2017 Release version 2.0 Page: 28/55

29 At this step, we have not yet work with three buttons Add, Modify and Exit. In the SmartPad4i Designer, we have defined an ation ode for eah of these buttons: AD for Add, UP for Modify, F3 for Exit. We need to implement in the RPG ode to say what the program must do when it reeives these ation odes. We an deide to say when the ation ode is AD or UP, the COUNTRY program will all a program that we name UPDCTRY with parameters: Code ation, Country name, Continent name, Date, Lang ID result So we return to PDM and modify the COUNTRY member. Insert the following ode for Add button after line number 116: spatn ifeq 'AD' all 'UPDCTRY' parm 'AD' ation parm wname parm wont parm wdate parm wlang parm result * if reord added, put the reord at the end of the list result ifeq 'OK' add 1 ount ount our SOOF02 OCNAME = wname OCCONT = wont ODATE = wdate OCLANG = wlang C Z-ADD ount SPL901 endif endif Like the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 29/55

30 Insert the following ode for Modify button just after the ode for Add button: spatn ifeq do myindie our ihek ifeq leave endif enddo myindie ifle myindie our all parm parm parm parm parm parm * if reord updated, refresh result ifeq endif endif endif 'UP' ount SOIF02 '1' myindie ount SOOF02 wname = OCNAME wont = OCCONT wdate = ODATE wlang = OCLANG 'UPDCTRY' 'UP' ation wname wont wdate wlang result the reord in the list 'OK' OCNAME = wname OCCONT = wont ODATE = wdate OCLANG = wlang SmartPad4i SystemObjets 2017 Release version 2.0 Page: 30/55 4 0

31 Like the following: Insert the following ode for Exit button just after the ode for Modify button: spatn ifne goto endif 'F3' T200 Save the member. Create the program in the library Tutorial, with options CVTOPT(*DATETIME) and ALWNULL(*YES), as follows: Now to ontinue, we have to develop the program UPDCTRY. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 31/55

32 Create UPDCTRY appliation First, we need to reate updtry.html file in the C:\Program Files\Apahe Software Foundation\Tomat 7.0\webapps\smartpad4i \html\tutorial diretory. The ode is the following: <html> <head> <title>manage Country Reord</title> </head> <body bgolor="#a6deee"> <form method="post"> <div style="text-align: enter;"> <span id="title">add/update Country Reord </span><br> </div> <br> <div style="text-align: enter;"> <input id="bt1" value="ok" type="button"> <input id="bt2" value="canel" type="button"> </div> <br> <table border="1" ellpadding="1" width="100%"> <tbody> <tr> <td>country name</td> <td><input id="name" value="" type="text" size=40 maxlength=40> </td> </tr> <tr> <td>continent name</td> <td><input id="ont" value="" type="text" size=20 maxlength=20> </td> </tr> <tr> <td>date</td> <td><input id="date" value="" type="text" size=10 maxlength=10> </td> </tr> <tr> <td>lang ID</td> <td><input id="lang" value="" type="text" size=4 maxlength=4> </td> </tr> </tbody> </table> </form> </body> </html> That gives a presentation on the browser as below: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 32/55

33 Now we are going to reate the appliation UPDCTRY with SmartPad4i Designer. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 33/55

34 In RDI environment open "SmartPad4i" perspetive, as below: If the SP4i designer has been losed, to reopen itm in the SmartPad4i perspetive, double lik the SP4i Designer on the leftside view: SmartPad4i Designer will be opened. On the menu bar selet "File" and "Open Projet" to open the projet List of ountries.jdp projet. You need to sign in with your user profile and password. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 34/55

35 Now lik on the button of the toolbar. You will get the following sreen: Open updtry.html file. You will ome bak to the SmarPad4i Designer main menu as follows: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 35/55

36 Here we an see that the fields CNAME, CCONT, DATE and CLANG have already a length, they are respetively 40, 20, 10 and 4. We have these lengths beause in the updtry.html file, the Maxlength parameters are defined. We need now define the length for TITLE field and ation odes for BT1 and BT2 button. Enter: System i Name System i Length TITLE 30 Ation Usage Output BT1 OK Input BT2 12 Input CNAME 40 Both CCONT 20 Both DATE 10 Both CLANG 4 Both The result on the sreen should be the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 36/55

37 Clik on the button to save the projet Be sure that the updtry.html file is seleted. On the menu bar selet "Deployment" and "Deploy File to the System i", as shown on the following sreen: You will get a sreen like the sreen below: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 37/55

38 Reply Yes. You get the following sreen: Type updtry in the System i program Name and press Enter. The word updtry beomes UPDCTRY. Chek ILE RPG and lik on Deploy button. The SmartPad4i Designer generates soure ode in the TUTORIAL library and after all shows the following report: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 38/55

39 Clik OK button. On the menu bar selet "Deployment" and "Deploy Projet to WebServer, the SmartPad4i Designer generates result to the Apahe Tomat Server and shows the following report: At this step, lose the SmartPad4i Designer. Open a 5250 session on the System i and type: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 39/55

40 Exeute on the System i the follozing ommand: CALL TUTORIAL/SETENV You will see the library list of your environment, as follows SmartPad4i SystemObjets 2017 Release version 2.0 Page: 40/55

41 Open and edit the soure file UPDCTRY.RPGLE in library TUTORIAL SmartPad4i SystemObjets 2017 Release version 2.0 Page: 41/55

42 Change Type=RPGLE to SQLRPGLE for UPDCTRY member, as follows: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 42/55

43 Edit UPDCTRY member. Insert at line 75 the following ode: *entry plist parm parm parm parm parm parm ation wname wont wdate wlang result Like the following sreen: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 43/

44 Insert at line 342, in the sub-routine YRINIT, the ode to initialize fields before display, as the following ode: ation ation ifeq lear lear lear lear endif ifeq endif 'AD' OTITLE='Add a new ountry' OCNAME OCCONT ODATE OCLANG 'UP' OTITLE OCNAME OCCONT ODATE OCLANG ='Modify ountry reord' = wname = wont = wdate = wlang Like in the following sreen: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 44/55

45 In the SmartPad4i Designer, we have defined an ation ode for eah of these buttons: OK for OK button, 12 for Canel button. We need to implement in the RPG ode to say what the program must do when it reeives these ation odes. Insert the following ode for Add button after line number 114: spatn ation ation ifeq ifeq exsr endif ifeq exsr endif else endif 'OK' 'AD' addreord 'UP' updreord result='ok' wname=iname wont =iont wdate =idate wlang =ilang result='12' Like the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 45/55

46 We need to reate now two sub-routines: addreord to insert a ountry, updreord to modify a reord entry. Insert these sub-routines before the last line of the member. The ode to insert is the following: * * Insert reord * C addreord BEGSR C/EXEC SQL C+ INSERT INTO COUNTRY (C_NAME, C_CONTINENT, C_DATE, LANGID) C+ VALUES (:ICNAME, :ICCONT, :IDATE, :ICLANG) C/END-EXEC C ENDSR * * Update reord * C updreord BEGSR C/EXEC SQL C+ UPDATE COUNTRY SET C_NAME=:ICNAME, C_CONTINENT=:ICCONT, C+ C_DATE=:IDATE, LANGID=:ICLANG WHERE C_NAME=:WCNAME C/END-EXEC C ENDSR Like the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 46/55

47 Save the member. Create the program in the library Tutorial, with options COMMIT(*NONE) as shown in the following sreen: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 47/55

48 Start Apahe Tomat servie, as shown in the following figure: Open a browser and type: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 48/55

49 Enter : your System i user profile, your password, program to Start: COUNTRY, environment Library: TUTORIAL. As shown in the following figure: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 49/55

50 Press Enter, you will get the result as the following: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 50/55

51 Clik on Add button: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 51/55

52 Enter: Country name = My ountry 1 Continent name = Europe Date = Lang ID = FRF Clik on OK button, the new reord is added in the bottom of the List of ountries: Chek SINGAPORE and lik Modify button. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 52/55

53 Modify Date= and lik on OK. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 53/55

54 Clik on Exit button: SmartPad4i SystemObjets 2017 Release version 2.0 Page: 54/55

55 End of tutorial. SmartPad4i SystemObjets 2017 Release version 2.0 Page: 55/55

Development Tutorial With Free-Form ILE RPG

Development Tutorial With Free-Form ILE RPG Development Tutorial With Free-Form ILE RPG SmartPad4i SystemObjects 2015 Release version 2.1 Page: 1/55 This tutorial is provided to create quickly and simply your first applications with SmartPad4i (SP4i).

More information

WORKSHOP 20 CREATING PCL FUNCTIONS

WORKSHOP 20 CREATING PCL FUNCTIONS WORKSHOP 20 CREATING PCL FUNCTIONS WS20-1 WS20-2 Problem Desription This exerise involves reating two PCL funtions that an be used to easily hange the view of a model. The PCL funtions are reated by reording

More information

CA Test Data Manager 4.x Implementation Proven Professional Exam (CAT-681) Study Guide Version 1.0

CA Test Data Manager 4.x Implementation Proven Professional Exam (CAT-681) Study Guide Version 1.0 Implementation Proven Professional Study Guide Version 1.0 PROPRIETARY AND CONFIDENTIAL INFORMATION 2017 CA. All rights reserved. CA onfidential & proprietary information. For CA, CA Partner and CA Customer

More information

RS485 Transceiver Component

RS485 Transceiver Component RS485 Transeiver Component Publiation Date: 2013/3/25 XMOS 2013, All Rights Reserved. RS485 Transeiver Component 2/12 Table of Contents 1 Overview 3 2 Resoure Requirements 4 3 Hardware Platforms 5 3.1

More information

Connection Guide. Installing the printer locally (Windows) What is local printing? Installing the printer using the Software and Documentation CD

Connection Guide. Installing the printer locally (Windows) What is local printing? Installing the printer using the Software and Documentation CD Connetion Guide Page 1 of 5 Connetion Guide Installing the printer loally (Windows) Note: If the Software and Doumentation CD does not support the operating system, you must use the Add Printer Wizard.

More information

OvidSP Quick Reference Card

OvidSP Quick Reference Card OvidSP Quik Referene Card Searh in any of several dynami modes, ombine results, apply limits, use improved researh tools, develop strategies, save searhes, set automati alerts and RSS feeds, share results...

More information

Strategi Event Services Guide

Strategi Event Services Guide BusinessLink Software Support. Strategi Event Services Guide Version V1R9 This manual applies to Strategi version V1R9 and later and was last revised in February 2005. ADVANED BusinessLink orp. may have

More information

Connection Guide. Installing the printer locally (Windows) What is local printing? Installing the printer using the Software and Documentation CD

Connection Guide. Installing the printer locally (Windows) What is local printing? Installing the printer using the Software and Documentation CD Page 1 of 7 Connetion Guide Installing the printer loally (Windows) Note: When installing a loally attahed printer, if the operating system is not supported y the Software and Doumentation CD, then the

More information

CA Release Automation 5.x Implementation Proven Professional Exam (CAT-600) Study Guide Version 1.1

CA Release Automation 5.x Implementation Proven Professional Exam (CAT-600) Study Guide Version 1.1 Exam (CAT-600) Study Guide Version 1.1 PROPRIETARY AND CONFIDENTIAL INFORMATION 2016 CA. All rights reserved. CA onfidential & proprietary information. For CA, CA Partner and CA Customer use only. No unauthorized

More information

Connection Guide. Supported operating systems. Installing the printer using the Software and Documentation CD. Connection Guide

Connection Guide. Supported operating systems. Installing the printer using the Software and Documentation CD. Connection Guide Connetion Guide Page 1 of 6 Connetion Guide Supported operating systems Using the software CD, you an install the printer software on the following operating systems: Windows 8.1 Windows Server 2012 R2

More information

Type of document: Usebility Checklist

Type of document: Usebility Checklist Projet: JEGraph Type of doument: Usebility Cheklist Author: Max Bryan Version: 1.30 2011 Envidate GmbH Type of Doumet Developer guidelines User guidelines Dutybook Speifiation Programming and testing Test

More information

CA Privileged Identity Manager r12.x (CA ControlMinder) Implementation Proven Professional Exam (CAT-480) Study Guide Version 1.5

CA Privileged Identity Manager r12.x (CA ControlMinder) Implementation Proven Professional Exam (CAT-480) Study Guide Version 1.5 Proven Professional Exam (CAT-480) Study Guide Version 1.5 PROPRIETARY AND CONFIDENTIAL INFORMATION 2016 CA. All rights reserved. CA onfidential & proprietary information. For CA, CA Partner and CA Customer

More information

Programming Guide SDN Programming Guide

Programming Guide SDN Programming Guide Programming Guide SIFI Programming Guide CONTENT Overview............................................................................... Pg 2 - System Requirements Installation..............................................................................

More information

An Event Display for ATLAS H8 Pixel Test Beam Data

An Event Display for ATLAS H8 Pixel Test Beam Data An Event Display for ATLAS H8 Pixel Test Beam Data George Gollin Centre de Physique des Partiules de Marseille and University of Illinois April 17, 1999 g-gollin@uiu.edu An event display program is now

More information

CA PPM 14.x Implementation Proven Professional Exam (CAT-222) Study Guide Version 1.2

CA PPM 14.x Implementation Proven Professional Exam (CAT-222) Study Guide Version 1.2 CA PPM 14.x Implementation Proven Professional Exam (CAT-222) Study Guide Version 1.2 PROPRIETARY AND CONFIDENTIAL INFMATION 2016 CA. All rights reserved. CA onfidential & proprietary information. For

More information

LAB 4: Operations on binary images Histograms and color tables

LAB 4: Operations on binary images Histograms and color tables LAB 4: Operations on binary images Histograms an olor tables Computer Vision Laboratory Linköping University, Sween Preparations an start of the lab system You will fin a ouple of home exerises (marke

More information

SP4i HTML Builder for RDi

SP4i HTML Builder for RDi SP4i HTML Builder for RDi SmartPad4i HTML Builder - SystemObjects 2017 Page: 1 Introduction HTML Builder is a new SmatPad4i module. It s part of the SmartPad4i Development license, and it s installed automatically

More information

DECT Module Installation Manual

DECT Module Installation Manual DECT Module Installation Manual Rev. 2.0 This manual desribes the DECT module registration method to the HUB and fan airflow settings. In order for the HUB to ommuniate with a ompatible fan, the DECT module

More information

CA Service Desk Manager 14.x Implementation Proven Professional Exam (CAT-181) Study Guide Version 1.3

CA Service Desk Manager 14.x Implementation Proven Professional Exam (CAT-181) Study Guide Version 1.3 Exam (CAT-181) Study Guide Version 1.3 PROPRIETARY AND CONFIDENTIAL INFORMATION 2017 CA. All rights reserved. CA onfidential & proprietary information. For CA, CA Partner and CA Customer use only. No unauthorized

More information

CA Agile Requirements Designer 2.x Implementation Proven Professional Exam (CAT-720) Study Guide Version 1.0

CA Agile Requirements Designer 2.x Implementation Proven Professional Exam (CAT-720) Study Guide Version 1.0 Exam (CAT-720) Study Guide Version 1.0 PROPRIETARY AND CONFIDENTIAL INFORMATION 2017 CA. All rights reserved. CA onfidential & proprietary information. For CA, CA Partner and CA Customer use only. No unauthorized

More information

CA Unified Infrastructure Management 8.x Implementation Proven Professional Exam (CAT-540) Study Guide Version 1.1

CA Unified Infrastructure Management 8.x Implementation Proven Professional Exam (CAT-540) Study Guide Version 1.1 Management 8.x Implementation Proven Professional Exam (CAT-540) Study Guide Version 1.1 PROPRIETARY AND CONFIDENTIAL INFORMATION 2017 CA. All rights reserved. CA onfidential & proprietary information.

More information

CA Identity Suite 14.x Implementation Proven Professional Exam (CAT-760) Study Guide Version 1.1

CA Identity Suite 14.x Implementation Proven Professional Exam (CAT-760) Study Guide Version 1.1 Study Guide Version 1.1 PROPRIETARY AND CONFIDENTIAL INFORMATION 2018 CA. All rights reserved. CA onfidential & proprietary information. For CA, CA Partner and CA Customer use only. No unauthorized use,

More information

CA Single Sign-On 12.x Proven Implementation Professional Exam (CAT-140) Study Guide Version 1.5

CA Single Sign-On 12.x Proven Implementation Professional Exam (CAT-140) Study Guide Version 1.5 Study Guide Version 1.5 PROPRIETARY AND CONFIDENTIAL INFORMATION 2018 CA. All rights reserved. CA onfidential & proprietary information. For CA, CA Partner and CA Customer use only. No unauthorized use,

More information

Starter Kit B80 User Guide. Version: 01 DocId: Starter_Kit_B80_v01. User Guide

Starter Kit B80 User Guide. Version: 01 DocId: Starter_Kit_B80_v01. User Guide Starter Kit B80 User Guide Version: 01 DoId: Starter_Kit_B80_v01 User Guide User Guide: Starter Kit B80 User Guide Version: 01 Date: 2012-08-14 DoId: Status Starter_Kit_B80_v01 GENERAL NOTE THE USE OF

More information

Adobe Certified Associate

Adobe Certified Associate Adobe Certified Assoiate About the Adobe Certified Assoiate (ACA) Program The Adobe Certified Assoiate (ACA) program is for graphi designers, Web designers, video prodution designers, and digital professionals

More information

Chapter 2: Introduction to Maple V

Chapter 2: Introduction to Maple V Chapter 2: Introdution to Maple V 2-1 Working with Maple Worksheets Try It! (p. 15) Start a Maple session with an empty worksheet. The name of the worksheet should be Untitled (1). Use one of the standard

More information

Installation & Operation Manual 6060 MODBUS PROTOCOL. This manual is a supplement to the 6060 Full Installation & Operation Manual PK514

Installation & Operation Manual 6060 MODBUS PROTOCOL. This manual is a supplement to the 6060 Full Installation & Operation Manual PK514 Installation & Operation Manual 6060 MODBUS PROTOCOL This manual is a supplement to the 6060 Full Installation & Operation Manual PK514 PK539 0037-75565 July 2016 1 Explanation of Symbols: General Information

More information

Power Factor Controller. Power Factor Controller USER MANUAL

Power Factor Controller. Power Factor Controller USER MANUAL Power Fator Controller Power Fator Controller USER MANUAL Power Fator Controller TABLE OF CONTENTS SECTION GENERAL INFORMATION...0. Symbols...0.2 General Warnings...0.3 Reeipt Control and Contents of the

More information

CA Privileged Access Manager 3.x Proven Implementation Professional Exam (CAT-661) Study Guide Version 1.0

CA Privileged Access Manager 3.x Proven Implementation Professional Exam (CAT-661) Study Guide Version 1.0 Exam (CAT-661) Study Guide Version 1.0 PROPRIETARY AND CONFIDENTIAL INFMATION 2018 CA. All rights reserved. CA onfidential & proprietary information. For CA, CA Partner and CA Customer use only. No unauthorized

More information

CleanUp: Improving Quadrilateral Finite Element Meshes

CleanUp: Improving Quadrilateral Finite Element Meshes CleanUp: Improving Quadrilateral Finite Element Meshes Paul Kinney MD-10 ECC P.O. Box 203 Ford Motor Company Dearborn, MI. 8121 (313) 28-1228 pkinney@ford.om Abstrat: Unless an all quadrilateral (quad)

More information

Volume 3, Issue 9, September 2013 International Journal of Advanced Research in Computer Science and Software Engineering

Volume 3, Issue 9, September 2013 International Journal of Advanced Research in Computer Science and Software Engineering Volume 3, Issue 9, September 2013 ISSN: 2277 128X International Journal of Advaned Researh in Computer Siene and Software Engineering Researh Paper Available online at: www.ijarsse.om A New-Fangled Algorithm

More information

PathRings. Manual. Version 1.0. Yongnan Zhu December 16,

PathRings. Manual. Version 1.0. Yongnan Zhu   December 16, PathRings Version 1.0 Manual Yongnan Zhu E-mail: yongnan@umb.edu Deember 16, 2014-1 - PathRings This tutorial introdues PathRings, the user interfae and the interation. For better to learn, you will need

More information

Video Data and Sonar Data: Real World Data Fusion Example

Video Data and Sonar Data: Real World Data Fusion Example 14th International Conferene on Information Fusion Chiago, Illinois, USA, July 5-8, 2011 Video Data and Sonar Data: Real World Data Fusion Example David W. Krout Applied Physis Lab dkrout@apl.washington.edu

More information

Department of Electrical Engineering and Computer Science MASSACHUSETTS INSTITUTE OF TECHNOLOGY Fall Test I Solutions

Department of Electrical Engineering and Computer Science MASSACHUSETTS INSTITUTE OF TECHNOLOGY Fall Test I Solutions Department of Eletrial Engineering and Computer iene MAACHUETT INTITUTE OF TECHNOLOGY 6.035 Fall 2016 Test I olutions 1 I Regular Expressions and Finite-tate Automata For Questions 1, 2, and 3, let the

More information

- 1 - S 21. Directory-based Administration of Virtual Private Networks: Policy & Configuration. Charles A Kunzinger.

- 1 - S 21. Directory-based Administration of Virtual Private Networks: Policy & Configuration. Charles A Kunzinger. - 1 - S 21 Diretory-based Administration of Virtual Private Networks: Poliy & Configuration Charles A Kunzinger kunzinge@us.ibm.om - 2 - Clik here Agenda to type page title What is a VPN? What is VPN Poliy?

More information

CA PPM 15.x Proven Implementation Professional Exam (CAT-223) Study Guide Version 1.3

CA PPM 15.x Proven Implementation Professional Exam (CAT-223) Study Guide Version 1.3 CA PPM 15.x Proven Implementation Professional Exam (CAT-223) Study Guide Version 1.3 PROPRIETARY AND CONFIDENTIAL INFORMATION 2018 CA. All rights reserved. CA onfidential & proprietary information. For

More information

Multiple Assignments

Multiple Assignments Two Outputs Conneted Together Multiple Assignments Two Outputs Conneted Together if (En1) Q

More information

It has been an exciting summer for

It has been an exciting summer for Another Look at CGIDEV2 By Martin Cytrynbaum It has been an exiting summer for the CGIDEV2 web toolkit as its support and development has moved from IBM Italy to the iseries Client Tehnology Center in

More information

ENGINEERING update FOR 2.0 PRINTGEN. A C Page 1 of 120 PRINTGEN. Engineering Update (DAA -170)

ENGINEERING update FOR 2.0 PRINTGEN. A C Page 1 of 120 PRINTGEN. Engineering Update (DAA -170) o ENGINEERING update FOR 2.0 A-09-01159-01-C Page 1 of 120 Speifiations Subjet to Change. Convergent Tehnologies and NGEN are registered trademarks of Convergent Tehnologies, In. Convergent, CT-DBMS, CT-MAIL,

More information

What follows is a description of a basic time sharing systems, as. seen by a knowledgeable user. There are three basic kinds of objects,

What follows is a description of a basic time sharing systems, as. seen by a knowledgeable user. There are three basic kinds of objects, 11/15/67 H. Sturgis 1.0 What follows is a desription of a basi time sharing systems, as seen by a knowledgeable user. There are three basi kinds of objets, and some ations that an be performed on them.

More information

Learning Convention Propagation in BeerAdvocate Reviews from a etwork Perspective. Abstract

Learning Convention Propagation in BeerAdvocate Reviews from a etwork Perspective. Abstract CS 9 Projet Final Report: Learning Convention Propagation in BeerAdvoate Reviews from a etwork Perspetive Abstrat We look at the way onventions propagate between reviews on the BeerAdvoate dataset, and

More information

CA API Management 8.x Implementation Proven Professional Exam (CAT-560) Study Guide Version 1.1

CA API Management 8.x Implementation Proven Professional Exam (CAT-560) Study Guide Version 1.1 Exam (CAT-560) Study Guide Version 1.1 PROPRIETARY AND CONFIDENTIAL INFORMATION 2016 CA. All rights reserved. CA onfidential & proprietary information. For CA, CA Partner and CA Customer use only. No unauthorized

More information

the machine and check the components Basic User s Guide

the machine and check the components Basic User s Guide Quik Setup Guide Start Here MFC-7860DW Please read the Safety and Legal ooklet first efore you set up your mahine. Then, please read this Quik Setup Guide for the orret setup and installation. To view

More information

This fact makes it difficult to evaluate the cost function to be minimized

This fact makes it difficult to evaluate the cost function to be minimized RSOURC LLOCTION N SSINMNT In the resoure alloation step the amount of resoures required to exeute the different types of proesses is determined. We will refer to the time interval during whih a proess

More information

Triangles. Learning Objectives. Pre-Activity

Triangles. Learning Objectives. Pre-Activity Setion 3.2 Pre-tivity Preparation Triangles Geena needs to make sure that the dek she is building is perfetly square to the brae holding the dek in plae. How an she use geometry to ensure that the boards

More information

Series/1 GA File No i=:: IBM Series/ Battery Backup Unit Description :::5 ~ ~ >-- ffi B~88 ~0 (] II IIIIII

Series/1 GA File No i=:: IBM Series/ Battery Backup Unit Description :::5 ~ ~ >-- ffi B~88 ~0 (] II IIIIII Series/1 I. (.. GA34-0032-0 File No. 51-10 a i=:: 5 Q 1 IBM Series/1 4999 Battery Bakup Unit Desription B88 0 (] o. :::5 >-- ffi "- I II1111111111IIIIII1111111 ---- - - - - ----- --_.- Series/1 «h: ",

More information

1. Introduction. 2. The Probable Stope Algorithm

1. Introduction. 2. The Probable Stope Algorithm 1. Introdution Optimization in underground mine design has reeived less attention than that in open pit mines. This is mostly due to the diversity o underground mining methods and omplexity o underground

More information

Whole Numbers. Whole Numbers. Solutions. Curriculum Ready.

Whole Numbers. Whole Numbers. Solutions. Curriculum Ready. Whole Numbers Whole Numbers Solutions Curriulum Ready www.mathletis.om Copyright 009 P Learning. All rights reserved. First edition printed 009 in Australia. A atalogue reord for this book is available

More information

Memorandum. The report also includes appendices that include the information used to create the usability test and the artifacts generated from it.

Memorandum. The report also includes appendices that include the information used to create the usability test and the artifacts generated from it. Memorandum Date: April 28, 2013 To: : From: Subjet: Stephanie Coleman, Southern Polytehni State University Dr. Carol Barnum, Southern Polytehni State University 900ers Projet Team: Ann Beebe, Niole MLaughlin,

More information

8 Instruction Selection

8 Instruction Selection 8 Instrution Seletion The IR ode instrutions were designed to do exatly one operation: load/store, add, subtrat, jump, et. The mahine instrutions of a real CPU often perform several of these primitive

More information

Algorithms for External Memory Lecture 6 Graph Algorithms - Weighted List Ranking

Algorithms for External Memory Lecture 6 Graph Algorithms - Weighted List Ranking Algorithms for External Memory Leture 6 Graph Algorithms - Weighted List Ranking Leturer: Nodari Sithinava Sribe: Andi Hellmund, Simon Ohsenreither 1 Introdution & Motivation After talking about I/O-effiient

More information

SCREEN LAYOUT AND HANDLING

SCREEN LAYOUT AND HANDLING Sreen layout & handling SCREEN LAYOUT AND HANDLING Generally, 7-1 Keyboard shortuts, 7-3 Keyboard Must Know, 7-5 Generally It is not intended that the manual or on-line Help should replae knowledge of

More information

5.2.1 Ant, indispensable Ant

5.2.1 Ant, indispensable Ant 5.2.1 Ant, indispensale Ant Apahe s Ant produt (http://ant.apahe.org/) is a uild tool that lets you easily ompile and test appliations (among other things). It is the de fato standard for uilding Java

More information

Compilation Lecture 11a. Register Allocation Noam Rinetzky. Text book: Modern compiler implementation in C Andrew A.

Compilation Lecture 11a. Register Allocation Noam Rinetzky. Text book: Modern compiler implementation in C Andrew A. Compilation 0368-3133 Leture 11a Text book: Modern ompiler implementation in C Andrew A. Appel Register Alloation Noam Rinetzky 1 Registers Dediated memory loations that an be aessed quikly, an have omputations

More information

Dynamic Algorithms Multiple Choice Test

Dynamic Algorithms Multiple Choice Test 3226 Dynami Algorithms Multiple Choie Test Sample test: only 8 questions 32 minutes (Real test has 30 questions 120 minutes) Årskort Name Eah of the following 8 questions has 4 possible answers of whih

More information

Graph-Based vs Depth-Based Data Representation for Multiview Images

Graph-Based vs Depth-Based Data Representation for Multiview Images Graph-Based vs Depth-Based Data Representation for Multiview Images Thomas Maugey, Antonio Ortega, Pasal Frossard Signal Proessing Laboratory (LTS), Eole Polytehnique Fédérale de Lausanne (EPFL) Email:

More information

Document Version Number: 1.0 Publication Date: August 2010 Review Date: August 2010 Type: Instructional Security Classification Classified

Document Version Number: 1.0 Publication Date: August 2010 Review Date: August 2010 Type: Instructional Security Classification Classified Document Version Number: 1.0 Publication Date: August 2010 Review Date: August 2010 Type: Instructional Security Classification Classified maxview Lite From Copyright 2000-2010 Maximum Availability Ltd.

More information

Structure Bars. Tag Bar

Structure Bars. Tag Bar C H E A T S H E E T / / F L A R E 2 0 1 8 Structure Bars The XML Editor provides structure bars above and to the left of the content area in order to provide a visual display of the topic tags and structure.

More information

JSF - H:PANELGRID. JSF Tag. Rendered Output. Tag Attributes. The h:panel tag renders an HTML "table" element. Attribute & Description.

JSF - H:PANELGRID. JSF Tag. Rendered Output. Tag Attributes. The h:panel tag renders an HTML table element. Attribute & Description. http://www.tutorialspoint.com/jsf/jsf_panelgrid_tag.htm JSF - H:PANELGRID Copyright tutorialspoint.com The h:panel tag renders an HTML "table" element. JSF Tag

More information

Introductory Programming, IMM, DTU Systematic Software Test. Software test (afprøvning) Motivation. Structural test and functional test

Introductory Programming, IMM, DTU Systematic Software Test. Software test (afprøvning) Motivation. Structural test and functional test Introdutory Programming, IMM, DTU Systemati Software Test Peter Sestoft a Programs often ontain unintended errors how do you find them? Strutural test Funtional test Notes: Systemati Software Test, http://www.dina.kvl.dk/

More information

Algorithms, Mechanisms and Procedures for the Computer-aided Project Generation System

Algorithms, Mechanisms and Procedures for the Computer-aided Project Generation System Algorithms, Mehanisms and Proedures for the Computer-aided Projet Generation System Anton O. Butko 1*, Aleksandr P. Briukhovetskii 2, Dmitry E. Grigoriev 2# and Konstantin S. Kalashnikov 3 1 Department

More information

McAfee Data Loss Prevention Prevent

McAfee Data Loss Prevention Prevent Quik Strt Guide Revision B MAfee Dt Loss Prevention Prevent version 10.x This quik strt guide provides high-level instrutions for setting up MAfee Dt Loss Prevention Prevent (MAfee DLP Prevent) hrdwre

More information

Getting Started With Integrator User Exits. Wayne Quigley Technical Specialist MK & Associates

Getting Started With Integrator User Exits. Wayne Quigley Technical Specialist MK & Associates Getting Started With Integrator User Exits Wayne Quigley Technical Specialist MK & Associates Session Description You can develop most any application in the Power-Link architecture using Enterprise Integrator.

More information

Cisco Collaborative Knowledge

Cisco Collaborative Knowledge Ciso Collaborative Knowledge Ciso on Ciso: How Ciso Servies Upskilled 14,400 Employees and Transformed into a Consultative, Solutions-Selling Organization. It is estimated that by 2020, roughly four out

More information

On - Line Path Delay Fault Testing of Omega MINs M. Bellos 1, E. Kalligeros 1, D. Nikolos 1,2 & H. T. Vergos 1,2

On - Line Path Delay Fault Testing of Omega MINs M. Bellos 1, E. Kalligeros 1, D. Nikolos 1,2 & H. T. Vergos 1,2 On - Line Path Delay Fault Testing of Omega MINs M. Bellos, E. Kalligeros, D. Nikolos,2 & H. T. Vergos,2 Dept. of Computer Engineering and Informatis 2 Computer Tehnology Institute University of Patras,

More information

Introduction to the SQL Server Platform

Introduction to the SQL Server Platform Chapter 1 Introdution to the SQL Server Platform In This Chapter SQL Server Editions SQL Server What s in the Box? Operating System Platforms SQL Server Doumentation and Sample Databases SQL Server Resoures,

More information

Flow Demands Oriented Node Placement in Multi-Hop Wireless Networks

Flow Demands Oriented Node Placement in Multi-Hop Wireless Networks Flow Demands Oriented Node Plaement in Multi-Hop Wireless Networks Zimu Yuan Institute of Computing Tehnology, CAS, China {zimu.yuan}@gmail.om arxiv:153.8396v1 [s.ni] 29 Mar 215 Abstrat In multi-hop wireless

More information

FORTRAN Programming in Nuclear Medicine

FORTRAN Programming in Nuclear Medicine FORTRAN Programming in Nulear Mediine Till Noever Emory University Hospital, Atlanta, Georgia This is the seond in a series of four ontinuing Eduation artiles on omputers in nulear mediine. After studying

More information

A Novel Validity Index for Determination of the Optimal Number of Clusters

A Novel Validity Index for Determination of the Optimal Number of Clusters IEICE TRANS. INF. & SYST., VOL.E84 D, NO.2 FEBRUARY 2001 281 LETTER A Novel Validity Index for Determination of the Optimal Number of Clusters Do-Jong KIM, Yong-Woon PARK, and Dong-Jo PARK, Nonmembers

More information

Xpander Rack Mount 8 6U Gen 3 with Redundant Power [Part # XPRMG3-826URP] User Guide

Xpander Rack Mount 8 6U Gen 3 with Redundant Power [Part # XPRMG3-826URP] User Guide Xpander Rak Mount 8 6U Gen 3 with Redundant Power [Part # XPRMG3-826URP] User Guide Xpander Rak Mount 8 6U Gen 3 with Redundant Power (RP) supplies is a rak mount PCI Express (PCIe) expansion enlosure

More information

Deccansoft Software Services

Deccansoft Software Services Deccansoft Software Services (A Microsoft Learning Partner) HTML and CSS COURSE SYLLABUS Module 1: Web Programming Introduction In this module you will learn basic introduction to web development. Module

More information

DSB-Mini User Guide. Version: 02 DocId: dsb-mini_ug_v02. User Guide

DSB-Mini User Guide. Version: 02 DocId: dsb-mini_ug_v02. User Guide DSB-Mini User Guide Version: 02 DoId: dsb-mini_ug_v02 User Guide User Guide: DSB-Mini User Guide Version: 02 Date: 2012-10-09 DoId: Status dsb-mini_ug_v02 GENERAL NOTE THE USE OF THE PRODUCT INCLUDING

More information

EXODUS II: A Finite Element Data Model

EXODUS II: A Finite Element Data Model SAND92-2137 Unlimited Release Printed November 1995 Distribution Category UC-705 EXODUS II: A Finite Element Data Model Larry A. Shoof, Vitor R. Yarberry Computational Mehanis and Visualization Department

More information

COMMUNICATIONS NETWORK

COMMUNICATIONS NETWORK (19) United States (12) Patent Appliation Publiation Ditzik 111111 1111111111111111111111111111111111111111111111111111111111111111111111111111 US 251178Al (1) Pub. o.: US 25/1178 A1 ( 43) Pub. Date: May

More information

Xpander Rack Mount 8 5U Gen 3 with Redundant Power [Part # XPRMG3-81A5URP] User Guide

Xpander Rack Mount 8 5U Gen 3 with Redundant Power [Part # XPRMG3-81A5URP] User Guide Xpander Rak Mount 8 5U Gen 3 with Redundant Power [Part # XPRMG3-81A5URP] User Guide Xpander Rak Mount 8 5U Gen 3 with Redundant Power (RP) supplies is a rak mount PCI Express (PCIe) expansion enlosure

More information

7SR242 Duobias Multi-Function 2-Winding Transformer Protection Relay

7SR242 Duobias Multi-Function 2-Winding Transformer Protection Relay 7SR242 Duobias Multi-Funtion 2-Winding Transformer Protetion Relay Doument Release History This doument is issue 2010/06. The list of revisions up to and inluding this issue is: 2010/06 Additional Comms

More information

Title: Time-Based Tree Graphs for Stabilized Force Structure Representations

Title: Time-Based Tree Graphs for Stabilized Force Structure Representations Paper for the 8 th International Command & Control Researh & Tehnology Symposium Title: Time-Based Tree Graphs for Stabilized Fore Struture Representations Submitted by: Sam Chamberlain U.S. Army Researh

More information

Web Development & Design Foundations with HTML5

Web Development & Design Foundations with HTML5 1 Web Development & Design Foundations with HTML5 CHAPTER 8 TABLES 2 Learning Outcomes In this chapter, you will learn how to... Create a basic table with the table, table row, table header, and table

More information

The AMDREL Project in Retrospective

The AMDREL Project in Retrospective The AMDREL Projet in Retrospetive K. Siozios 1, G. Koutroumpezis 1, K. Tatas 1, N. Vassiliadis 2, V. Kalenteridis 2, H. Pournara 2, I. Pappas 2, D. Soudris 1, S. Nikolaidis 2, S. Siskos 2, and A. Thanailakis

More information

HEXA: Compact Data Structures for Faster Packet Processing

HEXA: Compact Data Structures for Faster Packet Processing Washington University in St. Louis Washington University Open Sholarship All Computer Siene and Engineering Researh Computer Siene and Engineering Report Number: 27-26 27 HEXA: Compat Data Strutures for

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

Pipelined Multipliers for Reconfigurable Hardware

Pipelined Multipliers for Reconfigurable Hardware Pipelined Multipliers for Reonfigurable Hardware Mithell J. Myjak and José G. Delgado-Frias Shool of Eletrial Engineering and Computer Siene, Washington State University Pullman, WA 99164-2752 USA {mmyjak,

More information

Data I/O and Post- Processing Utilities

Data I/O and Post- Processing Utilities Chapter 10: Data I/O and Post-Proessing Utilities 10 Data I/O and Post- Proessing Utilities 10.1. ARPS History Data Format and I/O As desribed in Setion 3.7, ARPS supports a number of history data formats.

More information

Tavultesoft Keyboard Manager. User s Guide and Reference. Tavultesoft

Tavultesoft Keyboard Manager. User s Guide and Reference. Tavultesoft Tavultesoft Keyboard Manager User s Guide and Referene VERSION 4.0 Tavultesoft This doumentation may be freely opied, but the opyright notie must not be altered or removed. No part of this doumentation

More information

Symbol indicating an action that must not be done. Symbol indicating an action that should be done. Symbol indicating related or useful information

Symbol indicating an action that must not be done. Symbol indicating an action that should be done. Symbol indicating related or useful information Using the Produt Safely Safety Instrutions For your safety, read all the instrutions in this guide before using this produt. Inorret handling that ignores instrutions in this guide ould damage this produt

More information

RPG IV Subprocedures Basics

RPG IV Subprocedures Basics RPG IV Subprocedures Basics Jon Paris Jon.Paris@Partner400.com www.partner400.com Your Partner in AS/400 and iseries Education Partner400, 2002-2003 Unit 6 - Subprocedures Basics - Page 1-2 What is a Subprocedure?

More information

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. c360 Solutions

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc.   c360 Solutions c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. www.c360.com c360 Solutions Contents Overview... 3 Web Connect Configuration... 4 Implementing Web Connect...

More information

Interconnection Styles

Interconnection Styles Interonnetion tyles oftware Design Following the Export (erver) tyle 2 M1 M4 M5 4 M3 M6 1 3 oftware Design Following the Export (Client) tyle e 2 e M1 M4 M5 4 M3 M6 1 e 3 oftware Design Following the Export

More information

Xpander Rack Mount 2 Gen 3 HPC Version User Guide

Xpander Rack Mount 2 Gen 3 HPC Version User Guide Xpander Rak Mount 2 Gen 3 HPC Version User Guide Xpander Rak Mount 2 is a 2U rak mount PCI Express (PCIe) expansion enlosure that enables onnetion of two passively-ooled aelerators to a host omputer. The

More information

Performance Improvement of TCP on Wireless Cellular Networks by Adaptive FEC Combined with Explicit Loss Notification

Performance Improvement of TCP on Wireless Cellular Networks by Adaptive FEC Combined with Explicit Loss Notification erformane Improvement of TC on Wireless Cellular Networks by Adaptive Combined with Expliit Loss tifiation Masahiro Miyoshi, Masashi Sugano, Masayuki Murata Department of Infomatis and Mathematial Siene,

More information

Why then another BFT protocol? Zyzzyva. Simplify, simplify. Simplify, simplify. Complex decision tree hampers BFT adoption. H.D. Thoreau. H.D.

Why then another BFT protocol? Zyzzyva. Simplify, simplify. Simplify, simplify. Complex decision tree hampers BFT adoption. H.D. Thoreau. H.D. Why then another BFT protool? Yes No Zyzzyva Yes No Yes No Comple deision tree hampers BFT adoption Simplify, simplify H.D. Thoreau Simplify, simplify H.D. Thoreau Yes No Yes No Yes Yes No One protool

More information

Make your process world

Make your process world Automation platforms Modion Quantum Safety System Make your proess world a safer plae You are faing omplex hallenges... Safety is at the heart of your proess In order to maintain and inrease your ompetitiveness,

More information

XML Data Streams. XML Stream Processing. XML Stream Processing. Yanlei Diao. University of Massachusetts Amherst

XML Data Streams. XML Stream Processing. XML Stream Processing. Yanlei Diao. University of Massachusetts Amherst XML Stream Proessing Yanlei Diao University of Massahusetts Amherst XML Data Streams XML is the wire format for data exhanged online. Purhase orders http://www.oasis-open.org/ommittees/t_home.php?wg_abbrev=ubl

More information

RPG Web Apps with AJAX, JSON, and jquery. Lab Examples

RPG Web Apps with AJAX, JSON, and jquery. Lab Examples RPG Web Apps with AJAX, JSON, and jquery Lab Examples Jim Cooper Jim.cooper@lambtoncollege.ca Jim.cooper@system-method.ca www.system-method.ca Please send corrections and suggestions to jim.cooper@system-method.ca

More information

TLP 350CV Setup Guide

TLP 350CV Setup Guide TLP 350V Setup Guide The Extron TouhLink 3.5 inh able ubby TLP 350V provide users with aess to AV onnetivity using onvenient pullout ables. It also provides simple and versatile onfiguration and ontrol

More information

Spring 2014 Interim. HTML forms

Spring 2014 Interim. HTML forms HTML forms Forms are used very often when the user needs to provide information to the web server: Entering keywords in a search box Placing an order Subscribing to a mailing list Posting a comment Filling

More information

Deep Dive into Apps for Office in Outlook

Deep Dive into Apps for Office in Outlook Deep Dive into Apps for Office in Outlook Office 365 Hands-on lab In this lab you will get hands-on experience developing Mail Apps which target Microsoft Outlook and OWA. This document is provided for

More information

Automated System for the Study of Environmental Loads Applied to Production Risers Dustin M. Brandt 1, Celso K. Morooka 2, Ivan R.

Automated System for the Study of Environmental Loads Applied to Production Risers Dustin M. Brandt 1, Celso K. Morooka 2, Ivan R. EngOpt 2008 - International Conferene on Engineering Optimization Rio de Janeiro, Brazil, 01-05 June 2008. Automated System for the Study of Environmental Loads Applied to Prodution Risers Dustin M. Brandt

More information

Web Development and HTML. Shan-Hung Wu CS, NTHU

Web Development and HTML. Shan-Hung Wu CS, NTHU Web Development and HTML Shan-Hung Wu CS, NTHU Outline How does Internet Work? Web Development HTML Block vs. Inline elements Lists Links and Attributes Tables Forms 2 Outline How does Internet Work? Web

More information

1 The Knuth-Morris-Pratt Algorithm

1 The Knuth-Morris-Pratt Algorithm 5-45/65: Design & Analysis of Algorithms September 26, 26 Leture #9: String Mathing last hanged: September 26, 27 There s an entire field dediated to solving problems on strings. The book Algorithms on

More information