V Jyothi has Published 77 Articles

How to sort an ArrayList in Java in descending order?

V Jyothi

V Jyothi

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

7K+ Views

To sort the contents of an ArrayList in descending orderCreate an ArrayList.Sort the contents of the ArrayList using the sort() method of the Collections class.Then, reverse array list using the reverse() method of the Collections class.Example:import java.util.ArrayList; import java.util.Collections; public class ArrayListSample {    public static void main(String[] args) ... Read More

How to get Natural logarithm of 10 in JavaScript?

V Jyothi

V Jyothi

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

550 Views

To get the Natural logarithm of 10, use the Math.LN10 property in JavaScript. It returns the natural logarithm of 10, which is approximately 2.302.You can try to run the following code to get Natural logarithm of 10:Example Live Demo           JavaScript Math LN10 Property       ... Read More

Integrating Magneto with SAP ECC system

V Jyothi

V Jyothi

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

200 Views

With the integration of SAP ERP with Magneto, you can perform bidirectional communication of orders, sales, and other business data. To check if there is an existing connector, you can reach to SAP support. There are various other vendors in the market who provides ERP-Magneto integration.Integration of ERP-Magneto provides benefit ... Read More

Error while calling Web Service using SRT_UTIL Transaction

V Jyothi

V Jyothi

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

483 Views

This error can come due to multiple reasons. One of possible cause could be that your structure name is 30 characters and it is translated to 26 chars in WSDL.I would suggest changing structure name to 10 characters and it may resolve your issue. Below shows Web Service Utilities:

Integrating SAP with Android

V Jyothi

V Jyothi

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

485 Views

SMP 3/HCPMS (SAP Cloud-based Mobile services) is the new SAP product to create enterprise mobile apps. This can be used to integrate SAP with different mobile platforms. SAP recently launched the SAP Cloud Platform mobile services- a full-featured mobile app platform in the cloud, partners gain the flexibility to build and ... Read More

Querying SAP database using Python

V Jyothi

V Jyothi

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

1K+ Views

Python is one of the most used object-oriented programming languages which is very easy to code and understand.In order to use Python with SAP, we need to install Python SAP RFC module which is known as PyRFC. One of its available methods is RFC_READ_TABLE which can be called to read ... Read More

How to convert Byte Array to Image in java?

V Jyothi

V Jyothi

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

20K+ Views

Java provides ImageIO class for reading and writing an image. To convert a byte array to an image.Create a ByteArrayInputStream object by passing the byte array (that is to be converted) to its constructor.Read the image using the read() method of the ImageIO class (by passing the ByteArrayInputStream objects to ... Read More

Previous 1 ... 4 5 6 7 8
Advertisements