Johar Ali has Published 39 Articles

Parsing SAP Logon ticket with .NET

Johar Ali

Johar Ali

Updated on 14-Feb-2020 10:23:49

254 Views

SAP provides SAP SSO EXT Lib for parsing SAP Logon ticket. SAP SSO EXT library supports SAP logon tickets as a part of the java based application.You can download SAP SSO EXT library from SAP service marketplace http://service.sap.com/swdc and then search here for SAPSSOEXT.

Using > operators in SAP HANA

Johar Ali

Johar Ali

Updated on 14-Feb-2020 07:50:08

169 Views

You probably need to use cdata sections in your query. The term CDATA means, Character Data. CDATA is defined as blocks of text that are not parsed by the parser, but are otherwise recognized as markup. The predefined entities such as , and & require typing and are generally difficult ... 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 14-Feb-2020 07:49:15

414 Views

Note that attachEvent is no longer supported in IE11 and you should use addEventListner that can be used to bind specific function to an event.In older versions of IE, you can use like this:object.attachEvent(event, pDisp)Parametersevent [in]Type: StringA String that specifies any of the standard DHTML Events.pDisp [in]Type: ObjectThe Pointer that ... Read More

In SAP database, Importing table columns with /’s in the name

Johar Ali

Johar Ali

Updated on 28-Jan-2020 05:49:51

163 Views

I would suggest you to use BCP utility to perform an import/export of data to a text file in SQL Server. When you run below command, it loads data to a text file.BCP Db.TN out "Location of the text file " -c -S ServerName –TNow if you want to load ... Read More

Running a SQL query from specific month in SAP DB

Johar Ali

Johar Ali

Updated on 28-Jan-2020 05:13:37

304 Views

When your T0.name is char filed, you should replace Order By as below −order by case when cast(left (T0.Name,2) as int)>=8    then cast(left (T0.Name,2) as int)-8    else cast(left (T0.Name,2) as int)+4  end

What are the differences between JavaScript Primitive Data Types and Objects?

Johar Ali

Johar Ali

Updated on 03-Jan-2020 09:58:13

255 Views

Before beginning with the difference, let’s learn what are Primitive Datatypes. Primitive defines immutable values and introduced recently by ECMAScript standard.JavaScript allows you to work with three primitive data types, Numbers, eg. 3, 310.20 etc.Strings of text e.g. "This text string" etc.Boolean e.g. true or false.JavaScript also defines two trivial ... Read More

Error in XML document while processing SOAP response

Johar Ali

Johar Ali

Updated on 17-Dec-2019 06:46:33

310 Views

Yes, you should use your SOAP extension into your client app.ExampleTry adding the below code:               DebugTools.SOAP.SOAPTrace is the namespace of the SoapTraceExtension.DebugTools.SOAP is the name of the assembly containing the soap trace code.

Writing a material on SAP system via .NET Connector

Johar Ali

Johar Ali

Updated on 11-Dec-2019 06:37:48

350 Views

Once you create material, you need to call BAPI- BAPI_TRANSACTION_COMMIT. “BAPI_TRANSACTION_COMMIT” is called to COMMIT a database operation. As COMITT statement can’t be called inside BAPI, we call this BAPI to complete COMMIT.Let us say you are editing some table fields in BAPI- as per failure or success, you can ... Read More

Finding items in SAP Tree using Function

Johar Ali

Johar Ali

Updated on 10-Dec-2019 08:46:35

170 Views

When you use string “1\1” in Java, it gives a valid path and returns the right key. You need the following code:SapTree tree = ...; // initialize somewhere String parentKey = tree.findNodeKeyByPath("1"); tree.expandNode(parentKey); String key = tree.findNodeKeyByPath("1\1");

How to use the tag to define a relationship to an external resource?

Johar Ali

Johar Ali

Updated on 04-Oct-2019 11:59:36

244 Views

The tag is used in HTML to define a relationship to an external resource. It is used to link external style sheets. It gets added inside the … tag, but does not have a closing tag. Define your external CSS file in it.The CSS file created separately will have ... Read More

Advertisements