Abhinaya has Published 75 Articles

Debugging an Asynchronous RFC in SAP ABAP

Abhinaya

Abhinaya

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

In SAP system, an Asynchronous call (aRFC) of a remote-enabled function module specified in func using the RFC interface. The addition DESTINATION is used to specify a single destination in dest or use IN GROUP to specify a group of application servers. The latter supports parallel processing of multiple function ... Read More

Not able to access SOAP Manager in SAP server

Abhinaya

Abhinaya

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

SAP server will not respond to request having IP but not the domain name. So you need to just add the domain to your host file. You can find the host files in host folder within drivers/etc folder. That should resolve your issue.

Difference between using - "standard table of", "Hashed table of", or simply "table of" in SAP ABAP

Abhinaya

Abhinaya

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

“TYPE STANDARD TABLE OF “refers to the standard table. It refers to a normal internal table which can be accessed via table index or by key in case if you have a key defined over a table while sorting.“TYPE HASHED TABLE OF” refers to the generic hashed internal table. The ... Read More

What is the difference between JavaScript frameworks?

Abhinaya

Abhinaya

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

The following is the comparison of some JavaScript Frameworks:AngularJSDojoEmber.jsGoogle Web ToolkitDrag & Drop FunctionalityNoYesNoYes, but only with plugins.Provides Simple Visual EffectsYesYesNoYesProvides Rich Text EditorNoYesNoYesSupport For CanvasNoYesNoYesSupport For CanvasNoYesNoYes

How to convert a byte array to a hex string in Java?

Abhinaya

Abhinaya

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

The printHexBinary() method of the DatatypeConverter class accepts a byte array and returns a hex string.Exampleimport javax.xml.bind.DatatypeConverter; public class ByteToHexString { public static void main(String args[]) { String sam = "Hello how are you how do you do"; ... Read More

Previous 1 ... 4 5 6 7 8
Advertisements