Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
51 views

I am encountering an issue when using JSON_TABLE in IBM i COBOL with CLOB data. Below is an example of the code I am using: EXEC SQL DECLARE C_EMP CURSOR FOR SELECT U.FIRSTNAME, U.PHONETYPE ...
JT Shan's user avatar
  • 11
0 votes
0 answers
40 views

From the following link https://codefori.github.io/docs/dev/api/ I am developing my own VS Code extension and want to interact with the active IBM i connection, so I can use the API provided by Code ...
jemrug's user avatar
  • 89
2 votes
2 answers
135 views

Quite new to this AS400. I've tried this code and it works to list all the files: SELECT TABLE_SCHEMA, TABLE_NAME, TABLE_TYPE FROM QSYS2.SYSTABLES WHERE TABLE_SCHEMA = 'QGPL' ORDER BY TABLE_NAME ...
Uy -Ryan- Huynh's user avatar
1 vote
2 answers
98 views

I'm working with an RPGLE program on IBM i (AS/400) that uses the QxmlSAXParser_parse_systemid() API to parse large XML files stored in the IFS. 🔧 Environment: IBM i v7.3 RPGLE (ILE), compiled with ...
ebin 's user avatar
  • 21
1 vote
3 answers
265 views

I'm working on a business application modernization project where I need to call existing AS400 programs (RPG, CLP ...) from a .NET 8 app. These RPG programs have I/O parameters with complex Data ...
ShiftHappens's user avatar
1 vote
2 answers
105 views

I'm a beginner learning RPGLE and display files on IBM i. I’ve created a program that displays a message using a message subfile (SFLMSG) when calling a CL program (MSGSFLCL) via a subroutine, and it ...
Afnan's user avatar
  • 34
0 votes
1 answer
95 views

On our Iseries machine we have a routine which returns some information regarding the status of a third party package, it tells us if it's up or down (it's Sage if you're really interested) I've ...
Russ's user avatar
  • 1
-2 votes
1 answer
67 views

I am trying to see what code the RPG compiler adds to cycle-enabled programs to do the implicit reading/writing of primary/secondary files. I tried various DBGVIEW options during compilations but so ...
Kerim Güney's user avatar
  • 1,274
0 votes
3 answers
366 views

I'm trying to run the command from .NET C# using non-query SQL commands on the AS400. CALL QSYS2.QCMDEXC('CPYSPLF FILE(AUMENTO1) TOFILE(*TOSTMF) JOB(557767/RAB/AUMENTO1) SPLNBR(1) TOSTMF(/REPORTES/...
raabsoft's user avatar
0 votes
1 answer
227 views

I created a SRCPF in an AS/400. It shows the record length as 92. I think this is the default length. I want to increase the length to 112. After I copied a CLLE program from record length 112 SRCPF ...
Dar's user avatar
  • 17
1 vote
1 answer
44 views

WITH RowNumbers AS ( SELECT ROW_NUMBER() OVER (ORDER BY G TLINE) AS row_num, gtline, gttran FROM GPOTRSP ) UPDATE b SET b.gtline = a.row_num FROM GPOTRSP b ...
Swasti Das's user avatar
1 vote
1 answer
190 views

I am struggeling to make a working signature of a certificate which will be used later in a JWT in an RPG-program. We use this version of openssl: "OpenSSL 3.0.10 1 Aug 2023 (Library: OpenSSL 3.0....
baphomet's user avatar
  • 129
0 votes
1 answer
64 views

This is a strange and alien world to me, so please excuse my ignorance! I have spent quite some time reading up on it, but I still don't really know how to even ask the right questions. The naive ...
Alias_Knagg's user avatar
  • 1,054
-1 votes
1 answer
138 views

I have a display file record which has an Identifier. Based on the identifier I am displaying a subfile with a few records. Now I want to accept another Identifier and show the additional records ...
Richard's user avatar
  • 21
0 votes
1 answer
147 views

I am a beginner learning RPGLE and working with subfiles. I have attached an image where the red highlighted area is designed using SFLCTL, and the blue highlighted area displays data fetched from the ...
Afnan's user avatar
  • 34
1 vote
1 answer
164 views

I am new to programming with RPGLE I was trying to write a simple code to read data from a file and displaying it in the screen. While doing it I get errors: RNF3438 30 000600 LIKE keyword is ...
mr_groovyle's user avatar
1 vote
1 answer
72 views

Scenario: Table 1 is in library lib1 Table 2 is in library lib2 Library List is set as lib1, lib2 When I use dynamic SQL like: sqlcmd = 'select ''1'' from table1 a join table2 b on a.id = b.id'; ...
Flow's user avatar
  • 21
0 votes
1 answer
129 views

Good morning, with the STRSEU command I should query several physical files in a library and check if among the different fields in the various files there is the field beginning with DT. For each ...
Francesco Papa's user avatar
1 vote
1 answer
110 views

Would like to export ALL META-DATA from existing iBM-i DB2 Webquery to file eg. .xml type of file for a client as they want to have their webquery reports meta-data migrated to other solutions. They ...
P S's user avatar
  • 13
1 vote
1 answer
98 views

I am selecting data from an AS/400 database from different tables using a change indicator. I then export the data to a file and mark the data as exported by updating this change indicator. While this ...
Moh-Aw's user avatar
  • 3,038
0 votes
1 answer
179 views

I run an SQL for a user and it work perfect! The code is pretty straight forward delete a table, create a table where we examine coulmn1 & group by coulmn1. Write out to the table any all data ...
TommyV's user avatar
  • 33
1 vote
1 answer
144 views

Hello everyone (first thing sorry for my english, it's not my native language), I have a basic clle program, the purpose is to count the file total size in a library. At the end the programm should ...
Gaou Chrys's user avatar
0 votes
3 answers
181 views

On my System Power / AS400, i'm using embedded sql in an RPGLE Program to write a Subfile. On a large selection the initial fetch is to slow. When i scroll the speed is good. Even though i only select ...
Flow's user avatar
  • 21
0 votes
1 answer
116 views

I am new to IBM AS400. Recently there is a need in my company to implement a 90 days password change for all users. The problem is some users won't change their password even if we already notify them ...
Brody_Brody's user avatar
0 votes
1 answer
190 views

I'm using the command DSPJRN having the parameter OUTPUT(*OUTFILE). One of the output file column is JOESD which contains the specific data for the journal. But the field length is only 100. Is there ...
Asymptote's user avatar

1
2 3 4 5
58