What are the username and password when i click the ICM of JavaEE5@SAP

when i click the ICM of JavaEE5@SAP in the sapmanagement console mmc, It need i input the username and password for Web_admin, What are the username and password when i click the ICM of JavaEE5@SAP and which tools act the role as the VisualAdministrator of NetWeaver04s and NetWeaver2004s?
thank you very much

Hello Guoging,
you can login to ICM with username Administrator and password abc123. That is described in the start.html file, which you can find in the unzipped Downloadpackage of SAP NetWeaver Java EE 5 Edition.
You can use NetWeaverAdministrator(NWA) or config tool to configure this edition. NWA
needs to be installed separately. If you have a default installation, go to
C:SAPJP1JC00j2eeNWAdmin and execute the file install.bat. Ensure that NetWeaver is running, enter user Administrator und the Masterpassword you chose during installation and wait around 20 Minutes or more. NWA is started automatically after installation has finished in your webbrowser.
For more information on NWA read the Administrationguide
<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>

Similar Messages

  • Prompting for UserName and Password when I click Report Server Web Service URLs in ssrs 2008 R2

    Hi All,
                 I am using SQL Server Reporting services 2008 R2 . When I tried to open report server webservice URL in SSRS 2008 R2 It is prompting username and password. I tried to resolve the issue by deleting the <!--
    <RSWindowsNegotiate/> --> line in rsreportserver.config but still I am getting the same prompt
    and i tried by putting the server URL in trusted sites in IE also still no luck. I referred the below link 'http://blogs.msdn.com/b/lukaszp/archive/2008/03/26/solving-the-reporting-services-login-issue-in-the-february-ctp-of-sql-server-2008.aspx'
    I am getting the same error.
    Can anyone help me out to resolve this issue easily.
    Thanks
    Dathy

    Hi Dathy,
    Generally, this is a very common issue in Reporting Services 2008 R2, the blog you post is a good blog that summary the common solutions. If it doesn’t help, could you please try the following:
    Open Internet Explorer, go to Tools and click on Internet Options.
    Under the Security tab, click on Trusted sites and click the Sites button and Add Report Manager/Report Server URL to the trusted sites.
    Then click Custom Level, and check the option Automatic logon with current user name and password.
    Repeat step 3 and step 4 for Local Intranet.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • When logging in to my Mindbody scheduling program, the characters I type in the username and password box appear in the address search bar above. can't log in

    in other words I cannot log in to the site Mindbody, because when using Firefox when I start to type in my username the letters show up in the address bar above, and not in the username box. The same goes with the password box.

    Hello wendysue, '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • How to give Username and password when calling HTTP page?

    I have this code when i run this I get credentials error. How to give credentials .The authentication is set to windows in the https page. Means pop up will appear to get the credentials
    declare
    req UTL_HTTP.REQ;
    resp UTL_HTTP.RESP;
    value varchar2(1024);
    p_url varchar2(4000);
    OPT varchar2(1000);
    BEGIN
    dbms_output.put_line('');
    p_url:='http://www.xyz.com/';
    dbms_output.put_line(p_url);
    req := UTL_HTTP.begin_REQUEST(p_url);
    utl_http.set_header(req, 'User-Agent', 'Mozilla/4.0');
    resp := utl_http.get_response(req);
    loop
    utl_http.read_line(resp, value, true);
    dbms_output.put_line(value);
    end loop;
    exception
    when utl_http.end_of_body then
    utl_http.end_response(resp);
    END;
    When i run this i get
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <title>401 - Unauthorized: Access is denied due to invalid credentials.</title>
    <style type="text/css">

    Basic authentication is set using the UTL_HTTP.Set_Authentication() call.
    If you are using a proxy and need procy authentication, you can set the username and password for proxy access, as part of the proxy URL. E.g.
    utl_http.set_proxy( 'http://proxyuser:[email protected]', null );NTLM (Windows NT LAN Manager) authentication is proprietary and not part of the HTTP specifications. If that is needed, try and use the username and password as part of the URL - or do some research on how to manually perform NTLM authentication.
    If you are using HTTPS, you need an Oracle Wallet with that server's certificate (making it a trusted certificate), and then set/use the wallet using the UTL_HTTP.Set_Wallet() call. See sample code in {message:id=10820182}.

  • Prompt for username and password when executing servlet

    In Weblogic 5.1 when I set the username and password in weblogic.properties file, it prompts for the usertname and password when I execute the gatewayServlet
    weblogic.allow.execute.weblogic.servlet.servlets/gateway.administration=vijay
    weblogic.password.vijay=password
    But I guess this is not the way it can be implemented in 8.1. Please let me know how I can prompt for username and password when executing the servlet. I dont want it to be done programatically. Please let me know whether I can set anything on the properties file.
    Thanks
    Vijay Subramanian

    You can use Apache ACLs, http://httpd.apache.org/docs/1.3/howto/auth.html
    GoodEvening!
    I'm developing a web application using jsp
    technology.
    When the user digit:
    http://<machine address>:<port>/<applicationName>
    I would that a browser prompt login is diplayed to
    the user for enter him username and password,
    before loading the index.jsp page. Is possible
    without using awt or swing components?! using only
    the browser's prompt dialog?!
    p.s.
    sorry 4 my bad english! ;-)

  • HT4759 When I sign into my mobile me account the username and password is not recognised what do I do?

    When I sign into my mobile me account the username and password is not recognised what do I do?

    - Go to settings>iTunes and App Store and sign out and sign into your account.
    - Apps are locked to the account that purchased them.
    - To update apps you have to sign into the account that purchased the apps. If you have apps that need updating purchased from more than one account you have to update them one at a time until the remaining apps were purchased from one account.

  • 10.0.01 ver. doesn't sign-in automatically i look up password manager, it seems it saves usernames and passwords, when i visit websites i am not automatically signed in and when i reopen mozilla it keeps on asking main password to sign-in all the time.

    10.0.01 version doesn't sign-in automatically... i look up password manager, it seems to it saves usernames and passwords, when i try to visit that website i am not automatically signed in and when i reopen mozilla it keeps on asking main password to sign-in all the time... it happened after mozilla updated itself... please help about it.. (i dont have problems like this in Opera browser)
    mozilla fills user name when i click but after that it asks for main password (whats the purpose of remembering passwords if it will ask for main password)
    by the way main password for password manager is of course useful but it şs useful whenever i want to use it not all the time i open mozilla .
    and not all the time i open a website or forum which i often use...
    there were no problems before it updated itself...
    please tell me the solution

    my problem is not related with using main password or not...
    in former versions of firefox i was automatically signed in to websites without any click... it wasnt asking me to sign-in (because my usernames and passwords were remembered-and saved in password manager)
    in this version they are remembered again but i have to write first 2-3 letters of my username and it remembers my username then it remembers password...
    for example when i clicked twitter.com my account and my homepage as automatically opened, but in this version when i click twitter.com it opens the sign-in page and i write first 2 letters of my user name it remembers name and password and then i signin
    (difference i was at where i want to sign in with one click--- but in new version 1click for webpage-1 click for clicking to username are-1-2 letter writing to find my user name-1 click to remember password-1 click to sign in) an addition: also if i am using main password i am entering main password and click to sign-in
    This can be little problem to u, but it is really annoying problem, 9-10 clicks more for each webpage which i wanted mozilla to remember my usernames and passwords... it also asks main password if i am using...
    if i want to visit 5-6 different websites it means 70-80 clicks more and 50-60 letters typing according to your main password .. (in opera and mozillas former versions it is just 5-6 clicks)
    so main problem is the cookies were remembered in all the sessions but after it updated to v.10.0.1 expiry date of cookies of same websites that i visit are just for one session... it is not related with the websites and their servers that i visit because if so how can Opera remembers all the time...

  • What is the username and password for the web page on the hp deskjet 2540 printer?

    I need to administer my Deskjet 2540 through my web browser, but do not know the username and password. When it says log in it says 'The server http://[ip adress] requires a pasword. The server says: admin.' I have tryed to use admin as the usermane and no password but it does not work. Is there a way to reset the pasword?
    Thanks

    Hello there @Aokvilla , Welcome to the Forums!
    For the issue you are having, I would recommend trying a different web browser for starters, and if that doesn't help, follow the instructions below from another post with a resolved solution. If those steps don't help, the problem could be your router.
    HP printer requires a username and password by @pcwizard 
    Good luck!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • HT4623 When I joined my wireless network I set authentication required to on and di not eneter a username or password.  I then went into safari and as requested entered my username and password.  Now,however the iPod is remembering my credentials. How do

    When I joined my wireless network I set authentication required to on and di not eneter a username or password.  I then went into safari and as requested entered my username and password.  Now,however the iPod is remembering my credentials. How do I clear my credentials?

    Go to Settings>Safari and Clear History, Cookies and Data
    Also go to Settings>Safari>AutoFill and Make sure that Names and Passwords are OFF and Clear All.

  • What is the username and password for the airport extreme router

    I just switched from a wired router to an airport extreme and im trying to access the router information by typing in my router into the search bar of safari, when I used my old router the username and password was admin, admin. but this isnt the case with the airport extreme, does anyone know what the username and password combination is for airport extreme?

    Unlike routers from most other manufacturers, Apple's Airport devices cannot be configured using a web browser pointed to the IP address of the Base Station. Any manual configuration of the Airport Base Station must be done using the Airport Admin Utility provided by Apple.
    FYI, when using the Airport Admin Utility the default password for the Airport Base Station is the word "public".

  • I lost the usernames and passwords for my websites when I installed Firefox 4. How do I recover them?

    I bookmarked frequently used websites. Many of which had secure user names and passwords. I used firefox, norton and roboform to remember the user names and passwords. All of these were lost when I upgraded to Firefox 4. I need to recover the usernames and passwords. I also want to use these features going forward. What do I do?

    Figured it out. Just gotta delete keychain.plist, which is found in one of the following two spots:
    C:\Users\YOURUSERNAME\AppData\Roaming\Apple Computer\Preferences\keychain.plist
    C:\Documents and Settings\YOURUSERNAME\AppData\Apple Computer\Preferences\keychain.plist

  • HT1695 I am trying to connect to my uni wifi, and when i click on the wifi, it directs me to a log in page. However, the two boxes to enter the username and password do not appear. Can anyone help me with this???

    I am trying to connect to my uni wifi, and when i click on the wifi, it directs me to a log in page. However, the two boxes to enter the username and password do not appear. Can anyone help me with this???

    You didn't say what you have already tried, but if you haven't already done so, power-cycle your router (unplug it for 15 seconds then plug it back in), then on your phone go to Settings>General>Reset and tap Reset Network Settings, then try joining your wifi again.

  • Could not open gmail on the mail application of the mac book pro. Gmail has two account types, SMTP and Google IMAP. In both cased failure in trying to log on to SMTP and Google IMAP because I have to verify that the username and password are correct.  Ho

    Could not open gmail on the mail application of the mac book pro.
    Gmail has two account types, SMTP and Google IMAP.
    In both cases failure in trying to log on to SMTP and Google IMAP because I have to verify that the username and password are correct.
    How do I verify that? Please help. Thanks.

    Routing gmail through Mail.app:
    imap-http://mail.google.com/support/bin/answer.py?answer=81379&topic=12814
    pop-http://mail.google.com/support/bin/answer.py?answer=13275&topic=12810
    More up-to-date advice here:
    http://www.macworld.com/article/2033842/make-mail-and-gmail-play-nice.html#tk.nl _mwhelp
    Note that you lose privacy when using Gmail (and Yahoo):
    Gmail and Yahoo both scan users' emails. They do algorithmic analysis of your email messages, targeting ads that relate to the content of your messages.

  • I just purchased a new iMac, and can't get into my Wordpress blog. The username and password work on my old Macbook, iPhone4, etc, and all my other password-restricted sites are accessible...just not Wordpress. Ideas? New to all this...

    I just purchased a new iMac, and can't get into my Wordpress blog. The username and password work on my old Macbook, iPhone4, etc, and all my other password-restricted sites are accessible...just not Wordpress. Ideas? New to all this...Thanks! JP

    Try holding down the Shift key in Windows when opening iTunes. In the resulting dialogue you will get the option to create a new library or navigate to an existing one. The default location for your iTunes library is in C:\Documents and Settings\Username\My Documents\My Music\iTunes\ (or C:\Username\Music\iTunes\ in Vista). Look in there and see if you have more than one library file (they have the extension .itl) If you have more than one try opening them in turn, you may find your original library is still intact: How to open an alternate iTunes Library file

  • Can't get FaceTime to work...any suggestions...it just keeps me in this loop of asking to sign in, then verifying, then asking to sign in again. I know the username and password are correct.

    Can't get face time to work. Know the username and password are right. Asks me to sign in...verifying... And then goes back to sign in...

    One thing that worked for me:
    launched Message app which uses the same backend as Facetime. If it launches, click on the video. May display a Error Dialog. Call AppleCare and give them the number displayed. This will give them the needed info to check your AppleID account for the messaging servers
    For some reason FaceTime did not display this error, yet once I gave the Support person the number it was fixed in just a minute.
    YMMV

