- Forum
- T24 Technical Discussions
- T24 Development & Customization
- How to create a new T24 Application?
×
Discuss on Template programming, jBASE programming, Enquiries, No-File enquiry, Enquiry routines, Version, Version routines, Menus, Abbriviations, Creating local reference fields, Fast path enquiries, Creating charts and graphs, Generating Reports, Deal slips, Straight through processing, Multi Company and Multi Book setup, Tabbed screens, Composite Screens, T24 API, etc...
How to create a new T24 Application?
- icafe23
- Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 41
- Thank you received: 1
16 years 2 months ago #3510
by icafe23
How to create a new T24 Application? was created by icafe23
Dear all,
Suppose that I want to create a new simple application to store all the Province name of a country, what are the requirement to do that? What records I need to setup?
Thanks for your kind supporting and sharing,
Suppose that I want to create a new simple application to store all the Province name of a country, what are the requirement to do that? What records I need to setup?
Thanks for your kind supporting and sharing,
Please Log in or Create an account to join the conversation.
- vijesh
- Visitor
-
16 years 2 months ago #3511
by vijesh
Replied by vijesh on topic Re:How to create a new T24 Application?
Hi,
you can use the existing tabled COUNTRY and REGION to store such data related country.
Regds,
VIJESH-Temenos.
you can use the existing tabled COUNTRY and REGION to store such data related country.
Regds,
VIJESH-Temenos.
Please Log in or Create an account to join the conversation.
- icafe23
- Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 41
- Thank you received: 1
16 years 2 months ago #3527
by icafe23
Replied by icafe23 on topic Re:How to create a new T24 Application?
Hi Vijesh,
Thanks for your response but it does not correspont to our bank requirement. Just now, I want to learn something more on how to create a new application in T24 because I'm new to T24.
If you know how to create a new application, please guide me with regards.
Thanks again,
Thanks for your response but it does not correspont to our bank requirement. Just now, I want to learn something more on how to create a new application in T24 because I'm new to T24.
If you know how to create a new application, please guide me with regards.
Thanks again,
Please Log in or Create an account to join the conversation.
- mail2nadh
- Offline
- Senior Member
-
Less
More
- Posts: 41
- Thank you received: 0
16 years 2 months ago - 16 years 2 months ago #3556
by mail2nadh
Replied by mail2nadh on topic Re:How to create a new T24 Application?
Hi,
You need to use Template programming for creation of new application.There will be standard templates for the live file, work file, table file etc. Based upon your requirement you need to copy the template and change the name of the template with the required name.If you have user guides you can check the template programing user guide for the steps to follow for creating new template.PLease let me know if you have any doubts.
Thanks,
Viswanadh.
You need to use Template programming for creation of new application.There will be standard templates for the live file, work file, table file etc. Based upon your requirement you need to copy the template and change the name of the template with the required name.If you have user guides you can check the template programing user guide for the steps to follow for creating new template.PLease let me know if you have any doubts.
Thanks,
Viswanadh.
Last edit: 16 years 2 months ago by mail2nadh.
Please Log in or Create an account to join the conversation.
- pnieles
- Offline
- Junior Member
-
Less
More
- Posts: 25
- Thank you received: 1
16 years 2 months ago #3600
by pnieles
Replied by pnieles on topic Re:How to create a new T24 Application?
If you simply need an application without any business logic you can use as well EB.TABLE.DEFINITION to create a new table and screen. It will as well automatically create the I_ insert file, the entries into FILE.CONTROl, PGM.FILE and Standard Selection.
After the creation of the data table etc. you can create your own versions and you can as well attached version related routines by using EB.TABLE.PROCEDURES
Hope that helps
After the creation of the data table etc. you can create your own versions and you can as well attached version related routines by using EB.TABLE.PROCEDURES
Hope that helps
Please Log in or Create an account to join the conversation.
- icafe23
- Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 41
- Thank you received: 1
16 years 2 months ago #3610
by icafe23
Replied by icafe23 on topic Re:How to create a new T24 Application?
Hi all buddy,
Thanks for your valuable sharing knowledge, this is very useful for me.
But before this i try to use template and create a new application. I can create routine, PGM.FILE, FILE.CONTROL, but I can't create STANDARD.SELECTION record, when I create SS the error said "File Missing".
What should I do to create SS record for my application? Or Please tell me the full step to create the application from template.
Thanks for your sharing valuable idea.
Thanks for your valuable sharing knowledge, this is very useful for me.
But before this i try to use template and create a new application. I can create routine, PGM.FILE, FILE.CONTROL, but I can't create STANDARD.SELECTION record, when I create SS the error said "File Missing".
What should I do to create SS record for my application? Or Please tell me the full step to create the application from template.
Thanks for your sharing valuable idea.
Please Log in or Create an account to join the conversation.
- ic.capit
- Offline
- New Member
-
Less
More
- Posts: 18
- Thank you received: 0
16 years 1 month ago #3715
by ic.capit
Replied by ic.capit on topic Re:How to create a new T24 Application?
Hi,
I had exacly the same problem. Just log off and log in and try to create SS for the new application. It helped in my case:)
Kind regards
I had exacly the same problem. Just log off and log in and try to create SS for the new application. It helped in my case:)
Kind regards
Please Log in or Create an account to join the conversation.
- hamisi
- Visitor
-
13 years 2 months ago #12182
by hamisi
Replied by hamisi on topic Re:How to create a new T24 Application?
Hi,
In my case I found it easier to use EB.DEV.HELPER. Copy TEMPLATE and TEMPLATE.FIELDS to your own application name (e.g TEMPLATE -> YOUR.APP) and (TEMPLATE.FIELDS -> YOUR.APP.FIELDS).
Edit the both files to meet your requirements using T24 Template Documentation (API Development doc) and compile them.
Once you have compiled your program, log in T24 (classic), and type EB.DEV.HELPER in input mode with the ID as the name of your application.
Put YES in all six fields. Commit the record. Then run EB.DEV.HELPER in verify mode, ID as the name of your application. In field no 6, remove the YES and leave it blank. Commit.
Logout and login again.
Your application should be running. EB.DEV.HELPER creates all the files, SS, etc.
So simple.
Hamisi
In my case I found it easier to use EB.DEV.HELPER. Copy TEMPLATE and TEMPLATE.FIELDS to your own application name (e.g TEMPLATE -> YOUR.APP) and (TEMPLATE.FIELDS -> YOUR.APP.FIELDS).
Edit the both files to meet your requirements using T24 Template Documentation (API Development doc) and compile them.
Once you have compiled your program, log in T24 (classic), and type EB.DEV.HELPER in input mode with the ID as the name of your application.
Put YES in all six fields. Commit the record. Then run EB.DEV.HELPER in verify mode, ID as the name of your application. In field no 6, remove the YES and leave it blank. Commit.
Logout and login again.
Your application should be running. EB.DEV.HELPER creates all the files, SS, etc.
So simple.
Hamisi
Please Log in or Create an account to join the conversation.
- j.zogbe
- Offline
- New Member
-
Less
More
- Posts: 12
- Thank you received: 0
2 weeks 2 days ago #24817
by j.zogbe
Replied by j.zogbe on topic Re:How to create a new T24 Application?
Hello Dear, Please can you explain all step to create application ?
I don't know where to start and all next step to create application in Transact T24 R20. Please help
I don't know where to start and all next step to create application in Transact T24 R20. Please help
Please Log in or Create an account to join the conversation.
- VK
-
- Offline
- Platinum Member
-
- Globus:G9-G13|TAFC:R05-R23|TAFJ:R19,R23,R24:test
Less
More
- Posts: 1220
- Thank you received: 158
2 weeks 1 day ago #24819
by VK
Cheers
VK
Replied by VK on topic Re:How to create a new T24 Application?
Hi
the post above yours is 13 years old; however steps described there still will work in R20... Refer also to "template programming" help chapter.
the post above yours is 13 years old; however steps described there still will work in R20... Refer also to "template programming" help chapter.
Cheers
VK
Please Log in or Create an account to join the conversation.
- Forum
- T24 Technical Discussions
- T24 Development & Customization
- How to create a new T24 Application?
Time to create page: 0.040 seconds