Sidebar

Extend iSeries Data to Microsoft Excel Efficiently and Transparently

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

With the introduction of .NET XML Web Services, it's become easier to deliver iSeries data into Excel. In my last article, I explained how to retrieve data from the iSeries using .NET XML Web Services. Now, let's go a step further.

If you work with accounting/finance folks, you probably realize that the iSeries does not take precedence over the almighty Excel. Most accounting/finance professionals prefer to view and manipulate their financial data in Excel. Let's assume your accounting manager wants to see a gross sales report on a daily basis to do some comparative analysis, and he is not enthusiastic about a Web reporting tool that makes him wait forever while almost mocking him with an animated GIF going back and forth.

Data extraction methods are critical to the success of any reporting infrastructure. Hence, it is imperative that you use the most efficient way to extract the data from the iSeries. In this case, .NET Web Services are an excellent option. Web Services can take advantage of your existing RPG programs and business logic to deliver data from iSeries to Excel or any other business application. I will demonstrate how you can deliver data into Excel safely and efficiently. Figure 1 shows the process flow.

http://www.mcpressonline.com/articles/images/2002/article2V405300500.png

Figure 1: This is the process for delivering data to Excel from the iSeries. (Click images to enlarge.)
 

There are basically two steps:

1. Excel is the launching point. A hyperlink will redirect the user to the .NET Web Service, which will retrieve data and write it to an XML file.

2. The XML file generated by the Web Service will then be used to map data in Excel.

Step 1

Let's start with Excel. Open a new, empty Excel spreadsheet. Then, from the Insert menu, choose Insert Hyperlink (Figure 2). This hyperlink redirects the user to our Web Service so the data can be updated anytime the user wants.

http://www.mcpressonline.com/articles/images/2002/article2V405300501.png

Figure 2: Insert hyperlink.

The hyperlink text to display would be something like "Go get my financial data." For the address attribute, put in the URL for your Web Service, which will be something like http://localhost/AS400Webservices/service1.asmx. Click OK. Your screen will look like Figure 3.

http://www.mcpressonline.com/articles/images/2002/article2V405300502.png

Figure 3: Your hyperlink is added.

You have successfully added a hyperlink to your Web Service. Now, click on the hyperlink to get to the Web Service (Figure 4).

http://www.mcpressonline.com/articles/images/2002/article2V405300503.png

Figure 4: You're at the Web Service.

Notice the "Web methods" listed under Service1. These are simply scenarios for your accounting/financial Web Service. By looking at the descriptions, you'll get a pretty good idea as to what can you do with these Web Services as a middle tier. It is noteworthy that XML files generated here can be used in any application that supports XML. For example, one of the above Web methods generates an XML file that serves as a mail merge data source for a Word document.

Let's click on one of our Web methods (Web Services have Web methods like RPG programs have subroutines or procedures). When we click on Financial_data, the screen in Figure 5 pops up.

http://www.mcpressonline.com/articles/images/2002/article2V405300504.png

Figure 5: The Financial_data Web method looks like this.

Notice the Invoke button. This button actually invokes the Web Service and causes it to retrieve your data from the iSeries and then turn it into an XML file on the Web server or anywhere on your network. For this example, let's call this file customers.xml and write it to the C: drive.

This straightforward Web method does not pass any parameters. In the real world, you will be using more complex Web Services capable of passing parameters to your RPG programs and getting the appropriate data back. Figure 6 shows such a Web Service.

http://www.mcpressonline.com/articles/images/2002/article2V405300505.png

Figure 6: This Web Service passes parameters.

Notice that you have text boxes for your parameters just like you would in an RPG display program or a Web reporting tool. These parameters will be passed directly into your RPG program for processing. Once you fill in the parameters, you simply click Invoke.

Let's get back to our example. After you invoke this Financial_data Web Service, you will get a message like "Thank you for updating your financial data." That tells the user that the process is finished.

At this point, a file called customers.xml is created on your C: drive. You can write a file on any shared network drive as long as it is accessible to the XML Web Service as well as the user who will be using it.

Step 2

Now, let's pull this file into Excel. If you have Microsoft Office 2003, choose Data > XML > XML Source (Figure 7). The screen in Figure 8 will pop up. (If you have a prior version, use the Web Query function of Excel, which is little different but equally effective.)

http://www.mcpressonline.com/articles/images/2002/article2V405300506.png

Figure 7: Choose Data > XML > XML Source.

http://www.mcpressonline.com/articles/images/2002/article2V405300507.png

Figure 8: Pull your data into Excel.

