Ankitha Reddy has Published 72 Articles

Importing/Exporting ABAP packages to Presentation server

Ankitha Reddy

Ankitha Reddy

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

386 Views

You can either go for some tools like SAPlink in this case. SAPlink will let you export custom objects. In case if you want to package them, it is possible to use SAPlink, however, I doubt that it covers all types.Another way using basis is that you can configure to ... Read More

Moving SAP client from one system to other

Ankitha Reddy

Ankitha Reddy

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

839 Views

You can also create a copy of the existing clients between local and remote system IDs. Follow the below steps to create a copy of existing clients − Step 1 − To create a copy of a client in local SID, the transaction code is SCCL. Step 2 − ... Read More

Defining a variable reference in SAP ABAP

Ankitha Reddy

Ankitha Reddy

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

233 Views

As per my understanding, it is not feasible. You can access local class dynamically but statically referring to it in another class seems impossible. You might think about calling methods as dynamic in this case.

What is the difference between PATH and CLASSPATH in Java?

Ankitha Reddy

Ankitha Reddy

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

675 Views

Before running Java programs on your machine you need to set two environment variables namely, PATH − The path environment variable is used to specify the set of directories which contains executional programs. When you try to execute a program from command line, the operating system searches for the specified ... Read More

Deleting BOM component in SAP

Ankitha Reddy

Ankitha Reddy

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

2K+ Views

In order to delete a component of BOM, you can use transaction 'CS02'. CS02 is referred as Change Material BOM. It is further classified within the Logistics - General module. Module: Logistics-General Application Component - Bills of Material Package: CS Package Description: R/3 Application development: PP Bills of ... Read More

How do I remove a particular element from an array in JavaScript

Ankitha Reddy

Ankitha Reddy

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

761 Views

To remove an element from an array, use the splice() method. JavaScript array splice() method changes the content of an array, adding new elements while removing old elements. The following are the parameters − index − Index at which to start changing the array. howMany − An integer indicating ... Read More

How to count unique elements in the array using java?

Ankitha Reddy

Ankitha Reddy

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

765 Views

The interface Set does not allow duplicate elements, therefore, create a set object and try to add each element to it using the add() method in case of repetition of elements this method returns false − If you try to add all the elements of the array to a Set, ... Read More

List top JavaScript Frameworks

Ankitha Reddy

Ankitha Reddy

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

124 Views

Dojo It is an open source modular JavaScript library came into existence to a develop cross-platform, applications and a websites. It was developed by Alex Russell, Dylan Schiemann and other contributors in 2004. AngularJS AngularJS is an open source web application framework. It was originally developed in 2009 by Misko ... Read More

How to check a String for palindrome using arrays in java?

Ankitha Reddy

Ankitha Reddy

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

7K+ Views

To verify whether the given string is a palindrome (using arrays) Convert the given string into a character array using the toCharArray() method. Make a copy of this array. Reverse the array. Compare the original array and the reversed array. in case of match given string is a palindrome. ... Read More

What does the method clone() do in java?

Ankitha Reddy

Ankitha Reddy

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

117 Views

The clone() method of the java.util.ArrayList class returns a shallow copy of this ArrayList instance(i.e. the elements themselves are not copied). Example import java.util.ArrayList; public class ArrayListDemo { public static void main(String args[]) { ArrayList arrlist1 = new ArrayList(); ... Read More

Advertisements