19
Fri, Apr
5 New Articles

The CL Corner: Controlling the CL Testing Environment

CL
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Prompt override programs and database update from a CL program.

 

In our last column, "A Much More Flexible SNDESCAPE Program," we introduced the Add Test Case (ADDTSTCASE) command and significantly improved on the flexibility of the SNDESCAPE program. Today, we will implement the command Change Test Case (CHGTSTCASE).

 

The command definition for CHGTSTCASE is shown below:

 

 

             CMD        PROMPT('Change Test Case')                    

             PARM       KWD(CMD) TYPE(*NAME) LEN(10) MIN(1) +         

                          KEYPARM(*YES) PROMPT('Command to test')     

             PARM       KWD(PGM) TYPE(*NAME) LEN(10) MIN(1) +         

                          KEYPARM(*YES) PROMPT('Program to test')     

             PARM       KWD(USER) TYPE(*NAME) LEN(10) DFT(*CURUSR) +  

                          SPCVAL((*CURUSR)) KEYPARM(*YES) +           

                          PROMPT('Profile running test')              

             PARM       KWD(MSGID) TYPE(*NAME) LEN(7) DFT(*SAME) +    

                          SPCVAL((*SAME)) PROMPT('Message for testing')

             PARM       KWD(MSGF) TYPE(QUALNAME) PROMPT('Message file')

 QUALNAME:   QUAL       TYPE(*NAME) DFT(*SAME) SPCVAL((*SAME))        

             QUAL       TYPE(*NAME) DFT(*SAME) SPCVAL((*SAME) +       

                          (*LIBL)) PROMPT('Library')                  

 

The CHGTSTCASE command requires two parameters: the name of the command being tested and the name of the program under test. The remaining parameters are optional. The USER parameter defaults to the current user of the command. The remaining parameters, MSGID and MSGFILE, default to the special value *SAME.

 

Notice that the keywords CMD, PGM, and USER are defined as key parameters in the definition of CHGTSTCASE. This is done so that a Prompt Override Program (POP) can be provided, allowing you to see what test values are being changed. The three key parameters are passed to the POP, among other parameters, so that the associated test values can be shown when prompting the CHGTSTCASE command. The POP program, CHGTSTPOP, is shown below:

 

 

(A) Pgm        Parm(&CmdName &TestCmd &TestPgm &TestUsr &Cmd_Parms)   

    Dcl        Var(&CmdName)    Type(*Char) Len(20)                   

     Dcl        Var(&Cmd)        Type(*Char) Len(10) Stg(*Defined) +  

                                 DefVar(&CmdName)                     

(B) Dcl        Var(&Cmd_Parms ) Type(*Char) Len(5002)                 

     Dcl        Var(&Len_Parms)  Type(*Int) Len(2) Stg(*Defined) +    

                                 DefVar(&Cmd_Parms)                    

     Dcl        Var(&Parms)      Type(*Char) Len(5000) Stg(*Defined) +

                                 DefVar(&Cmd_Parms 3)                 

                                                                      

    DclFCLF    FileID(ActCmdTsts)                                     

    Dcl        Var(&RNF)       Type(*Lgl)                             

    Dcl        Var(&Parm_Len)  Type(*Int)                             

                                                                       

(C) If         Cond(&Cmd *EQ CHGTSTCASE) Then(Do)                     

               OpnFCLF ActCmdTsts AccMth(*Key)                        

               If Cond(&TestUsr = *CURUSR) Then( +                    

                    RtvJoba CurUser(&TestUsr))                        

(D)            ReadRcdCLF ActCmdTsts Type(*Key) KeyRel(*EQ) +         

                            KeyList(&TestCmd &TestUsr &TestPgm) +     

                            RcdNotFnd(&RNF)                           

               CloFCLF ActCmdTsts                                     

                                                                      

(E)            If Cond(*Not &RNF) Then(Do)                            

                  ChgVar Var(&Parms) Value( +                         

                         'MSGID(' *TCat &TestMsg *TCat +              

                         ') MSGF(' *TCat &TestMsgFL *TCat +           

                         '/' *TCat &TestMsgF *TCat ')')               

                  RtvVarLen  Var(&Parms) Length(&Parm_Len)            

                  ChgVar Var(&Len_Parms) Value(&Parm_Len)             

                  EndDo                                               

               Else Cmd(Do)                                            

                  SndPgmMsg Msg('Test case not found') MsgType(*Diag) 

                  SndPgmMsg MsgID(CPF0011) MsgF(QCPFMSG) + 

                              MsgType(*Escape)             

                  EndDo                                     

               EndDo                                       

    Return                                                 

    Endpgm                                                 

 

