0% found this document useful (0 votes)
9 views35 pages

Itss PRG Unit1

The document outlines a business plan for ITSS S.A.R.L, focusing on the Design Studio for T24, which serves as a single design tool for creating and managing T24 artefacts. It covers various aspects of using the Design Studio, including creating projects, managing properties, compiling code, and utilizing common variables. The document emphasizes best practices and functionalities within the Design Studio environment for effective program development.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views35 pages

Itss PRG Unit1

The document outlines a business plan for ITSS S.A.R.L, focusing on the Design Studio for T24, which serves as a single design tool for creating and managing T24 artefacts. It covers various aspects of using the Design Studio, including creating projects, managing properties, compiling code, and utilizing common variables. The document emphasizes best practices and functionalities within the Design Studio environment for effective program development.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 35

YOUR COMPANY

BUSINESS PLAN

A QUALITY PARTER FOR


YOUR
GROWTH

POWERPOINT TEMPLATE

T24 - INDUCTION

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
.
.

Transact Programe UNIT-1

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Lesson Overview
➢ Design Studio
➢ Common Variable

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Starting with JBC

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – T24 Design Studio
▪ T24 is a Single Design Tool
▪ Can be used to design the T24 artefacts like version , enquiry , COS, MENU
etc.
▪ It can be also used as an IDE by developers to create , debug and run the
programs

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Launch Design Studio IDE & H2

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Workspace

▪ Default workspace is
C:\Temenos\R22\Env\Slot01\Products\DesignStudio\workspace
▪ Some default projects are available in the workspace

.
▪ BRP-MODEL
.

▪ BRP-MODEL-GEN
▪ -server

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Enterprise Design Studio
▪ Specify a New Location to start with a fresh workspace

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Create a New Project

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Toggle TAFJ Nature

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Existing Property file
• Property files are found in the TAFJ_HOME/conf folder
• Choose tafj.properties for this session.

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – properties - precompiled
• Jars Folder refer to the location of the T24 jars.
• As we are using an existing property file, this location is already set

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – properties - Database
• must specify the Database
connection properties
• As we are using an existing property
file, this location is already set.

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Adding a Folder for the program
• right click on the project, click on New-> folder to add a new Basic folder for your
project . .

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Programs in JBC

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Programs in JBC
• Programs begin with keyword PROGRAM and end with END
• CRT is used to display data on the console
• PRINT can also be used for displaying data on console

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Compiling the code

• Ctrl S will save and compile


Result of compilation can be
seen in the console tab

.
• Compilation will create the
.

equivalent .java and .class file

• Alternatively, you can right click


on the program and choose
Compile Basic file

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Execute the Program

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Execute the Program

• Run configuration will be created


for the 1st time when we run the
program.

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Invoking Subroutines in JBC
• A subroutine is a named block of code.
• Subroutines also hold jBC code but, unlike Programs,
• subroutines are not directly executed from the runtime.

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – compiling Subroutines in JBC
• Compilation of subroutine results in ERROR

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – compiling Subroutines in JBC

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – compiling Subroutines in JBC

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Calling the Subroutines

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Invoking a Program
A program can be invoked from another PROGRAM using EXECUTE keyword

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Common Variables

• A variable need not be declared in jBC.

• However, you require a name for the variable and it’s a good practice to
initialize a variable before use.

.
.

• Variables in jBC can store all types of data as well as data of any length.

• They are not declared to be of a specific type.

• Eg CUSTOMER.ID = “A001”, CUSTOMER.ID variable stores a character string

• CUSTOMER.ID = 9278, Here the same CUSTOMER.ID variable now stores a


numeric value.
ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Accept User INPUT
• The INPUT statement allows the program to collect data from the current input
device, which is normally the keyboard
• INPUT Variable Name for example INPUT NAME
• Colon operator is used for concatenation

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Common variables
• The Variables can be created
• Locally within a program / subroutine – Local Variables
• Shareable between programs / subroutines – Common Variables

• Local variables are variables used within the program or subroutine

.
.

• Common variables are variables used outside the program or subroutine within
a session space

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Common variables >> visibility

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Common variables >> Global visibility

.
.

Common variable retains the state across


multiple code blocks and hence act as
session specific variables

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Common variables >> INSERT files

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Common variables >> INSERT files

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Design Studio – Common variables >> Scope

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
Practice

.
.

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM
.
.

Thank You

ITSS S.A.R.L
WWW.ITSSGLOBAL.COM

You might also like