Reverse the Order of a JavaScript Array

Abhinanda Shri
Updated on 18-Jun-2020 08:18:32

316 Views

To reverse the order of a JavaScript array, use the JavaScript array() method. JavaScript array reverse() method reverses the elements of an array. The first array element becomes the last and the last becomes the first.ExampleYou can try to run the following code to reverse the order of a JavaScript array −           JavaScript Array reverse Method                        var arr = c.reverse();          document.write("Reversed array is : " + arr );          

Creating a New Table in SAP HANA

SAP Expert
Updated on 18-Jun-2020 08:16:45

3K+ Views

New tables can be created using the two methods given below −Using SQL editorUsing GUI optionThe new table can be created using SQL Create Table statement –Create column Table Test1 (    ID INTEGER,    NAME VARCHAR(10),    PRIMARY KEY (ID) );When you run this SQL query, you get a message like this:The statement 'Create column Table Test1 ( ID INTEGER, NAME VARCHAR(10), PRIMARY KEY (ID) )' successfully executed in 5 ms 136 μs (server processing time: 4 ms 432 μs) - Rows Affected: 0To create a table using GUI, you need to right-click on any schema name -> New ... Read More

Factorial Program in Java Without Using Recursion

Vikyath Ram
Updated on 18-Jun-2020 08:09:48

2K+ Views

Following is the required program.ExampleLive Demopublic class Tester {    static int factorial(int n) {       if (n == 0)          return 1;       else          return (n * factorial(n - 1));    }    public static void main(String args[]) {       int i, fact = 1;       int number = 5;       fact = factorial(number);       System.out.println(number + "! = " + fact);    } }Output5! = 120

Opening SAP HANA Cockpit from HANA Studio

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

2K+ Views

SAP HANA Cockpit with Fiori-based Launchpad shows the content in the form of tiles arranged in groups. Using these tiles, you can access individual applications and can also access app-specific data for immediate review.You can also perform a drill on these tiles to see the detailed information about specific applications.Following roles are required to open and access tile-based SAP HANA Cockpit − sap.hana.admin.roles:: Monitoring or sap.hana.admin.roles:: AdministratorYou can also open SAP HANA Cockpit via HANA Studio. Navigate on HANA system -> Configuration and Monitoring -> Open SAP HANA Cockpit.You can also open HANA Cockpit in an offline mode using a ... Read More

Remove a Particular Character from a String

Manikanth Mani
Updated on 18-Jun-2020 08:01:46

323 Views

Following example shows how to remove a character from a particular position from a string with the help of removeCharAt(string, position) method.ExampleLive Demopublic class Sample {    public static void main(String args[]) {       String str = "this is Java";       System.out.println(removeCharAt(str, 3));    }    public static String removeCharAt(String s, int pos) {       return s.substring(0, pos) + s.substring(pos + 1);    } }Outputthis is Java

Check Tables and Schema in SAP HANA

SAP ABAP Expert
Updated on 18-Jun-2020 08:00:36

8K+ Views

When you add a HANA system in HANA Studio, you can see different tabs under system pane. Each pane has different object types of HANA system.To see the list of all schema and tables, you need to navigate to Catalog tab.Other available tabs in HANA Studio includes:BackupCatalogProvisioningContentSecurityYou can check under table type- if a table is row store or column store. On right top corner, it is mentioned.New tables can be created using the two methods given below −Using SQL editorUsing GUI optionThe new table can be created using SQL Create Table statement −Create column Table Test1 (    ID ... Read More

Show Flex Items Right Aligned and Horizontally in Bootstrap

Amit Diwan
Updated on 18-Jun-2020 08:00:01

175 Views

If you want to display flex items right aligned, horizontally and reversed, then use the flex-row-reverse class.Use the class like the following code snippet −   ONE   TWO   THREE The following is an example to show reverse order of flex items −ExampleLive Demo       Bootstrap Example                             Flex     Flex Row Reverse           ONE       TWO       THREE         Flex Row           ONE       TWO       THREE      

Align Flex Item at the End in Bootstrap 4

Alex Onsman
Updated on 18-Jun-2020 07:58:38

754 Views

Use the .align-self-end class to align flex item at the end in Bootstrap 4.The following is my div −Now you need to set the flex items, wherein I am aligning the 3rd flex item −   Item 1   Item 2   Item 3   Item 4 You can try to run the following code to implement the align-self-end class −ExampleLive Demo       Bootstrap Example                             Align Specific Flex Item from the end               Item 1         Item 2         Item 3         Item 4          

Bootstrap 4 Flex Row Reverse Class Implementation

Alex Onsman
Updated on 18-Jun-2020 07:56:48

420 Views

To implement the flex items to be displayed as reversed, horizontal and right-aligned on different screen sizes, use the flex-*-row-reverse.Different screen sizes are for small, medium, large, and extra large screens. Let us see how to set reverse flex items for small screen −   ONE   TWO   THREE You can try to run the following code to implement the flex-*-row-reverse class −ExampleLive Demo       Bootstrap Example                             Flex Row     ... Read More

Current Alerts in SAP HANA System

John SAP
Updated on 18-Jun-2020 07:55:15

415 Views

In SAP HANA Administration Perspective, you can select your HANA system in Studio and navigate to Administration option at the top.When you go to Alerts tab, you can see all the current alert. You can see Description of alerts, date and time when an alert is raised and priority of alert- low, medium or high.From drop down, you can also check All Alerts raised in the past.Also note that you can also check alerts raised between specific time duration. To set the filters, click on Filter icon on right side.

Advertisements