Found 1039 Articles for SAP

Checking SAP Business One installation programmatically

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

207 Views

You can check SAP Business One installation using below code: Public Function isSapBusinesOneClientInstalled() As Boolean Try SAP Business One Application Dim type As Type = Type.GetTypeFromCLSID(New Guid("632F4591-AA62-4219-8FB6-22BCF5F60088")) Dim obj As Object = Activator.CreateInstance(type) Marshal.ReleaseComObject(obj) Return True Catch ex As COMException Return False End Try End Function

Not able to delete Server Intelligence Agent SIA in CMS

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

477 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

Creating a Dashboard from Webi Report

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

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

Uploading an excel file in Web Dynpro for ABAP

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

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

Adding a BCC recipient in Infoview publication

SAP Expert
Updated on 12-Jun-2020 06:11:42

161 Views

I am not sure if you are running latest BO server or running older version of BOXI service. BCC option is available in later version of Business Objects.Refer SAP Note: 1369269 - Unable to Schedule reports through BCCSymptom − 'BCC" option not available while scheduling reports to email.     Reproducing the Issue − Schedule a report with destination as email.    Environment − Business Objects Enterprise XI 3.1    Resolution − The ‘BCC’ option is currently not supported by the product.    As per SAP Note: 1626654 - How do you specify a BCC entry when scheduling documents to email?    Reproducing the Issue    Log on to ... Read More

Error: "invalid schema name" even if schema is present in the database in SAP HANA

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

1K+ Views

I think you need to mention database name in JDBC URL while connecting to the database. Try following − String server = "servername.domain.com"; String instance = "03"; String database = "TEST"; String dbUsername = "USERNAME"; String dbPassword = "xxxxxx"; String jdbcUrl = "jdbc:sap://" + server + ":3" + instance + "15/?currentschema=" + database + "&user=" + dbUsername + "&password=" + dbPassword; java.sql.Connection connection = java.sql.DriverManager.getConnection(jdbcUrl);

Data Replication from SAP PO to SQL Server

SAP Expert
Updated on 12-Feb-2020 10:24:40

569 Views

Note that SAP PO is not a data source but middleware so it doesn’t contain any data. You can extract data from SQL Server using JDBC.SAP PI/XI enables you to set up cross system communication and integration and allows you to connect SAP and non-SAP systems based on different programming language like Java and SAP ABAP. It provides an open source environment that is necessary in complex system landscape for the integration of systems and for communication.SAP Process Integration is a middleware to allow seamless integration between SAP and non-SAP application in a company or with systems outside the company.ExampleAn ... Read More

How can I open a VDS file with three js?

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

225 Views

Note that three.js is library and it can’t be used to open a file format. This file can’t be opened using Autocad.To know morw about three.js library, you can use this link:Getting Started with three js

Replicating data from HANA db to other HANA system in real time

SAP Expert
Updated on 12-Jun-2020 07:08:04

671 Views

You can also try using SAP Smart data access feature to transfer data in real time. In SAP HANA system, you can use Smart Data Access (SDA) option to replicate data to HANA database from other data sources where you create virtual tables, which are linked to tables in the remote system. You can perform read/write operations on these virtual tables - SELECT, Insert, and Update.Different types of remote systems can be used under Smart Data Access −SAP HANASybaseTeradataApache HadoopOracleTo know more about SAP HANA Smart data access replication, you can refer below SAP documentation:SAP Smart Data Access SAPSAPdocumentationRead More

Checking if a button is enabled or disabled in SAP Application

SAP Expert
Updated on 12-Jun-2020 07:08:35

284 Views

All these methods come under Changeable Property (SapComponent). Refer this link for more details:Changeable Property

Advertisements