Using Attribute View in SAP HANA

SAP ABAP Expert
Updated on 18-Jun-2020 08:37:28

301 Views

In SAP HANA Modeling, Attribute View is developed on the top of Dimension tables. They are used to join Dimension tables or other Attribute Views. It is also possible to create a copy of an existing Attribute View from already existing Attribute Views inside other Packages but you can’t edit the view in this case. Following are the key characteristics of Attribute View:Attribute Views in HANA are used to join Dimension tables or other Attribute Views.Attribute Views are used in Analytical and Calculation Views for analysis to pass master data.They are similar to Characteristics in BM and contain master data.Attribute ... Read More

Float an Element to the Left with Bootstrap 4

Kristi Castro
Updated on 18-Jun-2020 08:37:01

758 Views

To float an element to the left in Bootstrap, use the float-left class.Using the class, set the element on the left as shown below −   I am on the left. Set it on other elements like , , , etc −   Heading is on the left. You can try to run the following code to place an element on the left −ExampleLive Demo   Bootstrap Example                 Demo           I am on the left.       I am on the right.       I am on the left.       I am on the right.      

Get Current Date and Time using JavaScript

V Jyothi
Updated on 18-Jun-2020 08:36:06

601 Views

To get current date and time using JavaScript, use the Date() method. JavaScript Date() method returns today's date and time and does not need any object to be called.ExampleYou can try to run the following code to get current date and time −Live Demo           JavaScript Date Method                        var dt = Date();          document.write("Date and Time : " + dt );           OutputDate and Time : Mon May 28 2018 10:16:33 GMT+0530 (India Standard Time)

Set Negative Action to Bootstrap 4 Card

Kristi Castro
Updated on 18-Jun-2020 08:34:45

124 Views

To set negative action on a Bootstrap card, use the bg-warning class with the card class as shown in the below example −   Over 20 students failed the final-year exam. Let us see an example to set negative action to a card in Bootstrap 4 −ExampleLive Demo       Bootstrap Example                             Result           Over 20 students failed the final-year exam.      

Add a Package to Delivery Unit in SAP HANA

SAP Developer
Updated on 18-Jun-2020 08:33:50

548 Views

In SAP HANA, Delivery unit is known as single unit, which can be mapped to multiple packages and can be exported as a single entity so that all the packages assigned to Delivery Unit can be treated as a single unit.Delivery units can be used to export all the packages that make a delivery unit and the relevant objects contained in it to a HANA Server or to the local Client location.The user should create Delivery Unit prior to using it. This can be done through HANA Modeler -> Delivery Unit -> Select System and Next -> Create -> Fill ... Read More

Bootstrap 4 Card Subtitle Class

Alex Onsman
Updated on 18-Jun-2020 08:32:24

451 Views

Use the card-subtitle class to set subtitle for the card.The card-subtitle class is used as shown below −SportsHere, I have set the subtitle as “Indoor” for an example. The subtitle class comes after the card-title Bootstrap class −   Sports   Indoor   Squash, Dart, Chess Let us see the example to work with card-subtitle class in Bootstrap 4 −ExampleLive Demo   Bootstrap Example                 Indoor and Outdoor Sports                   Sports         Indoor         Squash, Dart, Chess                       Sports         Outdoor         Cricket, Football, Hockey                

Using Packages in SAP HANA Studio

John SAP
Updated on 18-Jun-2020 08:30:57

977 Views

In SAP HANA system, you can see all the packages under Content tab in HANA studio. All HANA modeling objects are created inside packages. Packages can be used for migrating modeling views in HANA system.You can also create a sub-package, and different HANA modeling views- Attribute view, Analytic View and Calculation view in a package. When you expand Content tab, you can see list of all available packages. When you expand a package you can see different Attribute, analytic and calculation views in that package.You can also create Decision Table, Define Analytic Privilege and create Procedures in a Package.When you ... Read More

Bootstrap 4 Button btn-outline-secondary Class

Alex Onsman
Updated on 18-Jun-2020 08:29:48

324 Views

Use the btn-outline-seondary class to set a grey outline in Bootstrap 4 to show less important information.The following is the code to set Bootstrap button to add grey outline −   More Let us see how to implement the btn-outline-secondary class −ExampleLive Demo       Bootstrap Example                         Tools   The following are the tools:       Online Compiler     Image Editor     Image Optimizer     Whiteboard     For more tools, click below:   More

Float an Element to the Right on Different Screens with Bootstrap

Alex Onsman
Updated on 18-Jun-2020 08:28:05

1K+ Views

Use the float-*-right class in Bootstrap to float an element to the right. Different screen size includes setting the float for small, medium, large and extra large sizes.Let us see how to float and element to the right on small and medium size screen size −Small Screen Size   This text is on the right (on small screen). Medium Screen Size   This text is on the right (on medium screen). Let us see how to place an element on the right on different screens −ExampleLive Demo   Bootstrap Example         ... Read More

Get Natural Logarithm of 2 in JavaScript

Paul Richard
Updated on 18-Jun-2020 08:26:00

501 Views

To get the Natural logarithm of 2, use the Math.LN2 property in JavaScript. It returns the natural logarithm of 2, which is approximately 0.693.ExampleYou can try to run the following code to get Natural logarithm of 2 −Live Demo           JavaScript Math LN2 Property                        var property_value = Math.LN2          document.write("Property Value is : " + property_value);           OutputProperty Value is : 0.6931471805599453

Advertisements