Hi.. am a new Netweaver Programmer

HI all,
      I am Guhapriyan,  I have prior experience in java recently i started as Netweaver programmer any one has netweaver tutorials and also please suggest Some books..
Thank you in advance
Regards
Guhapriyan

1) a good start is definitely browsing through the SDN. There are tons of materials in weblogs, articles, e-Learning and forums
2) Another good source for books about SAP and NetWeaver is http://www.sap-press.com/, e.g. with a recently published book about SAP Web Application Server, and others...
Mario

Similar Messages

  • How to install BI content on a new Netweaver 2004s SR1 installation

    HI Friends,
    I have installed new NetWeaver 2004s SR1 on Windows 2003 server :oracle 10g as a central system.The installation was succesfull.
    How to install the BI content addon  in the system?(not installing business content objects). Please let me know if you have any guidance  for installing the BI content.
    Thanks
    mv_d

    im also facing the same problem. you got it solved? please do help me [email protected]

  • I am having problems importing my Iphoto pics into new Photo programme. I am inporting approx 11,000 pics that all seem fine in Iphoto but the iport rejects around 7,000 of them with incorrect mete data. What can I do to import these?

    I am having problems importing my I photo pics into new Photo programme. I am importing approx 11,000 pics that all seem fine in I photo but the import rejects around 7,000 of them with incorrect mete data. What can I do to import these?

    I have the same problem.
    Thread here: Import fails - "Unable to get metadata"

  • How do i increase the resolution on my screen in CC, my old CS6 was fine the new CC programme makes everything look like placed low-res files?

    ow do i increase the resolution on my screen in CC, my old CS6 was fine the new CC programme makes everything look like placed low-res files?

    yes doc set to high res, hard to get an example as screenshot is low-res anyway

  • Tips for a new ABAP programmer...

    Hello experts,
    I am a fairly new ABAP programmer that usually modifies existing reports. I am really having a hard time on understanding all those synatx. Can you guys give me tips on how to better understand reports/programs?how do you analyze reports? any tips and suggestions would really helpful to me.Thanks a lot guys!

    Hi,
    No Problem dont worry SDN will help you a lot.
    Actually every one is new for the new technologies.
    Actually here as an ABAPer 1st try to learn DE-BUGGING as much as you can.
    Try to do it from START-OF-SELECTION event 1st line on wards.
    Put a break point on start of selection line event and execute it.
    Here in debugging you need to carefully observe the behaviour of the program, logic etc etc.
    Next understand the FORMS when they are triging and their reusability.
    Under stand the Events sequence.
    Later try to obsorbe the Syntax of the commands as much as you can.
    Thanks.
    If this helps you reward with points.

  • New Netweaver Certifications

    Hello everybody,
    I'd like to know if in 2007 new Netweaver Certifications will be created.
    xApps, SOA architecture,...
    Please, it would be very helpfull If someone from SAP can tell me something about this. I'm designing my company's certification and education planning and I need to know if something new is going to be created in the next months.
    Thanks a lot.
    Alberto.

    Thanks Jim.
    Interested in Enterprise Architect and BPX.
    So, waiting...
    Regards,
    Alberto.

  • ESS for R/3 4.6C on new NetWeaver Portal -- deployment fails!

    Hi ESS Experts,
    We're having problems deploying the older BP for ESS R/3 4.6C to our Netweaver Portal. Our Software Deployment Manager canu2019t install the file. Normally, BPs are .sca files but the BP for ESS 4.6C is a .zip file. We can manually rename the .zip to .sca, which is then shown in the SDM but the deployment always fails.
    How can we install this BP for ESS 4.6C on our newer SAP NW Portal used for our BW system?
    Many thanks,
    Andrew

    Hi Andrew
    Have you tried to unzip the file and identify the required deployment files?
    Further to this -->
    If you go to /swdc it states BP ESS 4.6C-4.7 50.4 (no longer in maintenance) - this product is no longer in
    mainstream maintainence
    Also there are no guarantees that 46C products will work with Enterprise Portal versions from other SAP product families
    e.g NW 700 with ESS 46C
    If you have extended maintainence for 46C perhaps you could open a CSS/OSS message in component BC-CTS-SDM
    to investigate why the installation fails and whether there is any workaround
    Hope this helps
    Stuart

  • How can I get my photos off the old family album programme without buying a new photoshop programme?

    The pop up to register my adobe photshop starter edition keeps coming up on screen.  I have many family pictures I want to view, copy, print etc.  I cannot get the code to unlock it as it states this programme is no longer available and the links forward me to a page to purchase another family programme - this is not something I want to do.  Does anyone have any suggestions please??

      Download the free trial of Photoshop Elements 10 using the link below. Use the Organizer to convert your catalog:  You can convert catalogs made with previous versions of Photoshop Elements, or with Photoshop Album, so that you can use them in the current version of Photoshop Elements.
    Select File à Catalog
    Click Convert.
    The Convert Catalog dialog box opens and searches the default locations for the catalogs of Photoshop Elements and Photoshop Album.
    (Optional) To browse additional locations for catalogs, click Find More Catalogs, and browse to the locations.
    Select a catalog from the list to convert, and click Convert.
    To close the Convert Catalog dialog box, click Done.
    The free trial Lasts for 30 days but only the Editor program expires. The Organizer is yours to keep.
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en_us

  • New C programmer, criticism

    Hi! I've been learning C lately. I've been doing some programming in Python before, but C is fairly new to me. I've written a small "Todo manager", https://github.com/stritfajt/Todo, and while it works just fine, I'm afraid that I've made some stupid mistakes that would lead me into bad habits later on.
    I'm also thinking about how I would go about implementing a function to delete a todo. Is there a simple way to delete a line of a file in C? Or will I have to read the file in to a string and then write the desired lines to a temporary file wich I later move to the correct location? Is there anything wrong with that approach?
    Please excuse my language, I'm not a native English speaker.
    Simon.

    ewaller wrote:
    Well...
    I would not hard code the file names.
    You perform no error checking when performing file operations.
    You use the file pointers without having checked that they are valid.
    Instead of long if..then..else structures, I prefer to build tables driven logic.
    I've declared the path with an #define line now, that seems nicer. In the future I might add a config file.
    As for the error checking, should I just check the return value of fopen, fgets and fputc? Or where you thinking of anything else?
    Could you elaborate on the tables driven logic? I don't think I understand what you mean there, any examples?
    gbrunoro wrote:Hi korkadapa,
    I'll add up two things to ewaller remarks:
    1) I wouldn't use "r+" mode for files in this case, you'd be better off with a temp file. Using read-write mode can bring some serious trouble.
    2) Try to follow some style guidelines, as the column 80 rule. You can read some open source code (for instance the kernel) to get an idea what real life C looks like.
    I can't see why, but I'll trust you regarding the r+ mode!
    I read about the column 80 rule and added some stuff in my .vimrc so help me follow it. Any more style guidelines that I should follow?
    /dev/zero wrote:I wouldn't hard code the magic number "100".
    I would use more comments.
    I would consider using lex/yacc to parse the input. Also, if you used a config file to avoid hard coding the file names, you could use lex/yacc to parse that too.
    How do you do it without hardcoding the array size then? With a file I would have read it twice and counted the size the first time, but I can't think of a way to do that with an input...
    lex/yacc seems great, I will have to learn that sometime!

  • New Netweaver Installation

    Hi,
    I have newly installed SAP Netweaver Composition Environment CE 7.1 in our SAP landscape.
    We do not have prior SAP Netweaver Installation in SAP License Keys - installation overview.
    Please let me know how to add SAP Netweaver installation name for our customer number in
    installation overview in support portal.
    Regards,
    Sandeep.

    Hi. Go to http://service.sap.com/licensekey and in left corner read the Documentation,Learning MAP, Frequently Asked Questions. Regards.
    Edited by: Sergo Beradze on Mar 23, 2008 4:11 PM

  • New Game Programmer In Need Of Help Choosing A Laptop!

    hi, im sorry but i really need help with choosing a laptop. not sure where to post this. i just enrolled in game programming. and im currently on the hunt for a laptop that i can use for programming. i know a desktop is better. but sadly i cant carry it to school. after looking at Alienware, Razer, MSI and others. i kinda want to get an MSI laptop. any suggestions? ofcoz not the high end ones. thank you in advance!

    A model with a Steelseries keyboard will by far be the best for you.  What are your requirements - screen size/ storage/CPU/GPU/ screen real estate (4K/3k/1080/)/weight/ material   - those requirements would help to narrow down the choices since there are so many... Also what country are you in and do you prefer to buy from one store or another?

  • Good example games for a very new game programmer

    I would very much like it if some people would post some very very (i mean very) simple games with source code. I just started programming games about two days ago. Any post would be helpful.
    Thanks.

    Well if you know java as in the syntax and stuff then check out http://www.geocities.com/jvp02/BreakOut.html ( you must type into browser) you need 1.4 to run it, and i'm pretty (yes i am) sure that the source is in the jar at: http://www.geocities.com/jvp02/downloads/breakout.jar
    have fun.

  • New AC3 programmer confused over 'packages' -

    Hi everyone,
    So, I've been slowly teaching myself AC3 - largely using examples from online tutorials and a collection of books I've bought. I can get simple exercises to work, but I'm losing my way when things get complicated.
    For example - packages - I am unclear on how these work and interact with my main programming stream. Now I'm getting to the point where this question seems to be coming up all of the time. But, for some reason, I just can't seem to connect the dots.
    Is there anyone out there that could sum up a easy to understand path to enlightenment!
    Much appreciated!
    Have a great day!
    Tekla

    The more you continue to program in as3 you will slowly be introduced to what is known as Object Oriented Programming, or OOP.
    Its the belief to think of code in terms of an object.
    So if you were building a car you might be overwhelmed and say omg where do i start, but if you embrace OOP you can say well lets begin wilth the tires.
    And you can focus strictly on 1 object at a time and then use recursive composition which entails of building increasingly complex elements from simplier ones.
    Now package can be a folder but consider a package to be a repository for like items.  when developing our Tire system, to make up this package we might have sub folders for tread and lug nuts and hub caps.
    But i dont want to mix my tires with hub caps, so i might make sub packages in the tire class.   tires.hubcaps.  and ta-dah!  you have packages of packages.

  • New SR1 netweaver install anytime soon?

    Any news on this, and then perhaps a migration path to it documented from the old ep6 sp2
    I just cant install new netweaver (04 in 05) and spend days patching the environment..there are just too many steps..and too much wasted time. I’m going to wait until SR1 comes out..
    Unless somebody says it will be another 6 mos.. I'll wait
    any news???

    Hi John,
    "Support Release 1 available now!
    SAP NetWeaver '04 Support Release 1 is available from today on as planned.
    Download from SAP Support Portal's Software Distribution Center
    http://service.sap.com/swdc --> Download --> Installations and Upgrades --> Entry by Application Group
    --> SAP NetWeaver --> SAP NetWeaver --> SAP NetWeaver 04 --> Installation and Upgrade
    Pleases note that only the following combinations of databases and operating systems
    are available today. The other combinations will come in CW53.
    Oracle DB on Unix (exept of True64)
    Oracle DB on Win
    MS SQL on Win
    Max DB on Unix (exept of True64)
    Max DB on Win
    Please see the Product Availability Matrix for details."
    Copied from another message...
    Hope this helps anwering your question.
    Noel

  • What is new in BI 7.0

    I would appreciate if any of you could provide me with links  to relevant documents or information on what is new for BI 7.0..
    One of  my main intentions is finding out information on the changes in Process Change Monitoring.  As you all know the issue with the current tools  in BW(3.5) is that the if the chain doesn't start.  Well is hard to find out promptly,  and similar situation when activations hang .....   I was thinking in creating a custom tool, but I was told that BW 7.0 do provide tools to better monitor chains.   Well… if anyone has information on this …I would appreciate ….
    Thank you
    Alfonso.

    Hi ,
      Check these links ,
      <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3604c604-0901-0010-f0aa-b37378495537">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3604c604-0901-0010-f0aa-b37378495537</a>
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/a8/48c0417951d117e10000000a155106/content.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/a8/48c0417951d117e10000000a155106/content.htm</a>
    <a href="/people/markus.kohler/blog/2006/06/07/welcome-to-my-new-netweaver-performance-blog:///people/markus.kohler/blog/2006/06/07/welcome-to-my-new-netweaver-performance-blog
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6ce7b0a4-0b01-0010-52ac-a6e813c35a84">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6ce7b0a4-0b01-0010-52ac-a6e813c35a84</a>
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5ee3725b-0401-0010-e381-ac323362ce91">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5ee3725b-0401-0010-e381-ac323362ce91</a>
    Regards
    Renjith Kumar

Maybe you are looking for