Beginner to NetWeaver

HI,
I have some experience on Java. Want to explore NetWeaver.
Can somebody help me to identify the start point from the developer perspective?
Regards
Puneet

Hi
1) First understand what is Netweaver?
http://www.sap.com/platform/netweaver/index.epx
2) Second download any one of the Netweaver preview version based on your system configuration from here
https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/cfc19866-0401-0010-35b2-dc8158247fb6
3) Go through help document for working with SAP Netweaver
http://help.sap.com
4) Please refer the syllabus Consultant Profile SAP NetWeaver - Portal (for both Technolgy + Development)
https://websmp203.sap-ag.de/%7Esapidp/011000358700007299902005E
5)You can learn more fromSAP NetWeaver integrates various different technological concepts and previous platforms in a single solution.
Main components of this are ,
http://help.sap.com/saphelp_nw04s/helpdata/en/ee/275c42b4e05542e10000000a1550b0/content.htm
1) People Integration
2) Information Integration
3) Process Integration and
4) Application Platform.
People Integration
refer this link for more help for Portal
http://help.sap.com/saphelp_nw04s/helpdata/en/42/bfa145731b1d64e10000000a1553f6/content.htm
refer for Mobile application Help
http://help.sap.com/saphelp_nw04s/helpdata/en/8c/555a421b5ec153e10000000a1550b0/content.htm
Information Integration
http://help.sap.com/saphelp_nw04s/helpdata/en/31/555a421b5ec153e10000000a1550b0/content.htm
Process Integration
http://help.sap.com/saphelp_nw04s/helpdata/en/5f/555a421b5ec153e10000000a1550b0/content.htm
Application Platform
http://help.sap.com/saphelp_nw04s/helpdata/en/97/68d64260752a78e10000000a155106/content.htm
Cheers
Jawahar Govindaraj
PS:Reward pts

