Ankitha Reddy has Published 69 Articles

Moving SAP client from one system to other

Ankitha Reddy

Ankitha Reddy

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

1K+ 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

351 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.

Deleting BOM component in SAP

Ankitha Reddy

Ankitha Reddy

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

3K+ 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 to count unique elements in the array using java?

Ankitha Reddy

Ankitha Reddy

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

1K+ 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

206 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

9K+ 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

185 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

How to add items to an array in java dynamically?

Ankitha Reddy

Ankitha Reddy

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

11K+ Views

Since the size of an array is fixed you cannot add elements to it dynamically. But, if you still want to do it then, Convert the array to ArrayList object.Add the required element to the array list.Convert the Array list to array.Exampleimport java.util.ArrayList; import java.util.Arrays; import java.util.Scanner; public class AddingItemsDynamically ... Read More

Why do Java array declarations use curly brackets?

Ankitha Reddy

Ankitha Reddy

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

658 Views

Curly brackets usually denote sets and ensembles while parenthesis usually in most Algol-based programming languages curly braces are used to declare arrays.

Previous 1 ... 3 4 5 6 7
Advertisements