Ankitha Reddy has Published 75 Articles

What are the different build tools in Java?

Ankitha Reddy

Ankitha Reddy

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

131 Views

"On a mean, a developer spends a considerable quantity of your time doing mundane tasks compiling the code, packaging the binaries, deploying the binaries to the checkserver, testing the changes, " copying the code from one location to another. To automate and simplify these tasks we can use build tools ... Read More

Generating SAP ABAP code/ script from XML coming from an external application

Ankitha Reddy

Ankitha Reddy

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

519 Views

Yes, this is feasible. You can create simple transformation for XML in ABAP. You can also use cl_proxy_xml_transform to transform data between XML and ABAP. Let us say that you have created ABAP proxy using T-Code: SPROXY or it is generated via WebService generation utility, you can use utility class ... Read More

Getting an error message Object already exported, no package change is possible while changing a package for 250 SAP development objects

Ankitha Reddy

Ankitha Reddy

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

146 Views

This problem commonly occurs when you move development objects from Transportable enabled package to non-Transportable package. You can resolve this issue by following steps − You need to migrate legacy package using report RS_MIGRATE_PACKAGES. Check SAP Note:  https://launchpad.support.sap.com/#/notes/1711900Then legacy package' will be removed, but the package will be still ... Read More

Importing/Exporting ABAP packages to Presentation server

Ankitha Reddy

Ankitha Reddy

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

353 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

807 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

209 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

627 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

736 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

695 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

Advertisements