A basic knowledge of open SQL is necessary to develop ABAP application in SAP HANA. ABAP programs can access SAP HANA database through available set of queries and operations that can be executed on existing data. This article will introduce you to classic ABAP programming and how it complements with Native HANA. Simple Database access via ABAP Open SQL Statement: DATA: wa TYPE scarr. SELECT-OPTIONS: carrier FOR wa-carrid. SELECT * FROM scarr INTO wa WHERE carrid IN carrier. WRITE: / wa-carrid. wa-carrname. ENDSELECT. This program will display Airline id and its name based on the user selection of Airline id. For example- LH Lufthansa ABAP Schema The SAP Netweaver AS ABAP stores all data in exactly one specific schema within the database catalog. This schema is also referred to as system schema or ABAP schema. In traditional ABAP development, schema is irrelevant. For SAP HANA, schema is relevant because: When tables are ...
There is a scenario which I encountered recently in my project where Qlikview was not able to see complete data from the Multiprovider from SAP BW. The Multiprovider consisted of few standard DSOs with the setting : " SID generation during Activation " and " Set Quality Status to OK automatically " checkbox checked. Thus, even though all the settings are in place, the Qlik was not able to see all the data in the raw layer.
Comments
Post a Comment