Found 1039 Articles for SAP

Joining cobk and coep table using Inner join taking too long

SAP Expert
Updated on 12-Jun-2020 07:09:39

436 Views

You can make use of T-Code: SE11 to check what indexes are available for table COEPFor one COEP record that you have the (now) 5 criteria for, navigate to T-Code: SE16 pass the selections and run to check how long it takes.To improve performance, you can also create an additional index in table COEP. You can also run a SQL trace in ST05 to see what indexes are used and if indexes are not improving performance.

How to place UI5 code in SAP NetWeaver Server?

SAP Expert
Updated on 12-Jun-2020 07:10:41

196 Views

It is possible to deploy code from Eclipse /Web IDE to SAP backend server using ABAP developer tools. This will result a BSP page and you can check that in T-code: SE80.SAP Development Tools

Using MIN IF function in SAP Dashboard

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

101 Views

You can use SUM if function as status is always 1 or 0.=IF(SUMIF(C:C,Q4,G:G)>=6,1,0)

Handling Exception using JCo 3.0 on JcoContext.end()

SAP Expert
Updated on 12-Jun-2020 07:11:24

160 Views

As per my understanding, JCoContext.end() method will raise an exception if passed parameter is NULL or you have a bug in JCo. You need to ensure that destination is not null.This method should only be called, if destination is not null i.e.SAP Thread

SAP BI retrieving PDF from Web Service

SAP Expert
Updated on 04-Dec-2019 06:47:15

345 Views

Try using REST SDK to retrieve document and convert it in to PDF. Follow below steps:Logon: POST /biprws/logon/longGet the doc's prompts (if any) GET /biprws/raylight/v1/documents/5690743/parametersPass the correct values for the prompts (if any) and refresh the document: PUT /biprws/raylight/v1/documents/5690743/parametersExport as PDF GET /biprws/raylight/v1/documents/5690743In end you need to pass Accept: application/pdf in HTTP header to get PDF version.

Connecting PHP directly to SAP Business One

SAP Expert
Updated on 04-Dec-2019 06:44:38

778 Views

I would suggest you using DI Server instead of DI API as DI API is more recommended for .NET platform however you are using PHP so it may run into compatibility issue.Also 0 means you are connected successfully.Note that DI Server (Data Interface Server) is a Component Object Model service running on a server which allow multiple clients to read and write SAP B1 database using SOAP messages.SAP B1 DI Server allows you to develop SOAP based solutions that can be used to read, write, update, and remove data objects.Below are the key differences about use of DI Server and ... Read More

SAP ABAP: Using Elementary data type and reference type with keyword VALUE

SAP Expert
Updated on 12-Feb-2020 10:28:09

383 Views

It is not possible. Check this link for details:ABAP DocumentationThe correct way for using “VALUE” with elementary data type is by assigning initial value and you should use NEW operator to assign initial value.DATA(l_value) = NEW char4( 'AAA' ).

Getting error message while using SAP Scripting Tool

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

290 Views

Try renaming variable “Application” as it is used as a variable however it is also predefined read only object in Excel.

An Agentry application by SAP crashes for older iPads

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

136 Views

You can try modifying your code where method “didFinishLaunchingWithOptions:” starts everything in background.application(_:didFinishLaunchingWithOptions:)This method is used to tell the delegate that the launch process is almost done and the app is almost ready to run.Method declaration:optional func application(_ application: UIApplication,didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]?

Advertisements