When prompting is requested for CHGTSTCASE, the CHGTSTPOP program will be called with the five parameters shown at (A). The first parameter, &CMDNAME, is an input parameter providing the qualified name of the command being prompted (CHGTSTCASE). The next three parameters are also input parameters and correspond to the three KEYPARM parameters PGM, CMD, and USER. These values will be used to read the associated test record in the ACTCMDTSTS file. The last parameter, &CMD_PARMS, is a 5002-byte output parameter used to return the values found in the ACTCMDTSTS record. &CMD_PARMS is actually a structure in which the first 2 bytes represent the length of the values being returned and bytes 3 through 5002 the actual values to be shown in keyword format. The structure definition of &CMD_PARMS is shown at (B).

 

After verifying at (C) that the CHGTSTCASE command is being prompted, CHGTSTPOP attempts at (D) to read a record from the ACTCMDTSTS file where the key values are equal to the specified &TESTPGM, &TESTCMD, and &TESTUSR values. If a record is found, the condition at (E) is true, and the read values for &TESTMSG, &TESTMSGF, and &TESTMSGFL are returned in keyword form to the i command prompter. The length of the formatted string is determined using the Retrieve Variable Length (RTVVARLEN) command, which was previously introduced in the article "The CL Corner: Understanding the CHKKILL Program, Continued." If a record is not found, an appropriate diagnostic message is logged to the job log.

 

To create the CHGTSTPOP program into library VINING, you can use this command:

 

CRTBNDCLF PGM(VINING/CHGTSTPOP)

 

This is the source for the CHGTSTCASE CPP, CHGTSTCPP:

 

 

    Pgm        Parm(&TestCmd &TestPgm &TestUsr &NewMsg &NewMsgF)    

    Dcl        Var(&NewMsg)     Type(*Char) Len(7)                  

    Dcl        Var(&NewMsgF)    Type(*Char) Len(20)                 

     Dcl        Var(&MsgF)     Type(*Char) Len(10) Stg(*Defined) +  

                               DefVar(&NewMsgF 1)                   

     Dcl        Var(&MsgFL)    Type(*Char) Len(10) Stg(*Defined) +  

                               DefVar(&NewMsgF 11)                  

                                                                     

    DclFCLF    FileID(ActCmdTsts)                                   

    Dcl        Var(&RNF)      Type(*Lgl)                            

                                                                    

    If         Cond(&TestUsr = *CURUSR) Then( +                     

               RtvJobA CurUser(&TestUsr))                           

                                                                    

    OpnFCLF    FileID(ActCmdTsts) AccMth(*Key) Usage(*Both)          

                                                                    

    ReadRcdCLF ActCmdTsts Type(*Key) KeyRel(*EQ) +                

                 KeyList(&TestCmd &TestUsr &TestPgm) +            

                 RcdNotFnd(&RNF)                                   

                                                                  

    If         Cond(&RNF) Then(SndPgmMsg Msg( +                   

                          'Testcase' *BCat &TestPgm *BCat +       

                          &TestCmd *BCat +                        

                          'not found for user' *BCat &TestUsr))   

    Else       Cmd(Do)                                            

               If Cond(&NewMsg *NE *Same) Then( +                 

                  ChgVar Var(&TestMsg) Value(&NewMsg))            

               If Cond(&MsgF *NE *Same) Then( +                   

                  ChgVar Var(&TestMsgF)  Value(&MsgF))            

               If Cond(&MsgFL *NE *Same) Then( +                   

                  ChgVar Var(&TestMsgFL) Value(&MsgFL))           

                                                                  

               UpdRcdCLF ActCmdTsts                               

               SndPgmMsg Msg('Testcase' *BCat &TestPgm *BCat +     

                         &TestCmd *BCat 'changed for user' *BCat + 

                         &TestUsr)                                 

               EndDo                                               

                                                                    

    CloFCLF    ActCmdTsts                                          

                                                                   

    Return                                                         

    EndPgm                                                         

 

 

The CHGTSTCPP program, after determining which test values are to be changed, updates the associated ACTCMDTSTS record with the new values. The one new command used by the program, Update Record using CLF (UPDRCDCLF), is documented here. If you have any difficulty understanding the program, you should review the ADDTSTCPP program of the previous article "The CL Corner: A Much More Flexible SNDESCAPE Program."

 

