Johar Ali has Published 31 Articles

Error in XML document while processing SOAP response

Johar Ali

Johar Ali

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

346 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

413 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

205 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

284 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

How to pass JavaScript variables to PHP?

Johar Ali

Johar Ali

Updated on 30-Jul-2019 22:30:21

21K+ Views

You can easily get the JavaScript variable value on the same page in PHP. Try the following codeL. var res = "success";

Extending SAP ABAP 30 characters long limit

Johar Ali

Johar Ali

Updated on 30-Jul-2019 22:30:20

2K+ Views

For SAP ABAP tables, you can enter up to maximum 16 characters. There is a limit of up to 30 characters on use of ABAP Variables, Classes and Method.When you run SE11 you can press F1 and it will show you maximum permitted limit on SAP ABAP Table name.It is ... Read More

In SAP ABAP, mapping two database table fields

Johar Ali

Johar Ali

Updated on 30-Jul-2019 22:30:20

610 Views

I don’t think there is a way to perform this. The common way to do this is by extending original table and fill the new fields.T-Code: SPDD is somewhat relevant that can be used to compare all the dictionary objects- data elements, tables and structure with old system.T-Code: SPAU can ... Read More

How to take Backup in SAP system.

Johar Ali

Johar Ali

Updated on 30-Jul-2019 22:30:20

751 Views

Generally, it is not required to take the backup as SAP is very secure system and they keep the backup. But if you still want to take the backup, you would require creating a dummy destination, add the objects/your programs to transport and point it to that dummy destination and ... Read More

What are tokens in Java?

Johar Ali

Johar Ali

Updated on 30-Jul-2019 22:30:20

2K+ Views

Java tokens are smallest elements of a program which are identified by the compiler. Tokens in java include identifiers, keywords, literals, operators and, separators.

How to use SUM function for NUMC type field?

Johar Ali

Johar Ali

Updated on 30-Jul-2019 22:30:20

863 Views

NUMC is numeric text. As this is text, SUM function cannot be implemented as it is of type varchar in the database.There is no simple solution to do it. The one method is to copy the data to internal tables, convert the NUMC data into DEC by looping through all ... Read More

Advertisements