How to extract person details (phone number) into a Sharepoint list

Hello. I'm trying to build a SharePoint rota via an accumulation of lists for separate teams. Among the columns in each list are Person and Phone Number. I can pull in the person details via lookup (person or group) but how can I directly extract and
display that person's phone number in the Phone Number column?
Any help would be much appreciated.
Regards,

Hello,
You can use jquery to auto populate the user information on page. Here is sample script: Just add CEWP and add this script.
<script language="javascript" src="/sites/FormSolution/Style%20Library/JavaScript/jquery-1.4.2.min.js" type="text/javascript"></script><script language="javascript" src="/sites/FormSolution/Style%20Library/JavaScript/jquery.SPServices-0.5.4.min.js" type="text/javascript"></script><script language="javascript" type="text/javascript">
$(document).ready(function() {
var userTitle = $().SPServices.SPGetCurrentUser({
fieldName: "Name"
$("input[Title='Title']").val(userTitle);
var userph = $().SPServices.SPGetCurrentUser({
fieldName: "WorkPhone"
$("input[Title='Phone']").val(userph);
});</script>
Hope it could help
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

Similar Messages

  • How to disable my iphone phone number imessage on old account

    So I was on the same apple id as my mother, who told me today that messages were poping up on her ipad.  I now created a new apple id because i do not want her reading my messages.  On the old apple id, she can click my phone number and recieve my messages, i clicked to send and recieve only on my phone on my iphone and i am frightened half to death.  Someone please help on how i can remove my phone number from her imessage list!!!!!!

    Read this:
    http://support.apple.com/kb/TS4268

  • How to call other number its number did my phone number into blacklist? Please......May I know...

    How to call other number its number did my phone number into blacklist? Please......May I know...

    If someone somehow blacklisted your phone number, you would have to either call them from a number their phone will allow or get them to white list your number.

  • I am trying to put my phone number into my IMessages but there is no option to do so, the only option is to put a new email address into it. Does anyone know how to help me?

    Please someone help me figure out how to put my phone number into my iPad.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
     Cheers, Tom

  • How would i put a Australian cell phone number into my contacts such as 899-8930

    How would i put a Australian cell phone number into my contacts such as 899-8930

    Check the country of the contact, then use the international prefix number and iOS will sort out the display of the number.
    In addition to iCloud: Change the format of addresses and phone numbers

  • How do you add a mobile phone number into iMessages in settings

    How do you enter a mobile phone number into IMessage in Settings on an Ipad?

    Take a look at this.
    iOS and OS X: Link your phone number and Apple ID for use

  • Is it possible for a person to add your phone number into their imessage on an ipad without a notification popping up on your number?

    I have a suspicion that someone has added my phone number into their imessage and can read all my texts with no notification sent to my phone.  Is it possible to add a phone number to your imessage without that device getting a notification?

    I use multiple iOS devices at my house, on my two (phone and ipad) I have my family AppleID we use for all purchases as my iMessage userid, on my wifes iPad we made a new ID Just for her messaging and installed that.
    When she sends me an IM I get it on both devices. When i send to her its only her ipad.
    Jason

  • How to extract the details of the stored procedures in the database?

    Dear all,
    How to extract the details of them?
    Bst Rgds,
    Edward

    Hi Wa-Man Edward Chan,
    Following is the PLSQL Block Which Will Give Package, Procedure, Function Source
    set verify off
    undefine which_object;
    undefine which_line;
    declare
    Shows lines with context of:
    VIEW
    FUNCTION
    PROCEDURE
    TRIGGER
    PACKAGE SPECIFICATION
    PACKAGE BODY
    The script uses to temporary tables ERROR_TABLE_TEMP and ERROR_CLOB_TEMP created with:
    CREATE GLOBAL TEMPORARY TABLE ERROR_TABLE_TEMP(line number, text varchar2(4000));
    CREATE GLOBAL TEMPORARY TABLE ERROR_CLOB_TEMP(TEXT CLOB);
    v_offset number:= 5; -- Controls how many lines before and after the line in focus are to be shown
    v_obj_name varchar2(100);
    v_obj_type varchar2(100);
    v_obj_type_new varchar2(100);
    v_obj_line number;
    v_counter number := 0;
    v_text varchar2(32767);
    v_subtext varchar2(1000);
    v_from number;
    v_len number;
    v_marker varchar2(10);
    v_found number;
    v_line_from number;
    v_line_to number;
    v_long_text clob;
    procedure ins_line (p_text in varchar2) is
    begin
    v_counter := v_counter + 1;
    insert into error_table_temp(line,text)
    values (v_counter,p_text);
    end;
    begin
    delete error_table_temp;
    select ltrim(rtrim(upper('&which_object'))), nvl(to_number('&which_line'),0)
    into v_obj_name, v_obj_line
    from dual;
    begin
    select decode(object_type,'PACKAGE','PACKAGE BODY',object_type)
    into v_obj_type
    from user_objects
    where object_name = v_obj_name
    and nvl(v_obj_line,0) > 0
    and rownum = 1;
    exception when no_data_found then
    ins_line('ERROR: Object/line not found');
    return;
    end;
    ins_line(v_obj_name||' ('||v_obj_type||')');
    if v_obj_type in ('PACKAGE BODY','PACKAGE','FUNCTION','PROCEDURE') then
    v_obj_type_new := v_obj_type;
    ins_line('----------------------- PROGRAM LISTING -------------------------');
    for code in (select trim(text) text, lpad(line,4,' ')||' '||decode(line,v_obj_line,'>>>>> ',' ') marker, type
    from user_source
    where name = v_obj_name
    and line between v_obj_line-v_offset and v_obj_line+v_offset
    order by decode(type,v_obj_type,1,2),line) loop
    if v_obj_type_new != code.type then
    ins_line(null);
    v_obj_type_new := code.type;
    v_counter := -100000; -- In order to show specification before body
    ins_line(v_obj_name||' ('||v_obj_type_new||')');
    ins_line('----------------------- PROGRAM LISTING -------------------------');
    end if;
    ins_line(code.marker||code.text);
    end loop;
    elsif v_obj_type = 'VIEW' then
    select text
    into v_text
    from user_views
    where view_name = v_obj_name;
    v_line_from := v_obj_line-v_offset;
    v_line_to := v_obj_line+v_offset;
    v_obj_line := v_obj_line -1;
    ins_line('------------------------------- PROGRAM LISTING -------------------------------');
    for i in v_line_from..v_line_to loop
    begin
    if i = v_obj_line then
    v_marker := '>>>>> ';
    else
    v_marker := ' ';
    end if;
    if i = 0 then
    v_from := 0;
    v_len := instr(v_text,chr(10));
    else
    v_from := instr(v_text,chr(10),1,i);
    v_len := instr(v_text,chr(10),1,i+1) - v_from;
    end if;
    v_subtext := substr(v_text,v_from+1,v_len-1);
    if v_len > 0 then
    ins_line(lpad(to_char(i+1),4,' ')||' '||v_marker||v_subtext);
    end if;
    exception when others then
    null;
    end;
    end loop;
    elsif v_obj_type = 'TRIGGER' then
    ins_line('----------------------- PROGRAM LISTING -------------------------');
    delete error_clob_temp;
    execute immediate 'insert into error_clob_temp (text) '||
    'select to_lob(trigger_body) '||
    'from user_triggers ' ||
    'where trigger_name = '''||v_obj_name||'''';
    select text
    into v_long_text
    from error_clob_temp;
    v_obj_line := v_obj_line-1;
    v_line_from := v_obj_line-v_offset;
    v_line_to := v_obj_line+v_offset;
    for i in v_line_from..v_line_to loop
    begin
    if i = v_obj_line then
    v_marker := '>>>>> ';
    else
    v_marker := ' ';
    end if;
    if i = 0 then
    v_from := 0;
    v_len := dbms_lob.instr(v_long_text,chr(10));
    else
    v_from := dbms_lob.instr(v_long_text,chr(10),1,i);
    v_len := dbms_lob.instr(v_long_text,chr(10),1,i+1) - v_from;
    end if;
    v_subtext := dbms_lob.substr(v_long_text,v_len-1,v_from+1);
    if v_len > 0 then
    ins_line(lpad(to_char(i+1),4,' ')||' '||v_marker||v_subtext);
    end if;
    exception when others then
    null;
    end;
    end loop;
    end if;
    if v_counter = 0 then
    ins_line('*********** NO CODE FOUND ***********');
    else
    ins_line(null);
    end if;
    exception when others then
    ins_line('*********** ERROR: NOT POSSIBLE TO SHOW THE CODE ***********');
    ins_line(' FEJL: '||sqlerrm);
    end;
    set linesize 4000
    set heading off
    set feedback off
    set verify on
    select text
    from error_table_temp
    order by line;
    set linesize 80
    set heading on
    set feedback on
    Prashant

  • How do I delete a phone number (not mine) from iMessage

    Hi,
    We live in the US. Somehow an international phone number got into our iMessage account. And to top things off, somehow our personal information got replaced with name that is Chinese. I have since changed my Apple ID and password and reset it on all of our Mac hardware.
    I cannot get rid of this internaltional number from iMessage. I can delete email addresses, but not a phone number. I've tried reinstalling OS X, turing iMessage and iCould on and off. Nothing works.
    How do I delete the phone number?
    Thank you,
    Jim

    hi,
    Open a Finder window.
    Use the Go Menu > Go to Folder and enter (cpy and paste) ~/Library/Preferences into the dialogue box that appears.
    Find the com.apple.imessages.bag.plist and the com.apple.imservice.iMessages.plist and drag both to the Trash
    Restart Messages.app.
    You may find you have to reset the iMessages account but the "Aliases" should have gone.
    8:35 PM      Wednesday; June 19, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • HT1918 How do i change the phone number on my apple ID account so i can use messaging with my Ipod Touch 4th gen?

    How do I change my phone number on my Apple ID account? Not the number for billing. I got a new Ipod touch and when I was setting it up my emails where correct but the phone number was wrong. The gentlemen at the Apple Store told me just to go on my account on my computer and change it but i cant find where. Only part i know how to change is the billing number. Thanks.

    If you can remember them their current answers you can login here and change them : https://appleid.apple.com , click on 'Manage your Apple ID' and then 'Password and Security' on the left-hand side of your account's page
    If you can't remember their answers and you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then see if the instructions on this user tip helps you get them reset : https://discussions.apple.com/docs/DOC-4551

  • How do i change the phone number that my keychain is associated with?

    How do i change the phone number that my Keychain is associated with?

    Hello Boogie3339,
    Thanks for using Apple Support Communities.
    Please see below on how to change your phone number for iCloud Keychain:
    Change how new devices can be approved
    After setting up iCloud Keychain on your Mac, you can change whether your iCloud Security Code can be used to approve iCloud Keychain on new devices. You can also change the iCloud Security Code or the phone number used to verify your identity after you use the iCloud Security Code.
    In iCloud Preferences, make sure Keychain is on, click Account Details, then change your iCloud Security Code settings.
    OS X Mavericks: Set up iCloud Keychain
    http://support.apple.com/kb/PH14405
    Take care,
    Alex H.

  • How can i add one phone number to my macbook pro application imessage

    how can i add one phone number to my macbook pro application imessage

    Make sure that the iPad is using the same Apple ID as your iPhone. If the phone number still doesn't appear, log out of iMessage on both devices, log back in on the iPhone, wait until it activates, then log into iMessage on the iPad with the same Apple ID.

  • How do I add a phone number to my Ipad air in imessage

    how do I add a phone number to IMessage on my iPad ai?

    Make sure that the iPad is using the same Apple ID as your iPhone. If the phone number still doesn't appear, log out of iMessage on both devices, log back in on the iPhone, wait until it activates, then log into iMessage on the iPad with the same Apple ID.

  • How do I add a phone number to Favorites?

    How do I add a phone number to Favorites?

    Here's How:  Tap the phone icon from the iPhone's the home screen. Tap the Favorites icon at the bottom left. Click the "plus" icon at the top right to add favorites. This will bring up your full contacts list. Scroll through it or jump to a letter to find the contact you want. When you've found the name, tap it. This will bring up the contact's information, including all their phone numbers. Tap the phone number you want to make a favorite. That name and phone number are now listed in your "Favorites" menu. Next to the person's name is a small note indicating whether the number is work, home, mobile, etc. To rearrange the order of your Favorites, go to the phone app and tap the "Edit" button in the top left. This will bring up a screen with red icons to the left of the favorites and an icon that looks like a small stack of three lines on the right. Tap the three-line icon and hold it. The Favorite you've selected will become active (when active, it appears to be slightly above the other Favorites). Drag the Favorite to the position in the list you want it to have and let it go. Click "done" in the top left and your favorites will be reordered.

  • How do I add my phone number to iMessage on iPad

    How do I add my phone number for my iPhone to my iPad for iMessage. On the settings on iMessage it only gives the options for an email. I have tried typing my mobile no in there but it doesn't accept it and there doesn't seem to be any other way to add it.
    I was getting iMessages for my mobile number on my iPad until I recently logged out and then back into my apple ID. Now the mobile number has disappeared on my iPad for both FaceTime and iMessage.

    Use a free email address like gmail.com.
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

Maybe you are looking for

  • Hp probook 4530s drivers for windows 7 ultimate 32bit

    I am running Windows 7 Professional 64bit on my hp probook 4530s notebook, and I am going to upgrade to Windows 7 Ultimate 32bit. but I will need the drivers for the new windows, because i will have to format the laptop to change from 64 bit to 32 bi

  • Fix/revert the way it gets album art?

    I tag all my albums "(01) Debut", "(02) Second Album", etc.. so they're in chronological order. Anyway, after upgrading to the latest iTunes (I think I had 8.0.1 or something), it no longer gets album art for them, unless I change the album title to

  • Jbutton below JTable in the same frame

    Hi All, I want to display a button below the JTable as shown below. [http://s361.photobucket.com/albums/oo52/ufucker_ufaggot/?action=view&current=untitled.jpg] Here is my code: Jbutton savebuton = new Jbutton("save"); table.setPreferredScrollableView

  • ADE does not open with Windows 8

    MY ADE is not opening and Windows Solution has no solution.

  • DLU policy not applying

    Customer site has been using ZEN for years. User package with DLU has always been associated at the OU levels and has been working for the users just fine. Now we're into a new project that requires the user packages to be associated to the individua