Sharon Christine

Sharon Christine

337 Articles Published

Articles by Sharon Christine

Page 34 of 34

Importing an object from ECM application in SAP Business Workplace

Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 187 Views

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

Read More

What is the difference between compositions and aggregations in Java?

Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 307 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 objects are in composition, the composed object will not exist without the other.

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 888 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{ private String name; private String address; private int number; public abstract double computePay(); }

Read More

What is Callable interface in Java?

Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 1K+ 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 being executed by a thread. The future object can be used to check the status of a Callable and then retrieve the result from the Callable once the thread is done. It also provides timeout functionality.

Read More

Displaying popup in SAP STMS

SAP
Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 253 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 as a popup.

Read More

Keyboard shortcut for double clicking a selected object in SAP

SAP
Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 755 Views

You can use F2 for this.

Read More

What is the open/standardized file format for exporting invoices in SAP ERP System?

Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 216 Views

SAP uses IDoc known as an intermediate document to exchange data between logical systems. If your system involves non-SAP systems as well, then IDoc can be used as a standard interface for data exchange between SAP and non-SAP systems.IDoc is a container for information exchange. IDoc is made by message type and method of Objects when information is to be exchanged. The message type is the configuration in which the information for a particular business process is transmitted electronically. An IDoc consists of several data segments, headers and status records. Also, it can be extended by extending IDoc types to add ...

Read More
Showing 331–337 of 337 articles
« Prev 1 30 31 32 33 34 Next »
Advertisements