Mkotla has Published 100 Articles

Set the start value of an ordered list in HTML?

mkotla

mkotla

Updated on 03-Mar-2020 11:24:10

361 Views

Use the start attribute to set the start value of an ordered list in HTML i.e.Add the value of where you want to start above.ExampleYou can try to run the following code to implement the start attribute −           HTML ol Tag           ... Read More

Set the shape of the area in HTML

mkotla

mkotla

Updated on 03-Mar-2020 11:10:57

94 Views

Use the shape attribute to set the shape of the area in HTML. You can try to run the following code to implement shape attribute −Example           HTML shape attribute                                              

How to specify that the element should automatically get focus when the page loads in HTML?

mkotla

mkotla

Updated on 02-Mar-2020 12:43:31

172 Views

Use the autofocus attribute to specify that the element should get focus automatically on page load in HTML −ExampleYou can try to run the following code to learn how to implement autofocus attribute in HTML −           Click on the below button to generate an alert box.       Result    

How multiple inheritance is implemented using interfaces in Java?

mkotla

mkotla

Updated on 25-Feb-2020 12:33:24

1K+ Views

Java does not support multiple inheritance. This means that a class cannot extend more than one class. Therefore, following is illegal −Examplepublic class extends Animal, Mammal{}However, a class can implement one or more interfaces, which has helped Java get rid of the impossibility of multiple inheritance.The extends keyword is used ... Read More

How can I clear or empty a StringBuilder in Java.

mkotla

mkotla

Updated on 24-Feb-2020 12:21:39

2K+ Views

You can either setLength to be 0 or create a new StringBuilder() instance. See the example below −Examplepublic class Tester {    public static void main(String[] args) {       StringBuilder builder = new StringBuilder();       builder.append("sample");       System.out.println(builder.toString());       builder.setLength(0);     ... Read More

How to install JDK in Windows and set up the environment variables?

mkotla

mkotla

Updated on 18-Feb-2020 07:53:47

1K+ Views

Download the latest version of Java from the official site. Run the .exe to install Java on your machine. Once you installed Java on your machine, you will need to set environment variables to point to correct installation directories −Setting Up the Path for Windows:Assuming you have installed Java in ... Read More

Adding items to table using function in SAP

mkotla

mkotla

Updated on 14-Feb-2020 07:56:32

100 Views

Try replacing below statement with other mentioned −IRfcStructure articol = repo.GetStructureMetadata("Z_ITEMS") as IRfcStructure;You need to replace this by −

Entering a condition to perform SELECT in an existing report in SAP system

mkotla

mkotla

Updated on 14-Feb-2020 07:55:03

62 Views

You have made one of the most common mistakes. In ABAP almost at all the places be careful with SPACE. You need to have a space in method calls so just have a space before and after the brackets as below −SELECT SINGLE * FROM EKPO WHERE EBELN = GT_MSEG-EBELN ... Read More

Benefits of Transaction SE83- SAP reuse library

mkotla

mkotla

Updated on 13-Feb-2020 12:46:56

250 Views

Reuse library is basically a repository for various function and classes that can be used. One of the main benefits is that it has a number of source code examples for these functions present. These examples are quite useful as these could be used as a base code and you ... Read More

Fetch unique records from table in SAP ABAP

mkotla

mkotla

Updated on 13-Feb-2020 12:28:07

825 Views

As you said you are working in ABAP and SQL, so I would expect that you would be using OpenSQL for your SQL activities.You can get the unique records just by using a DISTINCT operator.SELECT DISTINCT Name from where

Previous 1 ... 4 5 6 7 8 ... 10 Next
Advertisements