Search found 23 matches

by kathan.p@gmail.com
Mon Oct 21, 2024 5:54 pm
Forum: General
Topic: Any open Source tool available to English to Spanish translation and vice versa
Replies: 8
Views: 44884

Re: Any open Source tool available to English to Spanish translation and vice versa

Thank you for the information. I was thinking of having a free open source but it looks like no.. I will check that link..


Thank you again!!
by kathan.p@gmail.com
Mon Oct 21, 2024 5:32 pm
Forum: General
Topic: Any open Source tool available to English to Spanish translation and vice versa
Replies: 8
Views: 44884

Re: Any open Source tool available to English to Spanish translation and vice versa

Thank you.. But it looks like it's support is ended or IBM is going to remove it completely starting Dec '2024
by kathan.p@gmail.com
Mon Oct 21, 2024 4:17 pm
Forum: General
Topic: Any open Source tool available to English to Spanish translation and vice versa
Replies: 8
Views: 44884

Any open Source tool available to English to Spanish translation and vice versa

I have a project in which I have to fetch data from AS400 tables, translate them into Spanish, and then send it to an external application and vice versa. The external application is going to respond in Spanish then I have to translate it back into English. Any Idea how can that be acheveid?
by kathan.p@gmail.com
Wed Jun 22, 2022 10:00 pm
Forum: RPG IV
Topic: Binary to Integer
Replies: 3
Views: 10464

Re: Binary to Integer

Field was part of DS and i was not fetching data correctly from the particular length. I fixed it.

Thank you!!
by kathan.p@gmail.com
Tue Jun 21, 2022 7:12 pm
Forum: RPG IV
Topic: Binary to Integer
Replies: 3
Views: 10464

Binary to Integer

I have SQL table with Binary field

Data Field Buffer Buffer
Field Type Length Length Position
PKEY BINARY 18 0 8 15492


When i retrieve the value in program in 20I variable it comes as
4629771061636907072

But the data in the actual file field is - (getting below value using STRSQL)
19 ...
by kathan.p@gmail.com
Thu Jun 09, 2022 2:37 pm
Forum: YAJL-ILE
Topic: Data-INTO issue Reason Code 6
Replies: 5
Views: 19010

Re: Data-INTO issue Reason Code 6

Used YAJL and it worked!! Thanks!!
by kathan.p@gmail.com
Tue Jun 07, 2022 8:49 pm
Forum: YAJL-ILE
Topic: Data-INTO issue Reason Code 6
Replies: 5
Views: 19010

Data-INTO issue Reason Code 6

Json Received -

{
"start_time": "2022-06-06T00:00:06.000Z",
"data_extract": {
"expected_end_datetime": "2022-06-07T00:00:00",
"stop_idle_fuel_used": 0,
"distance_drive": 353.1,
"drive_time": 442.25,
"performance_group_id": "default",
"odometer_start": 36255.84,
"engine_time": 442.25 ...
by kathan.p@gmail.com
Tue Feb 08, 2022 5:14 pm
Forum: RPG IV
Topic: Array has too many omitted index - Compile Time Error
Replies: 2
Views: 10936

Array has too many omitted index - Compile Time Error


HDFTACTGRP(*no)
D data1 S 1000 inz('^test^^testing^letstest')
D delimiter1 S 1 inz('^')
D ArrData S 50 dim(50) inz
/Free
ArrData = pssplitd1(data1:delimiter1);
dsply arrdata;
*inlr = *on;
/End-Free

Ppssplitd1 b
Dpssplitd1 pi 50 dim(50)
D data 1000
D delimiter 1
*
D returnArray ...
by kathan.p@gmail.com
Tue Dec 28, 2021 6:07 pm
Forum: RPG IV
Topic: EXTFILE Use
Replies: 4
Views: 14087

EXTFILE Use

Hi,
I am working on a program and it goes like below:-
1) It will read a definition file which have library name/file name in it ( around 50 different files)
2) Now based on the data received from external application i have to populate one of the file from step 1)
3) Now once i figure out which ...