Srinivas Gorla has Published 72 Articles

Alternative of SAP .NET Connector

Srinivas Gorla

Srinivas Gorla

Updated on 16-Dec-2019 07:13:07

471 Views

There are various (not many as for JAVA and others) possible ways to achieve the task. One way is to go for existing remote function calls library for establishing a connection. There are free to use wrappers written around RFC to serve the task.Another library available for the same and ... Read More

Using Function Module BAPI_ISUPARTNER_CREATEFROMDATA to create BP in SAP IS-U system

Srinivas Gorla

Srinivas Gorla

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

1K+ Views

Note that home page URL is part of Business Partner’s communication data and comes under address data or address independent communication.You can use Function Module - BAPI_BUPA_ADDRESS_ADD/BAPI_BUPA_ADDRESS_CHANGE for updating it with communication data or FM’s BAPI_BUPA_CREATE_FROM_DATA/BAPI_BUPA_CENTRAL_CHANGE for address independent communication.BAPI_BUPA_CREATE_FROM_DATA  SAP BP, BAPI: Create Business PartnerBAPI_BUPA_CENTRAL_CHANGESAP BP, BAPI: Change Central ... Read More

Is C++0x Compatible with C?

Srinivas Gorla

Srinivas Gorla

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

137 Views

Neither C++ (98) nor the new standard(C++0x or C++11) is fully compatible with C. C++ never was fully compatible with C.

What is a "translation unit" in C++

Srinivas Gorla

Srinivas Gorla

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

2K+ Views

A translation unit is any preprocessed source file.A translation unit is the basic unit of compilation in C++. This unit is made up of the contents of a single source file after it passes through preprocessing. It contains included any header files without blocks that are ignored using conditional preprocessing ... Read More

What is the difference between the size of ArrayList and length of Array in Java?

Srinivas Gorla

Srinivas Gorla

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

2K+ Views

ArrayList doesn't have length() method, the size() method of ArrayList provides the number of objects available in the collection.Array has length property which provides the length or capacity of the Array. It is the total space allocated during the initialization of the array.

How to reverse an ArrayList in Java?

Srinivas Gorla

Srinivas Gorla

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

458 Views

The Collections class provides a method named reverse() this method accepts a list and reverses the order of elements in it.Example:import java.util.ArrayList; import java.util.Collections; import java.util.LinkedHashSet; import java.util.Set; public class Sample {    public static void main(String[] args){       ArrayList list = new ArrayList();       list.add("JavaFx");   ... Read More

How to compare two ArrayList for equality in Java?

Srinivas Gorla

Srinivas Gorla

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

14K+ Views

You can compare two array lists using the equals() method of the ArrayList class, this method accepts a list object as a parameter, compares it with the current object, in case of the match it returns true and if not it returns false.Example Live Demoimport java.util.ArrayList; public class ComparingList {   ... Read More

How to show a foreach loop using a flow chart in JavaScript?’

Srinivas Gorla

Srinivas Gorla

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

1K+ Views

The following shows foreach loop using flow chart:

How to put two public classes in a Java package.

Srinivas Gorla

Srinivas Gorla

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

457 Views

Yes. The only condition is to have one public class in separate java file.

RFC or BAPI for displaying change documents in SAP

Srinivas Gorla

Srinivas Gorla

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

533 Views

You need to set up a workflow engine and then customize event generation. Next is to write down a Java service to connect to SAP system using Java Connector and then register a RFC server. For this, you have to follow steps:Navigate to Transaction SM59 -> Expand TCP/IP connections directory ... Read More

Advertisements