Check Column Properties in an Attribute View in SAP HANA

John SAP
Updated on 18-Jun-2020 09:02:41

240 Views

This can be easily checked in Details pane. You need to select column name for which you want to check Properties of a column → right click → Properties

Float an Element to the Right with Bootstrap 4

Alex Onsman
Updated on 18-Jun-2020 09:00:40

201 Views

If you want to float an element on the right, you need to use the float-right class.Set it on the right −   The text is on right! Let us see an example to float element on the right −ExampleLive Demo   Bootstrap Example                 Guidelines           The text is on right!       This is demo text.      

HTML DOM Geolocation Position Property

AmitDiwan
Updated on 18-Jun-2020 08:59:53

198 Views

The HTML DOM Geolocation coordinates property is used for getting a user’s device position and altitude on earth. The user have to approve that he/she wants to give coordinates before this property could work. This is done so that users privacy isn’t compromised. This can be used for tracking various devices location.PropertiesFollowing is the position property −Note − The below properties are read-only −PropertyDescriptionposition.coordsTo return a coordinates object having information like latitude, longitude, altitude, and speed of the device on the earth. It also has an accuracy value describing how accurate the measurements are in meters.position.timestampTo representing the time and ... Read More

Performance Analysis of an Attribute View in SAP HANA

SAP Developer
Updated on 18-Jun-2020 08:59:49

416 Views

In SAP HANA Modeling, you have an option of switching to Performance Analysis mode. This is used to check if Joins in Attribute view are meeting with performance optimized joins and cardinality based on data in the table.You can see 2 options when you select Performance Analysis mode:Join Details:This defines Join type used and proposed cardinality based on data in the tableData Source Details:Defines table type, partition type and a number of rows in tables.

Create a Grid of Cards Using Bootstrap 4 Card Deck Class

David Meador
Updated on 18-Jun-2020 08:58:09

668 Views

Use the card-deck class in Bootstrap to form a grid of cards with equal width and height.Set the cards inside the following div −   Let us set the grid of cards now in the card-deck class −           Nothing new!   You can try to run the following code to implement the card-deck classExampleLive Demo       Bootstrap Example                               Demo Messages     Note: Resize the browser to check the effect.                             Nothing new!                                      Warning! Compile-time error!          Check again!                             We won!            

Bootstrap Hidden BS Tooltip Event

David Meador
Updated on 18-Jun-2020 08:56:19

264 Views

The hidden.bs.tooltip event in Bootstrap fires when the tooltip is hidden −$("[data-toggle='tooltip']").on('hidden.bs.tooltip', function(){   alert('Tooltip is completely hidden now.'); });The data-toggle attribute is set before as shown below −   Timings You can try to run the following code to implement the hidden.bs.tooltip event −ExampleLive Demo       Bootstrap Example                             Event     Here tooltip will be displayed using the "Show" buttpn and can be hidden using the "Hide" button.     Timings ... Read More

Bootstrap 4 Card Body Class

David Meador
Updated on 18-Jun-2020 08:54:24

471 Views

To set the container for the Bootstrap card, you need to use the card-body class. It allows you to add contentThe following is the card-body class −   Body of the card And set the above inside the card class as shown in the following code snippet −   Body of the card. You can try to run the following code to implement the card-body class −ExampleLive Demo       Bootstrap Example                             Heading Three           Body of the card.      

Use of Data Foundation in Attribute View in SAP HANA

Anil SAP Gupta
Updated on 18-Jun-2020 08:53:06

378 Views

When you enter the Attribute name, Type, and Subtype and click on Finish, it will open three work panesScenario pane that has Data Foundation and Semantic Layer.Details Pane shows attribute of all tables added to Data Foundation and joining them.Output pane where we can add attributes from Detail pane to filter in the report.You can add Objects to Data Foundation, by clicking on ‘+’ sign written next to Data Foundation. You can add multiple Dimension tables and Attribute Views in the Scenario Pane and join them using a Primary Key.

Bootstrap 4 Rounded Right Class

David Meador
Updated on 18-Jun-2020 08:52:14

278 Views

If you want to set rounded right corner to an element, then use the rounded-right class in Bootstrap 4.Adding it to the web page is not a tiresome task. Just add the class to div class −The one class above is used to set style for div − .one {   width: 200px;   height: 100px;   background-color: #00FF00;   margin: 8px; } You can try to run the following code to implement the rounded-right class −ExampleLive Demo       Bootstrap Example                             .one {        width: 200px;        height: 100px;        background-color: #00FF00;        margin: 8px;     }         Rounded Corner   We have a rectangle with right rounded corner:  

Difference between Copy and Derived View in SAP HANA

John SAP
Updated on 18-Jun-2020 08:48:42

326 Views

Following are the key points about using Derived view in SAP HANAThe derived attribute view will be similar in all the characteristics as the base view (except the name) It is not possible to edit any semantic/data foundation design in the derived attribute view. When there is any change in the base view, the changes will be reflected in the derived attribute view too. This helps reduce extra efforts of replicating the changes in the derived view.When you want to define an Attribute view on the top of an existing object as copy, you can use Copy From option. This can be ... Read More

Advertisements