Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
SAP Articles
Page 80 of 91
Error while calling Web Service using SRT_UTIL Transaction
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:
Read MoreReading an image using SAP OData v2 in UI5 application
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.
Read MoreUnloading tables in SAP HANA database
HANA consumes lot of space in system tables/views, statistics, caches. When you unload tables, these memory areas will not be released.Check SAP Notes https://launchpad.support.sap.com/#/notes/1969700
Read MoreDownloading file using SAP .NET Connector
It is not possible to retrieve files using BAPI from SAP system. There should be a way to copy the file to a shared location and you can read the file from there using .NET.
Read MoreError Message: Unsupported xstream found: ("HTTP Code 200:OK")" while consuming SAP Web Service
I think this is related to incorrect HTTP destination configuration. You can check Web Service using T-Code: SOAMANAGER to verify if HTTP destination is configured properly.
Read MoreArchitecture for Deploying SAP HR module
It would be good to separate the HR from other modules as not only the load and usage is high on HRmodule but the business and security requirements differ for HR module as well.In such scenarios, other module can be customized in terms of security and configured as per theirneeds. Also separating the Central instance and database to different machine is a very commonapproach but can be avoided too by configuring the Central instance to adjust the load.
Read MoreCondition Variables within Sub-Query in SAP
One line answer - Sub-Queries are not allowed. But if you need to handle your scenario, then you can do the following: Encapsulate your entire query into a stored procedure and then use the stored procedure. Create a view. The view is created to handle either your main query or sub-query. Create a table level variable and store the end results of view in it and then go ahead and fetch the value of table variable in the main query.
Read MoreCan we get same features in SAP ABAP as they are in VS?
If you want to show all the occurrences of a variable in an ABAP program, you can use a shortcut- ctrl+shift+F3 or you can also make use of Yellow icon at the top.
Read MoreIs it possible to exclude subclasses from the results displayed in backoffice in SAP?
You can uncheck the option - Include subtypes in a search bar and this will only give you the results of the parent type.
Read MoreI want to limit SAP user access to Transaction Code- SOST.
You can make use of T-code: SU24 and check objects related to SOST T-code. These are authorization objects for this Transaction - S_OC_DOC; S_OC_ROLE; S_OC_SEND; S_OC_SOSG; S_OC_TCD
Read More