Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

How to link jQuery in HTML page?

I have started learning web development, with HTML, jQuery and JavaScript. I want to include jQuery in one of my examples and link it to HTML page. How can I link jQuery if I am having a separ.....
Alex Onsman
Answered on 5th Dec, 2017

To link a separate js file in HTML is quite an easy task. We will see here how to link jQuery in an HTML web page. The linking code comes inside the <head> tag.Here’s our HTML file, which links to a jQuery file new.js, <!DOCTYPE html> <html>    <head>   ... Read More

An Agentry application by SAP crashes for older iPads

I have an agentry application provided by SAP and rendering in metadata programming language. I can make small changes to app using SAP deliver framework however I want to add a database so use.....
SAP Expert
Answered on 5th Dec, 2017

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]? Read More

Getting error message while using SAP Scripting Tool

I am using VBA functionality in SAP Script tool and getting an error message: “Invalid use of property” at Set Application = SapGuiAuto.GetScriptingEngine. Below is my code: If Not.....
SAP Expert
Answered on 5th Dec, 2017

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

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

I am using below to create an initial value like: DATA(l_value) = VALUE char4( ). However I try to create a concrete using VALUE like: DATA(l_value) = VALUE char4( 'AAA' ). I get below error m.....
SAP Expert
Answered on 5th Dec, 2017

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' ).

Connecting PHP directly to SAP Business One

I want to connect PHP to SAP Business One 9.1 so that it can read and write data. I know how to connect PHP with SAP B1 database but it is not recommended i.e. why I want to connect PHP to SAP .....
SAP Expert
Answered on 5th Dec, 2017

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 ... Read More

SAP BI retrieving PDF from Web Service

In SAP BI, I am using BI 3.x API to generate reports. We are in process of migrating to 4.x and I thought it would be good if I use open doc URL instead of using API. https://server:port/BOE/Op.....
SAP Expert
Answered on 5th Dec, 2017

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 ... Read More

Handling Exception using JCo 3.0 on JcoContext.end()

I have a JAVA application that interacts with SAP system using JCo 3.0. Problem occurs with JCoContext.end() as It could potentially raise a JCoException. Also I have noticed if JCoContext.end.....
SAP Expert
Answered on 5th Dec, 2017

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

Using MIN IF function in SAP Dashboard

I am using MIN IF function as below to find minimum value using Array.  When I try to use this in SAP dashboard, this function doesn’t work. How can I get minimum value for each?
SAP Expert
Answered on 5th Dec, 2017

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

How to place UI5 code in SAP NetWeaver Server?

Is it possible to save UI5 code in SAP NetWeaver server? I can’t keep a separate code repository without using SAP.
SAP Expert
Answered on 5th Dec, 2017

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

Checking if a button is enabled or disabled in SAP Application

In a SAP application, I want to check if a button is enabled or disabled. I am not aware about use of methods like getEnabled(), isEnabled() or getDisabled() or isDisabled(). Anyone can help ho.....
SAP Expert
Answered on 5th Dec, 2017

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

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

I have to replicate data from source HANA db to target HANA database in real time- trigger based replication. I got to know about SAP LT Replication however I want a custom implementation to p.....
SAP Expert
Answered on 5th Dec, 2017

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 ... Read More

How can I open a VDS file with three js?

How can I open a VDS file with three js. I have to develop an application that has an option to select different nodes. I have to use AUTOCAD and SAP. Anyone can help? We are planning to use A.....
SAP Expert
Answered on 5th Dec, 2017

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

Data Replication from SAP PO to SQL Server

I want data replication from SAP PO to SQL Server. Data replication will be executed using SQL Server Agent. What is best way to replicate data using SAP PO?
SAP Expert
Answered on 5th Dec, 2017

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 ... Read More

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

I am connecting to HANA database from a JAVA application using JDBC driver. I am getting an error: "invalid schema name" even if schema is present in the database. SQL query is executing fine .....
SAP Expert
Answered on 5th Dec, 2017

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 ... Read More

Adding a BCC recipient in Infoview publication

I am creating a publication in InfoView to send a Business Objects reports in Webi format to recipient list. I can pass a “To and “CC” field but not able to pass BCC field as.....
SAP Expert
Answered on 5th Dec, 2017

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 BCC Symptom − 'BCC" option not available while scheduling reports to email. ... Read More

Advertisements
Loading...
Unanswered Questions View All

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.