Make App Pie<p><strong>Introducing HANA</strong></p><p></p><p>While I had planned something about the General Ledger for this newsletter, circumstances changed, so I’ll do something entirely different.</p><p>As many of you know, I’m no longer with Scientific Device Laboratory. If you’d like to know more about that situation, I have described it in detail <a href="https://www.linkedin.com/pulse/road-ahead-whats-happening-bizoneness-steven-lipton-f3blc" rel="nofollow noopener noreferrer" target="_blank">here</a>, but the very short version is that I lost the ability to access SAP B1 for this newsletter for the last nine months.</p><p>Fortunately, I found someone to help. Richard Duffy and SMB Solutions are graciously providing me with a new Demo instance of SAP Business One, but with one Wrinkle: It is HANA.</p><p>Before I go into anything other topics, I’m writing a series of newsletters about how HANA affects SAP B1. We’ll cover the basics of how to write queries in HANA for those curious or needing to translate SQL to HANA and back. Once we have all that, I’ll share with you what I plan to do about writing this newsletter on a HANA system. I’ll assume you know SQL or have taken my course <a href="https://www.linkedin.com/learning/sap-business-one-reporting-and-customization/getting-the-most-from-sap-business-one" rel="nofollow noopener noreferrer" target="_blank">SAP Business One Reporting and Customization</a>.</p><p>First, let’s give a little background on HANA. SAP decided several years ago to make a database system they could use across their product line. It has its pluses and minuses. The marketing for HANA was often around its speed due to the in-memory column-based database.</p><p>Data in a computer system is stored in dimensional sequence, not the two dimensions we associate with a table. It is as if you had a spreadsheet of only one row.</p><p>The best we can do to represent a table is to take the rows or the columns as groups, add them in sequence, then add the next row or column.</p><p>Let’s suppose you had this table:</p><p>The data would be stored in row order like this in a row-based database.</p><p>This is fast for performance in adding and deleting data but presents performance problems in calculations. To get a sum for balances, for example, you have to load each row, get the balance, add it to the total, and then get the next row, which is lots of work.</p><p>On the other hand, a column-based database would do this:</p><p>All the data for the columns are grouped. To get a sum, it loads the column and sums it. Unlike the Row-based arrangement, there is no jumping around in the data, making it much faster. However, this usually requires in-memory access to the data instead of on-disk access. Such an arrangement requires a substantial amount of memory to run efficiently. Also, insertions and deletions of rows are more complicated as you add data in several places, not as one group.</p><p>HANA is not the only column-based database. Data analysis tools like Pandas and even Microsoft SQL Server 2012 have in-memory processing in columns.</p><p>Because the HANA implementation of the SAPB1 started from scratch, you will notice a different User interface when running HANA compared to a SQL Server version of Sap Business One. My disparaging quip about SAP B1 UI being as fashional as Windows 95 is no longer accurate.</p><p>I’ll discuss this UI in a later column, but from now on, you’ll see screenshots like this in my newsletters.</p><p>The real fun begins when you start making queries. HANA has its variant of SQL. Creating a query in the SAP B1 Query Generator of the names and quantities of inventory items produces this query.</p> <pre>SELECT T0."ItemCode", T0."ItemName", T0."PrchseItem", T0."SellItem", T0."InvntItem", T0."OnHand", T0."IsCommited",T0."OnOrder" FROM OITM T0 </pre> <p>You’ll notice the double quotes on the column names. Double quotes are required on column names. Some, like the table name, have optional quotes, but putting quotes around all tables, columns, and aliases like TO is legitimate and often good style.</p> <pre>SELECT "T0"."ItemCode", "T0"."ItemName", "T0"."PrchseItem", "T0"."SellItem", "T0"."InvntItem", "T0"."OnHand", T0."IsCommited",T0."OnOrder" FROM "OITM" "T0"</pre> <p>What’s in the Quotes is case-sensitive. Can you spot the two errors here?</p> <pre>SELECT "T0"."Itemcode", "T0"."ItemName", "T0"."PrchseItem", "T0"."SellItem", "T0"."InvntItem", "T0"."OnHand", T0."IsCommited",T0."OnOrder" FROM "oitm" "T0"</pre> <p><strong>“T0″.”Itemcode”</strong> and <strong>“oitm”</strong> do not have the proper case. Interestingly, it will work if I do <strong>oitm</strong> without quotes.</p><p>Comments are still two dashes. Like many other programming languages, HANA adopts the <code>/*</code> and <code>*/</code> for block comments.</p> <pre>-- This is a comment/*This is a block comment. You can add several lines until you use the termination character on the next line.*/</pre> <p>Basic selection, literal strings with single quotes, and sorting also work the same as SQL: this query works with a parameter and sorting:</p> <pre>-- A comment is two dashesSELECT T0."ItemCode", T0."ItemName", T0."PrchseItem", T0."SellItem", T0."InvntItem", T0."OnHand", T0."IsCommited", T0."OnOrder" FROM OITM T0 WHERE -- Compound data filter T0."SellItem" = [%0] -- Parameter AND T0."PrchseItem" = 'Y' -- String Literal AND T0."OnHand" > 0 -- ComparisonORDER BY T0."IsCommited" -- Sorting</pre> <p>If you look at only the basics, HANA looks a lot like SQL. However, once you get past the syntax, HANA starts getting different from SQL. In the next newsletter, I’ll look at some commonly-used functions in HANA.</p><p><a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://makeapppie.com/tag/database/" target="_blank">#database</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://makeapppie.com/tag/hana/" target="_blank">#hana</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://makeapppie.com/tag/performance/" target="_blank">#performance</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://makeapppie.com/tag/sap/" target="_blank">#sap</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://makeapppie.com/tag/sap-b1/" target="_blank">#sapB1</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://makeapppie.com/tag/sql/" target="_blank">#sql</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://makeapppie.com/tag/sql-server/" target="_blank">#sqlServer</a></p>