Connection Wizard requires to enter user ID and password on every login

Hello,
We just started using SAP BPC 5.1  When connecting to a server Connection Wizard requires every user to input user ID and password. "Use My Microsoft Windows user ID and password" is grayed out.
Have anybody experienced this problem before? Any idea how to fix this?
Thanks,
Roman

If you woudl like to avoid to insert every time user and password you have to do follow actions:
1. Into BPC application server you have to open server manager
Options - Client Options and on that window you have to uncheck the button Enable Server to Sarbane-Oxley compliant
2. If the installation server was done with FQDN (fully qualified domain name ) or with IP instead to use short name for server then you have to add into internet explorer of client the site:
http://nameofbpcserver into trusted sites.
Open internet explorer
- tools - internet Options
Tab Security
Select Trusted Sites
Select button "Sites"
Uncheck button: "Require server verification (https)..."
type into entry field http://nameofyourbpcserver" and add
In this way you will have the option to use windows authentication enabled.
Regards
Sorin Radulescu

Similar Messages

  • How to hide user id and password for auto login in Analyzer 6.5?

    Could anyone tell me is it possible to hide the user id and password for auto login in Analyzer version 6.5 and how?Thanks in advance...

    Sainath,
    Referring admin guide as mentioned by Craig is good option.
    Let me give you few steps that I did in one of my projects.
    Open command prompt and navigate to the path "C:\Oracle\Middleware\EPMSystem11R1\products\DataRelationshipManagement\client\batch-client".. here you can see many see other utilities as well.
    drm-batch-client-credentials.exe is the one used to encrypt the userid and password.
    open this in command prompt and then choose the application to which you want to encrypt the password.
    then remove userid and password from batch script then run it... it does what you want

  • P1102W wifi connection requires SSID pluss user name and password to connect

    Hello Community.
    I had investigate how to connect my P1102w printer to the wifi and it is easy but here is the problem.
    I have no problem searching with Printer wifi config my WIFI SSID. (usb printer plugged) but My connection requieres when SSID found a user and a password.
    I have not find where does the printer have the option to set up my user name and password to login in the needed SSID.
    Can sombody help me.
    Thanks.

    Yes, but the method is to simply connect the TC to the computer by ethernet and use it on a separate network. That is the best way to do it.. but you can also do the same thing better and easier with an external hard disk plugged in. For a desktop computer this is a better solution in a way. You will only be using the TC for Time Machine backups anyway.
    If you want to continue to use the TC.. then the actual network settings I put in this thread with a whole series of pictures.
    https://discussions.apple.com/thread/4817218?tstart=30
    If you cannot follow any of that just ask.

  • AppleScript: Waiting for a user to enter user name and password

    I'm currently working on an AppleScript designed to automate binding a computer to Active Directory and another script to install a login certificate. While you can create a UNIX shell script for the Active Directory binding, I found that you have to have your user name and password in the script itself and this system will be deployed by multiple people.
    So instead I'm doing an GUI Automation AppleScript of Directory Utility. What I'd like to do is have the script to wait for the admin user (who will be remoting in by ARD) to enter their Network user and password, click okay and then continue the script to quit the program and then run a self-destruct (which I'd also appreciate any advice about doing in AppleScript)
    Here's the script so far, which I've set up successfully:
    activate application "Directory Utility"
    tell application "System Events"
      click text field 1 of row 1 of table 1 of scroll area 1 of group 1 of group 1 of window "Directory Utility" of application process "Directory Utility"
      click button 1 of group 1 of group 1 of window "Directory Utility" of application process "Directory Utility"
      click text field 2 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "EXAMPLE.COMPANY.com"
      click UI element 3 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click radio button "Administrative" of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click checkbox "Allow administration by:" of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 1 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExamplePS NA"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 2 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleNA"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 3 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleNATemps"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 4 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleTeam 1"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 5 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleTeam 2"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 6 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleTeam 3"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 7 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleDesktop Admins"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 8 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleDomain Admins"
      click button "Bind…" of sheet 1 of window "Directory Utility" of application process "Directory Utility
    <<WAIT LINE HERE FOR NETWORK ADMIN AND AND PASS, THEN USER WILL CLICK OKAY, THEN CONTINUE SCRIPT>>
    <<QUIT ACTIVE DIRECTORY>>
    <<SELF-DESTRUCT>>
    end tell
    It isn't a real command prompt like if you're changing System Preferences or something. It's a specialized prompt specifically for Directory Utility. However, I do need to know how to make AppleScript wait for a password for a standard Password Prompt for adding a certificate to the login keychain through Keychain Access. I've also done pretty much the same thing as above for that script.
    Any tips would be GREATLY appreciated.

    Yeah, I know GUI Scripting is not the best way, but I couldn't find a successful variable system for the following script. The other issue is that I'd prefer to send this by ARD and have ARD ask for a User Name and Password, but I've found there's no way to do that. Then again, I can't send the AppleScript purely remotely either.
    What I mean by self-destruct is simply I only want the Active Directory binding script to run once upon login to the primary admin user and then delete itself so it doesn't get run again. The login certificate script I want to run once on each new user who logs in (so I'll likely be putting it in the "User Template") and then delete itself so it doesn't run the next time they log in. I can't figure out any way to hit those buttons through a shell script.
    Here's the original UNIX shell script: (This is what I'm using temporarily until I figure out a solution that doesn't require my user name and password to be embedded)
    #! /bin/bash
    MACNAME=$(scutil --get ComputerName)
    dsconfigad -add "CORP.DOMAIN.NET" \
    -username USER \
    -password PASS \
    -computer $MACNAME \
    -mobile disable \
    -mobileconfirm disable \
    -localhome enable \
    -useuncpath enable \
    -shell /bin/bash \
    -ou OU=Macs,CN=Computers,DC=corp,DC=DOMAIN,DC=net \
    -force \
    -localpassword "PASSWORD" \
    -groups "GROUPS"
    And here is the Certificate Installation AppleScript
    activate application "Keychain Access"
    tell application "Finder" to open POSIX file "/FolderName/Certificate.crt"
    delay (3)
    tell application "System Events" to tell process "Keychain Access"
      click button "Add" of window "Add Certificates"
      click button "Always Trust" of group 3 of sheet 1 of window "Keychain Access"
    end tell
    Thanks for the help. I really appreciate it. This is a rather new field for me and most of my knowledge comes from Google Searches and about a billion tabs trying to find answers.

  • Automatic login in mavericks not working. I still have to enter user name and password

    I upgraded the original Hard Drive to SSD drive.  After the upgrade, I can no longer automatically log in.  I now have to enter my user name and password.  I tried resetting automatic login in Users and Groups but it doesn't work in Mavericks.

    Hello,
    To find out if it's system wide or user specific, try this...
    Open System Preferences>Users & Groups, unlock the lock, click on the little plus icon, make a new admin account, log out & into the new account.
    Does it work in the new account?
    How about these?
    Reset Password 10.7, 10.8...
    http://reviews.cnet.com/8301-13727_7-20087723-263/how-to-run-the-password-reset- utility-in-os-x-10.7-lion/
    Then Reset your Keychain...
    http://support.apple.com/kb/TS1544
    https://discussions.apple.com/thread/5225064?tstart=0

  • Norton Manage Logins does not automatically enter user ids and passwords

    I have Norton 360 v. 4.3 installed and one of the features is Manage Log ins. When you go to a web page it automatically puts in the user id and password to log into the website. When I upgraded to Firefox 4.0 this feature does not work any more. I have searched the help database and can't find a solution. Does anyone know how to activate this feature? Thanks.

    Norton have indicated they plan to release an update to Norton 360 to support Firefox 4 in early May - http://us.norton.com/support/kb/web_view.jsp?wv_type=public_web&docurl=20100720113635EN&ln=en_US

  • Firefox goes to my mail immediately after I enter user name and password. I dont have time to check the save password box even tho it does flash by.

    When I enter my username and password for my mail, firefox does not give me time to check the save password box even tho I see it flash by. All other sites work fine and passwords are saved. How can I slow it down so I can enter the check to save password?

    this is the address bitbroadband.com and then I have to enter my username and password then hit submit. that is when it flashes by but does not stop and no icon in left corner of address bar. This is google mail provided by my internet procider

  • How to Assign User name and password to the login screen on button click without user type...

    Hi,
    My requirement is as follows,
    I have three inputs which is User name, Password and URL. URL may be like anything like for example gmail,yahoo,hotmail like that.
    No need to authenticate the URL. Just i want to place the credentials in User ID and Password controls.
    On button click the URL should open in browser and the credentials should place in the controls in log in page.
    How to achieve it. Ultimate thought is the user should know the "Password",only admin know the password.
    Thanks & Regards
    Poomani Sankaran

    Hello,
    If URL's are internal (not third party) then you can do this by modifying both applications. If you are trying to do this with third party then you have to contact product owner. I don't think there is any code or solution for third party application where
    you can set values of controls.
    For internal URL's you can create custom web service and call this web service in both the applications. One to get value from first app and then second to set value in another app.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • I cant get my iphone 4 tolog in to my company wifi. i updated to ios 6 and now it just goes to my companies login screen. i enter my username and password and it just sticks. however it will logon to wifi without a requirement for a user name and password

    I have to log onto my companies wifi by first going thru a log on page that equires a username and password. before i updated to ios 6. it worked fine now it just goes to the login page and when i hit enter it doesnt do anything just stays stuck on that page. however the phone will log onto a regular wifi router that doesnt require any kind of username or password. any ideas on how to fix it. i have tried everything including reseting all network settings.

    1. Settings>General>Reset>Reset Network Settings
    or
    2. Use "Forget This Network"

  • Enter user name and password

    I've started first workflow. I would like to automate the process of cleaning out my email periodically from my ISP. There is a web based method.
    The workflow works fine until I get to the page where I have to enter my user name in one field and password in a second.
    At this point in the workflow I am using the Watch Me Do action. It works fine, even goes as far as recognizing the log in button action after entering the password. But it returns an error because it does not actually record the entry of the password. It gets everything else.
    I could pause for user entry but I'd like to be able to make this automatic, without my intervention.
    Does anyone have a suggestion?
    thanks,
    donald

    You can't script an authentication dialog (it's a security kind of thing) - you will need to look for another method to authenticate. Perhaps the shell script curl could be used.

  • HT1430 Since latest update, my iCloud keeps telling me it cannot connect due to horrible connection. I know my user name and password an still says it won't connect. I want to know why?

    Can't use iMessage due to "bad connection" I have full signal an WiFi. Can't use half my apps. Everything I have an use tells me to connect to iTunes just to use push notifications. I'm getting real sick of this of this an need help...quickly?

    Here's a qustion for you:
    I purchased music on my PC and I home share iTunes between my Mac and PC.  My Mac is authorized but every time I want to play the music I purchased on the PC via home sharing, it says the Mac is not authorized.  I confirm the account associated with it and all it will say on my MAC is that the computer is authorized, but it won't play the music lol. Is this due to DRM?

  • When I enter my user name and password for my e-mail account, the page won't open

    My e-mail account page won't open after I enter my user name and password on the log-in page. I have vcrified with Suddenlink that my user name and password are correct.

    Thanks Peter.
    Partial success in that I have been able to get mails onto the iPad  - however....
    Progress from a previous 'rumage' on problem discussions.    I have succeded in setting up the iPad so that it receives emails from the sky address under 'MAIL' on the iPad.    However trying to open in the 'usual' way   -  safari - then sky  -  then email  -  enter user name and password  -  I get the same result  -  it just returns to the log in menu for sky email with user name and password blank. 
    I had a previous problem with the sky mail ceasing to show recent mails, frozen in time on the iPad.   Somehow by trying some reset instructions I was able to 'unlock' the iPad and all was OK until it 'froze' again.    This time I clearly screwed up attempts to unlock, resulting in not being able to access email accounts via the Sky site !!

  • PL/SQL Function to check user name and password

    Hi,
    I am new to PL/SQL. I have a table that stores user name and password. I want to write a PL/SQL function that checks if the entered user name and password is correct, by validation against the values in the table... Can someone help me with the code? Both user name and password is varchar2

    First of all, I believe you mean a procedure that would check the application username and password. Fot, if you mean a PL/SQL procedure, that runs in the database, and that means it has to be executed after the client application is connected to the database.
    Maybe you need a procedure like this:
    procedure check_pass(p_user varchar2, p_pass varchar2) is
    pragma autonomous_transaction;
    v_passwd varchar2(200);
    begin
    select passwd into v_passwd
    from password_table
    where user_name=p_user;
    if v_passwd!=p_pass then
    update password_table set
    last_unsucc_logon=sysdate
    ,unsucc_logon_n=nvl(unsucc_logon_n,0)+1
    where user_name=p_user;
    commit;
    raise_application_error(-20101,'Invalid username/password!');
    end if;
    exception
    when no_data_found then
    raise_application_error(-20101,'Invalid username/password!');
    end;
    Study this piece of code and see if this will do.

  • Login(user ID and Password) to my VI

    Hello,
    Iam creating a vi with some parameters...........My VI consists of Tabs, now in home page user should enter user name and password...........and if it is success then the VI should give acess to all tabs......otherwise it should display that wrong password......there should be option to change password...........
    I HAVE attached just an front panel......please go through and provide the solution......
    Thank you

    duplicate
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

  • How to call CallbackHandler to input user name and password?

    Hello,
    I am new to CallbackHandlers. I wrote a small Swing application. I want this Swing application to display a login page so that user can enter user name and password, and then provide this to my CallbackHandler class.
    Here is what I did in my Swing main method
        public static void main(String[] args) {
            try {           
                LoginContext lc = new LoginContext("Login",
                        new MyCallbackHandler());
                lc.login();
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                new TestCVTApplication();
    ..Here is what I did in my CallbackHandler
    public class MyCallbackHandler implements javax.security.auth.callback.CallbackHandler {
        private String username;
        private String password;
        public MyCallbackHandler() {
        public void handle(Callback[] callbacks) throws java.io.IOException, UnsupportedCallbackException {       
            for (int i = 0; i < callbacks.length; i++) {
                if(callbacks[i] instanceof NameCallback){
                    NameCallback ncb = (NameCallback)callbacks;
    ncb.setName(username);
    if(callbacks[i] instanceof PasswordCallback){
    PasswordCallback pcb = (PasswordCallback)callbacks[i];
    pcb.setPassword(password.toCharArray());
    Would you let me know what I am missing?
    Thanks,
    Mustafa                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    The code you posted never assigns values to the private username and password fields of the MyCallbackHandler class. So when its handle method is invoked it simply assigns nulls to the values in the callback objects.
    Or is there code elsewhere you did not show? Are you certain that your callback is invoked at all?
    - Tim

Maybe you are looking for

  • Hiding bloc of Lines in a web template in the last row

    Hello, I want to hide a bloc of lines in a web query. Here I use the table interface with the method characteristic cell according to the "How to" - paper (How to hide a column). Normally , there is no problem to set the tag '<!--' in the first colum

  • ITunes won't sync purchased tracks to mobile devices

    ...When I sync playlists from my mac mini to my new iPhone 5, the playlist lists all songs in that playlist but will not play (skips) all purchased and downloaded tracks in the playlist and only plays tracks I copied off cd's.  How can I fix this? On

  • Why do I get an ampersand and a string of letters instead of punctuation?

    Why do I get &rsquos instead of 's when an apostrophe appears in a sentence? The possible collapse of Comcast Corp.&rsquos merger with Time Warner Cable Inc. wouldn&rsquot just be a setback for these two providers.

  • C5-00 and skyfire phone browser 1.5

    Skyfire can't be installed on  C5-00 for an unknown reason: Nokia ovi store says: Sorry, this item is not available for the Nokia C5-00. Browse more great content in the "Related" section below. Skyfire Free Mobile Browser Skyfire.com says: http://ww

  • My screen is black but still working.

    How do I get my screen to work again ?