Articles on Trending Technologies

Technical articles with clear explanations and examples

Using HP UFT GetCellData function on SAP Web Dynpro crash Internet Explorer

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 715 Views

The GetCellData function in HP UFT is used to retrieve data from specific cells in SAP Web Dynpro tables. When working with Internet Explorer, this function may sometimes cause crashes due to memory handling issues or browser compatibility problems. Understanding GetCellData Function Note that column number is used to locate table cell data and column name is unique identifier. The GetCellData method takes two arguments as long integers representing row and column numbers to locate cell data. The syntax for GetCellData is − object.GetCellData(row, column) Where row and column are zero-based or one-based ...

Read More

How to add a title in anchor tag using jQuery?

Ricky Barnes
Ricky Barnes
Updated on 13-Mar-2026 3K+ Views

To add a title in anchor tag in jQuery, use the prop() method. The prop() method is used to set properties and values of the selected elements. The title attribute provides additional information about an element and is typically displayed as a tooltip when users hover over the anchor tag. This is particularly useful for improving accessibility and user experience. You can try to run the following code to learn how to add a title in anchor tag using jQuery − ...

Read More

Sending an itab to SAP Spool using ABAP method

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 1K+ Views

The CL_RSPO_SPOOL_HANDLE class provides an object-oriented interface to the SAP spool system, allowing you to send internal tables (itab) to spool requests for printing or further processing. This class offers a modern ABAP approach to spool handling with better error handling and functionality compared to traditional function modules. Class Overview Class: CL_RSPO_SPOOL_HANDLE Short Description: Spool Request Opened for Writing This class encapsulates the functionality needed to create, manage, and write data to spool requests in SAP systems. It provides methods to open spool requests, write data, and close them properly. Key Methods The main methods ...

Read More

Error Failed to load resource in SAPUI5 application

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 2K+ Views

The "Failed to load resource" error in SAPUI5 applications typically occurs when the application cannot locate a required file. It is clear from your error message: VisitorData.view.js is not found, so you have to check if this view actually exists and there are no permission issues on this view. Common Causes This error usually happens due to one of the following reasons − The view file does not exist in the specified path Incorrect file path or naming convention Permission issues preventing file access ...

Read More

Using SAP Server for education and training purpose

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 293 Views

Setting up an SAP server for education and training purposes can be achieved effectively by creating a copy of your production system. When you create this copy, you have control over which data components to include − you can select no for users and application data to create a clean training environment. SAP Test Data Migration Server (TDMS) You can use SAP Test Data Migration Server (TDMS) to transfer limited data to your test instance. However, this involves extra cost and is not recommended unless it is really required. ...

Read More

Creating communication between Java application and SAP

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 256 Views

SAP Java Connector (JCo) enables communication between Java applications and SAP systems. There are two main versions of the SAP JCo library that developers can use to establish this connection. SAP JCo Library Versions The com.sap.conn.jco.JCo class can be used as an alternative to the older com.sap.mw.jco package and is available in the sapjco.jar file. Note that the classes in the sapjco.jar file are different from the legacy version, so it's important to understand the distinctions when migrating or starting a new integration project. ...

Read More

Using xsodata service with SAP HANA XS Engine without authentication

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 375 Views

To use an xsodata service with SAP HANA XS Engine without authentication, you need to configure specific access control files. The xsaccess file defines who is authorized to access the content exposed by a SAP HANA XS application package and what content should be displayed based on access permissions. Note that to use the xsaccess file without credentials, you have to create an xssqlcc file (SQL Connection Configuration file) that establishes the database connection parameters for the XS application. Required Files For anonymous ...

Read More

Installing SAP JCo on Glassfish server 4.0

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 311 Views

In SAP, there is a file intro.html that contains detailed instructions on installation of JCo3 on different Operating Systems. This guide focuses on installing SAP JCo on Glassfish server 4.0. Installation Instructions Following are the step-by-step instructions for installing SAP JCo − To install JCo for Windows, unzip the appropriate distribution package into an arbitrary directory {sapjco3-install-path}. Important Note: Do not copy the sapjco3.dll neither into the {windows-dir}\system32 nor into the {windows-dir}\SysWOW64 ...

Read More

Building an XCode application using Maven plugin (SAP)

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 245 Views

Note: Xcode-maven-plugin is not compatible with Maven 3.1 or higher versions. You have to downgrade to Maven 3.0.x to use this plugin effectively for SAP mobile application development. Prerequisites Before building an Xcode application using Maven plugin for SAP, ensure you have the following − Maven 3.0.x installed (not 3.1 or higher) Xcode development environment SAP Mobile Platform SDK Valid Apple Developer account for iOS deployment Maven Configuration ...

Read More

Adding millisecond to date in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 866 Views

To add milliseconds to a date in SAP HANA, you can use the ADD_SECONDS function with fractional values. Since there are 1000 milliseconds in a second, you can pass decimal values to represent milliseconds. Using ADD_SECONDS Function Try using ADD_SECONDS function as below − SELECT ADD_SECONDS(TO_TIMESTAMP('2017-07-15 02:17:15'), 0.1) FROM TEST; This will add 100 milliseconds (0.1 seconds) to the timestamp. The function accepts fractional values where 0.001 equals 1 millisecond. Syntax ADD_SECONDS(t, n) ...

Read More
Showing 24551–24560 of 61,297 articles
Advertisements