Anil SAP Gupta

Anil SAP Gupta

97 Articles Published

Articles by Anil SAP Gupta

97 articles

Accessing SAP Web Dynpro page within an application using NSURL

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

When accessing SAP Web Dynpro pages within an iOS application using NSURL, you need to pass a proper browser identification string. Without this identification, the Web Dynpro application won't recognize the browser and will display an error message. Setting Up NSURL Request The browser identification is typically set through the User-Agent header in your URL request. This tells the SAP Web Dynpro application what type of browser is making the request. Example Here's how to properly configure an NSURL request with browser ...

Read More

Creating Attribute and Analytic view as persistent model in SAP HANA

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

Creating persistent models in SAP HANA allows you to store Attribute views and Analytic views as reusable objects in the repository. This is possible as all views can be created as persistent in SAP HANA. You need to get XMS representation by creating .attributeview, .analyticview, and .calculationview files and then activate them. Understanding Persistent Views Persistent views in SAP HANA are stored as design-time objects that can be version-controlled and deployed across different systems. These views are represented as XML files in the repository and must be activated to ...

Read More

Adding custom fields to items in SAP Transaction ME5xN x=1,2,3..

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

This can be done by following the configuration path in SPRO (SAP Project Reference Object) to customize the screen layout for purchase requisition transactions. Configuration Steps Navigate to the following path to access the screen layout configuration − T-code: SPRO → Materials Management → Purchasing → Purchase Requisition → Define Screen Layout at Document Level This transaction allows you to view and modify the field properties for the ME5xN transaction screens you want to customize. Customizing Field Display Properties When you execute the configuration transaction, you can view the details ...

Read More

Converting the data back to table using SAP FM RFC_READ_TABLE

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

This is very simple and you can write a code as below. This code works when you only have character fields in the table − Example Here's how to use the RFC_READ_TABLE function module to convert data back to a table structure − DATA: lt_options TYPE TABLE OF rfc_db_opt, lt_fields TYPE TABLE OF rfc_db_fld, lt_entries TYPE TABLE OF dpr_pha_type. CALL FUNCTION 'RFC_READ_TABLE' DESTINATION 'Y58CLNT800' EXPORTING ...

Read More

Installing SAPUI5 on local machine using XAMPP

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

SAPUI5 can be installed on your local machine using XAMPP, which provides a local web server environment. This setup allows you to develop and test SAPUI5 applications without requiring an external server. Prerequisites Before setting up SAPUI5 with XAMPP, ensure you have XAMPP installed on your machine. XAMPP is a free, cross-platform web server solution that includes Apache, MySQL, PHP, and Perl. Basic Development Environment Setup To set up a basic development environment for SAPUI5, you can refer to the comprehensive guide ...

Read More

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

Anil SAP Gupta
Anil SAP Gupta
Updated on 13-Mar-2026 704 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

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 286 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 253 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
Showing 1–10 of 97 articles
« Prev 1 2 3 4 5 10 Next »
Advertisements