Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Ju5
  • Content: Threads
  • Order by date
  1. Ju5

    Data Architecture on the iSeries

    I'm being asked to document an iSeries application and one of the documents required is the Data Architecture of of the iSeries Application. Also, what is the difference between an Application Flow diagram and a Data Flow diagram. This is my first time creating these documents and my previous...
  2. Ju5

    Redefined and redefining groups are from different copybooks

    Hi, I have copybook1 with the following: 05 group1 05 group2 REDEFINES group1 I have copybook2 that contains the following: 05 newgroup Can I do the following given that the redefining and redefined groups are from different copybooks? 05 group2 REDEFINES newgroup Thanks in advance.
  3. Ju5

    Viewing JCL on mainframe using TWS

    Hi, Does anyone know how to view JCL code on the mainframe using TWS? I know there is a way by naming a JCL Edit Tool Panel but I don't know where to find the Panel names. Are there any other ways to view JCL without using Edit Panels?
  4. Ju5

    What is I/90?

    I'm looking for some background on I/90(Insure/90). I know it is Insurance related and runs on the AS400 but is it just an Insurance front end software? A year ago I think I saw something on IBM's site but I can't find it anymore. I tried Google and found ads for I/90 developers and a few...
  5. Ju5

    CLLE vs CL: any difference?

    I know there's quite a difference between RPG and RPGLE but what is the difference between CL and CLLE? One thing I do know is that the Source File, Library and Member fields in the compiled object become blank and until 7.1 you can't recover the source for CLLE. Does anyone have a link to...
  6. Ju5

    PRTF vs O-specs

    Which is better and which is best practice? I've never used PRTF before and the client I used to work for used O-specs in their programs. Most of their printouts are only used by one program so PRTF weren't used. When do you use PRTF? Ever worked with multiple programs that shared one PRTF?
  7. Ju5

    Recreating TSO REXX program using REXX400

    Hi, I've been asked to recreate a TSO REXX program in the AS400. I'm not too good with TSO commands so I don't know the AS400 commands that I need to use. I know not everything in TSO REXX applies to REXX400 like OUTTRAP. I wanted to start slow and made a program that will check if the...
  8. Ju5

    When best to use: Copybooks, Modules, Service Programs

    When is it best to compile a program as a module and when is it best to compile as Service program? I know that copybooks, modules and service programs encourage reuseability of code and that copybooks are members that can contain reuseable D-specs and that you don't compile copybooks. Can...
  9. Ju5

    Programming Languages on AS400

    What other languages are alive and useable on the AS400 post System i 6.1? I've read somewhere that BASIC, Pascal and PL/I support stopped somewhere in v4. The list of languages I found includes: Assembly, RPG, CL, COBOL, RPGLE, Java, C, C++, Perl, EGL, Smalltalk, SQL, BASIC, PL/I, Python...
  10. Ju5

    Question on Output indicator pos 21-29 in O-spec

    The presence of a N on Position 21 of the Output Specs has me a bit confused. I know that putting an indicator number on pos 22-23 means that the line should be printed if the indicator is on. Does having a indicator preceded by N in the O-spec mean the line should be printed if the indicator...
  11. Ju5

    Writing contents of an array to a file in free form

    I'm trying to merge several lines in one file so that it prints out as one record in another file. Something seems to be making my code go into infinite loops though as it is taking my program almost 300 seconds to run and that only because I ended the job manually. The program is supposed to...
  12. Ju5

    Calculating summary totals before detail lines

    I have a order report that prints the summary lines first before it prints the detail lines. The report works fine so long as there is only one line per order. The problem comes up when there are multiple lines for one order. Since the summary is written first before the detail only the first...
  13. Ju5

    Converting data structure used as array in RPG III to RPG IV

    How do you translate the following code from RPG to RPGLE? E CLU 8 40 ICfile NS I 1 13 Order# I 14 53 CLINE1 I 54 93 CLINE2 I...
  14. Ju5

    How to use UNDEL2

    Does anyone know how to use the UNDEL2 freeware tool? I was able to download it to my PC, FTP it to the AS400 and restore the UNDEL2 library. I also did the CHGCMD but I still can't call on the command though. I'm using a V5r3M0 Any suggestions?
  15. Ju5

    CHAIN Operation results in more than 1 row

    I've come up against situations where records were not processed because there were more than 1 result to a chain operation. The program I'm working on now generates an error report when records are not processed. The program doesn't catch the error when a Chain operation results in 2 or more...
  16. Ju5

    Length of a Numeric field

    Hi, When a numeric field is declared as 7 Length 2 Decimal it means the field contains a total length of 7 with 2 decimals leaving 5 numeric spaces to the left of the decimal point right?
  17. Ju5

    Searching for Deleted records

    I'm trying to look for a missing record. I think that it might have been deleted but I don't know when so I can't just restore the daily backup for the file. I know that it is possible to recover deleted records using DBU but it is only for one record at a time. Is there a way to do mass...
  18. Ju5

    Question on using HAWKEYE Job Explosion

    We have Hawkeye 9.0 installed in our AS400 and I'm currently using it to study the job flow during a batch job. I've been studying the EXPLODED file that is generated when Building a x-ref. I'm not sure if my understanding of the EXPLODED is correct but it looks like Hawkeye reads a program and...
  19. Ju5

    Need help with function key logic

    I have a piece of program that checks a file to see if a record exists and displays a message on the screen for the user if it doesn't. The message asks the user to press F12 to ignore the issue but looking at the code I don't think the logic for the continue exists. Below is the bit of code. I...
  20. Ju5

    Renaming the Record Format of a Physical File

    I executed a CPYF to copy a new file and gave it a new name. The record format of the new file is the same as the old file. Does anyone know how rename a record format of a Physical file without a DDS?

Part and Inventory Search

Back
Top