Ayyan has Published 60 Articles

How to create a link to send email with a subject in HTML?

Ayyan

Ayyan

Updated on 09-Jan-2020 06:49:01

To create a link to send email, use tag, with href attribute. The mail to link is added inside the tag. To add a subject, you need to add ? and then include the subject. All this comes inside the tag.Just keep in mind to add the ... Read More

Explanation about SAP ABAP Stack and JAVA Stack and role of Java Stack during ECC upgrade

Ayyan

Ayyan

Updated on 06-Dec-2019 07:02:20

Note that all SAP ERP all modules run on SAP ABAP stack. SAP NetWeaver Application Server (ABAP Stack) is part of the SAP NetWeaver portfolio and represents the ABAP-based technical basis for many SAP products. It delivers technical frameworks, tools, repositories, and much more.If you are planning to use SAP ... Read More

Limit number of rows in Webi report in SAP BusinessObjects

Ayyan

Ayyan

Updated on 05-Dec-2019 10:37:03

If you using Universe as the source, In UDT this can be defined at Universe level. You can limit the size of result set in Universe Parameters -> ControlsIn Query panel, you have an option to set the limit on rows retrieved for each individual query. This setting is called ... Read More

What is Java Method Area?

Ayyan

Ayyan

Updated on 30-Jul-2019 22:30:21

JVM has a method area common across all the threads. It contains per-class elements like constant pool, fields, method local data, method code, constructor codes etc. which are used in class and initialization of objects/interfaces.This method area gets created during JVM start-up. It is generally part of Heap area. It ... Read More

Java Program to check whether one String is a rotation of another.

Ayyan

Ayyan

Updated on 30-Jul-2019 22:30:21

To find weather a string is rotation of another, concat the first string to itself twice and find weatherExample Live Demopublic class Sample {    public static void main(String args[]){       String str1 = "gala";       String str2 = "alag";       String s3 = str1+str1; ... Read More

What does intern() method in java?

Ayyan

Ayyan

Updated on 30-Jul-2019 22:30:21

The intern() method of the String method returns a canonical representation for the string object. A pool of strings, initially empty, is maintained privately by the class String.For any two strings s and t, s.intern() == t.intern() is true if and only if s.equals(t) is true.All literal strings and string-valued constant expressions ... Read More

Java StringBuilder class.

Ayyan

Ayyan

Updated on 30-Jul-2019 22:30:21

The StringBuilder class was introduced as of Java 5 and the main difference between the StringBuffer and StringBuilder is that StringBuilder’s methods are not thread safe (not synchronized).It is recommended to use StringBuilder whenever possible because it is faster than StringBuffer. However, if the thread safety is necessary, the best ... Read More

Java Unary Operator Examples

Ayyan

Ayyan

Updated on 30-Jul-2019 22:30:21

The unary operator works on a single operand. Following are the examples of unary operators supported in java. Assume A = 60 and B = 20.OperatorDescriptionExample~ (bitwise compliment)Binary One's Complement Operator is unary and has the effect of 'flipping' bits.(~A ) will give -61 which is 1100 0011 in 2's ... Read More

How to set JAVA_HOME for Java in Linux?

Ayyan

Ayyan

Updated on 30-Jul-2019 22:30:21

Assuming you have installed Java in \usr\local\java\jdk directory −if you use bash as your shell, then you would add the following line to the end of your '.bashrc: export JAVA_HOME=\usr\local\java\jdk'

How to configuring Java Environment on Linux?

Ayyan

Ayyan

Updated on 30-Jul-2019 22:30:21

Assuming you have installed Java in \usr\local\java\jdk directory −if you use bash as your shell, then you would add the following line to the end of your '.bashrc: export JAVA_HOME=\usr\local\java\jdk'Assuming you have stored your Java programs in \usr\local\myprograms\ directory −if you use bash as your shell, then you would add the following line ... Read More

Advertisements