To create CHGTSTCPP into library VINING, you can use this command:

 

CRTBNDCLF PGM(VINING/CHGTSTCPP)

 

Having created both the CPP and POP for CHGTSTCASE, you can now also create the CHGTSTCASE command into VINING using this command:

 

CRTCMD CMD(VINING/CHGTSTCASE) PGM(VINING/CHGTSTCPP) PMTOVRPGM(VINING/CHGTSTPOP)

 

To change the test message for command DONOTHING in program MONESCAPE to CPF3012 (File &1 in library &2 not found), you can use the following command:

 

CHGTSTCASE CMD(DONOTHING) PGM(MONESCAPE) USER(VININGTEST)

 

If you request prompting with F4, you will see the existing MSGID value of CPF414E and you can then replace the value with CPF3012. Alternatively, you could bypass prompting with this command:

 

CHGTSTCASE CMD(DONOTHING) PGM(MONESCAPE) USER(VININGTEST) MSGID(CPF3012)

 

As with the previous article, here are the equivalent programs using CLF RPG-like CL commands and the base run-time support. The source lines that have been changed are highlighted.

CHGTSTPOP Using RPG-like Commands

 

    Pgm        Parm(&CmdName &TestCmd &TestPgm &TestUsr &Cmd_Parms)   

    Dcl        Var(&CmdName)    Type(*Char) Len(20)                   

     Dcl        Var(&Cmd)        Type(*Char) Len(10) Stg(*Defined) +  

                                 DefVar(&CmdName)                     

    Dcl        Var(&Cmd_Parms ) Type(*Char) Len(5002)                 

     Dcl        Var(&Len_Parms)  Type(*Int) Len(2) Stg(*Defined) +    

                                 DefVar(&Cmd_Parms)                   

     Dcl        Var(&Parms)      Type(*Char) Len(5000) Stg(*Defined) +

                                 DefVar(&Cmd_Parms 3)                 

                                                                      

    File       ActCmdTsts                                             

    Dcl        Var(&RNF)       Type(*Lgl)                             

    Dcl        Var(&Parm_Len)  Type(*Int)                             

                                                                      

    If         Cond(&Cmd *EQ CHGTSTCASE) Then(Do)                     

               Open ActCmdTsts AccMth(*Key)                            

               If Cond(&TestUsr = *CURUSR) Then( +                   

                    RtvJoba CurUser(&TestUsr))                       

               Chain (&TestCmd &TestUsr &TestPgm) ActCmdTsts +       

                            RcdNotFnd(&RNF)                          

               Close ActCmdTsts                                      

                                                                     

               If Cond(*Not &RNF) Then(Do)                           

                  ChgVar Var(&Parms) Value( +                        

                         'MSGID(' *TCat &TestMsg *TCat +             

                         ') MSGF(' *TCat &TestMsgFL *TCat +          

                         '/' *TCat &TestMsgF *TCat ')')              

                  RtvVarLen  Var(&Parms) Length(&Parm_Len)           

                  ChgVar Var(&Len_Parms) Value(&Parm_Len)            

                  EndDo                                              

               Else Cmd(Do)                                          

                  SndPgmMsg Msg('Test case not found') MsgType(*Diag)

                  SndPgmMsg MsgID(CPF0011) MsgF(QCPFMSG) +           

                              MsgType(*Escape)              

                  EndDo                                    

               EndDo                                       

    Return                                                 

    Endpgm                                                 

 

The previous program can be created into library VINING using the following command:

 

CRTBNDCLF PGM(VINING/CHGTSTPOP)

CHGTSTPOP Using Base Run-Time Support

 

    Pgm        Parm(&CmdName &TestCmd &TestPgm &TestUsr &Cmd_Parms)  

    Dcl        Var(&CmdName)    Type(*Char) Len(20)                  

     Dcl        Var(&Cmd)        Type(*Char) Len(10) Stg(*Defined) + 

                                 DefVar(&CmdName)                    

    Dcl        Var(&TestCmd)   Type(*Char) Len(10)                   

    Dcl        Var(&TestPgm)   Type(*Char) Len(10)                   

    Dcl        Var(&TestUsr)   Type(*Char) Len(10)                   

    Dcl        Var(&Cmd_Parms ) Type(*Char) Len(5002)                

     Dcl        Var(&Len_Parms)  Type(*Int) Len(2) Stg(*Defined) +   

                                 DefVar(&Cmd_Parms)                  

     Dcl        Var(&Parms)      Type(*Char) Len(5000) Stg(*Defined) +

                                 DefVar(&Cmd_Parms 3)                

                                                                      

