Sreemaha has Published 68 Articles

Displaying distinct values in a column filtered on other column in SAP BO report

Sreemaha

Sreemaha

Updated on 10-Dec-2019 09:05:26

785 Views

There are multiple ways to do this. First is by creating a variable like this:Terms Count =Count([Terms Code]) in ([Sales #])You have to add this variable to your report. It will display 1 for all Sales # 1000 and 2 for all Sales # 1001. You can apply a filter ... Read More

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

Sreemaha

Sreemaha

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

404 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

What is the difference between JavaScript and C++?

Sreemaha

Sreemaha

Updated on 30-Sep-2019 07:06:17

2K+ Views

The following are the differences between JavaScript and C++.JavaScript is a lightweight, interpreted programming language. It is designed for creating network-centric applications. It is complementary to and integrated with Java. JavaScript is very easy to implement because it is integrated with HTML. It is open and cross-platform.C++ is a middle-level ... 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

97 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

624 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

232 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

93 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

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

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

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

Advertisements