Sreemaha has Published 63 Articles

Downloading SAP.NET connector to integrate .NET application with SAP system

Sreemaha

Sreemaha

Updated on 10-Dec-2019 08:00:40

601 Views

Please note that you can use SAP.NET connector when your API’s are available on SAP system. If this is not correct, you need to get some ABAP programming to develop RFC functions.You can download SAP.NET connector from SAP Market place. To login to market place you need SAP Partner ID ... Read More

In MySQL, why a client cannot use a user-defined variable defined by another client?

Sreemaha

Sreemaha

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

281 Views

In MySQL, a user-defined variable defined by one client cannot be seen or used by another client because user-defined variables are connection-specific. It means that all variables for a given client connection are automatically freed when that client exits

How to convert List to int[] in Java?

Sreemaha

Sreemaha

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

953 Views

You can simply iterate through list and fill the array as shown below −import java.util.ArrayList; import java.util.List; public class Tester {    public static void main(String[] args) {       List list = new ArrayList();       list.add(new Integer(1));       list.add(new Integer(2));       list.add(new ... Read More

Loading messages from Excel to SAP table T100

Sreemaha

Sreemaha

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

472 Views

You can use built-in translation tool in SAP system that collects short text of message classes, export to an excel file and then you can reimport the translations.With the use of Transaction LXE_Master, you can import the translations of short texts and PDF forms that have previously been exported for ... Read More

How to determine the OS the computer is running using Java?

Sreemaha

Sreemaha

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

159 Views

The System class of java.lang package provides a method named getProperty() this method accepts one of the following string parameters an returns the respective property. java.class.path − If you pass this value as a parameter, the getProperty() method returns the current classpath. java.home − If you pass this value ... Read More

What are final classes in Java?

Sreemaha

Sreemaha

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

11K+ Views

The final modifier for finalizing the implementations of classes, methods, and variables. The main purpose of using a class being declared as final is to prevent the class from being subclassed. If a class is marked as final then no class can inherit any feature from the final class. You ... Read More

What is the difference between javac, java commands?

Sreemaha

Sreemaha

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

7K+ Views

The javac command is used to compile Java programs, it takes .java file as input and produces bytecode. Following is the syntax of this command. >javac sample.java The java command is used to execute the bytecode of java. It takes byte code as input and runs it and ... Read More

What is meant by Java being an architecture neutral language?

Sreemaha

Sreemaha

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

5K+ Views

Unlike many other programming languages including C and C++, when Java is compiled, it is not compiled into platform specific machine, rather into platform-independent byte code. This byte code is distributed over the web and interpreted by the Virtual Machine (JVM) on whichever platform it is being run on. Thus ... Read More

Is there a need to import Java.lang package while running Java programs?

Sreemaha

Sreemaha

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

664 Views

The java.lang package is the default package in Java, by default, it will be imported. Therefore, there is no need to import this package explicitly. i.e. without importing you can access the classes of this package. Example If you observe the following example here we haven’t imported the lang package ... Read More

RV_INVOICE_DOCUMENT_READ not returning any data in form in SAP FM

Sreemaha

Sreemaha

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

398 Views

I think what you may be missing over here is Alpha conversion set.When you are calling a function module in SE37, it performs alpha conversions as a part of parameter processions. You might do go for internal formatting of the parameters before passing it to ABAP for further use. Read More

Advertisements