cancel
Showing results for 
Search instead for 
Did you mean: 

Need Java Help

Former Member
0 Kudos

Hi Group,

I am an abaper recently moved to XI ,After moving in to XI I came to know that I need good Java Knowledge to write user defined functions and in Mappings.Can any body please send some usefull JAva tutorial Links,so that I can comfort with Java.

My e-mail id :pra1978oni@yahoo.co.in

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi ,

The java concepts that are majorly used in XI are :

1. SAX / DOM Parsing of XML data [Java XML parsing techniques]

2. EJB Concepts [XI Adapter module / Adapter / Java Proxy development]

3. User defined functions with Graphical mappings.

I guess the tutorials offered by Sun microsystems would be of great help if you are serious about it

http://java.sun.com/docs/books/tutorial/

Just giving you a little more info on java mapping as it would be quite offten used....

Java Mapping uses 2 types of parsers. DOM and SAX. DOM is easier to use with lots of classes to help you create nodes and elements, but , DOM is very processor intensive.

SAX parser is something that parses your XML one after the other, and so is not processor intensive. But, it is

not exaclty easy to develop either.

Java Mapping

http://help.sap.com/saphelp_nw04/helpdata/en/e2/e13fcd80fe47768df001a558ed10b6/content.htm

DOM parser API

http://java.sun.com/j2se/1.4.2/docs/api/org/w3c/dom/package-frame.html

Also go through these links for general info on the Java requirement...

http://java.sun.com/j2ee/1.4/docs/tutorial/doc/J2EETutorial.pdf

http://java.sun.com/webservices/docs/1.1/tutorial/doc/

http://java.sun.com/j2se/1.4.2/docs/api/javax/xml/parsers/package-summary.html

http://java.sun.com/j2se/1.4.2/docs/api/org/w3c/dom/Document.html

https://websmp101.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=JA100&COL...

http://java.sun.com/j2se/1.4.2/docs/api/org/w3c/dom/package-frame.html

https://websmp101.sap-ag.de/~form/ehandler?_APP=00200682500000001337&_EVENT=DISPLAY&COURSE=JA300&COL...

http://java.sun.com/docs/books/tutorial/

http://javaalmanac.com/

Sekhar

Former Member
0 Kudos

A good point of start is the offical sun website: http://java.sun.com.

Here you can find the famous book Thinkin in java:

http://www.mindviewinc.com/downloads/TIJ-3rd-edition4.0.zip

Here a good site where you can find java examples:

http://javaalmanac.com/

Hope this help.

Regards,

Francesco

Former Member
0 Kudos

Hi,

Here are two links:

http://java.sun.com/docs/books/tutorial/index.html

http://www.ibiblio.org/javafaq/javatutorial.html

Try to read also this book:

Thinking in Java

Regards,

Wojtek