Printer files in RPG ILE
How can we create and use printer files in rpg ile... i am new to as400 and i want to know about printer files and reports as my company asked me to........
How can we create and use printer files in rpg ile... i am new to as400 and i want to know about printer files and reports as my company asked me to........
is there material for IBM-972 ILE RPG programmer certification test
plz send material or faqs for IBM-972 ILE RPG programmer certification test, is any certication book like (scjp java certication book).
plz send material or faqs for IBM-972 ILE RPG programmer certification test, is any certication book like (scjp java certication book).
Looking for a mapping program to segment invoices
I'm not familiar with RPG ILE and can't quite follow the example in the Infoprint Server Manual but I want to accomplish the exact same thing as the example. Take an Invoice run and segment by customer and email some of the invoices, print others, and be able to archive the files in customer...
I'm not familiar with RPG ILE and can't quite follow the example in the Infoprint Server Manual but I want to accomplish the exact same thing as the example. Take an Invoice run and segment by customer and email some of the invoices, print others, and be able to archive the files in customer...
RPG ILE Character Hex Value to Decimal
Hi, I have a flat file with hexidecimal characters after certain characters. For Example : "MY NAME IS BEN ~0A" The "0A" represents the hex for 10 (decimal) whitch means 10 spaces. My problem is when i have "0A" in a alpha numeric workfield (length 2), how can i use it as a hex value? In other...
Hi, I have a flat file with hexidecimal characters after certain characters. For Example : "MY NAME IS BEN ~0A" The "0A" represents the hex for 10 (decimal) whitch means 10 spaces. My problem is when i have "0A" in a alpha numeric workfield (length 2), how can i use it as a hex value? In other...
RPG sub-procedures
What have you found to be an over-riding reason to use a sub-procedure in an RPG program instead of a sub-routine?
What have you found to be an over-riding reason to use a sub-procedure in an RPG program instead of a sub-routine?
Reading an unknown file in RPG
Hi All, I am working on a DBU like utility which will provide a maintainance screen for each file. I need to read the file in an rpg program but i dont know the program name till runtime. I can't declare the file in F specs as i dont know the file name. SQL is very bothering and is very heavy for...
Hi All, I am working on a DBU like utility which will provide a maintainance screen for each file. I need to read the file in an rpg program but i dont know the program name till runtime. I can't declare the file in F specs as i dont know the file name. SQL is very bothering and is very heavy for...
Convert character field in decimal field.
hi, everybody i need a help for this: waval = 15A wnval = 15 2 i put in my source this eval wnval = %dec(waval:15:2) but when i run the program stop with error in this line. what i need to do, because i want this example: waval = 123456789012345 wnval = 123456789012345.00 but if i put...
hi, everybody i need a help for this: waval = 15A wnval = 15 2 i put in my source this eval wnval = %dec(waval:15:2) but when i run the program stop with error in this line. what i need to do, because i want this example: waval = 123456789012345 wnval = 123456789012345.00 but if i put...
RPGILE comparing values
i have a value say for example ASD12246. i need to check this value against afile which contains similar values lik this. i need to pick the value that has maximum matches with this number. Sa y for example if the File has ASD122 and ASD1224 i have to selct the code corresponding to ASD1224 as it...
i have a value say for example ASD12246. i need to check this value against afile which contains similar values lik this. i need to pick the value that has maximum matches with this number. Sa y for example if the File has ASD122 and ASD1224 i have to selct the code corresponding to ASD1224 as it...
How to determine the RPG version
Hi, Can you tell me how to know the RPG version (III or IV) in our AS400? Also, if it's ILE? Thank you.
Hi, Can you tell me how to know the RPG version (III or IV) in our AS400? Also, if it's ILE? Thank you.
Pop-Up Calendar with RPG
I found a link that would show me how to code a pop-up calendar on the AS400. However, when I went to that link, it was invalid. Does anyone know how to create RPG code for a pop-up calendar on the AS400?
I found a link that would show me how to code a pop-up calendar on the AS400. However, when I went to that link, it was invalid. Does anyone know how to create RPG code for a pop-up calendar on the AS400?
RPG Debugger
I work for a small AS/400 shop. For the most part, we are still coding in RPGIII and doing green screen applications. Due to a recent Lawson upgrade, we have had to convert a large chunk of our code to ILE. Myself and the other programmer here are used to the Interactive debugger and using the old...
I work for a small AS/400 shop. For the most part, we are still coding in RPGIII and doing green screen applications. Due to a recent Lawson upgrade, we have had to convert a large chunk of our code to ILE. Myself and the other programmer here are used to the Interactive debugger and using the old...
How to get a Lastname from a field that contains the Full Name? (RPG-ILE)
Hi Guys, I need your suggestions.... I have to extract data from our AS400 box and convert it into text file. For a client's name we have 3 particular fields. 1. FirstName, 2. LastName and 3. FullName. The problem is there are records where First Name and LastName fields are empty. Thats why I...
Hi Guys, I need your suggestions.... I have to extract data from our AS400 box and convert it into text file. For a client's name we have 3 particular fields. 1. FirstName, 2. LastName and 3. FullName. The problem is there are records where First Name and LastName fields are empty. Thats why I...
how do you code a table in rpg
I need to code a table in rpg iv. I'm new to rpg and need assistance on coding techniques as it pertains to creating a table in a rpg iv program
I need to code a table in rpg iv. I'm new to rpg and need assistance on coding techniques as it pertains to creating a table in a rpg iv program
RVI Software
I set up all our AP checks images for routing to an IFS Folder (PC). There are 12,763 images! When I ran the RVI program IMMUTOR1 it aborted with the message below. How can I clear the “R” from some of the existing APCHK’s I have routine so I can reduce the number of images to be routed? ...
I set up all our AP checks images for routing to an IFS Folder (PC). There are 12,763 images! When I ran the RVI program IMMUTOR1 it aborted with the message below. How can I clear the “R” from some of the existing APCHK’s I have routine so I can reduce the number of images to be routed? ...
RPG edit code for signed value
Hi I have moved a numeric value to a ds. I have used this EVAL F1 = %EDITC(ABC:'3')-here F1 is part of flat file DS and there are decimals required in the output file.I am getting the decimals but my problem is that ABC field from i/p file could be negative but am not sure how to get the sign to...
Hi I have moved a numeric value to a ds. I have used this EVAL F1 = %EDITC(ABC:'3')-here F1 is part of flat file DS and there are decimals required in the output file.I am getting the decimals but my problem is that ABC field from i/p file could be negative but am not sure how to get the sign to...
rpgle
I have a file value which is of length 15 with 2 decimal places.This value has to be assigned to an output file field whose length is 13 (eg:10.2).Can this assigned in RPGLE.The field from input file is a numeric field
I have a file value which is of length 15 with 2 decimal places.This value has to be assigned to an output file field whose length is 13 (eg:10.2).Can this assigned in RPGLE.The field from input file is a numeric field


