How to login the PeopleTools

I have installed Oracle DB and PeopleTools 8.5 successfully in my Windows 7 PC, and now I click the PeopleTools->Application Manager->Connection Type Oracle, and then it let me to input the DB name, user name and password, what information should I input over here? SHould I first create a DB in Orcale that is used for PeopleTools? please advise whgat action I should take so that I can login Application PeopleTools?

If you are going for a peopletools only install then you can use PTDMO/PTDMO or PTADMIN/PTADMIN to login. Again this for a tools only installation. Like Nicolas said "You should follow the guide closely".
Regards,
RK

Similar Messages

  • How to login the remote desktop with user id and password using coded ui

    we are using vs 2013, we have automated some automated test cases using coded ui. i have on problem while i am running the those test cases in remote system. here the scenario is "after executed one test case we need to restart the system. After restarted
     I have to login the remote system with user credentials to continues execution for the remaining test cases." it is very helpful to me.. so please guide me how to overcome these problem? 
    Thanks in advance ...

    Hi Divakar,
    As far as I know, there isn’t this feature of remote test in VS2013.
    I suggest that you could submit this feature request:
    http://visualstudio.uservoice.com/forums/121579-visual-studio. The Visual Studio product team is listening to user voice there. You can send your idea there so the others can vote it. If you submit this suggestion, you might post that link here which will
    benefit others who has the similar issue
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to login the Ebusiness suit use the code

    Hello,every one.I wanna login into the Ebusiness suit use the java code .
    <%@ page contentType="text/html;charset=GB18030"%>
    <%@ page import=" oracle.apps.fnd.common.*" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
    <title>
    Hello World
    </title>
    </head>
    <body>
    <%
    WebAppsContext wac = new WebAppsContext("xxxx.xxx.com","8000","/oraprodsys/prod/prodappl/fnd/11.5.0/secure/bxerp4_prod.dbc");
    boolean return_value=wac.createSession(5013);
    response.sendRedirect("http://xxx.xxx.com:8000/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE");
    %>
    <%=return_value%>
    <%=wac.getSessionCookieName()%>
    </body>
    </html>
    I found the return_value is true and the CookieName is not null.
    But the login page still appear. please help me thank you

    For example, in 10G, when you double click on an Actor, you get a really useful set of fields to fill in. In 11G, you get xml boilerplate that I don't know how to use, and has none of the fields on the 10G properties panel.
    Why did this change?

  • How to login youtube?

    I have using my gmail address as user name to link the youtube.  However when I use the same username I cannot log in at my iPhone you tube app to view my subscription, please let me know how to login the youtube in order to view the subscription?

    as far as I know a google account (gmail) is a youtube account. Log in with your google credentials to the YouTube app. Does it give you a sort of error?

  • How to login secured application programmatic way?

    Hi All,
    I am using JDeveloper 11.1.1.6 .
    My Scenarios I have username and password I need to login in the application programmatic way.I tried with the
        JAASAuthenticationService jas = new JAASAuthenticationService();
        jas.login("UserName", "Password");
    But that is not working .How to login the secured application programmatic way ?
    Thanks..

    Can you try this?
         public void login(String pUsername, String pPassword)
              AuthenticationService vAuthenticationService =
                   AuthenticationServiceUtil.getAuthenticationService();
              vAuthenticationService.login(pUsername, pPassword);
         public void logout()
              AuthenticationService vAuthenticationService =
                   AuthenticationServiceUtil.getAuthenticationService();
              vAuthenticationService.logout();
    Gud luck!
    -- HA

  • How to change the OraSSO login link in webcache/load balance

    Hi
    we have 10gAsR1 installed as a Portal instance. We have 6-server
    load balancer => webcache as loadbalancer (listening port 80)
    Wb ch1 and wb ch2 => webcache (listening port 7777)
    portal1 and portal2 => Portal listening 7778
    infra =>Infrastruture with repository Portal/Oracle SSO (listening 7777)
    This set up is working fine for our intranet setup, now we need to open this for couple of external clients. Well initially we need to open on the load balancer server on port 80 for external team to access, it works fine when we make it publc access.
    Now when we need to make it SSO (siteminder) enables, when users click on login link it first goes oracle sso then it internally redirects the page to site minder sso.
    Well, I have noted that the sso server details are mentioned in global setting sso/oid details. Since we need to open this for external client we have to add a DNS entry for this so that we can allow its access over firewall..
    Now I have made DNS name change at my infrserver level, now I need to update the change at the load balancer server (where wheb chache is running).
    Any one know how to chang the URL at load balancer.
    I am struck at this point please suggest how should i proceed..
    Thanks,

    Extract from Personalization Guide - Page Footer - Personalization Considerations
    * If you wish to personalize the URL that points to the Privacy Statement for a page that displays a standard Copyright and Privacy (that is, its Auto Footer property is set to true), set the Scope to OA Footer, in the Choose Personalization Context page of the Personalization UI.
    * If you wish to personalize the URL that points to the Privacy Statement for a page that displays a custom Copyright and Privacy (that is, its Auto Footer property is set to false), set the Scope to Page in the Choose Personalization Context page of the Personalization UI. In the following Page Hierarchy Personalization page , identify and personalize the Privacy page element.

  • How to refresh the Expired Login Form on the onChange event of the password

    Hi,
    In the Expired Login Form I have places a custom label. My requirement is that on the onchange event of the password field the label color should change to orange if the entered password meets the password policy else red.
    I am trying the following code :
    Custom label:
    <Field name='Custom Label'>
    <Display class='Label'>
    <Property name='value' value='Custom label 1'/>
    <Property name='noNewRow'>
    <Boolean>true</Boolean>
    </Property>
    <Property name='color'>
    <block>
    <cond>
    <isTrue>
    <invoke name='checkStringQualityPolicy' class='com.waveset.ui.FormUtil'>
    <rule name='EndUserRuleLibrary:getCallerSession'/>
    <s>Default Password Policy</s>
    <invoke name='decryptToString'>
    <ref>resourceAccounts.password</ref>
    </invoke>
    <map/>
    <list/>
    <s>Configurator</s>
    </invoke>
    </isTrue>
    <s>orange</s>
    <s>red</s>
    </cond>
    </block>
    </Property>
    </Display>
    </Field>
    And on the password field i gave following in the onChange event:
    submitCommand(this.form, "Recalculate")
    But the above command is not refreshing the page. Instead on the onChange event its going back to the login.jsp.
    Any idea how to resolve the above issue.
    Thanks.

    I got it working as below but i dont know is this best practices?
    <%
        if(session.getAttribute("afterSet") != null){
             %>
        <div style="visibility:hidden">
          <iframe NAME="iframe1" src="/WebApplication2/TestController?fileDownload=test.pdf" WIDTH="40" HEIGHT="40"></iframe>
        </div>
        <%}       basically first time user visit the jsp page session attribute "afterSet" will be null so it wont create the hidden iframe tag . after it dispatched to the servlet controller and successfully processing the record it will set "afterSet" properties to some value and dispatch to itself
    after that it will popup/dialog box for user to save the pdf.
    this way the page already refreshes itself and wont have problem double clicking thing and so on

  • How to change the Default login script and the USER login script in Netware3.12

    I need to cut down the disk map from Neware 3.12 in Win98 client's PC.
    please tell me
    how to change the Default login script and the USER login script in
    Netware3.12 ?
    Or is there any other ways to do this thing?
    Thanks a lot!

    On 4/6/2006 [email protected] wrote:
    > how to change the Default login script and the USER login script in
    > Netware3.12 ?
    Please repost in the discontinued.forums.
    Edison Ortiz
    Novell Product Support Forum SysOp
    (No Email Support, Thanks !)

  • How to change the default login page

    Hi All,
    I got an issue with the login page. I want to display the Chinses as default, but now it's engish. I have changed the ICX: Language to Chinese at the site level, but it seems didn't take effect.
    And the parameter s_base_lang is still US in the $CONTEXT_FILE.
    grep s_base_lang $CONTEXT_FILE
    <base_lang oa_var="s_base_lang">US</base_lang>
    How can we resolve this issue? Just change the s_base_lang parameter and take adconfig? Please advise.
    Thanks,
    Kevin
    Edited by: Kevin on 2012-9-23 下午4:37

    I got an issue with the login page. I want to display the Chinses as default, but now it's engish. I have changed the ICX: Language to Chinese at the site level, but it seems didn't take effect.Did you bounce Apache (or the application services)?
    And the parameter s_base_lang is still US in the $CONTEXT_FILE.
    grep s_base_lang $CONTEXT_FILE
    <base_lang oa_var="s_base_lang">US</base_lang>
    What was this value before running AutoConfig?
    Autoconfig FAQ [ID 218089.1] -- 16. Which files / profile options get changed when I run AutoConfig?
    How can we resolve this issue? Just change the s_base_lang parameter and take adconfig? Please advise.Login the application > Preferences > Set "Default Application Language" to "Chinese".
    Thanks,
    Hussein

  • How to track the login time and logout times of clients

    hai
    please give me the solution
    suppose there are 5 systems connected in LAN.
    how to track the login time and logout times of clients
    for a given time(may be one day or 1 hour) using any programming language.
    please give me the solution

    When the client logs in you write the client's ID and the current time to a database. Likewise when the client logs out. Assuming of course that you have a program that knows when those events occur.

  • How to realize the login function in adf

    i am a fresh man,knows little about adf.
    I know how to pass the user's input to managed bean,as below:
    <af:dialog id="d2" affirmativeTextAndAccessKey="login"
    cancelTextAndAccessKey="cancel"
    dialogListener="#{login.handleLogin}" type="okCancel">
    <af:inputText label="Label 1" id="it1"
    value="#{login.user}"/>
    <af:inputText label="Label 2" id="it2"
    value="#{login.password}"/>
    </af:dialog>
    but how can i get the user informantion like username,password from database in the following method of the bean class:
    public void handleLogin(DialogEvent dialogEvent)
    if(dialogEvent.getOutcome() == DialogEvent.Outcome.ok)
    //here i should get user information from database, but how?
    before, i can build the connection object and statement object myself. In adf, I don't know where to begin.

    Hi..
    To create application with inbuilt authentication you can use jazn-data.xml, Here you can define user roles and users etc.
    See:
    try [http://www.oracle.com/webapps/online-help/jdeveloper/10.1.3/state/content/navId.4/navSetId._/vtAnchor.BGBGJEAH/vtTopicFile.adfdevguide|adding_security~htm/]
    JDev 11g ADF Security app on standalone WLS against Active Directory
    http://kr.forums.oracle.com/forums/thread.jspa?threadID=603703

  • How to save the Created by name instead of saving  login user name

    Hi All,
    I done Without log in Jsp page to open one responsibility without login .
    here created one column Created by here user can view list of values in username . it EAM module work request page .
    my issue is while creating the work request Created by name saving in to the database but requirement is user needs to select using created by LOV that username needs to be save on data base .
    once open the application created by name is coming as a login name using controller i removed the created by i set the created by name in PR is lovevent .
    front end its working fine but while saving login user name is saving i need to save the created by name based on the lov .
    can any one help to overcome this issue......
    Thanks in Advance.....
    Kumar

    Hi,
    Thanks For Reply
    It is a Standard Page and created by column Passing in the package while inserting the data FND_GLOBAL.UserID.
    I have One more option i need to pass the created by as perameter in Jsp Page based on that user i need to get the password using (Encrprit ) command .
    Is it Possible to do in Passing the Parameter OAF to JSP page .and how to Encrprit the password to avoid entering the password .
    I hope U understand My Requirement..
    Regards,
    Kumar

  • I was login a website ,and i have opened cookies , i want to open another window to login the same website use another account , and in the same windows can use the same account , how can i achieve it ? thinks

    i want to use firefox to login a website ,in the same window and different tags can user the same session
    but when i open other window and login the same website use different account .
    how can i achieve it ? thinks

    Your problem has nothing to do with the faults or limitations of a web browser.
    ''There can be only ONE active user logged in on a specific website during a whole Browsing Session. Even if you try to log-in using a new window it will sign-out the earlier User ID from that website. It will keep the most recent logged-in User ID active.''
    This is the general policy on which all websites are built. Even if you try to login the same website from another web browser, you won't be able to login from the second platform either. I just check it. Tried on Mozilla and Internet Explorer.

  • How to show the login user Id in the upper right corner of each page?

    Hi,
    I was wondering how to show the login user Id in the upper right corner of each page?
    thanks so much!
    cchu

    Cchu,
    The easy question first: applying a style to the welcome message. If you look at the page source, you'll see that #WELCOME_USER# is expanded to <div class="app-user">Welcome: DEMO</div> So to change the style of the message, you need to tweak the style of the app-user div in your CSS, or override it in a style block in your HTML header.
    Now, the tougher question: why the text is wrapping for you. And, really, without seeing your entire page, I can't give a full answer. But I'd suggest that what's most likely happening is that the table column you're putting it in is too narrow, so it's wrapping; try replacing the td tag with <td nowrap="nowrap"> This will force the column to be wide enough to display the full message, but might result in weird formatting elsewhere on the page (depending on what all is in your table).
    -David

  • Chat App: how to store the user IP in database when they login.

    hello,
    i am working on chat application. first i made a login GUI form. after login when we run the Chat program, it ask the ip address of the server to whom it want to connect. and if u enter the ip address, it will connect to the server and chat will begin, thats working perfect.
    but i want to show the list of users who r logged on and when i simply click on the user name, chat should begin.
    i have the logic that when any user log in, then its IP address will be stored in the database. this ip address will shown to the online users.
    but i dont know how to store the user information in database when they log in. can any body suggest me wht lines of code i should use.
    thanks.

    palakk wrote:
    i have the logic that when any user log in, then its IP address will be stored in the database. Bad approach. That will only work if this chat is only intended for use on a LAN. If it's used on the internet, then your users' IP addresses will almost always be either a) those of their routers, or b) private IP addresses, and in both cases, multiple users can have the same IP address.
    this ip address will shown to the online users. Why would you want to do that? I want to chat with "Bill", not with "1.2.3.4".
    but i dont know how to store the user information in database when they log in.Do the same thing that you're currently doing to store the IP address, but with the other information you want to store.
    can any body suggest me wht lines of code i should use. This is not a code writing service.

Maybe you are looking for