/*  DclFCLF    FileID(ActCmdTsts)                                   */

    Dcl        Var(&CmdTstRcd) Type(*Char) Len(61)                   

    Dcl        Var(&RNF)       Type(*Lgl)                             

    Dcl        Var(&Parm_Len)  Type(*Int)                            

                                                                     

    If         Cond(&Cmd *EQ CHGTSTCASE) Then(Do)                    

               OpnFCLF ActCmdTsts AccMth(*Key) LvlChk(*No)           

               If Cond(&TestUsr = *CURUSR) Then( +                   

                    RtvJoba CurUser(&TestUsr))                       

               ReadRcdCLF ActCmdTsts Type(*Key) KeyRel(*EQ) +        

                            KeyList(&TestCmd &TestUsr &TestPgm) +    

                            RcdNotFnd(&RNF) RcdBuf(&CmdTstRcd)       

               CloFCLF ActCmdTsts                                    

                                                                      

               If Cond(*Not &RNF) Then(Do)                           

                  ChgVar Var(&Parms) Value( +                        

                         'MSGID(' *TCat +                            

                         %sst(&CmdTstRcd 31 7) *TCat +               

                         ') MSGF(' *TCat +                           

                         %sst(&CmdTstRcd 48 10) *TCat +              

                         '/' *TCat +                                  

                         %sst(&CmdTstRcd 38 10) *TCat ')')           

                  RtvVarLen  Var(&Parms) Length(&Parm_Len)           

                  ChgVar Var(&Len_Parms) Value(&Parm_Len)            

                  EndDo                                               

               Else Cmd(Do)                                          

                  SndPgmMsg Msg('Test case not found') MsgType(*Diag)

                  SndPgmMsg MsgID(CPF0011) MsgF(QCPFMSG) +           

                              MsgType(*Escape)                       

                  EndDo                                              

               EndDo                                                 

    Return                                                            

    Endpgm                                                           

 

The previous program can be created into library VINING using this command:

 

CRTBNDCL PGM(VINING/CHGTSTPOP)

CHGTSTCPP Using RPG-like Commands

 

    Pgm        Parm(&TestCmd &TestPgm &TestUsr &NewMsg &NewMsgF)    

    Dcl        Var(&NewMsg)     Type(*Char) Len(7)                  

    Dcl        Var(&NewMsgF)    Type(*Char) Len(20)                 

     Dcl        Var(&MsgF)     Type(*Char) Len(10) Stg(*Defined) +   

                               DefVar(&NewMsgF 1)                   

     Dcl        Var(&MsgFL)    Type(*Char) Len(10) Stg(*Defined) +  

                               DefVar(&NewMsgF 11)                  

                                                                     

    File       ActCmdTsts                                           

    Dcl        Var(&RNF)      Type(*Lgl)                            

                                                                    

    If         Cond(&TestUsr = *CURUSR) Then( +                     

               RtvJobA CurUser(&TestUsr))                           

                                                                    

    Open       ActCmdTsts AccMth(*Key) Usage(*Both)                  

                                                                    

    Chain      (&TestCmd &TestUsr &TestPgm) ActCmdTsts +           

                 RcdNotFnd(&RNF)                                   

                                                                    

    If         Cond(&RNF) Then(SndPgmMsg Msg( +                    

                          'Testcase' *BCat &TestPgm *BCat +        

                          &TestCmd *BCat +                         

                          'not found for user' *BCat &TestUsr))    

    Else       Cmd(Do)                                             

               If Cond(&NewMsg *NE *Same) Then( +                  

                  ChgVar Var(&TestMsg) Value(&NewMsg))             

               If Cond(&MsgF *NE *Same) Then( +                    

                  ChgVar Var(&TestMsgF)  Value(&MsgF))             

               If Cond(&MsgFL *NE *Same) Then( +                   

                  ChgVar Var(&TestMsgFL) Value(&MsgFL))            

                                                                   

               Update ActCmdTsts                                   

               SndPgmMsg Msg('Testcase' *BCat &TestPgm *BCat +     

                         &TestCmd *BCat 'changed for user' *BCat +  

                         &TestUsr)                                  

               EndDo                                                

                                                                    

    Close      ActCmdTsts                                           

                                                                    

    Return                                                          

    EndPgm                                                           

 

