Found 1039 Articles for SAP

Integrating JSession in a Web-Service in SAP

karthikeya Boyini
Updated on 10-Dec-2019 10:20:40

150 Views

You need to configure the soap manager transaction.First, specify the proxy that you have created in the configurationSpecify the portSet the access path from transport settings. The SAP is making use of ‘cl_http_client’ which has a method ‘create_by_destination’ to make an HTTP call. You can extend that to induce your logic there.

LDAP_SEARCH function not returning photos stored in Active Directory with LDAP integration in SAP BSP application

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

184 Views

I would recommend to use LDAP_READ instead of LDAP_SEARCH and you will see thumbnail photo should be available in a convenient form to be from “XSTRING”.LDAP_SEARCH is mentioned as obsolete in SAP documentation. To see full documentation of this FM, you can use T-code SE37 to open Function Builder. Navigate to Goto ->Documentation -> Function Module Documentation.Function Module: LDAP_READ  Function Group: FSLDAP_EXTProgram Name: SAPLFSLDAP_EXTINCLUDE Name: LFSLDAP_EXTU01

Callback is not working on remote but working locally in SAP CRM

Samual Sam
Updated on 30-Jul-2019 22:30:20

262 Views

The issue lies in the class you are using for making a method call. This class is basically making RFC callback with the help of SAP GUI. SO, when you are using the function builder, it works well because it has an SAP GUI connection present.But when you are using an external system, the GUI is missing and it doesn’t works. What you can try is to use some other method which does not have an RFC callback and thus will not have any problem. Try to use ‘create_with_table’ in place of your used method.

BAPI to upload documents to SAP system is throwing an exception

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

463 Views

As mentioned in exception message, it seems that the function module tries to access GUI related function and it doesn’t support BAPIs. So it seems to be a custom RFC module or there is some bug in SAP coding and you should open a support ticket with SAP.Also, you shouldn’t use GUI services in non-GUI operations, and it is not suggested to use class cl_gui_frontend_services and functions GUI_* and you should use OPEN_DATASET FOR INPUT/OUTPUT instruction in RFC function.

Recovery database SBO-COMMON in SAP Business One

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

1K+ Views

In SAP Business One, SBO-Common is only used in functionality handling or following your company database. Normal day to day business functions happens entirely in the company database. You can create a new set of sample database SBO-COMMON by reinstalling SAP B1 server. SBO-Common database holds this information − DB List (DB's which having SAP DB Structures) DB Details like Version, Upgrade Details License Details For more details about SBO-COMMON database, you can refer below link − https://archive.sap.com/discussions/thread/1447063

Adding an image to SAP Adobe form from MIME repository

Sharon Christine
Updated on 14-Feb-2020 08:23:22

2K+ Views

Note that Image must be uploaded from system to MIME beforehand.Run Transaction SE78 → Upload (F5).You have to declare 2 variables in the interface - global data with types string and xstring, You need to change the data declaration as below −data: gv_bmp_watermark type xstring. constants: gc_url_watermark type string value '/BC/PUBLIC/MyImages/watermark100.bmp'.You need to add the following under code initialization.//* Read Images data: lr_api type ref to if_mr_api. lr_api = cl_mime_repository_api=>get_api( ). lr_api->get( exporting i_url = gc_url_watermark              importing e_content = gv_bmp_watermark).You also need to change context node a bit as mentioned below −Name: WATERMARK   ... Read More

Upgraded to SAP.net connector 3.0 is not working in Visual Studio 2008 and 2010

Samual Sam
Updated on 16-Mar-2020 07:03:14

206 Views

Note that SAP.net connector doesn’t work similar to 2.0 connector. There are lot many changes- good and bad provisioned in .net 3.0 version.This is SAP documentation link about general capabilities of SAP.net connector:https://help.sap.com/saphelp_crm700_ehp02/helpdata/EN/4a/097b0543f4088ce 10000000a421937/frameset.htmSAP .NET Connector 3.0 is the current version of SAP's development environment for communication between the Microsoft .NET platform and SAP systems. With the use of SAP.net connector, you can connect SAP system to all common programming languages like: Visual Basic. NET, C#, or Managed C++ and many more. Following are the advantage of upgrading to SAP.net 3.0:This version is no longer bound to a special Visual Studio ... Read More

Invoke a Web service from AJAX in SAP application

karthikeya Boyini
Updated on 30-Jul-2019 22:30:20

278 Views

It does not change much in SAP. How you have been doing in other projects like .NET or other, you need to incorporate the same.You need to send a POST or GET request to the intended service with the help of URL.In order to get the URL, you need to seek help from the ABAP person who would be exposing the service to fetch the WSDL file for all the details about the service.Once you have the WSDL, you can frame the request object with all required input parameters to make an AJAX call.

Handline #Multivalue Error in SAP BO Webi report

varun
Updated on 13-Jun-2020 14:35:13

2K+ Views

This error occurs when your formula returns more than one value and Webi report doesn’t know how to aggregate those values. This error occurs in below ways:#multivalue in aggregation #multivalue in breaks header or footer #multivalue in section level.Example:Let us say an account number which is associated to more than one order numbers. Your solution will not work and hence you are seeing #MULTIVALUE “Multiple Order Numbers for the same account number”.You can handle this by using an aggregated function as per your requirement like Max(), sum() or avg(). You can also check more details using this link:https://archive.sap.com/discussions/thread/1919325Read More

Identify required fields for an MB01 transaction in SAP

karthikeya Boyini
Updated on 30-Jul-2019 22:30:20

297 Views

As you have mentioned that you have access to SAP system. The solution lies within. Specify the transaction SE37 and mention the BAPI call that you have identified. It will navigate you to proper documentation of the call.But in order for that documentation to be of any help, you will still require movement type for your system. You can check it out with your infrastructure team to help you identify the movement type. Once you know the movement type, you will require other details like material number and others for more details. But that can be determined with minimal efforts. ... Read More

Advertisements