Found 1039 Articles for SAP

Connection to SAP HANA and exposing data in Design Studio

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

219 Views

There are different scenarios you can use to connect Design Studio to HANA database. It primarily depends on Design Studio installation. If you are using Design Studio locally on the system, you can connect to HANA database using an ODBC connection. When Design Studio is available via BI platform, you need to create an ODBC connection in CMC and that can be used to connect to HANA.To use ODBC connection in Design Studio, you have to create a User/System DSN.If you are using the 64-bit version of Design Studio, navigate to the following folder on your local system: C:\Windows\System32. Open ... Read More

Reading an image using SAP OData v2 in UI5 application

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

530 Views

You have to use below code:img.setSrc("/path/to/my/service/UserPhotoSet('someone@gmail.com')/$value");Here you need to replace part with original path.

Everything is stored in database in SAP system

Ali
Ali
Updated on 15-Jun-2020 06:51:36

1K+ Views

Note that it is easy to store data in form of SAP database tables as compared to files. You can also access files in SAP system but they are available on file system of SAP Application server and not easy to use with.With use of ABAP, you can easily raise queries against database tables and it is safe to run queries to get data. SAP has various tools that allow you to work with table entries and also to manage entire landscape easily.What databases are supported by SAP?PartnerVendorMicrosoft SQL Serverwww.microsoft.comMySQL MaxDBwww.mysql.comIBM DB2 (various versions)www.ibm.comOraclewww.oracle.comAlso SAP has its own in-memory computing ... Read More

Error while calling Web Service using SRT_UTIL Transaction

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

489 Views

This error can come due to multiple reasons. One of possible cause could be that your structure name is 30 characters and it is translated to 26 chars in WSDL.I would suggest changing structure name to 10 characters and it may resolve your issue. Below shows Web Service Utilities:

Copying ALV layout from one client to another in SAP if they are not user specific

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

761 Views

You can transport your ALV layouts to other system if they are not user specific. This can be performed in Layout Administration by raising a customizing request.Navigate to this path for Layout Administration:Main Menu -> Settings -> Layout -> Administration

Retrieving Idoc XML data from SAP system over HTTPS

Ali
Ali
Updated on 04-Mar-2024 13:25:54

586 Views

You can read HTTP using file_get_contents("php://input")Try using this link-https://www.php.net/manual/en/reserved.variables.php

Not able to access SOAP Manager in SAP server

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

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

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

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

577 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

Apply sorting on Date in SAP BO Webi report

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

704 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

Controlling close events in SAP Business One Screen Painter

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

284 Views

You can make use of SP_TransactionNotification, which is one of the most common way of receiving notification of data-driven events. With the use of SP_TransactionNotification, you can edit error code returned by Transaction notification, and also prevent transaction to committed.This shows how to prevent a purchase order from adding when the base document is not provided. You can make use of SBO_SP_TransactionNotification for Screen Painter forms in SBO to avoid null values.

Advertisements