Connect to SAP System from C# Application

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:20

816 Views

There is nothing like standard but you need to specify all required details for a successful connection.XXXX-  H/IP Address/S/Port NumberHere H stands for Host, IP Address is the IP Address, S stands for Port Number

What Does the Modifier Transient in Java Do

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

263 Views

An instance variable is marked transient to point the JVM to skip the actual variable once serializing the thing containing it. This modifier is included in the statement that creates the variable, preceding the class or data type of the variable. Example public class Employee implements java.io.Serializable { public String name; public String address; public transient int SSN; public int number; public void mailCheck() { System.out.println("Mailing a check to " + name + " ... Read More

Sort Datetime Type in SAP ABAP

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:20

531 Views

There are two operation LT (Less than) and GT (Greater Than) which you can use to perform basic comparisons between two variables.You can frame the logic as per your requirement whether you have a set of variables or a table. If it involves set of variables then you need to do manual comparisons.

Using SPELL-AMOUNT Function to Convert Amounts in ABAP

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

848 Views

You can use the standard function module “SPELL AMOUNT”. It will convert amounts to corresponding words. To display function module, use Transaction code: SE37 Click on Search icon and select Function module: “SPELL AMOUNT”

SAP Crystal Report File Not Opening in VS2015

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

349 Views

To start with I would suggest you to check SP level on Crystal Report Visual Studio. Try reinstalling Crystal Report and make sure your asp.net application is configured properly. There are various forums that you can search specific for Crystal Reports for VS like this:SAP Tags

Java Package for Pattern Matching with Regular Expressions

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

311 Views

Java provides the java.util.regex package for pattern matching with regular expressions.

Map an Object of Objects to a SAP List

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

244 Views

The answer to your question is ‘NO’. It is not possible to map your complex JSON object (object of objects) to a list as it does not make sense.If you want you can have a model or a JSONModel which replicates your object and then you can map it otherwise as you said, you can try to use array if it suits your requirement.

Meaning of Immutable in Terms of String in Java

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

299 Views

In Java, immutable objects are those whose data can’t be changed or modified (once modified). String class is immutable i.e. once we create a String object its data cannot be modified.

Ways to Create a String Object in Java

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

1K+ Views

You can create a String by − Step 1 − Assigning a string value wrapped in " " to a String type variable. String message = "Hello Welcome to Tutorialspoint"; Step 2 − Creating an object of the String class using the new keyword by passing the string value as a parameter of its constructor. String message = new String ("Hello Welcome to Tutorialspoint"); Step 3 − Passing a character array to the String constructor. char arr[] = {'H','e','l','l','o'}; String message = new String(arr);

Connect SAP with Android Using JCo

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

353 Views

I have not tried it but it does not seem feasible. The reason being if you are planning to use JCo library, you will require a native library but that is still not available for Android environment.You can try an alternative for it. You can create a Web Service either a SOAP or REST which communicates to SAP via JCo. Then, you can use the service to do two way communication with SAP.The result of communication can then be shared to Android environment in either JSON or XML format as per requirement.

Advertisements