• The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
Menu
  • The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact

Timothy Prickett Morgan

Timothy Prickett Morgan is President of Guild Companies Inc and Editor in Chief of The Four Hundred. He has been keeping a keen eye on the midrange system and server markets for three decades, and was one of the founding editors of The Four Hundred, the industry's first subscription-based monthly newsletter devoted exclusively to the IBM AS/400 minicomputer, established in 1989. He is also currently co-editor and founder of The Next Platform, a publication dedicated to systems and facilities used by supercomputing centers, hyperscalers, cloud builders, and large enterprises. Previously, Prickett Morgan was editor in chief of EnterpriseTech, and he was also the midrange industry analyst for Midrange Computing (now defunct), and its editor for Monday Morning iSeries Update, a weekly IBM midrange newsletter, and for Wednesday Windows Update, a weekly Windows enterprise server newsletter. Prickett Morgan has also performed in-depth market and technical studies on behalf of computer hardware and software vendors that helped them bring their products to the AS/400 market or move them beyond the IBM midrange into the computer market at large. Prickett Morgan was also the editor of Unigram.X, published by British publisher Datamonitor, which licenses IT Jungle's editorial for that newsletter as well as for its ComputerWire daily news feed and for its Computer Business Review monthly magazine. He is currently Principal Analyst, Server Platforms & Architectures, for Datamonitor's research unit, and he regularly does consulting work on behalf of Datamonitor's AskComputerWire consulting services unit. Prickett Morgan began working for ComputerWire as a stringer for Computergram International in 1989. Prickett Morgan has been a contributing editor to many industry magazines over the years, including BusinessWeek Newsletter for Information Executives, Infoperspectives, Business Strategy International, Computer Systems News, IBM System User, Midrange Computing, and Midrange Technology Showcase, among others. Prickett Morgan studied aerospace engineering, American literature, and technical writing at the Pennsylvania State University and has a BA in English. He is not always as serious as his picture might lead you to believe.

  • Where In The World Is IBM i?

    February 29, 2016 Timothy Prickett Morgan

    In case you did not notice it, there is a new year here in 2016 and Big Blue has spent what must have been a fortune putting a new mobile-tuned website together for itself. I am going to show my age a bit here, but mobile formats are fine for a phone, and on a web screen they might be slick and slippery, but they are also shouty and devoid of actual data. Call me a misplaced man of letters, but I like text.

    Just for the hell of it, I went poking around the new IBM website to see

    …

    Read more
  • Payday For The People Who Make The IBM i Go

    February 29, 2016 Timothy Prickett Morgan

    In our ongoing series on the people who run and program the IBM i platform and the industries where they work, we are now going to finally get to the meat of the issue: Payday for programming. Moola for managing. Greenbacks for greenscreens and for converting greenscreens to modern web and mobile interfaces. The reason why you get out of bed in the morning and go to your respective and respected work.

    The data is pretty thin about salaries out there in IBM Midrange Land, but luckily for us Bob Langieri, president of Excel Technical Services and a long-time recruiter

    …

    Read more
  • XML-INTO And Optional Elements

    February 23, 2016 Hey, Jon

    Note: The code accompanying this article is available for download here.

    I am working on an RPG program that does some very basic pre-processing of an XML document before passing it along to another program for final processing. Even though my program works, it fills up the job log with error messages. Can you help me get rid of them?

    The XML is structured like this.

     <Message>
      <Payload>
       <Event>. . . </Event>
      </Payload>
     </Message>
    

    The <Payload> element can contain a child element of <Event>, <Report>, or <Parameter>. Only one of these elements is ever contained in the message at

    …

    Read more
  • SBMJOB, CALL, And Decimal Parameters

    February 23, 2016 Ted Holt

    In spite of my great admiration for the IBM i operating system, I have to admit it has its idiosyncrasies. One of them, which has been there since Day 1, is the way the Submit Job (SBMJOB) command reformats decimal parameters of the CALL command. Fortunately, a relatively recent addition to CL provides an easy way to deal with this quirk.

    Assume a CL program calls an RPG program, passing along two decimal variables and a character variable.

    dcl  &Option       *char    1
    dcl  &Account      *dec     5
    dcl  &ThruDate     *dec     7
    
    call AR100R (&Account &ThruDate &Option)
    

    One day you are told

    …

    Read more
  • PHP Crash Course For RPG Developers

    February 23, 2016 Chris Ringer

    Suppose your boss tasks you with grabbing and processing some XML from an HTTP request to create a new customer order. If you have a “deer in the headlights” expression on your face, don’t fear, you don’t have to punt this request over the cubicle wall to the web developers. Without weeks or months of training, you can build a PHP script to retrieve the XML data that RPG can parse.

    What is PHP?

    PHP is a full-featured scripting language that runs on a web server. Just type your PHP code in a text editor (even Notepad), save it on

    …

    Read more
  • The Job Market For The People Who Make The IBM i Go

    February 22, 2016 Timothy Prickett Morgan

    Like you, we are trying to understand the current state of the IBM i community. Thus far in 2016, we have taken several looks at the dicing and slicing of the latest IBM i Marketplace Survey compiled by HelpSystems as well as providing our own insight into what industries are represented by the IBM i base and how that compares to historical data. We also did our best to try to case the distribution of system admins and programmers in the IBM i base.

    This week, we want to take a look at the job market for the people in

    …

    Read more
  • IBM Wheels And Deals On Big Iron Compute And Memory

    February 15, 2016 Timothy Prickett Morgan

    With the Power8 processors having been on the market in IBM‘s Power Systems machines for nearly two years now, and Intel widely expected to launch its “Broadwell” Xeon server processors within the next few months, you might think that Big Blue would be out there wheeling and dealing, offering all kinds of clever deals to try to keep machines moving.

    Maybe IBM’s sales force is doing this, and maybe its resellers are doing this, but the past two years during the Power8 generation have been the most quiet ones I can remember when it comes to a lack of

    …

    Read more
  • Use SQL To Change A Substring

    February 9, 2016 Ted Holt

    Occasionally I need to change part of a string value in a database table. SQL has three mechanisms that let me accomplish such a thing. Do you know what those three mechanisms are and how to use them?

    First, we need a table for illustrative purposes.

    create table Parts
      ( ID            char(6)       primary key,
        Description   varchar(40),
        Cost          dec (5,2),
        Price         dec (5,2));
    
    insert into parts values                         
    ('XX-101', '20-inch Doodad',            0.12,    0.25),
    ('XX-105', '2-foot Doodad left-hand',   0.48,    0.75),
    ('XX-106', '2-foot Doodad right-hand',  0.48,    0.75),
    ('XX-118', '12-foot Doodad',            1.25,    3.00),
    ('BA-101', '5CM  Widget',               0.30,    0.45),
    ('BA-104', '15Cm Widget',               1.00,    1.35),
    ('BA-111', '150cm 
    …

    Read more
  • IBM i and .Net Connectivity With XMLSERVICE

    February 9, 2016 Richard Schoen

    Many businesses are looking for ways to modernize their IBM i applications while maximizing their existing code investments in RPG or COBOL applications. Some contend that using Microsoft development technologies is a bad way to go. They think it promotes replacement of existing IBM i applications or of IBM i itself.

    My position has always been that PCs and Microsoft technology are a great way to enhance existing IBM i applications. XMLSERVICE and Microsoft Visual Studio are open source technologies your company can use to modernize, enhance, and augment your existing IBM i code base.

    Using Microsoft .Net with XMLSERVICE

    …

    Read more
  • The Jobs Of The People Who Make IBM i Platforms Work

    February 8, 2016 Timothy Prickett Morgan

    We spend a lot of time talking about hardware and software here at IT Jungle, but there is another crucial element to the platform that often gets overlooked: the people who turn the machines into applications and, in turn, money from which they derive their many livings. The systems have evolved on the confluence of Moore’s Law advancement curves for their constituent components, but if people want to advance, they have to work hard to keep pace with new technology while maintaining the old.

    The whole point of the System/38, and its follow on, the AS/400 and its successors,

    …

    Read more

Previous Articles Next Articles

Content archive

  • The Four Hundred
  • Four Hundred Stuff
  • Four Hundred Guru

Recent Posts

  • Meet The Next Gen Of IBMers Helping To Build IBM i
  • Looks Like IBM Is Building A Linux-Like PASE For IBM i After All
  • Will Independent IBM i Clouds Survive PowerVS?
  • Now, IBM Is Jacking Up Hardware Maintenance Prices
  • IBM i PTF Guide, Volume 27, Number 24
  • Big Blue Raises IBM i License Transfer Fees, Other Prices
  • Keep The IBM i Youth Movement Going With More Training, Better Tools
  • Remain Begins Migrating DevOps Tools To VS Code
  • IBM Readies LTO-10 Tape Drives And Libraries
  • IBM i PTF Guide, Volume 27, Number 23

Subscribe

To get news from IT Jungle sent to your inbox every week, subscribe to our newsletter.

Pages

  • About Us
  • Contact
  • Contributors
  • Four Hundred Monitor
  • IBM i PTF Guide
  • Media Kit
  • Subscribe

Search

Copyright © 2025 IT Jungle