Using Time Subtype of an Attribute View in SAP HANA

SAP Developer
Updated on 18-Jun-2020 08:45:52

300 Views

Time subtype Attribute View is a special type of Attribute view that adds a Time Dimension to Data Foundation. To know more about the difference between Standard Attribute view and Time Attribute view, you can refer this SAP thread:https://archive.sap.com/discussions/thread/3253551

Create an Inline Flexbox Container in Bootstrap 4

Kristi Castro
Updated on 18-Jun-2020 08:43:16

388 Views

To create an inline flexbox container, you need to work with d-inline-flex class in Bootstrap 4 −Use the d-inline-flex class −And then set the flex items inside it as in the following code snippet −     One   Two   Three You can try to run the following code to implement the .d-inline class −ExampleLive Demo      Bootstrap Example                            Understanding Inline Flex            One      Two      Three      Four      Five      

Create a Copy of an Existing Attribute View in SAP HANA

SAP Expert
Updated on 18-Jun-2020 08:41:53

534 Views

Yes, it is possible to create a copy of an existing Attribute view. While passing View name and View type, you can select the option of “Copy From” and this will enable Browse option from which you can select any of existing view to copy.

Add a Hover Effect Inside the Bootstrap 4 Card

Kristi Castro
Updated on 18-Jun-2020 08:41:15

637 Views

To add a hover effect, use the card-link class in Bootstrap.The following are the links using the card-link class −XAMPP (MySQL + PHP + Apache) WordPressAll of the above code is used inside the card-body class −   WordPress Installation   To work with WordPress, you need the following   XAMPP (MySQL + PHP + Apache)   WordPress You can try to run the following code to add a hover effect inside Bootstrap 4 card −ExampleLive Demo      Bootstrap Example                           Requirement - WordPress             WordPress Installation       To work with WordPress, you need the following       XAMPP (MySQL + PHP + Apache)       WordPress        

Creating an Attribute View in SAP HANA

Anil SAP Gupta
Updated on 18-Jun-2020 08:39:48

261 Views

To create a new Attribute view, select the Package name under which you want to create an Attribute View. Right Click on Package → Go to New → Attribute ViewClick on Attribute View, and this will open a new Window. You need to pass Attribute View name and description. From the drop-down list, choose View Type and subtype. In subtype, there are three types of Attribute views − Standard, Time, and Derived.Once you finish the wizard, you can see view is created under the specified package.

Bootstrap 4 Justify Content Class

Kristi Castro
Updated on 18-Jun-2020 08:39:26

1K+ Views

To align flex items, use the justify-content-* class.Use any of the following to align flex items at the start, end, around, and between.justify-content-start – Align Flex items at the start justify-content-end  - Align Flex items at the end justify-content-around – Align  flex items around on different screen sizes justify-content-between  - Alex flex items in between on difference screen sizesLet us see an example to set the flex items at the start −   RANK 1   RANK 2   RANK3 The following is the example to implement the justify-content-* class −ExampleLive Demo   Bootstrap Example                     RANK 1     RANK 2     RANK3         RANK 1     RANK 2     RANK 3         RANK 1     RANK 2     RANK 3  

Using Attribute View in SAP HANA

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

283 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

740 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

578 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

114 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.      

Advertisements