Notice the two buttons at the bottom right side of the screen, Options and XML Maps. Clicking on XML Maps brings up a dialog box that asks for an XML data source. We already created the .xml file, and we will use that file as the data source. Click on the Add button in the dialog to navigate to that .xml file (Figure 9).

http://www.mcpressonline.com/articles/images/2002/article2V405300508.png

Figure 9: Navigate to the .xml file.

Choose the file that your Web Service created earlier and click Open (Figure 10).

http://www.mcpressonline.com/articles/images/2002/article2V405300509.png

Figure 10: Click Open.

Notice that the file is added to your XML Maps dialog box. You can add several data sources (maps) here. Your Web Service can generate multiple .xml files, and you can add all of them here if you want to see all the data in one spreadsheet.

But for now, let's continue with just one. You can change the name of this data source by clicking on it and then clicking on the Rename button next to the Add button. Let's do that. Rename this to Financial Data for easy reference and hit OK. You will see something like Figure 11.

http://www.mcpressonline.com/articles/images/2002/article2V405300510.png

Figure 11: Rename your data source to something intuitive.

On the right side of your spreadsheet, all the nodes of your XML document are displayed for you. Now, drag each of those to a cell on your spreadsheet (Figure 12).

http://www.mcpressonline.com/articles/images/2002/article2V405300511.png

Figure 12: Drag and drop the nodes into the spreadsheet.

Now, you've dragged and dropped all of the nodes from the .xml file onto the spreadsheet. But where is the data? Don't worry. Simply right-click within the blue border, and the following will appear (Figure 13).

http://www.mcpressonline.com/articles/images/2002/article2V405300512.png

Figure 13: Retrieve your data now.

You are ready to receive data. Click on XML > Refresh XML Data. Your spreadsheet will pull in the data (Figure 14).

http://www.mcpressonline.com/articles/images/2002/article2V405300513.png

Figure 14: Your data is in your spreadsheet.

You will not have to do this process again. Mapping an XML file is a one-time setup. Once it's done, you can save and close the spreadsheet. The XML mapping stays with the spreadsheet. When you open the spreadsheet again, simply clicking on the hyperlink invokes the Web Service to replace the underlying .xml file and to use XML Refresh to refresh the data.

I will conclude by leaving you with an expanded view of the methodology I just demonstrated and its potential use in an organization (Figure 15).

http://www.mcpressonline.com/articles/images/2002/article2V405300514.png

Figure 14: How can you use this process in your business?

You can create a real-time, on demand reporting infrastructure with very little investment while enjoying legendary iSeries performance and strength. This solution requires no additional hardware or software on your iSeries. It also takes advantage of your existing in-house development talent pool, leveraging and maximizing your investment in your iSeries. You will, however, require Visual Studio .NET, which was under $2,500 the last time I checked.

Tahir Malik is a senior iSeries programmer/analyst with Kos Pharmaceuticals, Inc. He has over a decade of iSeries development experience and has worked extensively with iSeries Web-enablement/cross-platform integration projects, including client/server programming and intranet/extranet Web development using .NET. He can be reached at This email address is being protected from spambots. You need JavaScript enabled to view it..









BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