Similar Messages

  • Help with SAP NetWeaver 7.0 SR1

    Hi,
    I am a university student and ı want to learn ABAP. I try to install netweaver but I get the following error :
    An error occurred while processing option SAP NetWeaver 7.0 SR1 including Enhancement Package 1 > SAP Application Server ABAP > MaxDB > Central System > Central System( Last error reported by the step :The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log.). You can now:
    Choose Retry to repeat the current step.
    Choose View Log to get more information about the error.
    Stop the option and continue with it later.
    Log files are written to D:\Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/.
    Can someone help me with this error?
    Another question : I am a beginner in netweaver and ı could not find helpful documents for beginners yet. Can I learn it by myself or do I have to take a course?
    Thanks for your help,
    Onur Onuk

    Hi onuronuk,
    ERROR      2009-10-08 23:17:33.971 [sixxcstepexecute.cpp:950]
    FCO-00011  The step createSystemDirectories with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_System|ind|ind|ind|ind|5|0|createSystemDirectories was executed with status ERROR .
    TRACE      2009-10-08 23:17:34.2 [iaxxgenimp.cpp:752]
                CGuiEngineImp::showMessageBox
    <html> <head> </head> <body> <p> An error occurred while processing option SAP NetWeaver 7.0 SR1 including Enhancement Package 1 > SAP Application Server ABAP > MaxDB > Central System > Central System. You can now: </p> <ul> <li> Choose <i>Retry</i> to repeat the current step. </li> <li> Choose <i>View Log</i> to get more information about the error. </li> <li> Stop the option and continue with it later. </li> </ul> <p> Log files are written to C:\Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/. </p> </body></html>
    TRACE      2009-10-08 23:17:34.2 [iaxxgenimp.cpp:1255]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    please help me
    thanks in advance
    ragards,
    jay

  • Calendar functioms

    Hey guys I need an help regarding Calendar functions.
    As i am beginner in netweaver...
    i was able to display the system date n time
    but the problem is that i want the previous and next week dates.
    the code which i have done is as follows which moves only one week previous n next...
    i want it to move successively previous n next....plz help
    thanx in advance.....
    Calendar cal = Calendar.getInstance();
    java.sql.Date sqlDate1 = new java.sql.Date(cal.getTime().getTime());
    cal.setFirstDayOfWeek(Calendar.MONDAY);
    cal.setMinimalDaysInFirstWeek(1);
    cal.set(Calendar.WEEK_OF_YEAR, wdContext.currentContextElement().getSweek()-1);
    cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
    java.util.Date weekDate = cal.getTime();
    DateFormat formatter = DateFormat.getDateInstance(3);
    String result = formatter.format( weekDate);
    cal.set(Calendar.DAY_OF_WEEK, Calendar.FRIDAY);
    java.util.Date weekDate1 = cal.getTime();
    DateFormat formatter1 = DateFormat.getDateInstance(3);
    String result1 = formatter.format( weekDate1);
    wdContext.currentContextElement().setWeek(result" to "result1);
    and do send ur replies to my mail id [email protected]

    It's consistent for me as well. In fact the only thing that is not consistent is what meeeting in the past that it randomly selects.
    The issue is with mail I think not iCal. When you click on the link in mail it somehow corrupts the content of the ics.
    A temporary workaround is to drag the ics from mail to iCal. This will populate it with the correct info.
    I'm sure apple will fix it it is just a matter of waiting for an update.
    I myself am suffering through three issues that are a major pain in the neck
    1. Calender invites not working properly (this is a big deal I use this everyday)
    2. Random freezes after waking from sleep. (This is actually catastrophic for a work machine)
    3. Some issue with my backlight spamming my error log (I've had to shut off automatic brightness adjustment)
    After using ML for a while I have discovered there is really not that much new in it that I need at all... conversly there are a ton of bugs. I am seriously thinking of rolling back to Lion I am just put off by the fact it will take me all night to do it.

  • About Date

    Hey guys I need an help regarding Calendar functions.
    As i am beginner in netweaver...
    i was able to display the system date n time
    but the problem is that i want the previous and next week dates.
    the code which i have done is  as follows which moves only one week previous n next...
    i want it to move successively previous n next....plz help
    thanx in advance.....
    Calendar cal = Calendar.getInstance();
              java.sql.Date sqlDate1 = new java.sql.Date(cal.getTime().getTime());
              cal.setFirstDayOfWeek(Calendar.MONDAY);
              cal.setMinimalDaysInFirstWeek(1);
              cal.set(Calendar.WEEK_OF_YEAR, wdContext.currentContextElement().getSweek()-1);
              cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
              java.util.Date weekDate = cal.getTime();
              DateFormat formatter = DateFormat.getDateInstance(3);
              String result = formatter.format( weekDate);
              cal.set(Calendar.DAY_OF_WEEK, Calendar.FRIDAY);
              java.util.Date weekDate1 = cal.getTime();
              DateFormat formatter1 = DateFormat.getDateInstance(3);
              String result1 = formatter.format( weekDate1);
              wdContext.currentContextElement().setWeek(result"   to   "result1);

    I think that you need to post this question in the ABAP forum.
    Regards,
    Graham

  • WHAT DOES "Action definition" mean?

    hi,experts
        i encounterd a problem with adobe printing, and i'm just a beginner at netweaver 2004s. i got the message type 'Z' and the Action Definition 'Z', so what does the action definition mean? is it connected to a program which fetchs the data and formats the output? if it is,how can i find the program?
       pls help me,any suggestion will be rewarded.
       thanks in advance.

    Speech bubbles come up showing the destination of links, if you hold your finger on a link in Safari.
    It may be some kind of javascript link?

  • Among the Netweaver XI and the Enterprise Portal.

    Hi,
    I am new to the Netweaver Technology and would like to know the following.
    1. Which among the both i.e. Netweaver XI and the Enterprise Portal is better in terms of fetching the job and making a bettre career in it.?
    2. Also which one is more in Demnad within and outside India ?
    Any other Information on these topics would definitely help.
    Regards,
    Deepak.

    Hi Deepak,
    I agree with Subbarao. If u have gud command on ABAP then go for XI.And if u r technically sound in JAVA then go for EP which comprises of Knowledge Management and collaboration, portal and webdynpro.Both have gud value in the market right now.
    For learning material in EP plz go through the below mentioned threads:
    Re:basic material for development of portal application in NWDS
    Beginner to Portal
    Regards
    Priya
    plz reward point if this helps

  • User configuration on NetWeaver AS 7.10 / AS Java 7.10 (Java Stack only)

    Hi everybody.
    I'm just a beginner and have only very few knowledge about configuring the AS. I downloaded and installed the SAP NetWeaver Application Server, Java EE 5 Edition form sdn.sap.com.
    Now I would like to limit the access to an web service. The web service is written in Java (EJB 3.0), so I added the annotation
    @RolesAllowed({"TestUser"})
    to the associated method. Where can I create the user "TestUser" and set his password?
    For sure I have already looked to some sdn threads, but all the instructions and tutorials are made in ABAP or by the Visual Administrator, but I don't have this tool. I only have the "SAP Java EE 5 Engine - Config Tool".
    Does anyone have any ideas?

    Hi Johannes,
    The users (roles) specified in the @RolesAllowed annotation are logical Java EE roles for the corresponding module (EJB jar in this case). They do not actually exist in the server environment. Instead, they have to be mapped (assigned) to one or more of the existing UME roles. For more information please check the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/806e75a0-0e01-0010-2587-fc518de8ac1a">Administration Guide</a>, from page 49 on.
    HTH!
    -Vladimir

  • BEx Analyzer through SAP Netweaver ABAP trial version

    Hi, I have installed SAP Netweaver ABAP trial version but dont know how to get BEx analyzer. Can someone help to find out that.
    Thanks,

    Hi ,
    I doubt if the BW component is present in the NW 7.0 Abap trial.Please check this in Tcode spam -> supp. package levels (all components are listed.there, or via system information in the gui menu.
    When component BW is present you can install Bex/Wad etc. via the sapgui CD.
    Check these links...
    For setting up BI in NW 7.0 Abap Trial version :
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/bi/how%2bto%2bguides
    For beginning your first BI model in NW 7.0 :
    A beginner's guide to your first BI model in NW2004S
    ABAP Trial Version for Newbies :
    ABAP Trial Version for Newbies:  Part 1 ' Download and installation of the Trial Version '
    Installation & Implementation Documentation Center
    SAP NetWeaver 7.0
    https://websmp105.sap-ag.de/instguidesNW70
    SAP NetWeaver7.0 (2004s) Installation & Implementation Documentation
    https://websmp105.sap-ag.de/~sapidb/011000358700005431532005E.pdf
    https://websmp105.sap-ag.de/installnw70
    https://websmp105.sap-ag.de/~sapidb/011000358700005431552005E
    Hope this helps,
    Regards
    CSM Reddy

  • SAP Netweaver CE 7.1 EHP1 for Windows 32bit

    Hello,
    anybody knows where I can download a SAP Netweaver CE 7.1 EHP1 for Windows 32bit?
    At the SAP Software Distribution Center I have found only 64bit version.
    Günter

    Hello John,
    thank's for your answer which helps me much! In the meantime SAP told us also that it is included in the developer studio.
    I don't have DVDs. I can only download from the SAP Software Distribution Center and there I can find 51036014 NW CE 7.11 Appl., Dev.WP 32bit, Doc. 1 of 6.
    In the Requirements for the training SAP wrote we have to install SAP EHP1 for NetWeaver CE 7.1 SP4 and Oracle 10.2 or SQL-Server 2005.
    If I look to the downloaded 51036014 kit I find the following directories:
    CE711_01_DOCU
    CE711_01_IM_WIN_I386_ADA
    CE711_01_IM_WIN_I386_MSS
    CE711_01_JAVA_EXPORT
    CE711_01_JAVA_IDE
    CE711_01_JAVA_J2EE_INST
    CE711_01_JAVA_J2EE_OSINDEP
    CE711_01_JAVA_J2EE_OSINDEP_UT
    CE711_01_JAVA_JDMP
    CE711_01_JAVA_JDMP_COMP
    ESE_NET_11
    FWK_CE711_01_TOOLS_WIN_I386
    K_CE711_UI_WINDOWS_I386
    MAXDB_UPDATE
    MAXDB_WINDOWS_I386
    There is no directory for Oracle. Do you know which directory I have do use for installation?
    Sorry I am a beginner  in SAP
    regards,
    Günter

  • How to learn Netweaver

    Hi All,
    Presently i am working in mySAPECC5.0 do we need another server for XI or can we install in Same server. I am new to Netweaver and I want to learn, please give me suggestions.

    Hi Reddy,
    Welcome to the world of XI.
    From the little experience i have had in XI, the best way to learn XI would
    be to use the Wealth of material available in XI from its forums, weblogs, presentations ,etc.
    Also, I would suggest this link on SAP help for any info that you want on XI,
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    Further, this thread deals with everything that is needed for a starter on XI. Do check it out,
    JDBC Receiver: exact SQL statement
    /message/527697#527697 [original link is broken]
    Re: XI Beginner
    Regards,
    Bhavesh

  • Scope of NetWeaver XI

    I am new to SAP XI technology and I want to know some more details about this field. I also want to know about the scope of thsi field.
    Please pass me some links and reference material.
    Regards
    Amit K

    Hi
    Welcone to XI world,First start with this three links u can learn a lot from this three links.
    /people/sravya.talanki2/blog/2006/12/25/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-i
    /people/sravya.talanki2/blog/2006/12/26/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-ii
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    Please find some links to start with the study
    Intoduction to XI project
    /people/community.user/blog/2007/01/18/steps-for-a-sound-footing-in-your-xi-project
    Learning Map
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/learning+map&
    Gratitude for Rocking response on the SAP XI Solid Starter Material…!
    /people/sravya.talanki2/blog/2007/01/05/gratitude-for-rocking-response-on-the-sap-xi-solid-starter-material133
    the below link will provide all the related links for step by step scenarios in XI
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    SAP‘s Exchange Infrastructure
    http://www.omg.org/interop/presentations/2002/sinisa_zimek.pdf
    SAP Exchange Infrastructure 3.0 Integrating Heterogeneous Systems with Ease
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1ebea490-0201-0010-faad-a32dd753d009
    SAP NetWeaver Visual Composer
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/sdn-meets-labs-walldorf-05/sap%20netweaver%20visual%20composer%20in%202005.pdf
    SAP Exchange Infrastructure for Developers ( This is an excellent website for free pdf book for XI)
    http://www.sap-press.de/download/dateien/1191/sappress_exchange_infrastructure.pdf
    Exchange Infrastructure : XI Transaction Codes
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/xiTransactionCodes&
    A Beginner's Guide to SAP XI Settings part I
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/73527b2c-0501-0010-5398-c4ac372c9692
    A Beginner's Guide to SAP XI Settings part II
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6bd6f69a-0701-0010-a88b-adbb6ee89b34
    SAP XI AND SLD
    http://www.sappro.com/downloads/nov06/XIandSLD.pdf
    Exchange Infrastructure Learning Map
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/learning+map&
    SAP Exchange Infrastructure eLearning Catalog(U wil get all downloads regarding XI starting from basics to end)
    https://www.sdn.sap.com/irj/sdn/xi-elearning
    All Articles on SAP NetWeaver Exchange Infrastructure(This website gives al articles on XI)
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/f04b44aa-fe06-2a10-859e-82ad4965781d?startindex=101 [original link is broken]
    Mastering SAP Netweaver XI - Programming( PDF Book for XI)
    http://www.sap-hefte.de/download/dateien/1241/140_leseprobe.pdf
    SAP XI Learning Guide
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1008087,00.html
    SAP Exchange Infrastructure 2.0
    http://www.sun.com/third-party/global/sap/collateral/SunSAPWP_final.pdf
    http://help.sap.com/bp_bpmv130/Documentation/Planning/TechnicalInfrasture.pdf
    https://www.sdn.sap.com/irj/sdn/xi
    http://tsr.strain.at/space/SAP+XI
    https://www.sdn.sap.com/irj/sdn/xi
    Thanks
    Swarup
    Edited by: Swarup Sawant on Jan 28, 2008 9:44 AM
    Edited by: Swarup Sawant on Jan 28, 2008 9:44 AM

  • ABAP beginner HELP

    Hi all,
             Well, I am planning to migrate to SAP. Since I have much experience in software development I thought of exploring SAP ABAP. To use it I planned to download SAP Netweaver trial version and registered at SAP.com but now I am pretty confused to download exactly what? and any useful links for me to begin with.
    Thanks
    -Rehgrds

    Hi Saad,
    the SAP NetWeaver ABAP Trial Version at [http://www.sdn.sap.com/irj/scn/downloads] is a good place to start. You do not need ECC to practise ABAP.
    The associated pages give you plenty of information on what the hardware requirements are and how to install it.
    There is also plenty of stuff in the eLearning and the Wiki to get you going as well as plenty of books available if your budget allows.
    As a beginner there is one thing I think you should be aware of. ABAP is a very old language that has been evolving for decades. It is SAPs strategy to make the ABAP language as backwards-compatible as possible. This means that language constructs that are 20 years old are still supported in the language alongside the latest language enhancements such as regular expressions, chaining of method calls, etc. For a newbie this mix of old and new can be at least distracting and at worst confusing.
    Take your time to understand the old and the new to really appreciate ABAP.
    Cheers
    Graham Robbo

  • What to download to learn SAP Netweaver?

    Hello,
    I am new to SAP Netweaver, and SAP in general. I am learning to be a SAP BASIS admin. I am curious to know what downloads are available from which I can install on my PC and go about learning.
    Thank you in advance for your help.

    Hi,
    There is no tria version available for XI.
    There are many documents available on XI admin but u will not get the practical handson experience.
    Search on SDN u will get many links.
    Refer the below link for help:
    A Beginner’s Guide to SAP XI Settings, Part II
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6bd6f69a-0701-0010-a88b-adbb6ee89b34
    A Beginner’s Guide to SAP XI Settings, Part I
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/73527b2c-0501-0010-5398-c4ac372c9692
    General Configuration Steps
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/230240d981e469e10000000a155106/content.htm
    SAP Exchange Infrastructure (XI) : Installation & CONFIGURATION GUIDE
    http://help.sap.com/saphelp_nw04/helpdata/en/d7/f01a403233dd5fe10000000a155106/frameset.htm
    Personal Settings
    http://help.sap.com/saphelp_erp2004/helpdata/en/e9/c4cc9b03a422428603643ad3e8a5aa/content.htm
    Roles and Tool Access : Administration, Technical Configuration,Design,Configuration,Monitoring
    http://help.sap.com/saphelp_nw04/helpdata/en/89/05793c05f0807be10000000a11405a/content.htm
    http://www.forumtopics.com/busobj/viewtopic.php?t=59586&start=15&postdays=0&postorder=asc
    SLD:
    How To…Handle the SLD for SAP XI
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9e76e511-0d01-0010-5c9d-9f768d644808
    How To…Handle Caches in SAP XI 3.0
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1a69ea11-0d01-0010-fa80-b47a79301290
    http://www.sap-press.de/download/dateien/751/sap_press_exchange_infra_engl.pdf
    Thnx
    Chirag

  • Uninstalling NetWeaver App Server (with MaxDB)

    Hi,
    I am new to this forum.
    I had a good time running the preview for Netweaver 7.0 on my desktop, now I want to uninstall and try Netweaver 7.1
    Is it possible to uninstall completely?
    I was told that once a system is installed, then you cannot install another version or preview version again.
    please let me know..i am beginner trying to learn.
    thank you very much again.,
    mamoh

    Hi mamoh dimmjulky,
    I think You can install Netweaver 7.1 without uninstalling Netweaver 7.0 if you have enough resources.
    if that is not the case then you can uninstall the current version using sapinst.
    Regards
    Ashok

  • SAP BASIS for beginner with database (Oracle/DB2) background

    Hi ,
    I am basically from Oracle/DB2 database background , the place I am currently working is mainly using SAP, I also have interest in learning ERP so would like to start learning SAP BASIS and write some certification exams, but not sure from where to start , looks like it is very hard to get some guidence until you join some training institute , could someone please guide which certification best suits me as a beginner ?
    Kind Regards,
    Chaitanya

    Thanks for your inputs Antonio.
    All,
    Any help with respect to identifying right certification much appreciated.
    As I am from database background I see either of these 2 will suit my career (may be I am wrong !! pls correct ) but not sure about the difference between these two   please suggest.
    C_TADM56_731 - SAP Certified Technology Associate - System Administration "DB2 LUW" with SAP NetWeaver 7.31
    C_TADM56702 - SAP Certified Technology Associate - System Administration (DB2 LUW) with SAP NetWeaver 7.0 EhP2

Maybe you are looking for