Johar Ali

Johar Ali

31 Articles Published

Articles by Johar Ali

Page 2 of 4

Using &gt operators in SAP HANA

Johar Ali
Johar Ali
Updated on 13-Mar-2026 222 Views

When working with SAP HANA queries that contain comparison operators like > (greater than) in XML contexts, you need to use CDATA sections. The term CDATA means Character Data. CDATA is defined as blocks of text that are not parsed by the XML parser, but are otherwise recognized as markup. The predefined XML entities such as , and & require entity encoding and are generally difficult to read in the markup. Instead of writing > for the greater than operator, CDATA sections allow you to use the actual > symbol directly. CDATA Section Syntax Following is the ...

Read More

Getting Error message "Object doesn't support property or method 'attachEvent'" in IE11 to call SAP system

Johar Ali
Johar Ali
Updated on 13-Mar-2026 498 Views

Note that attachEvent is no longer supported in IE11 and you should use addEventListener that can be used to bind specific function to an event. Using attachEvent in Older IE Versions In older versions of IE (IE8 and below), you can use attachEvent like this − object.attachEvent(event, pDisp) Parameters event [in] Type: String A String that specifies any of the standard DHTML Events. ...

Read More

Error in XML document while processing SOAP response

Johar Ali
Johar Ali
Updated on 13-Mar-2026 367 Views

When working with SOAP web services, you may encounter XML document errors while processing SOAP responses. To debug and trace these issues effectively, you should use a SOAP extension in your client application. SOAP extensions allow you to intercept and examine SOAP messages at different stages of processing, making it easier to identify where XML parsing errors occur. Configuration To implement SOAP tracing, you need to configure the SOAP extension in your application's web.config file. Add the following configuration within the section − ...

Read More

What is the difference between class variables and instance variables in Java?

Johar Ali
Johar Ali
Updated on 11-Mar-2026 40K+ Views

Following are the notable differences between Class (static) and instance variables. Instance variables Static (class) variables Instance variables are declared in a class, but outside a method, constructor or any block. Class variables also known as static variables are declared with the static keyword in a class, but outside a method, constructor or a block. Instance variables are created when an object is created with the use of the keyword 'new' and destroyed when the object is destroyed. Static variables are created when the program starts and destroyed when the program stops. ...

Read More

How to create an array of Object in Java

Johar Ali
Johar Ali
Updated on 07-Mar-2025 1K+ Views

In this article, we will learn to create an array of objects in Java. An array of Object classes can be created that can accept any type of object. During the operation on such an array, instanceof operator can be used. Different Approaches The following are the two different approaches to creating an array of objects in Java − Using an Object[] Array Using a Class-Specific Object Array Using an Object[] Array Java provides a built-in Object class, which is the superclass of all classes. This means an array ...

Read More

Sending a table from UI5 application to ABAP Function Module

Johar Ali
Johar Ali
Updated on 15-Jun-2020 988 Views

This can be done using an OData service that accepts POST request from your UI5 application and writes data to a database table. While implementing OData service, you have to call ABAP Backend Class method.You have to remember that all application and classes are instantiated for processing and will end as soon as the request is completed. An OData service can be created using SAP Gateway Service Builder (SEGW).Following steps has to be performed for creating an OData service:Creation of Data ModelGenerate Runtime ObjectsRegistration of ServiceService ImplementationOnce you create a project in Gateway Service Builder, you have to create Entity ...

Read More

Why would a jQuery variable start with a dollar sign?

Johar Ali
Johar Ali
Updated on 13-Jun-2020 426 Views

When you will begin working about jQuery, you will get to know about the usage of the $ sign. A $ sign is used to define jQuery.jQuery variables begin with $ to distinguish them from a standard JavaScript object. Also, it is a convention. jQuery selectors start with the dollar sign and parentheses() − $.Let's take an Example −// jQuery object var $phone = $("#myphone"); // dom object var phone_el = $("#myphone").get(1);

Read More

Where should the Google Analytics Tracking Code be placed?

Johar Ali
Johar Ali
Updated on 13-Jun-2020 154 Views

When integrating your website with Google Analytics, add the Tracking Code in your code. This will allow Google Analytics to track the page views and provide other analytics.Copy the code and place it just before closing tag i.e. in your website code. When you will integrate, the following steps and the tracking code will be visible. This shows how and where to add the tracking code −

Read More

How to extract data from SAP using .NET provider.

Johar Ali
Johar Ali
Updated on 26-Feb-2020 1K+ Views

To extract using SSIS, you need to have access to backend system. You can use .NET connector and write a Windows application that extracts data from SAP system using Function Module.For more details on how to connect SAP using .NET connector, you can refer this blog- https://blogs.sap.com/2013/02/14/connecting-to-sap-with-nco-3/With use of BAPI’s you can allow external applications to access business processes and data in R/3 system. Below code is used to make call to BAPI. First is to create a class that implements IDestinationConfiguration −Imports SAP.Middleware.Connector Public Class ECCDestinationConfig    Implements IDestinationConfiguration    Public Event ConfigurationChanged(ByVal destinationName As String, ByVal args As ...

Read More

Passing multiple parameters in SAP BO Webi report

Johar Ali
Johar Ali
Updated on 26-Feb-2020 1K+ Views

An open document URL is constructed as follow −http://:/OpenDocument/opendoc/?&&...&With use of SAP Business Objects API, you can query each prompt- single value or multiple value. When you build URL, you may have to include parameter types.You can join parameters with the ampersand (&) and you shouldn’t use space with & ampersand. Example − sType=wid&sDocName=Sales2003https://URL_path/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&sType=wid&sRefresh=Y&iDocID=AUcrjvCCPOVHtSvXJV9Qs0k&lsMYBO_BU=B;B&lsSYBO_CALYEAR=201710&lsSYBO_CRNCY=USDIn this URL, you can see single value variable YBO_CALYEAR and value is passed in YYYYMM format&lsSYBO_CRNCY=USD, you can see single value variable and I am passing value “USD”When you run the report, you can define a report level variable or use report-level function to capture multiple ...

Read More
Showing 11–20 of 31 articles
Advertisements