Maybe you are looking for

  • How to get the profit centres determined in automatic payment run - F110

    Hi, In F110 - Automatic payment run, is it possible to get the profit centres determined ? While doing manual payment, system gives the option to enter the related profit centres. But in F110 how can I get the profit centre (cost obect) selected ? Co

  • Excel Import - No good for large-ish datasets?

    Hi, I'm trying to import some Excel data into an Oracle table... The data is very simple - varchar2(9), varchar2(9), varchar2(11). There are 40k rows in the spreadsheet with three columns corresponding to the above. When I try to import from the spre

  • Aperture loose link with Referenced Masters

    I just upgraded to Aperture 2 and spent days organizing and creating an elaborate library of referenced files. The masters were placed on an external HD via FW 800. Things were working perfectly until I launched Aperture and there was no sign of my l

  • How do i change who can see all of my "settings" i...

    I can only change what the "settings" on my profile say i cant change who can see them like at my profile before i hit edit it says oublic or private or contacts next to it but whne i hit edit i can change that plz help (I spent a half hour trying to

  • Saving and loading plugin's settings by using SDK APIs.

    Hi All. I am trying to save and load plugin's settings, ex. dialog setting values and strings. OS platform is windows XP. First I programmed the way of using *.ini file. But that not appropriate for Macintosh. So, I like to know common way by using S