Monica Mona has Published 85 Articles

Create an INCLUDE in SAP system

Monica Mona

Monica Mona

Updated on 10-Dec-2019 10:30:26

83 Views

I think the question is very basic and if you would have explored a little bit, you would have found out the way.Just go and open transaction SE38, specify the include name and press create.Otherwise, you can open transaction SE80, select a packet and then the object name. That’s it.Read More

Are MySQL database and table names case-sensitive?

Monica Mona

Monica Mona

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

738 Views

Actually, the case sensitivity of database and table name depends a lot on the case sensitivity of the underlying operating system. Hence, we can say that such names are not case sensitive in Windows but are case sensitive in most varieties of Unix.

What does the bitwise left shift operator do in Java?

Monica Mona

Monica Mona

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

151 Views

The left operand value is moved left by the number of bits specified by the right operand.Example: A

According to Java Operator precedence, which operator has the highest precedence?

Monica Mona

Monica Mona

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

480 Views

Operator precedence determines the grouping of terms in an expression. This affects how an expression is evaluated. Certain operators have higher precedence than others; for example, the multiplication operator has higher precedence than the addition operator.Here, operators with the highest precedence appear at the top of the table, those with ... Read More

Does a constructor have a return type in Java?

Monica Mona

Monica Mona

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

4K+ Views

No, constructor does not have any return type in Java. Constructor looks like method but it is not. It does not have a return type and its name is same as the class name. Mostly it is used to instantiate the instance variables of a class. If the programmer doesn’t ... Read More

Can constructors be inherited in Java?

Monica Mona

Monica Mona

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

3K+ Views

No, constructors cannot be inherited in Java. In inheritance sub class inherits the members of a super class except constructors. In other words, constructors cannot be inherited in Java therefore, there is no need to write final before constructors. Example public interface InterfaceTest { public InterfaceTest(){ ... Read More

What is the difference between up-casting and down-casting in Java?

Monica Mona

Monica Mona

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

410 Views

Converting a subclass type to a superclass type is known as up-casting.Converting a superclass type to a subclass type is known as down-casting.

Do I need to import the Java.lang package anytime during running a program?

Monica Mona

Monica Mona

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

2K+ Views

No, java.lang package is a default package in Java therefore, there is no need to import it explicitly. i.e. without importing you can access the classes of this package. If you observe the following example here we haven’t imported the lang package explicitly but, still we are able to calculate ... Read More

Prevent XML re-formatting in WAS response in SAP Windows Activation Service

Monica Mona

Monica Mona

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

64 Views

No, there is no other possibility of doing it until you code everything on your own. It seems to be an issue during de-serialization.Most probably it is relevant to the parameters that you are sending in the response.You can try and enable tracing to detect further and check out where ... Read More

How can I check the list of existing authority objects in SAP system?

Monica Mona

Monica Mona

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

347 Views

To maintain authorization objects, you can use T-code: SU21 in SAP ECC system.You can all authorization objects including S_CARRID is located inside the different class like - BC_C object class.

Advertisements