Set Where to End the CSS Grid Item

Samual Sam
Updated on 25-Jun-2020 08:49:32

147 Views

Use the grid-column-end property to set where to end the grid item. You can try to run the following code to implement the grid-column-end propertyExampleLive Demo                    .container {             display: grid;             grid-auto-rows: 50px;             grid-gap: 10px;             background-color: red;             padding: 10px;          }          .container>div {             background-color: yellow;             text-align: center;             padding:10px 0;             font-size: 20px;          }          .ele3 {             grid-column-end: span 2;          }                              1          2          3          4          5          6          

Different Ways of Loading Data to SAP HANA Using Information Composer

John SAP
Updated on 25-Jun-2020 08:39:06

206 Views

In SAP HANA system, you can load in following ways using SAP HANA Information Composer −Data from Filesystem − This options is used to upload data using .xls, .csv file directly to HANA database.Data from clipboard − Other way is to copy data to clipboard and copy from there to HANA database.

Set How Auto-Placed Items Are Inserted in the CSS Grid

Arjun Thakur
Updated on 25-Jun-2020 08:38:45

157 Views

Use the grid-auto-flow property to set how auto-placed items are inserted in grid. You can try to run the following code to implement the grid-auto-flow propertyExampleLive Demo                    .container {             display: grid;             grid-auto-columns: 50px;             grid-auto-flow: column;             grid-gap: 10px;             background-color: red;             padding: 10px;          }          .container>div {             background-color: yellow;             text-align: center;             padding:10px 0;             font-size: 20px;          }                              1          2          3          4          5          6          

System Requirements to Install SAP HANA Information Composer

John SAP
Updated on 25-Jun-2020 08:38:06

262 Views

You should setup a separate server for HANA Information Composer and it should be set next to your HANA system. Following server, a requirement should be met −Server Requirements −At least 2GB of available RAM is requiredJava 6 (64-bit) must be installed on the server

SAP HANA Roles Required for Using Information Composer

John SAP
Updated on 25-Jun-2020 08:36:56

170 Views

Following roles are available w.r.t Information Composer in SAP HANA −Role IC_MODELERThis role is used to by business users to upload data, create Information Views and to use other features of Information Composers.Role IC_PUBLICThis role is used by business users to work with Information Composer and to see workbooks and Information Views which are shared by other users.

Access SAP HANA Information Composer

John SAP
Updated on 25-Jun-2020 08:36:15

179 Views

You can try accessing below link if it is accessible −http://:8080/IC or https://:8443/ICTo access Information Composer, you should have Microsoft Silverlight installed and activated as an add-on to the web browser.

Easy-to-use Features of SAP HANA Information Composer

John SAP
Updated on 25-Jun-2020 08:35:36

169 Views

Following features are supported using SAP HANA Information Composer −Using Information Composer, users can extract data, clean data, preview data and can also create the physical tables in HANA database as an automated process.Using Information Composer, you can join different objects like tables, Analytic Views and attribute view and calculation views and develop HANA Modeling views to be consumed by different BI Reporting tools.Information Composer can be accessed from a centralize location in the form of URL.

Using Auto-documentation in SAP HANA Modeler Perspective

John SAP
Updated on 25-Jun-2020 08:33:33

324 Views

Auto documentation feature is used to generate report for the selected objects- you can select entire package or an individual HANA view.You have to pass the target location and click on Finish and it will generate a metadata document PDF document for selected objects like this −In target folder, you can see different folders as per Modeling views as in this case it will show you 3 folders −

Add 5 Hours to Current Time in MySQL

Chandu yadav
Updated on 25-Jun-2020 08:32:37

2K+ Views

To add 5 hours in current time, we will use now() function from MySQL. The syntax is as follows −SELECT date_add(now(),interval some integer value hour);Now, I am applying the above query to add 5 hours to current time. The query is as follows −mysql> SELECT date_add(now(),interval 5 hour); The following is the output+---------------------------------+ | date_add(now(),interval 5 hour) | +---------------------------------+ | 2018-10-11 15:59:23 | +---------------------------------+ 1 row in set (0.00 sec)Look at the output above, it has increased the current time by 5 hours

Use of Redeploy Option in SAP HANA System

John SAP
Updated on 25-Jun-2020 08:32:24

1K+ Views

In SAP HANA system, redeploy option is used to deploy the active objects in one of the following scenarios −If your runtime object gets corrupted or deleted, and you want to create it again.In case of runtime problems during object activation, and the object status is still active.  

Advertisements