How to login into 000 client -- sap*   in ecc6.0

how to login into 000 client--sap*  in ecc6.0
because i need to generate solution maneger key.
or tell me any alternate for generating the same.
Edited by: THIRU MALAI on May 9, 2008 9:55 AM

Hi,
1. You have to Configure the Email connections through SCOT tcode.
2. After that you ccan send/recive a mails from exchange server and SAP R/3 systems.
Look into the following link.
http://help.spa.com--> search for E-mail configuration and aslo search for FAX configuration.
Regards,
Srini Nookala

Similar Messages

  • How to login into another BO from my BO

    Hi
    My requirement is to login into another BO from a link in my BO without asking user to enter uername and password.
    Can you pls help me to know how this can be done.
    Thanks
    Regards
    Amit

    siteminder configuration requires you to set up a web agent and web server which must be 6.x only.
    You may be interested in using trusted authentication which doesn't have any such limitations. Look for the directions in the admin guide or business objects articles above. For siteminder you can enable HTTP_HEADER and the user param is usually smuser. You can also use trusted auth for any otyher authentication mechanism IIS, Oracle, you name it...
    Regards,
    Tim

  • How to login into yahoo from j2me midlet?

    Hi all,
    I want to login into yahoo from my j2me midlet and chat with more than one user in my friendlist?How to proceed for doing this?Plz help?What all will be required for doing this
    Thanks
    Sagar

    ask to yahoo to know if it's possible...

  • HOW TO LOGIN INTO iNTEGRATION REPOSITORY

    Hii Guyz , i installed PI 7.0 (NW04s) . Now i hit SXMB_IFR  tx code and it opened Xchange infrastructure window. But what is the userid and password to login into "Integration repository" and "integration directory" . Plzz help me asap
    Thank you

    Hi,
    It is the same user id and password which u have used for login into SAP XI box.
    Have u tried that?
    Or try to first create an user using SU01 transaction assign all the roles to that uses then login.
    Check the roles which needs to be given to users.
    http://www.erpgenie.com/sap/netweaver/xi/xiauthorizations.htm
    Thnx
    Chirag Gohil

  • How to login into XI integration repository

    Hii Guyz , i installed PI 7.0 (NW04s) . Now i hit SXMB_IFR tx code and it opened Xchange infrastructure window. But what is the userid and password to login into "Integration repository" and "integration directory" . Plzz help me asap
    Thank you

    Any ID with proper authorization will be able to login to IR and ID.
    What is the error you are getting while trying to login in?
    -Pinkle

  • How to login into NP Identity System using ObSSOCookie?

    I am using the Web Services API to Netpoint, generated by WSDL files. I have an ObSSOCookie (from IWA) which I want to use to log into Netpoint Identity System. The usual method is as follows:
    Authentication authN = new Authentication();
    authN.setLogin("admin");
    authN.setPassword("passwd");
    port.oblixIDXML_common_search( authN, myrequest);
    I could not find a method to use an ObSSOCookie to authenticate against Netpoint Identity System. (I understand that ObSSOCookie can be used to log into a Netpoint Access System protected URL using AccessSDK).
    If there is any other solution using utilities like HTTPClient, etc, please let me know.
    Thanks,
    Prashant.

    Hi Pankaj,
    I had tried this code earlier once. This is what I wrote:
    Authentication authObject = new Authentication();
    authObject.setLogin("pshetty");
    authObject.setPassword("dummyPassword");
    authObject.setDomain(".mydomain.com");
    OblixIDXMLPortType port = loc.getOblixIDXML_common_search_Port();
    ((javax.xml.rpc.Stub)port)._setProperty ("javax.xml.rpc.session.maintain", Boolean.TRUE);
    ((javax.xml.rpc.Stub)port)._setProperty(HTTPConstants.HEADER_COOKIE, "ObSSOCookie=" + ssoCookie);
    port.oblixIDXML_common_search( authObject, myrequest);
    The error I get is:
    "Invalid Credentials. Login failed."
    I guess it is still using the password from the AuthN object instead of the cookie. Am I missing something here?
    Thanks,
    Prashant.

  • How to, login into the yahoo groups/clubs,....

    Hi,
    I would like to write a offline browser utility to follow up my yahoo groups and clubs.
    I took several attempts before I wrote this mail and I discoverd that it are the redirections and cookies that cause the problems.
    Does anyone know a class capable to download a URL dispite of cookies and redirections?
    I tried with the swing-brower that comes as example with the JDK but he has also problems with the cookies and redirections.
    Greetings
    Frank

    Hi,
    I found the sollution to my problem with the help of the sniplet of madhu77 "Dealing with cookies" from nov 8, 2000 10:05 AM
    I worte a class to login to the yahoo clubs, I just added the hidden parameters from HTML form, and two methods, one to retrieve the login page and a second to get a HashSet of String(URLs) to the clubs your a member of. The constructor accepts login name and password as parameters.
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class YahooClubsLogin
    private String loginName="";
    private String password="";
    private String loginPage="";
    public YahooClubsLogin(String pLoginName,String pPassword)
    try
    loginName=pLoginName;
    password=pPassword;
    String firstcookie="";
    URL u = new URL("http://clubs.yahoo.com/clubs.html");
    URLConnection uc = u.openConnection();
    HttpURLConnection huc = (HttpURLConnection)uc;
    huc.setFollowRedirects(false);
    String cookie1 = huc.getHeaderField("set-cookie");
    if(cookie1!=null)
    { int index = cookie1.indexOf(";");
    if(index > 0)
    firstcookie = cookie1.substring(0, index);
    URL loginurl = new URL("http://login.yahoo.com/config/login");
    URLConnection con = loginurl.openConnection();
    HttpURLConnection httpcon = (HttpURLConnection)con;
    httpcon.setDoInput(true);
    httpcon.setDoOutput(true);
    httpcon.setUseCaches(false);
    httpcon.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
    httpcon.setRequestProperty("Cookie", firstcookie);
    httpcon.setFollowRedirects(false);
    OutputStream raw = httpcon.getOutputStream();
    OutputStream buffered = new BufferedOutputStream(raw);
    OutputStreamWriter out = new OutputStreamWriter(buffered);
    String query = ".tries"+"="+URLEncoder.encode("1")+"&"+
    ".done"+"="+URLEncoder.encode("http://clubs.yahoo.com/clubs/")+"&"+
    ".src"+"="+URLEncoder.encode("grp")+"&"+
    ".intl"+"="+URLEncoder.encode("us")+"&"+
    "login"+"="+URLEncoder.encode(loginName)+"&"+
    "passwd"+"="+URLEncoder.encode(password)+"&"+
    ".persistent"+"="+URLEncoder.encode("Y")+"&"+
    ".chkP"+"="+URLEncoder.encode("Y")+"&"+
    "Submit"+"="+URLEncoder.encode("Login");
    out.write(query);
    out.write("\r\n");
    out.flush();
    out.close();
    for(int p=0; p<15 ; p++)
    String header2 = httpcon.getHeaderField(p);
    String key2 =httpcon.getHeaderFieldKey(p);
    String location = httpcon.getHeaderField("location");
    int j=1;
    int count = 0;
    String[] cookies = new String[4];
    while(httpcon.getHeaderFieldKey(j)!= null)
    String key =
    httpcon.getHeaderFieldKey(j).toLowerCase();
    if(key.indexOf("set-cookie")!=-1)
    String header = httpcon.getHeaderField(j);
    int ind = header.indexOf(";");
    if(ind > 0)
    String cookie = header.substring(0, ind);
    cookies[count] = cookie;
    count++;
    j++;
    String cookiestring = new String();
    for(int k=0; k<count; k++)
    cookiestring = cookiestring.concat(cookies[k]+";");
    URL verifyurl = new URL(location);
    URLConnection loccon = verifyurl.openConnection();
    HttpURLConnection lcon = (HttpURLConnection)loccon;
    lcon.setFollowRedirects(false);
    lcon.setRequestProperty("Cookie", cookiestring);
    for(int r=0; r<15 ; r++)
    String header3 = lcon.getHeaderField(r);
    String key3 = lcon.getHeaderFieldKey(r);
    int code = lcon.getResponseCode();
    String response =lcon.getResponseMessage();
    String location2 = lcon.getHeaderField("location");
    String secondcookie = new String();
    String cookie2 = lcon.getHeaderField("set-cookie");
    if(cookie2!=null)
    int index2 = cookie2.indexOf(";");
    if(index2 > 0)
    secondcookie = cookie2.substring(0, index2);
    secondcookie = cookiestring+";"+secondcookie;
    URL myurl = new URL(location2);
    URLConnection mycon = myurl.openConnection();
    HttpURLConnection hmycon = (HttpURLConnection)mycon;
    hmycon.setFollowRedirects(false);
    hmycon.setRequestProperty("Cookie", secondcookie);
    for(int s=0; s<15 ; s++)
    String header4 = hmycon.getHeaderField(s);
    String key4 = hmycon.getHeaderFieldKey(s);
    InputStream data = hmycon.getInputStream();
    InputStream in = new BufferedInputStream(data);
    Reader r = new InputStreamReader(in);
    StringBuffer tmpPage=new StringBuffer(20000);
    int c;
    while ((c = r.read())!= -1)
    tmpPage.append((char)c);
    loginPage = tmpPage.toString();
    catch(Exception e)
    String getLoginPage()
    return loginPage;
    HashSet getClubURLs()
    HashSet urls = new HashSet();
    int loginNamePos = loginPage.indexOf(loginName);
    int endOfClubsTable = loginPage.indexOf("/table>",loginNamePos);
    int positionOfClub = loginPage.indexOf("http://clubs.yahoo.com/clubs/",loginNamePos);
    while (positionOfClub > loginNamePos && positionOfClub < endOfClubsTable )
    int positionEndClub = loginPage.indexOf("\">",positionOfClub);
    urls.add(loginPage.substring(positionOfClub,positionEndClub));
    positionOfClub = loginPage.indexOf("http://clubs.yahoo.com/clubs/",positionEndClub);
    return urls;

  • Password forgot in 000 client

    Hi Basis Gurus,
    We have forgotten our sap* and ddic password in 000 client.
    Please tell us the steps how to reset it.
    Please help us
    Regards,
    Anil.

    Hi Anil,
    Connect to DB
    SQL> conn / as sysdba
    SQL> delete from Schemaowner.USR02 where bname ='SAP*' and mandt=000;
    SQL> delete from Schemaowner.USR02 where bname ='DDIC' and mandt=000;
    SQL>commit;
    Now login to 000 client with SAP* and PASS as password and create DDIC and SAP* users with new password .
    Regards,
    Kalyan

  • How to enter into shared services in system 9

    how to login into shared services

    Hello,
    I'm new with Hyperion and would like to ask something. I installed Hyperion Shared Services 9.3.1 in my desktop (inside consist of Windows XP Professional Service Pack 3, 1 GB RAM, Oracle Database 10g (10.2.0.1) Standard Edition, Oracle Application Server 10g).
    I read from Hyperion Shared Services security guide in Chapter 3 about User Management Console that we can launch User Management Console in 3 ways:
    1. Using a browser and connecting to the User Management Console URL
    2. On Windows, navigating Start > All Programs > Hyperion > Foundation Services > User Management Console
    3. From a Hyperion product interface
    I tried to connect using URL : http://<localhost>/58080/interop and http://<localhost>/58080/interop/ and http://<localhost>/58080/interop/index.jsp but failed (where I changed <localhost> to my computer name). When I installed Shared Services, there are no point to choose port or create username.
    There are no User Management Console in Foundation Services either.
    How to start and stop Shared Services then and how do I know Shared Services has already run?
    Thanks.

  • How to unlock DDIC & SAP* user in 000 client-Sybase database

    Dear Experts,
       Accidentally DDIC and SAP* user in 000 client has locked. We are using SYBASE ASE database. I know how to unlock user in other database (eg:update <sid>.USR02 set UFLAG = 0 where BNAME = '<user id>'' and mandt = <clinet number>;).
       what is the equal query in Sybase.
    Thanks, Jyothish

    Hi Jyothish,
    Please try below commands
    Login to Sybase ASE database using
    isql -Usa -S<SID>  ( it will prompt for password)
    use <DBSID>
    To check the account status
    select UFLAG from USR02 where BNAME ='SAP*' and MANDT='000'
    go
    To unlock the account
    update USR02 set UFLAG=0 where BNAME='SAP*' and MANDT='000'
    go
    You may add schema owner SAPSR3.USR02 in the query if above query does not work.
    Hope this helps.
    Regards,
    Deepak Kori

  • How to enter into sap

    thnkq sir.i started to learn.In ecc6 I am unable to enter into sap
    I ma giving Client 000 User as a DDIC and Password 19920706.How to enter into sap. Can any one give me any tips?
    thnq

    Hi,
    Are you using IDES of ECC6? if yes, you can use client 800. in this IDES model data are there.
    is there any other user in the system.. if yes then create one user for yourself by them.
    in ECC6 IDES, you can login with DDIC in 800 client with password 19920706
    For IDES
    "In the clients 000/001 you can logon with DDIC and SAP* with the password you have defined at the beginning of the installation as 'Master-Password', in the clients 8xx with the password 19920706 / 06071992 and in all clients
    with IDADMIN / ides"
    read this note
    https://service.sap.com/sap/support/notes/1244548
    Regards,
    Debasis.
    Edited by: Debasis Sahoo on Oct 18, 2008 12:47 PM

  • IMP:-sap* deleted in 000 Client

    Hi All,
    If some one deleted " sap *  i.e. superuer ID in 000 client with out any knowledge of the user.
    Kindly let me know how to solve this issue ASAP.
    With Regards
    Prashanth

    You want to have user SAP* back into client 000?
    Check if parameter login/no_automatic_user_sapstar is set to 0. In that case, you can logon to client 000 with sap*/pass and the user is created again..
    Kind regards,
    Mark

  • How to Find out who is login into the Portal.

    Hi Friends ,
    I have one doubt  Now I have one Requirement. i.e.
    How many members (users) login in to the Portal?
    In what time they login into the portal?
    How many times hits the iView in  Portal?
    Who is last login into the portal?
    I have find out these details by using these details I will create one Iview.
    How to find these details. By using these details I will created one iView. Kindly  let me know.
    Could you tell me those
    1.     Is it creating Portal Activity Report iView in Portal?
    2.     By using WDJ Application we can create one Application. By using this application we can create iView?
    Regards
    Vijay Kalluri

    Hello Vijay,
    If you are interested in a 3rd party application with all the stats you need and more, check out Click Stream by Sweetlets. Easy to download and user friendly with many key reports quickly accessible. It also answers some of the questions you had above a whole lot simpler than anything else out there or any other route you had in mind.
    In the very near future Click Stream will also have iView recording to monitor iViews, telling which iViews have been clicked, etc. Also, the one you were looking for, "who the last login into the portal", will soon be added.
    Click Stream uses the Usermanagement (UME) API to get more information about the user, groups, roles, LDAP attributes etc. and offers you the ability to use such information for filtering within any report.
    Click Stream also uses the PCD API to get information about the pages your users are visiting.
    Here are some reviews on the SAP EcoHub from people who have used it: http://ecohub.sdn.sap.com/irj/ecohub/solutions/clickstream
    Please just let me know if you have any question or if you are open to test drive Click Stream. We will certainly help as best as we can.
    Good luck.

  • How to get into desktop screen at once when client come into RDP session?

    How to get into desktop screen at once when client come into RDP session?
    When users login into terminal server I would like they see own desktop and open web page of corp portal.
    How to do that?

    Hi
    Hope below links will help
    http://blog.cloud-client.info/2012/10/03/tip-configure-a-keyboard-shortcut-to-minimize-fullscreen-citrix-or-microsoft-rds-sessions-for-a-linux-based-igel-os/
    Also there are some Remote Desktop Services shortcut keys
    http://msdn.microsoft.com/en-us/library/aa383500%28v=vs.85%29.aspx
    Regards,
    Rajesh J S

  • How to login in Sol man?How to create client?

    Hi
    I have installed solution manager 4.0 on AIX 5.3 (Database - MaxDB).
    How to login in it?
    Is it required to create client so as to login?
    If yes, how to create client in SolMan?

    <b>I have installed Solman 4.0 on AIX 5.3.
    <u>Available options are pasted below:</b></u>
    000001 SAP GUI FOR JAVA
    Installation Software Component (Current View)
    000002 SAP GUI FOR WINDOWS
    Installation Software Component (Current View)
    000003 SAP GUIDED SELLING
    Installation Software Component (Current View)
    000004 SAPSETUP FOR SAP GUI
    Installation Software Component (Current View)
    000005 SAP GUI FOR JAVA 7.00
    Installation Software Component (Current View)
    000006 SAP GUI FOR WINDOWS 6.20
    Installation Software Component (Current View)
    000007 SAP GUI FOR WINDOWS 6.40
    Installation Software Component (Current View)
    000008 SAP GUI FOR WINDOWS 7.10 CORE
    Installation Software Component (Current View)
    000009 SAP GUIDED SELLING 1.0
    Installation Software Component (Current View)
    000010 01200615322000000553 Installation SAP Guided Selling 1.0
    000011 51019289 CD SAP Web AS 6.20 Inst./Upgrade Guides
    CD
    000012 51030605 CD SAP CRM 4.0 SR1 Inst./Upgrade Guides
    CD
    000013 51031650 CD SAP R3E 4.7x2.00 SR1 Upg./Inst.Guides
    CD
    000014 51031651 CD SAP CRM 4.0 SR1 Inst./Upgrade Guides
    CD

Maybe you are looking for

  • How to use R_PARAM- T_MODIFIED_CELLS

    Hi All, I tried executing the below code for Avl table when a data in any row is modified. When i executed i found that the modified data is not over written rather a new row is being created in the DB table. Can any one guide me how to go about this

  • Taking phone video over to a PC/MAC...quality is still poor at best

    the playback quality on the iphone 4 is oh so sweet, but its only sweet on the phone...i understand the frame size ect, just looking for the best way to view a iphone 4 video on a PC/MAC sidenote - viewing youtube on this new phone is about 100 times

  • SVG-backgrounds for KDE 3.4.0

    http://kde-look.org/news/index.php?id=145 YAY! great news!

  • ITunes/iPod is set to automatically convert MP3s to QT

    My iTunes/iPod is set to automatically convert MP3s to QuickTime, and I don't want it to do that. All I want to do is transfer TRUE MP3 files without the conversion, but I'm not sure where the settings are, and on which device, that's doing the conve

  • INST_MGMT Migration Object - Extend equipment validity during removal

    Hi all, During migration of INST_MGMT we have an equipment that was installed (04) and removed (05) in a specific instalation and the validity period for the equipment was set as 01.01.1900 (AB) thru 06.02.2009 (BIS). Now, for the same equipment we n