RESOURCE CENTER

  • WHITE PAPERS

  • WEBCAST

  • TRIAL SOFTWARE

  • White Paper: Node.js for Enterprise IBM i Modernization

    SB Profound WP 5539

    If your business is thinking about modernizing your legacy IBM i (also known as AS/400 or iSeries) applications, you will want to read this white paper first!

    Download this paper and learn how Node.js can ensure that you:
    - Modernize on-time and budget - no more lengthy, costly, disruptive app rewrites!
    - Retain your IBM i systems of record
    - Find and hire new development talent
    - Integrate new Node.js applications with your existing RPG, Java, .Net, and PHP apps
    - Extend your IBM i capabilties to include Watson API, Cloud, and Internet of Things


    Read Node.js for Enterprise IBM i Modernization Now!

     

  • Profound Logic Solution Guide

    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 companyare not aligned with the current IT environment.

    Get your copy of this important guide today!

     

  • 2022 IBM i Marketplace Survey Results

    Fortra2022 marks the eighth edition of the IBM i Marketplace Survey Results. Each year, Fortra captures data on how businesses use the IBM i platform and the IT and cybersecurity initiatives it supports.

    Over the years, this survey has become a true industry benchmark, revealing to readers the trends that are shaping and driving the market and providing insight into what the future may bring for this technology.

  • Brunswick bowls a perfect 300 with LANSA!

    FortraBrunswick is the leader in bowling products, services, and industry expertise for the development and renovation of new and existing bowling centers and mixed-use recreation facilities across the entertainment industry. However, the lifeblood of Brunswick’s capital equipment business was running on a 15-year-old software application written in Visual Basic 6 (VB6) with a SQL Server back-end. The application was at the end of its life and needed to be replaced.
    With the help of Visual LANSA, they found an easy-to-use, long-term platform that enabled their team to collaborate, innovate, and integrate with existing systems and databases within a single platform.
    Read the case study to learn how they achieved success and increased the speed of development by 30% with Visual LANSA.

     

  • Progressive Web Apps: Create a Universal Experience Across All Devices

    LANSAProgressive Web Apps allow you to reach anyone, anywhere, and on any device with a single unified codebase. This means that your applications—regardless of browser, device, or platform—instantly become more reliable and consistent. They are the present and future of application development, and more and more businesses are catching on.
    Download this whitepaper and learn:

    • How PWAs support fast application development and streamline DevOps
    • How to give your business a competitive edge using PWAs
    • What makes progressive web apps so versatile, both online and offline

     

     

  • The Power of Coding in a Low-Code Solution

    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:

    • Discover the benefits of Low-code's quick application creation
    • Understand the differences in model-based and language-based Low-Code platforms
    • Explore the strengths of LANSA's Low-Code Solution to Low-Code’s biggest drawbacks

     

     

  • Why Migrate When You Can Modernize?

    LANSABusiness 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.
    In this white paper, you’ll learn how to think of these issues as opportunities rather than problems. We’ll explore motivations to migrate or modernize, their risks and considerations you should be aware of before embarking on a (migration or modernization) project.
    Lastly, we’ll discuss how modernizing IBM i applications with optimized business workflows, integration with other technologies and new mobile and web user interfaces will enable IT – and the business – to experience time-added value and much more.

     

  • UPDATED: Developer Kit: Making a Business Case for Modernization and Beyond

    Profound Logic Software, Inc.Having trouble getting management approval for modernization projects? The problem may be you're not speaking enough "business" to them.

    This Developer Kit provides you study-backed data and a ready-to-use business case template to help get your very next development project approved!

  • What to Do When Your AS/400 Talent Retires

    FortraIT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators is small.

    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:

    • Why IBM i skills depletion is a top concern
    • How leading organizations are coping
    • Where automation will make the biggest impact

     

  • Node.js on IBM i Webinar Series Pt. 2: Setting Up Your Development Tools

    Profound Logic Software, Inc.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. In Part 2, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Attend this webinar to learn:

    • Different tools to develop Node.js applications on IBM i
    • Debugging Node.js
    • The basics of Git and tools to help those new to it
    • Using NodeRun.com as a pre-built development environment

     

     

  • Expert Tips for IBM i Security: Beyond the Basics

    SB PowerTech WC GenericIn this session, IBM i security expert Robin Tatam provides a quick recap of IBM i security basics and guides you through some advanced cybersecurity techniques that can help you take data protection to the next level. Robin will cover:

    • Reducing the risk posed by special authorities
    • Establishing object-level security
    • Overseeing user actions and data access

    Don't miss this chance to take your knowledge of IBM i security beyond the basics.

     

     

  • 5 IBM i Security Quick Wins

    SB PowerTech WC GenericIn today’s threat landscape, upper management is laser-focused on cybersecurity. You need to make progress in securing your systems—and make it fast.
    There’s no shortage of actions you could take, but what tactics will actually deliver the results you need? And how can you find a security strategy that fits your budget and time constraints?
    Join top IBM i security expert Robin Tatam as he outlines the five fastest and most impactful changes you can make to strengthen IBM i security this year.
    Your system didn’t become unsecure overnight and you won’t be able to turn it around overnight either. But quick wins are possible with IBM i security, and Robin Tatam will show you how to achieve them.

  • Security Bulletin: Malware Infection Discovered on IBM i Server!

    SB PowerTech WC GenericMalicious programs can bring entire businesses to their knees—and IBM i shops are not immune. It’s critical to grasp the true impact malware can have on IBM i and the network that connects to it. Attend this webinar to gain a thorough understanding of the relationships between:

    • Viruses, native objects, and the integrated file system (IFS)
    • Power Systems and Windows-based viruses and malware
    • PC-based anti-virus scanning versus native IBM i scanning

    There are a number of ways you can minimize your exposure to viruses. IBM i security expert Sandi Moore explains the facts, including how to ensure you're fully protected and compliant with regulations such as PCI.

     

     

  • Encryption on IBM i Simplified

    SB PowerTech WC GenericDB2 Field Procedures (FieldProcs) were introduced in IBM i 7.1 and have greatly simplified encryption, often without requiring any application changes. Now you can quickly encrypt sensitive data on the IBM i including PII, PCI, PHI data in your physical files and tables.
    Watch this webinar to learn how you can quickly implement encryption on the IBM i. During the webinar, security expert Robin Tatam will show you how to:

    • Use Field Procedures to automate encryption and decryption
    • Restrict and mask field level access by user or group
    • Meet compliance requirements with effective key management and audit trails

     

  • Lessons Learned from IBM i Cyber Attacks

    SB PowerTech WC GenericDespite the many options IBM has provided to protect your systems and data, many organizations still struggle to apply appropriate security controls.
    In this webinar, you'll get insight into how the criminals accessed these systems, the fallout from these attacks, and how the incidents could have been avoided by following security best practices.

    • Learn which security gaps cyber criminals love most
    • Find out how other IBM i organizations have fallen victim
    • Get the details on policies and processes you can implement to protect your organization, even when staff works from home

    You will learn the steps you can take to avoid the mistakes made in these examples, as well as other inadequate and misconfigured settings that put businesses at risk.

     

     

  • The Power of Coding in a Low-Code Solution

    SB PowerTech WC GenericWhen 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:

    • Discover the benefits of Low-code's quick application creation
    • Understand the differences in model-based and language-based Low-Code platforms
    • Explore the strengths of LANSA's Low-Code Solution to Low-Code’s biggest drawbacks

     

     

  • Node Webinar Series Pt. 1: The World of Node.js on IBM i

    SB Profound WC GenericHave 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.
    Part 1 will teach you what Node.js is, why it's a great option for IBM i shops, and how to take advantage of the ecosystem surrounding Node.
    In addition to background information, our Director of Product Development Scott Klement will demonstrate applications that take advantage of the Node Package Manager (npm).
    Watch Now.

  • The Biggest Mistakes in IBM i Security

    SB Profound WC Generic The Biggest Mistakes in IBM i Security
    Here’s the harsh reality: cybersecurity pros have to get their jobs right every single day, while an attacker only has to succeed once to do incredible damage.
    Whether that’s thousands of exposed records, millions of dollars in fines and legal fees, or diminished share value, it’s easy to judge organizations that fall victim. IBM i enjoys an enviable reputation for security, but no system is impervious to mistakes.
    Join this webinar to learn about the biggest errors made when securing a Power Systems server.
    This knowledge is critical for ensuring integrity of your application data and preventing you from becoming the next Equifax. It’s also essential for complying with all formal regulations, including SOX, PCI, GDPR, and HIPAA
    Watch Now.

  • Comply in 5! Well, actually UNDER 5 minutes!!

    SB CYBRA PPL 5382

    TRY 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.

    Request your trial now!

  • Backup and Recovery on IBM i: Your Strategy for the Unexpected

    FortraRobot automates the routine 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:
    - Simplified backup procedures
    - Easy data encryption
    - Save media management
    - Guided restoration
    - Seamless product integration
    Make sure your data survives when catastrophe hits. Try the Robot Backup and Recovery Solution FREE for 30 days.

  • Manage IBM i Messages by Exception with Robot

    SB HelpSystems SC 5413Managing messages on your IBM i can be more than a full-time job if you have to do it manually. 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:
    - Automated message management
    - Tailored notifications and automatic escalation
    - System-wide control of your IBM i partitions
    - Two-way system notifications from your mobile device
    - Seamless product integration
    Try the Robot Message Management Solution FREE for 30 days.

  • Easiest Way to Save Money? Stop Printing IBM i Reports

    FortraRobot 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:

    - Automated report distribution
    - View online without delay
    - Browser interface to make notes
    - Custom retention capabilities
    - Seamless product integration
    Rerun another report? Never again. Try the Robot Report Management Solution FREE for 30 days.

  • Hassle-Free IBM i Operations around the Clock

    SB HelpSystems SC 5413For over 30 years, Robot has been a leader in systems management for IBM i.
    Manage your job schedule with the Robot Job Scheduling Solution. Key features include:
    - Automated batch, interactive, and cross-platform scheduling
    - Event-driven dependency processing
    - Centralized monitoring and reporting
    - Audit log and ready-to-use reports
    - Seamless product integration
    Scale your software, not your staff. Try the Robot Job Scheduling Solution FREE for 30 days.