Change name in "Connected as:" line

Hello;
I have changed my name and username on my system; however, when connecting to the TC, its Finder winnow still
showing "Connected as: {my old name}". I have tried to restart Finder, the computer, and TC itself with no luck.
It is not serious, I wonder why it was not changed though!
Any hint will be so much appreciated,
Regards.
-MHD

this is quite strange. I've never seen this. the name that should show up in such popups is the full name of the current user if the current user is admin. are you sure it's just Tom? go to system preferences->accounts. what's listed as Full name there? try changing it to something else. does the name in the popup change too?

Similar Messages

  • How do i u acsess my bluetooth settings thru my phone to change name etc. Also cant connect to any devices

    How do i u acsess my bluetooth settings thru my phone to change name etc. Also cant connect to any devices

    What devices are you trying to connect to, and are they in pairing mode? Is the phone in pairing mode? The iPhone only connects to audio devices and to computers for tethering. You cannot use BlueTooth on an iPhone for file transfers to other phones or computers.

  • BO4 - Changing name of existing connection on repository and impact on existing unx universes

    Hi,
    If we have universes (unx ) which have connections and want to rename the connection,  I know we can change the name of the connection on the repository via the repository resources in the Information Design Tool.
    I notice existing universes which use the connection still have the old name for their connection shortcut.
    Is there a way to synchronise so that if change a name of universe connection the names of connection shortcust on existing universe connections are automticallly chnaged to reflect the new name?
    Thanks

    HI
    Changing name of existing connection not impact on existing unx universe, if backed connection CUID not changes, I think you can rename the existing connection in CMC .
    Before doing test with sample example.

  • Change name connection

    Hi....I finish my proyect in ADF so I want to change the name of my connection but I have a problem when I did it...my applications don't find my new connection
    If somebody know a way to do it?....please...or an advice...maybe I forgot change some configuration.
    Thanks in advance
    Edmar

    Thank you for documentation my project works!!..but I have a doubt because when I wanr to Change the Database Connection for my Project to for example:
    test and when I changed the configuration for my appModules the tool chande automatically from test a testDS and when I erase DS part from my appmodule my project don't works.
    I don't know if this DS part is neccesary.
    Thanks ini advance.
    Edmar

  • Way to change database control connection at runtime

    Is there a way to change the database connection (the @jc:connection data-source-jndi-name) at runtime? I want to build only one database control and be able to use it against different connections.

    Hi,
    There is no way to do this as of now.
    Ejbcontrol and service control has a method setJndiName and setEndPoint(wsdl url) respectively to do so. But database control doesn't and is a good enhancement.
    Thanks a lot,
    Vimala

  • Change name of function..?

    I have 2 codes on 2 different keyframes i have just copy/pasted. I have changed all the name of functions and variables, I just need one function I don't know how to change name of.
    code on key frame 1:
    var timedelay2:Number = 10;  // seconds delay in replay
    var video2;
    var nc2:NetConnection;
    var ns2:NetStream;
    nc2 = new NetConnection();
    nc2.connect(null);
    ns2 = new NetStream(nc2);
    ns2.client = this;
    ns2.addEventListener(NetStatusEvent.NET_STATUS,netStatusf2);
    function netStatusf2(e:NetStatusEvent) {
        if (e.info.code == "NetStream.Play.Stop" && Math.abs(durationNum-ns.time)<.1) {
    setTimeout(replayF,timedelay*1000);
    function replayF2(){
    ns2.play("film/film1.f4v");
    var durationNum2:Number;
    function onMetaData(iObj:Object):void {
        durationNum2 = iObj.duration;
    video2 = new Video(287,263);
    video2.x = 231.1;
    video2.y = 140.5;
    addChild(video2);
    video2.attachNetStream(ns2);
    ns2.play("film/film1.f4v");
    code on key frame 2:
    var moviesA:Array =["film/film1.f4v", "film/film2.f4v"];
    var movie:String = moviesA[Math.floor(Math.random()*moviesA.length)];
    var timedelay:Number = 5;  // seconds delay in replay
    var video;
    var nc:NetConnection;
    var ns:NetStream;
    nc = new NetConnection();
    nc.connect(null);
    ns = new NetStream(nc);
    ns.client = this;
    ns.addEventListener(NetStatusEvent.NET_STATUS,netStatusf);
    function netStatusf(e:NetStatusEvent) {
        if (e.info.code == "NetStream.Play.Stop" && Math.abs(durationNum-ns.time)<.1) {
    setTimeout(replayF,timedelay*1000);
    function replayF(){
    ns.play(movie);
    var durationNum:Number;
    function onMetaData(iObj:Object):void {
        durationNum = iObj.duration;
    video = new Video(287,263);
    video.x = 231.1;
    video.y = 140.5;
    addChild(video);
    video.attachNetStream(ns);
    ns.play(movie);
    problem is this function, I don't really know how to give one of the function another name so they don't interfere with each other...?
    function onMetaData(iObj:Object):void {
        durationNum2 = iObj.duration;
    anyone that can help..?

    hey again
    i'm now just using
    var durationNum:Number;
    function onMetaData(iObj:Object):void {
        durationNum = iObj.duration;
    on frame 1. But it seems i've lost the randomness on frame 2. it only plays "film/film1.f4v" all the time even though i put multiply times "film/film2.f4v". Is this true, or is it just me who have been very unlucky..?
    my frame 1 looks like this at the moment:
    var timedelay:Number = 10;
    var video;
    var nc:NetConnection;
    var ns:NetStream;
    nc = new NetConnection();
    nc.connect(null);
    ns = new NetStream(nc);
    ns.client = this;
    ns.addEventListener(NetStatusEvent.NET_STATUS,netStatusf);
    function netStatusf(e:NetStatusEvent) {
        if (e.info.code == "NetStream.Play.Stop" && Math.abs(durationNum-ns.time)<.1) {
    setTimeout(replayF,timedelay*1000);
    function replayF(){
    ns.play("film/film1.f4v");
    var durationNum:Number;
    function onMetaData(iObj:Object):void {
        durationNum = iObj.duration;
    video = new Video(287,263);
    video.x = 231.1;
    video.y = 140.5;
    addChild(video);
    video.attachNetStream(ns);
    ns.play("film/film1.f4v");
    stage.addEventListener(MouseEvent.CLICK, clickHandler);
    function clickHandler(event:MouseEvent):void{
        if (event.target.name!=null){
            switch(event.target.name) {
                case "work1_btn":
                gotoAndStop("work1");
                removeChild(video);
    break;
                case "contact_btn":
                gotoAndStop("contact");
                removeChild(video);
    break;
                case "frontpage2_btn":
                gotoAndStop("frontpage2");
                removeChild(video);
    break;
    And my frame 2 looks like this:
    var moviesA2:Array =["film/film1.f4v", "film/film2.f4v", "film/film2.f4v", "film/film2.f4v", "film/film2.f4v"];
    var movie2:String = moviesA2[Math.floor(Math.random()*moviesA2.length)];
    var timedelay2:Number = 0;  // seconds delay in replay
    var video2;
    var nc2:NetConnection;
    var ns2:NetStream;
    nc2 = new NetConnection();
    nc2.connect(null);
    ns2 = new NetStream(nc2);
    ns2.client = this;
    ns2.addEventListener(NetStatusEvent.NET_STATUS,netStatusf2);
    function netStatusf2(e:NetStatusEvent) {
        if (e.info.code == "NetStream.Play.Stop" && Math.abs(durationNum-ns.time)<.1) {
    setTimeout(replayF2,timedelay*1000);
    function replayF2(){
    ns2.play(movie2);
    video2 = new Video(287,263);
    video2.x = 231.1;
    video2.y = 140.5;
    addChild(video2);
    video2.attachNetStream(ns);
    ns2.play(movie2);
    stage.addEventListener(MouseEvent.CLICK, clickHandler2);
    function clickHandler2(event:MouseEvent):void{
        if (event.target.name!=null){
            switch(event.target.name) {
    case "frontpage2_btn2":
                gotoAndStop("frontpage2");
                removeChild(video2);

  • Change name of airpoet express network

    How to change name of wifi network?

    If you change the name of the wireless network, you will need to log on to the "new" network with each device on your network.
    Once you have done this, the device should remember the network so that you do not have to enter the password the next time that you connect.

  • Folders in iphone / windows randomly changing name

    A couple of updates ago the folders in my iphone4s suddenly changed names and now keep changing names - this makes it really difficult for me to locate the last images I took as the folder name has changed and using view by date / modified makes no difference. I have to plough through each randomly named, randomly ordered folder to find what I want.
    This is connecting to PC running windows 7 professional via usb, no itunes, I do not want itunes.
    Cheers

    OK, I've got it figured out.
    Somehow, the permissions of the invisible .DS_Store file in my Applications folder was changed so that nothing I did as an Administrator was taking effect on a permanent basis. That is, only the System could effect a positional or size change in any given folder--but not me, the Administrator.
    This is very easy to fix, thankfully. Launch "TinkerTool" (or some similar app) and check the "Show hidden and system files" box. Relaunch the finder to behold all the new files showing almost everywhere.
    Open the offending folder "(Applications" in my case), and Get Info on the newly-revealed ".DS_Store" file therein. You will notice, most likely, that in the "Sharing and Permissions" area only the System can "Read & Write" to this folder. In my case the Administrator (ME!) was given only "Read" permissions . . . which I quickly changed to "Read & Write"!
    I checked this setting with other non-problematic folders, and my suspicions were confirmed. They revealed that the Administrator could "Read & Write" to them--as intended.
    All is well now. (Use TinkerTool to reset the hidden files, of course.) I have no idea how or why the invisible .DS_Store file was altered, but it is working as intended once again.
    Hope this helps, brimd!

  • Change Dynamic Prompt connection

    Hello,
    We migrated our Crystal Reports 12.2.0.290 reports (Off SAP ECC) from dev to QA environment. After changing the datasource connection to point to QA infosets, when we refresh the report the prompt LOV still points to Dev. We know this as before prompting we get a screen to enter our Dev userid/password and we see the Dev in server name and database name.
    Is there a way to change the prompt connection to QA? Or do we have to have to create new prompts in QA?
    Thanks,
    Nikhil

    Post your question to the Integration kit forum in BusinessObjects

  • Changing names on Verizon bill?

    Does anyone how to change name on your account?

    What kind of a name change?  If you married and want to update the name, call CS 800-922-0204 or visit a corporate store with documents to prove your name change.
    If you want to change the account and put it in someone else's name, an Assumption of Liability is what you need to do.
    If you want the caller ID to show a different name, you can change that in your my Verizon account, under Change Features >> Share Name ID.
    And there's a new feature on your MyVerizon homepage, if you are the account owner and have more than one line, you  can "name" the lines with the person or a nickname so it's easier to tell which line belongs to who.
    If none of these seem to be what you want to do, can you post back with more details of what it is you want to accomplish?

  • How do we change the source connection in OWB?

    Hello,
    Currently my source connection has read/write privileges. For security reason, i created read only schema in the source database.
    Now i want to change my username in the source mapping.
    I go to connection Explorer,
    click Location
    click database
    Click oracle
    right click on source name(existing one), click open editor.
    When i click open editor, I see all the user info are grayed out. I could not change anything.
    How do i change the current source connection username?
    Any help is appreciated..

    Hello, I have trouble changing the source connection.
    My source connection name is same as before. Only DB name, schema name is changing now for source connection. Here are the steps i have done.
    1. Went to control center manager and unregister the source mapping.
    2. Went to Connection explorer and right click on source connection and click the open editor. change the username, password, ip address, DB name.
    3. went to control center manager and re-deploy the mapping. It is not working... It says, table or view does not exists.
    Is ther any other place i need to change... Somewhere i am missing..
    Any help is highly appreciated..
    Edited by: Shrinika on Oct 21, 2010 9:52 AM

  • Steps to change universe database connection from SQL server to Oracle 10

    Hi,
    we are moving from sql server to Oracle 10.Please let me know the steps and various parameters I should consider while changing universe database connection from SQL server to Oracle 10.
    Following are the steps which I assumed :
    1.     create a new Oracle database connection or edit the existing connection to point to Oracle server
    2.     Need to check sql for each object, having integrity check for universe will solve the purpose of parsing each object
    3.     Exporting the universe after integrity check
    4.     Report data testing
    Let me know if I miss on any steps.Also what all factors I need to consider while moving to Oracle for eg: what @ custom sql,what @ table names,what @ LOV etc.
    Kindly reply

    Thanks Abhijeet and Shreyash,
    I will follow the steps you have suggested.
    Actually I was searching for this on net and got to know that with Oracle database connection,theres lot of stuff needs to take care of in terms of custom sql and LOV and in our case,we have lot of custom sql for each object in the universe so just wanted to confirm.
    I will do the changes and let you guys know in case theres any isuue specifically to Oracle.

  • How do I change name of ipod touch on windows when it it says it is  a different name?

    When I connect my ipod touch to my computer it is recognized as another family members ipod but has my photos.  How do I change name?

    Another thing to remember is the phone is actually usable for 911 calls and maybe others. Not a real good idea. Especially for a child.
    It would depend however on the age of the child.
    Good Luck

  • Icon wont change name-how do i fix?

    i partitioned my HD with bootcamp,installed XP........now i want to rename "untitled" to XP HD
    normally when i click on the text under the XP i can rename it...but now thats not working
    Why? and how can i fix it?.............is it because i am showing statistics under the Icon (10.69GB)

    i called Apple and found out what the problem was,I am posting THIS incase anyone else has the problem
    The Icon that would not change names was the bootcamp Icon which now has a version of Windows Xp in it.
    I installed Xp in NTFS format,had i done it in FAT i could have changed the icons name ,If i had changed it PRIOR to installing XP i could have changed the name
    How i ended up changing it was i had to boot into Windows
    then click into My Computer-->Properties--> and change the name inside the properties box from Local C: to XP HD............when i booted back to OS10 it automatically updated itself
    I also had to connect a Windows Mouse to my use to Right click into Properties on my computer.

  • Changing the default view for Line Items in an Auction.

    Hello All,
    We have a version 5 client who is asking for us to change the default view for line items in an auction.
    Currently, if you have an auction setup, and you go to the Line Items tab, the default view is the "Basic View". The client would like to change the Default from "basic view" to "price view".
    Is there a way to change this default in the system? Can this be configured using query groups? Any information would be helpful.

    Hi wood cloud,
    This is not possible, bcz there is no VLV for that drop down and we cant set it  to the price view.
    Thanks,
    Ankur Goyal

Maybe you are looking for

  • IPod not recognised on one computer but OK on another

    I manage a number of iPod nanos for my children on my PC (vista). In the last few days, one of them (pink nano)is not recognised by windows nor therefore in iTunes. I tried by 60GB iPod and had same problem. Plugged in my blue nano and works perfectl

  • How do I put a recent photo on my Apple Mail email program?

    I am using OS 10.3.9 This question is for Apple MAIL email program and the emails that I send from my Desktop, not from the .Mac site. Several years ago I did what was necessary to have my photo put automatically on each outgoing email that I send. (

  • Text index for UNION queries.

    Hi All, Can anyone please help me in tuning search query mentioned below select id from usr1.organizations where lower(ID_official_name)   like  'technology%' union select id from usr1.organizations where lower(ID_OFFICIAL_NORM_NAME)   like  'technol

  • Does Pages make errors in translation?

    I've heard that pages is supposed to translate Word documents flawlessly in many cases, but in my years of using computers, I find that quite often when a document is translated from one proprietary format into another, it may look fine, but it will

  • RPM: Change DATA at SAVE for ITEM

    Hi all. I must modify a date when SAVE an item (date ACTUAL_FINISH). I have implemented the interface /RPM/IF_EX_ITEM_API, but ther isn't methods for modifiy the datas of item. You have others BADI to suggest to make this? Thanks! Vanessa