The previous program can be created into library VINING using this command:

 

CRTBNDCLF PGM(VINING/CHGTSTCPP)

CHGTSTCPP Using Base Run-Time Support

 

    Pgm        Parm(&TestCmd &TestPgm &TestUsr &NewMsg &NewMsgF)     

    Dcl        Var(&TestCmd)   Type(*Char) Len(10)                   

    Dcl        Var(&TestPgm)   Type(*Char) Len(10)                   

    Dcl        Var(&TestUsr)   Type(*Char) Len(10)                   

    Dcl        Var(&NewMsg)     Type(*Char) Len(7)                    

    Dcl        Var(&NewMsgF)    Type(*Char) Len(20)                  

     Dcl        Var(&MsgF)     Type(*Char) Len(10) Stg(*Defined) +   

                               DefVar(&NewMsgF 1)                    

     Dcl        Var(&MsgFL)    Type(*Char) Len(10) Stg(*Defined) +   

                               DefVar(&NewMsgF 11)                   

                                                                     

/*  DclFCLF    FileID(ActCmdTsts)                                   */

    Dcl        Var(&CmdTstRcd) Type(*Char) Len(61)                   

    Dcl        Var(&RNF)      Type(*Lgl)                             

                                                                     

    If         Cond(&TestUsr = *CURUSR) Then( +                       

               RtvJobA CurUser(&TestUsr))                             

                                                                      

    OpnFCLF    FileID(ActCmdTsts) AccMth(*Key) Usage(*Both) +         

                 LvlChk(*No)                                          

                                                                      

    ReadRcdCLF ActCmdTsts Type(*Key) KeyRel(*EQ) +                    

                 KeyList(&TestCmd &TestUsr &TestPgm) +                 

                 RcdNotFnd(&RNF) RcdBuf(&CmdTstRcd)                   

                                                                      

    If         Cond(&RNF) Then(SndPgmMsg Msg( +                       

                          'Testcase' *BCat &TestPgm *BCat +           

                          &TestCmd *BCat +                            

                          'not found for user' *BCat &TestUsr))       

    Else       Cmd(Do)                                                 

               If Cond(&NewMsg *NE *Same) Then( +                     

                  ChgVar Var(%sst(&CmdTstRcd 31 7)) Value(&NewMsg))   

               If Cond(&MsgF *NE *Same) Then( +                       

                  ChgVar Var(%sst(&CmdTstRcd 38 10)) Value(&MsgF)) 

               If Cond(&MsgFL *NE *Same) Then( +                   

                  ChgVar Var(%sst(&CmdTstRcd 48 10)) Value(&MsgFL))

                                                                   

               UpdRcdCLF ActCmdTsts RcdBuf(&CmdTstRcd)             

               SndPgmMsg Msg('Testcase' *BCat &TestPgm *BCat +     

                         &TestCmd *BCat 'changed for user' *BCat + 

                         &TestUsr)                                  

               EndDo                                               

                                                                   

    CloFCLF    ActCmdTsts                                          

                                                                    

    Return                                                         

    EndPgm                                                         

 

The previous program can be created into library VINING using this command:

 

CRTBNDCL PGM(VINING/CHGTSTCPP)

Update a Database Record

In this article, you have seen how to update a database record from your CL program. In the next article, we'll look at how to implement a CL-based Display Test Case (DSPTSTCASE) command that uses both a subfile to display test cases and an external printer file to create a report of test cases.

More CL Questions?              

Wondering how to accomplish a function in CL? Send your CL-related questions to me at This email address is being protected from spambots. You need JavaScript enabled to view it.. I'll try to answer your burning questions in future columns.

 

Bruce Vining

Bruce Vining is president and co-founder of Bruce Vining Services, LLC, a firm providing contract programming and consulting services to the System i community. He began his career in 1979 as an IBM Systems Engineer in St. Louis, Missouri, and then transferred to Rochester, Minnesota, in 1985, where he continues to reside. From 1992 until leaving IBM in 2007, Bruce was a member of the System Design Control Group responsible for OS/400 and i5/OS areas such as System APIs, Globalization, and Software Serviceability. He is also the designer of Control Language for Files (CLF).A frequent speaker and writer, Bruce can be reached at This email address is being protected from spambots. You need JavaScript enabled to view it.. 


MC Press books written by Bruce Vining available now on the MC Press Bookstore.

IBM System i APIs at Work IBM System i APIs at Work
Leverage the power of APIs with this definitive resource.
List Price $89.95

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: