by Craig Cmehil on August 17, 2009 at 11:16 am
SDN Land of the Übergeek and Enterprise Geeks team up again with their next podcast cross over, in this episode Craig Cmehil talks to Rich Heilman about the upcoming 3rd Annual RIA Hacker Night at the SAP TechEd events coming up in October and November of this year. Giving thought to a “hack it” part of the event as well as what Rich will be showing of the official SAP product he’s part of and building…
Talking Points
- 1:00 – Rich’s thoughts on past events
- 2:10 – Build it for the BPX Process Slam
- 3:00 – Should we build something, something tangible during the event?
- 3:55 – We want your suggestions!!
- 5:20 – Rich gives a taste of what he will be sharing this year
Be sure to sign up now to reserve your seat for the RIA Hacker Night taking place in Phoenix,Vienna and Bangalore at the SAP TechEd events this year! You must be a registered attendee of the SAP TechEd event to attend the RIA Hacker Night.
Dowload episode here
by Rich Heilman on February 18, 2009 at 11:19 am
In this episode of the ABAP Freak Show we will take a look at how to retrieve data from a NetWeaver ABAP system via web services, and consume that data inside of SAP Business Objects Xcelsius. We will start by creating the web service provider in NetWeaver, and finish up by creating the web service connection and building our model in Xcelsius. For this demonstration we will be working with a NetWeaver 7.01 system and Xcelisus 2008 SP1.
by Ed Herrmann on February 7, 2009 at 3:56 pm

BS7: You Cant Handle the Truth
In this packed episode, Ed Herrmann, Thomas Jung, and special guest Rich Heilman talk about all the events from the SAP Press conference announcing the launch of SAP Business Suite 7. Also included is a gold mine of information on clarifications of enhancement packages and the switch framework.
If you have questions, suggestions, or topic ideas for future episodes, give us a shout here. Enjoy!
Running Time: 59 minutes
Dowload episode here
Talking Points
- Fellow Enterprise Geek – Rich Heilman
- Xcelsius Flex Control
- Flex vs. ABAP – competitive or complementary
- The whirlwind of working at SAP during the BOBJ acquisition
- What it’s like switching over from IT to Technology
- Future plans for Enterprise Geeks
- Xcelsius Islands coming soon
- The truth – what exactly is SAP Business Suite 7
- WSJ – WTF?
- Clarifying Enhancement Packages for ERP vs. NetWeaver and how it relates to BS7
- SAP ERP 6.0 -
SAP ERP 6.0 is the “go-to” release until at least 2012 providing mainstream maintenance until March 2013 and extended maintenance until 2016.
- SAP NetWeaver 7.0 EnhP1 -
“For these SAP Business Suite systems, a separate ramp-up started in November 2008 which as part of SAP Business Suite 7 comprises SAP ERP 6.0 EhP4, SAP CRM/SRM/SCM/PLM 7.0, … .
All relevant parts of enhancement package 1 for SAP NetWeaver 7.0 are included in the respective SAP Business Suite 7 ramp-up packages and will be installed automatically underneath the SAP Business Suite systems.”
- Advantages of the Switch Framework
- Leveraging custom BAdis, switches, enhancement packages, and namespaces
- Value Scenarios and Best Run now packages
- SAP is going from a back office suite only to a business process library for casual users, and the customers agree
- Business Objects as an analytics acquisition
- Subtle hints of the upcoming focus on In-Memory / RAM-resident database
- What is the strategy behind the “Harmonized UI” – casual business users no longer have blind faith
- Blogger meeting with Richard Campione and the differences in software suites – engineered vs. glued vs. branded
- The Press Conference experience
- Upcoming topics
- Some of the funnier moments from the blogger meetings
by Rich Heilman on January 28, 2009 at 9:37 am
After seeing my tweets(@RichHeilman) over the past several months, a few people have asked me about what I’ve been working on related to Flex. Most of the readers here recognize me as an ABAP developer more than anything else, but for the last half of 2008, I took a break from ABAP and dove into the Flex world. This was great for me, as I wanted to learn Flex anyway. I was charged with the task of creating a suitable grid control for Xcelsius using the Xcelsius SDK and Flex 2. Basically my team(SAP BPC Solution Management) wanted to create Xcelisus models and embed them into the SAP BPC(Business Planning and Consolidations) product, but the grid control which is delivered by Xcelisus is not quite what we wanted. It is not very visually appealing.
I was the only one working on this piece of the project, so my first task was to actually learn Flex. I would describe the learning experience as better than learning java and not as good as learning ABAP. No surprises there, I guess. I like Flex a lot, but found myself missing ABAP when it comes to simple things like internal tables. I actually learned a lot by reading the book, Adobe Flex 3: Training from the Source. If you are looking into learning Flex, I would highly recommend this book.
So once I had a basic understanding of Flex ( MXML and ActionScript ), it was time to start playing around with the Xcelsius SDK. The SDK helps
in making connections between the actual UI component, its property sheet, as well as enables cell binding to the excel spreadsheet in the Xcelsius designer. You then create the components using Flex Builder. The Xcelisus Add-On Packager, which also comes with the SDK, allows you to package all these pieces into one component .xlx file. This component .xlx is then added to Xcelsius using the Add-On Manager, and as you can see in the image to the right, you can then use them like any other component which Xcelsius supports. The .xlx file is the only file that the end user requires to use the BPC Data Grid in an Xcelsius model.
After doing some prototyping, I started coding the actual development. First, I had to create the actual grid UI component which will be the visible runtime component. Second, I had to create another flex component which would be the property sheet. which would allow the user to change attributes of the grid component at design time. Here is where the Xcelsius SDK comes into play. Basically it consists of a handful of methods that you use to create the cell bindings in Xcelsius as well as connects the property sheet component to the actual UI component. It also contains documentation about how to use the SDK. As you can see in the below image, this grid component looks a lot like the DataGrid component in Flex. The reason is that the BPC Data Grid extends from that component. We plan on adding more features to the BPC Data Grid, but for right now, we just wanted to get the baseline grid working. Some features that we get for free that the existing grid in Xcelsius does not support are things like, a true column header, sorting, re-arranging columns, and row selection. This grid is fairly simple and implements a lot of what the existing grid has, but at least it has a column header. On the right side is the property sheet which is the separate flex component. It has four different tabs to work with, and allows you to set other properties of the grid as well. Mostly, the properties are the standard ones delivered with the Flex 2 DataGrid component.

Here is an example of an Xcelsius model which is using the BPC Data Grid as well as other standard UI elements which it also interacts with. For example, If a row of the grid is selected, the appropriates changes are made to the line chart below.

A How-To guide about how to consume BPC data using Xcelsius, as well as a demo video, have been published on SDN. This How-To guide also contains the BPC Data Grid component(.xlx file) which you can install into Xcelisus using the Add-On Manager. This is NOT an official SAP development, hence the reason why it is released via SDN, and not the service market place. Of course, this also means that it is not supported by SAP Global Support either, so don’t try it.
All-in-all, I think this project went pretty well, and I am happy with the results. I learned a lot about Flex and also the fundamental concepts used in developing RIAs. At some point, I will be adding new features to this component, and of course fixing bugs as well. I also plan on doing a new release when/if Xcelsius starts supporting Flex 3.