0% found this document useful (0 votes)
352 views7 pages

TAFC To TAFJ Conversion in T24 Transact

The document discusses the conversion of TAFC code to TAFJ within the Temenos T24 environment, highlighting the differences in their operating systems and compilation methods. It outlines the methods for accessing data, refactoring code for compatibility, and emphasizes that while basic functions remain similar, specific adaptations are necessary for TAFJ. The document also provides examples of code snippets and notes on common variables used in TAFJ.

Uploaded by

apsaraleng01
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)
352 views7 pages

TAFC To TAFJ Conversion in T24 Transact

The document discusses the conversion of TAFC code to TAFJ within the Temenos T24 environment, highlighting the differences in their operating systems and compilation methods. It outlines the methods for accessing data, refactoring code for compatibility, and emphasizes that while basic functions remain similar, specific adaptations are necessary for TAFJ. The document also provides examples of code snippets and notes on common variables used in TAFJ.

Uploaded by

apsaraleng01
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/ 7

Temenos T24 Technical

TAFC to TAFJ Conversion

MD Shibli Mollah
T24 Technical Analyst
Dependency on OS & Compilation

The Key difference is that TAFC runs on C compiler/environment


whereas TAFJ runs on Java/JDK.

MD Shibli Mollah
T24 Technical Analyst
Refactoring TAFC Code for Compatibility with TAFJ in
Temenos T24

Access Data in InfoBasic Routine: In TAFC environment, INSERT files are used
to access the T24 application data.
$INSERT I_F.FUNDS.TRANSFER

Whereas, in TAFJ, we access them by the keyword named as $USING from Java
packages.
$USING FT.Contract

R.NEW in TAFJ,
EB.SystemTables.getRNew()

Componentization In TAFJ,
FT.Contract.FundsTransfer.DebitAcctNo = Packagename.FileName.FieldName

MD Shibli Mollah
T24 Technical Analyst
The Basic functions are the same for TAFC & TAFJ. For Example, (IF,
ELSE, WHILE etc.)
Note: Initially, try to find the functions compatible with TAFJ, though more than 90%
of the functions are same. The ultimate task is to find the Variable/Function/Table
name in TAFJEE using tShow command.

TAFJ – Temenos Application Framework Java.


TAFJ - *(asterisk) is used for commenting.

TAFJ supports some Common variables using the $INSERT key word. For example,
$INSERT I_COMMON
$INSERT I_EQUATE

tShow FUNDS.TRANSFER from TAFJEE

MD Shibli Mollah
T24 Technical Analyst
Sample TAFC Code from Design Studio

MD Shibli Mollah
T24 Technical Analyst
Converted Sample TAFJ Code from Design Studio

MD Shibli Mollah
T24 Technical Analyst
MD Shibli Mollah
T24 Technical Analyst

You might also like