Sharon Christine has Published 433 Articles

Importing an object from ECM application in SAP Business Workplace

Sharon Christine

Sharon Christine

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

111 Views

Correct, importing to the business workplace and using object importer is same.

What is the super() construct of a constructor in Java?

Sharon Christine

Sharon Christine

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

366 Views

The super keyword is similar to this keyword. Following are the scenarios where a super keyword is used. It is used to differentiate the members of superclass from the members of the subclass if they have same names. It is used to invoke the superclass constructor from the subclass. ... Read More

When should I use the keyword ‘this’ in a Java class?

Sharon Christine

Sharon Christine

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

174 Views

The this is a keyword in Java which is used as a reference to the object of the current class, within an instance method or a constructor. Using this you can refer the members of a class such as constructors, variables, and methods. Example Live Demo public ... Read More

What is the difference between compositions and aggregations in Java?

Sharon Christine

Sharon Christine

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

153 Views

In Aggregation relationship among classes by which a class (object) can be made up of any combination of objects of other classes. It allows objects to be placed directly within the body of other classes.A composition is also a type of aggregation where the relationship is restrictive i.e. If two ... Read More

What is a method in Java that ends in a semicolon and has no method body?

Sharon Christine

Sharon Christine

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

603 Views

An abstract method is the one which has no definition and declared abstract. In short, an abstract method contains only method signature without body. To use this method, you need to inherit this method by extending the class and provide the method definition. Example public abstract class Employee{ ... Read More

What is Callable interface in Java?

Sharon Christine

Sharon Christine

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

585 Views

The Callable interface is found in the package java.util.concurrent. The Callable object can return the computed result done by a thread in contrast to a runnable interface which can only run the thread. The Callable object returns a Future object which provides methods to monitor the progress of a task ... Read More

Displaying popup in SAP STMS

Sharon Christine

Sharon Christine

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

116 Views

First of all use CALL SCREEN ... STARTING AT ..., then in PBO processing, use Suppress Dialog to bypass the screen (dynpro) processor and an empty screen is not displayed, then use LEAVE TO LIST-PROCESSING in PAI event. Now you can follow it with your WRITE statements to display it ... Read More

Keyboard shortcut for double clicking a selected object in SAP

Sharon Christine

Sharon Christine

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

488 Views

You can use F2 for this.

Use workbench along with SAP Business One

Sharon Christine

Sharon Christine

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

293 Views

The answer is No. Workbench is not present in business one. The reason being the core of business one is not based on ABAP or NetWeaver.Business one relies heavily on SQL. It has a SQL database and you can write queries for fetching data. These data are then used for ... Read More

Pseudo code to hide warning in SAP ABAP

Sharon Christine

Sharon Christine

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

357 Views

This cannot be overridden or suppressed by a pseudo code of pragma. If you run your query with extended syntax check, you will find the message as well that this cannot be suppressed.  The extended check can be done by going to PROGRAM => Check => Extended Syntax Check

Advertisements