How 24 Hour Fitness Uses In-Memory Computing to Assist With a SaaS Integration

ICYDK: 24 Hour Fitness, the world’s largest privately owned and operated fitness center chain, is using distributed in-memory computing solutions to speed things up as well as decouple data from its database.

Craig Gresbrink, a solutions architect at 24 Hour Fitness, was a featured presenter at the third-annual In-Memory Computing Summit North America – Oct. 24-25 near San Francisco. His in-depth talk detailed how 24 Hour Fitness has used two different in-memory solutions to solve integration needs, along with the benefits these solutions are providing. https://goo.gl/n1KDwd #DataIntegration #ML

How to define attribute for virtual master data

It is a very common requirement to define attribute for a dimension when using BPC as a planning solution. In BPC standard model, we just need to add a new field in web admin, and value maintenance is also very straightforward.

How can we do that for virtual master data in BPC optimized for S/4 HANA, which is based on BPC Embedded model?

As the name indicates, the master data of “virtual master data” is not physically saved in BW but S/4.  For example, master data of GL Account comes from SKA1 table. If the attribute you need is not defined in this table, then no related information could be provided from S/4 side.

We can’t change the structure of SKA1 to add some planning specific fields, so we need to create a new table to hold that attribute information. Below is the steps needed.

Firstly, create a new table for store the extra master data information. Make sure the key fields of host master data table is included in this new table. For example, if we’ll add attributes for GL Account, then following fields should be included:

Once the table is ready, next step is to set up a join between main master data with this attribute table. Generally left outer join should be used so even no content is maintained in attribute table, the master data table could be output.

Next step is to set all the attributes from attribute table to OUTPUT in HANA view.

Once the modelling at HANA side is done, we could start to define InfoObject in BW, just like the traditional way to add a new attribute for existing InfoObject.

Last step is to set up mapping between the InfoObject and field we expose in HANA view.

  http://bit.ly/2Dz6cHq #SAP #SAPCloud #AI

OAuth Dances With Mule External Provider

Part I – OAuth2 in a Nutshell

OAuth2 is a framework, defined here. It’s not a protocol, because the RFC doesn’t contain enough implementation specifics. I say this with the understanding that the line between protocol and framework is a blurry one…

The RFC first defines four roles: https://goo.gl/5s1sdB #DataIntegration #ML