What is Runnable interface in Java?

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

433 Views

If your class is intended to be executed as a thread, then you can achieve this by implementing a Runnable interface. This belongs to the java.lang package.

Generate excel from a report in SAP system

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

232 Views

I am not sure what you are asking, reason being if you are saying that the report is running in the background, then how it will come to know where the file needs to be saved locally (where locally it should be saved).However assuming few things, what can you try out is you can generate the file (translating data into excel is not a big task and get snippets online easily) on AS.Once generated, you can move this file from report running location to location of your choice using any SHELL command. It’s not suggested that you make a connection ... Read More

Apply sorting on Date in SAP BO Webi report

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

494 Views

As you had already mentioned that you are using FormatDate function to format the date, So the sorting is applied to the output of the function which is STRING. So it applies sorting on the string and sorts only the initial alphabets which are a day in your case.You can get your task done in few ways:Easiest option will add another column with the same field and then apply sorting on this and then hide the column. This will sort your data on the date field.Other but better option will be using a custom date format to format the date ... Read More

Uploading an excel file in Web Dynpro for ABAP

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

296 Views

Note that an Excel stores data in number format and to display in date format, you have to show it format as a date. You can also try using this formula: TEXT(31421,"YYYY-mm-dd") and the date should display correctly.

Checking technical information associated with screen field in SAP without any documentation

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

379 Views

When you have report selection screen option, you can use Ctrl+S to enter the variant screen. Press Technical Name button to display technical name information for the respective field.In case you want more information related to parameter field, you can write an ABAP code to see the definition.Mostly, F1 key is used to get all the details about the technical details of a particular field as shown in below:Also if you want to see Technical name of objects in SAP ECC Easy access for all the modules, you can navigate to Extras -> Settings

What is Callable interface in Java?

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

576 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.

Creating a Dashboard from Webi Report

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

477 Views

Yes, you can use Webi report in Dashboard using Web Service URL. You can use that URL in dashboard. To get URL, you need to select table in Webi report -> Right click Publish.

Not able to access SOAP Manager in SAP server

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

82 Views

SAP server will not respond to request having IP but not the domain name. So you need to just add the domain to your host file. You can find the host files in host folder within drivers/etc folder. That should resolve your issue.

Integrating SAP with PHP

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

1K+ Views

Out of several ways to connect SAP to PHP - Web services and RFC (Remote Function Calls) are more used by developers. SAPRFC is an extension module for PHP 4 and PHP 5. With SAPRFC it is possible to call ABAP function modules in SAP R/3 from PHP scripts. You can use PHP language to create web applications or interface programs with connectivity to the SAP R/3. You can also write RFC server program in PHP and call PHP functions from SAP R/3.

Not able to delete Server Intelligence Agent SIA in CMS

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

339 Views

I think you can delete it from Windows Services. You can use below steps to delete this service. Open Central Configuration manager (CCM) and stop the Server Intelligence Agent (SIA) to be deleted. Next is to go to Windows Start > Run and type in "services. MSc" without the quotes and press Enter key. In the Services applet, find the SIA service to be deleted say Server Intelligent Agent (BI40) as shown in first snapshot. Go to Properties of Server Intelligent Agent (BI40) and navigate to “General” tab -> Copy the Service name BOEXI40XXXXX to the clipboard. ... Read More

Advertisements