In the attached VI I dont understand why data from the inner case structures are not being transmitted to the array.

In the attached VI I don't understand why data from the inner case structures are not being transmitted to the array.
Thank you.
Solved!
Go to Solution.
Attachments:
TEMP.vi ‏25 KB

It took me some time to figure what you are trying to do but I think I have it now.
The SR is still required.
What is happening is your "Bundle By Name" is replacing all of the fields of the cluster, not just the value coming out of the case structure. So to maintain the cluster stuff you do in earlier iterations you can either...
1) Put the "Index array, Bundle by name, and Replace array" inside the case structure and ONLY bundle the value you are setting in that iteration. (as you will see Tim post shortly)
OR
2) Move the Index array before the Case, unbundle all of the fields and feed teh case structure and run them across the case so that ALL of your output tunnels come from the coresponding input tunnel EXCEPT for the filed you are trying to set.
Ben
Message Edited by Ben on 05-05-2010 01:31 PM
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • TS2755 For some reason when you try to attach mutiple photos to a text message directly from te camera roll they are not being send

    As well other app where you want to send to a message iMessage or text
    What you send doesn't get sent
    I've verified with mutiple users and they are not receiving my messages with photos attached

    A brief and probably non-helpful answer: I know of no way to eliminate your large amount of duplicates other than by repetitive, tedious manual effort.
    *There has got to be a simpler way.*
    I hope you're right, but I don't think there is a simpler way.
    BACKUP:  It also appears that the only way I can back up the catalog is to shut down LR.  Really?!
    Yes, really

  • Entire days of pictures are not loaded on iCloud, while most of the days are loaded. Weeks has passed, while I was connected to wireless, so I dont understand why still emtire days are missing...

    Entire days of pictures are not loaded on iCloud, while most of the days are loaded. Weeks has passed, while I was connected to wireless, so I dont understand why still entire days are missing...

    I noticed an entire series of its always sunny in philadelphia is missing from my apple tv "purchased" section where i can stream it directly from itunes...I just purchased the new season and not showing at all

  • Why cant apple track my stolen iphone if it connects to the internet after reset. the IMEI number stays the same so i dont understand why they just dont shut it off and call me and the police to inform me about the whereabouts of the phone

    Hi, my iphone was stolen around a month ago. After the phone popped up on find my iphone in central london the police decided to be really helpful and instead going to get it they closed my case. Since then it has been offline because the "lovely" individual who stole it obviously reset it. I was just wondering why doesnt apple track phones through the IMEI number. The number stays the same, so if the phone connects to the network they should be able to know that its my stolen iphone. I just dont understand why they dont do that. They have a huge ecosystem, and if someone signs in to my iphone with their itunes account (which they pretty much have to in order to use most of the phones features) the IMEI number gets associated with that perticular account. Would it not be possible for them to realize that its my stolen phone?
    Thanks to anyone that answers.

    Your carrier can lock the IMEI number, try contacting them. At least you'll have the satifsaction of knowing the theif can't use it anymore. My guess is Apple doesn't block IMEI numbers because they don't want someone selling a phone without record, and then reporting it stolen and causing problems that way. But that's just a guess, I feel for ya. Good luck either way, if it's a locked phone you should be able to call the carrier it's locked to and have the IMEI blocked.

  • I dont understand why my ipod says it has 8gb but holds 6.36gb capacity and it always says over capacity by 35.4mb and i deleted lots of my apps but it keeps doing the same thing soo annoying .

    I dont understand why my ipod says it has 8gb but holds 6.36gb capacity and it always says over capacity by 35.4mb and i deleted lots of my apps but it keeps doing the same thing soo annoying . ANYONE KNOWS WHY?!

    I had a similar problem and after deleting endlessly...and weeks of frustration I (without even realizing what I was on to) deleted my text messages. I had been letting them add up since it seemed easier to text someone if it were readily available. Needless to say, I ended up with nearly double the space/memory available.

  • Invalid cursor. dont understand why

    i keep getting invalid cursor near the fetch. i dont understand why. appreicate any help.
    declare
      -- Local variables here
      o_errorcode NUMBER;
      o_errortext VARCHAR2(1000);
      i_CustomerLoop NBK.Pkgcommon.T_CUSTOMERLOOPTYPE;
      o_loopid number;
      FUNCTION createCustomerLoopObj(in_Loopid  IN NUMBER,
                                     inTestCAse IN VARCHAR2)
        RETURN NBK.Pkgcommon.T_CUSTOMERLOOPTYPE IS
        J_CustomerLoop NBK.Pkgcommon.T_CUSTOMERLOOPTYPE;
        co_clli        open_interface.WDN_segment.co_clli%type;
        termsysid      open_interface.WDN_segment.termsysid%type;
        cable          open_interface.WDN_segment.cable%type;
        pair           open_interface.WDN_segment.low_pair%type;
        v_cntLoops     number := 0;
        CURSOR v_CustomerLoops IS
          select seg_f1.termsysid,
                 seg_f1.cable,
                 round((seg_f1.low_pair + seg_f1.high_pair) / 2),
                 seg_f1.co_clli
            FROM open_interface.WDN_segment                  seg_f1,
                 open_interface.WDN_loop_segment_association assoc_f1,
                 open_interface.WDN_potential_loop_makeup    loop_f1
           where seg_f1.segment_id = assoc_f1.segment_id
             and assoc_f1.loopid = loop_f1.loopid
             and loop_f1.loopid = in_Loopid -- 44441549
           order by assoc_f1.segment_number asc;
      BEGIN
        loop
          fetch v_CustomerLoops
            into termsysid, cable, pair, co_clli;
          exit when v_CustomerLoops%notfound;
          begin
            v_cntLoops := v_cntLoops + 1;
            J_CustomerLoop(v_cntLoops).Cable := cable;
            J_CustomerLoop(v_cntLoops).Pair := pair;     
            J_CustomerLoop(v_cntLoops).CentralOfficeName := co_clli;
            J_CustomerLoop(v_cntLoops).TerminalDeviceID := termsysid;
          exception
            WHEN no_data_found THEN
              dbms_output.put_line('no data found loopid ' || in_Loopid ||
                                   ' TestCASE' || inTestCAse);
            WHEN OTHERS THEN
              dbms_output.put_line('OTHER ERROR  loopid ' || in_Loopid || ' ' ||
                                   SQLERRM || SQLCODE || 'TestCASE' ||
                                   inTestCAse);
          end;
        end loop;
        close v_CustomerLoops;
        RETURN J_CustomerLoop;
      end createCustomerLoopObj;
    begin
      i_CustomerLoop := createCustomerLoopObj(44441549, 'tc');
    end;

    10 Points to you. ;)
    Regards.
    Satyaki De.

  • When I click on apps in Creative Cloud (via taskbar icon) it shows only Photoshop CC as installed and Lightroom as something to be installed!  I already have LR 5.7 installed and this has been updated through CC.  I dont understand why it's now showing as

    When I click on apps in Creative Cloud (via taskbar icon) it shows only Photoshop CC as installed and Lightroom as something to be installed!  I already have LR 5.7 installed and this has been updated through CC.  I dont understand why it's now showing as it needs to be installed!?!?  It wasn't like this the last time I looked.

    Hi,
    Please refer to the help document:
    Apps panel doesn't show installed Creative Cloud apps
    Regards,
    Sheena

  • I dont understand why i cant download this album when i payed

    i dont understand why i cant download this album when i payed

    i payed 12.99 & its telling me purchased ? but it takes forever to download even with wifi ? .

  • HT3775 why some times video and audeo files are not opening in my Mac? sir plz advise me the application i need to download.thanks.

    why some times video and audeo files are not opening in my Mac? sir plz advise me the application i need to download.thanks.

    why some times video and audeo files are not opening in my Mac? sir plz advise me the application i need to download.thanks.

  • Why is it, all of my itunes are not saved in the cloud?

    Why is it, all of my itunes are not saved in the cloud?

    If you mean that you have iTunes Match and wonder why not all songs go there, this should help:
    "Since there are more than 26 million songs in the iTunes Store, chances are your music is already in iCloud.  And for the few songs that aren't, iTunes uploads what it can't match ..."
    The above comes from here:
    http://www.apple.com/itunes/itunes-match/

  • Tiny Troopers 2 (iPhone and iPad Game) saves are not being synced to both devices. No option is given to load the iPhone save onto my iPad. Why is this?

    Tiny Troopers 2 (iPhone and iPad Game) saves are not being synced to both devices. No option is given to load the iPhone save onto my iPad. Why is this? Can anyone explain or help me with this problem?

    SkyzThaLimit wrote:
    Normally it gives the option via iCloud sync (infinity blade, tower defense)
    It is an option that the app developer has to decide to offer.

  • Why some archivelogs are not being backedup

    Hi,
    Can you help me understand why archivelog sequence 3 to 112 are not being backed-up?
    Rman list backup
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    13      Incr 0  1.49G      SBT_TAPE    00:03:43     09-MAY-10     
            BP Key: 13   Status: AVAILABLE  Compressed: NO  Tag: TAG20100509T081017
            Handle: tapefullarch<orcl_14:718531818:1>.dbf   Media: 8d080a0a:4bbe63e5:0f3c:0001[[AE3772] Default LTO-Ultrium_4]
      List of Datafiles in backup set 13
      File LV Type Ckp SCN    Ckp Time  Name
      1    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/system.256.705520977
      2    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/sysaux.257.705520977
      3    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/undotbs1.258.705520977
      4    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/users.259.705520977
      5    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/example.269.705521085
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    14      Incr 0  9.75M      SBT_TAPE    00:00:06     09-MAY-10     
            BP Key: 14   Status: AVAILABLE  Compressed: NO  Tag: TAG20100509T081017
            Handle: tapefullarch<orcl_15:718532043:1>.dbf   Media: 8d080a0a:4bbe63e5:0f3c:0001[[AE3772] Default LTO-Ultrium_4]
      SPFILE Included: Modification time: 09-MAY-10
      SPFILE db_unique_name: ORCL
      Control File Included: Ckp SCN: 71884491     Ckp time: 09-MAY-10
    BS Key  Size       Device Type Elapsed Time Completion Time
    15      548.75M    SBT_TAPE    00:00:56     09-MAY-10     
            BP Key: 15   Status: AVAILABLE  Compressed: NO  Tag: TAG20100509T081413
            Handle: tapefullarch<orcl_16:718532053:1>.dbf   Media: 8d080a0a:4bbe63e5:0f3c:0001[[AE3772] Default LTO-Ultrium_4]
      List of Archived Logs in backup set 15
      Thrd Seq     Low SCN    Low Time  Next SCN   Next Time
      1    112     71466716   04-JAN-10 71467421   04-JAN-10
      1    113     71467421   04-JAN-10 71467880   04-JAN-10
      1    114     71467880   04-JAN-10 71468651   04-JAN-10
      1    115     71468651   04-JAN-10 71484482   29-APR-10
      1    116     71484482   29-APR-10 71487769   29-APR-10
      1    117     71487769   29-APR-10 71491078   29-APR-10
      1    118     71491078   29-APR-10 71494090   29-APR-10
      1    119     71494090   29-APR-10 71497327   29-APR-10
      1    120     71497327   29-APR-10 71501375   29-APR-10
      1    121     71501375   29-APR-10 71504570   29-APR-10
      1    122     71504570   29-APR-10 71526345   29-APR-10
      1    123     71526345   29-APR-10 71573288   01-MAY-10
      1    124     71573288   01-MAY-10 71621137   02-MAY-10
      1    125     71621137   02-MAY-10 71642763   02-MAY-10
      1    126     71642763   02-MAY-10 71704967   03-MAY-10
      1    127     71704967   03-MAY-10 71758899   04-MAY-10
      1    128     71758899   04-MAY-10 71780946   04-MAY-10
      1    129     71780946   04-MAY-10 71818236   05-MAY-10
      1    130     71818236   05-MAY-10 71818244   05-MAY-10
      1    131     71818244   05-MAY-10 71818290   05-MAY-10
      1    132     71818290   05-MAY-10 71818293   05-MAY-10
      1    133     71818293   05-MAY-10 71818296   05-MAY-10
      1    134     71818296   05-MAY-10 71818317   05-MAY-10
      1    135     71818317   05-MAY-10 71818321   05-MAY-10
      1    136     71818321   05-MAY-10 71818325   05-MAY-10
      1    137     71818325   05-MAY-10 71818372   05-MAY-10
      1    138     71818372   05-MAY-10 71818560   05-MAY-10
      1    139     71818560   05-MAY-10 71818568   05-MAY-10
      1    140     71818568   05-MAY-10 71822429   05-MAY-10
      1    141     71822429   05-MAY-10 71822437   05-MAY-10
      1    142     71822437   05-MAY-10 71884015   09-MAY-10
      1    143     71884015   09-MAY-10 71884510   09-MAY-10
      1    144     71884510   09-MAY-10 71884518   09-MAY-10
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    16      Full    9.75M      SBT_TAPE    00:00:04     09-MAY-10     
            BP Key: 16   Status: AVAILABLE  Compressed: NO  Tag: TAG20100509T081520
            Handle: tapefullarch<orcl_17:718532120:1>.dbf   Media: 8d080a0a:4bbe63e5:0f3c:0001[[AE3772] Default LTO-Ultrium_4]
      Control File Included: Ckp SCN: 71884559     Ckp time: 09-MAY-10
    RMAN> ArchiveLogs...
    SQL> select SEQUENCE#,DELETED from v$archived_log;
    SEQUENCE# DEL
          3 NO
          4 NO
          5 NO
          6 NO
          7 NO
          8 NO
          9 NO
         10 NO
         11 NO
         12 NO
         13 NO
    SEQUENCE# DEL
         14 NO
         15 NO
         16 NO
         17 NO
         18 NO
         19 NO
         20 NO
         21 NO
         22 NO
         23 NO
         24 NO
    SEQUENCE# DEL
         25 NO
         26 NO
         27 NO
         28 NO
         29 NO
         30 NO
         31 NO
         32 NO
         33 NO
         34 NO
         35 NO
    SEQUENCE# DEL
         36 NO
         37 NO
         38 NO
         39 NO
         40 NO
         41 NO
         42 NO
         43 NO
         44 NO
         45 NO
         46 NO
    SEQUENCE# DEL
         47 NO
         48 NO
         49 NO
         50 NO
         51 NO
         52 NO
         53 NO
         54 NO
         55 NO
         56 NO
         57 NO
    SEQUENCE# DEL
         58 NO
         59 NO
         60 NO
         61 NO
         62 NO
         63 NO
         64 NO
         65 NO
         66 NO
         67 NO
         68 NO
    SEQUENCE# DEL
         69 NO
         70 NO
         71 NO
         72 NO
         73 NO
         74 NO
         75 NO
         76 NO
         77 NO
         78 NO
         79 NO
    SEQUENCE# DEL
         80 NO
         81 NO
         82 NO
         83 NO
         84 NO
         85 NO
         86 NO
         87 NO
         88 NO
         89 NO
         90 NO
    SEQUENCE# DEL
         91 NO
         92 NO
         93 NO
         94 NO
         95 NO
         96 NO
         97 NO
         98 NO
         99 NO
           100 NO
           101 NO
    SEQUENCE# DEL
           102 NO
           103 NO
           104 NO
           105 NO
           106 NO
           107 NO
           108 NO
           109 NO
           110 NO
           111 NO
           112 NO
    SEQUENCE# DEL
           113 NO
           114 NO
           115 NO
           116 NO
           117 NO
           118 NO
           119 NO
           120 NO
           121 NO
           122 NO
           123 NO
    SEQUENCE# DEL
           124 NO
           125 NO
           126 NO
           127 NO
           128 NO
           129 NO
           130 NO
           131 NO
           132 NO
           133 NO
           134 NO
    SEQUENCE# DEL
           135 NO
           136 NO
           137 NO
           138 NO
           139 NO
           140 NO
           141 NO
           142 NO
           143 NO
           144 NO
           145 NO
    SEQUENCE# DEL
           146 NO
           147 NO
           148 NO
           149 NO
    147 rows selected.
    SQL>

    Here it is Pavan... What's the difference between status X or A?
    and when I crosscheck archivelog all, I see "validation failed for archived log" for archivelogs 3 to 111
    SQL> select name, sequence#, completion_time, deleted from v$archived_log where status = 'A';
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_112_705521069.arch
           112 04-JAN-10 NO
    +DATA/orcl/arch/orcl1_113_705521069.arch
           113 04-JAN-10 NO
    +DATA/orcl/arch/orcl1_114_705521069.arch
           114 04-JAN-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_115_705521069.arch
           115 29-APR-10 NO
    +DATA/orcl/arch/orcl1_116_705521069.arch
           116 29-APR-10 NO
    +DATA/orcl/arch/orcl1_117_705521069.arch
           117 29-APR-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_118_705521069.arch
           118 29-APR-10 NO
    +DATA/orcl/arch/orcl1_119_705521069.arch
           119 29-APR-10 NO
    +DATA/orcl/arch/orcl1_120_705521069.arch
           120 29-APR-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_121_705521069.arch
           121 29-APR-10 NO
    +DATA/orcl/arch/orcl1_122_705521069.arch
           122 29-APR-10 NO
    +DATA/orcl/arch/orcl1_123_705521069.arch
           123 01-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_124_705521069.arch
           124 02-MAY-10 NO
    +DATA/orcl/arch/orcl1_125_705521069.arch
           125 02-MAY-10 NO
    +DATA/orcl/arch/orcl1_126_705521069.arch
           126 03-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_127_705521069.arch
           127 04-MAY-10 NO
    +DATA/orcl/arch/orcl1_128_705521069.arch
           128 04-MAY-10 NO
    +DATA/orcl/arch/orcl1_129_705521069.arch
           129 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_130_705521069.arch
           130 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_131_705521069.arch
           131 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_132_705521069.arch
           132 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_133_705521069.arch
           133 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_134_705521069.arch
           134 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_135_705521069.arch
           135 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_136_705521069.arch
           136 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_137_705521069.arch
           137 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_138_705521069.arch
           138 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_139_705521069.arch
           139 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_140_705521069.arch
           140 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_141_705521069.arch
           141 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_142_705521069.arch
           142 09-MAY-10 NO
    +DATA/orcl/arch/orcl1_143_705521069.arch
           143 09-MAY-10 NO
    +DATA/orcl/arch/orcl1_144_705521069.arch
           144 09-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_145_705521069.arch
           145 09-MAY-10 NO
    +DATA/orcl/arch/orcl1_146_705521069.arch
           146 10-MAY-10 NO
    +DATA/orcl/arch/orcl1_147_705521069.arch
           147 10-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_148_705521069.arch
           148 11-MAY-10 NO
    +DATA/orcl/arch/orcl1_149_705521069.arch
           149 12-MAY-10 NO
    +DATA/orcl/arch/orcl1_150_705521069.arch
           150 12-MAY-10 NO
    39 rows selected.
    SQL>

  • I've been editing images with ease for a long time but now the changes are not being saved.

    I've been editing images with ease for a long time but now the changes are not being saved.
    Also, it is not liking me adding a large ammount of images in one go?

    Remember: we cannot see your machine. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS.  So to get help you need to give as much information as you can. Basic things like :
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For instance: 'iPhoto won't export' is best explained by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • The corrections made on my DNGs in LR4 are not being acquired by BridgePS4 or Elements 10

    Set-up-
    LR4, LR3, Bridge and PS4 and Elements 10 on a MacBook Pro (OS 10.6.8), calibrated 24” HP ips monitor
    Problem-
    The corrections made on my DNGs in LR4 are not being acquired by BridgePS4 or Elements 10
    The neither the images in the filmstrip nor the DNG file when opened in PS4 or Elements Camera Raw reflect the LR4 corrections.
    Puzzling, since the Cropping and Corrections Applied Indicators are shown with the Bridge filmstrip images.
    And, when I re-Save  Bridge does acknowledge that it is doing new thumbnail extractions .
    I’ve done all I’m aware to do.
    Save in LR4 in Library Mode with filters off
    Did an Update DNG previews and metedata
    Automatically write changes to XMP is ON
    Restarted the machine
    To troubleshoot, I brought a few of those images( again DNGs)  into LR3, did corrections and saved.
    These images were rendered properly in Bridge’s filmstrip and corrections were carried into Camera Raw without issue.
    Any insights?
    Thank you in advance,
    Marvin

    LR4 defaults to using the new toning model and only ACR 6.7+ can understand the settings.  You can probably update your ACR to 6.7 for PSE10, but there is no update for the older PS-CS4 if that’s what you’re using.  The PSE10-specific update for ACR 6.7 on a Mac is here:  http://www.adobe.com/support/downloads/detail.jsp?ftpID=5382
    and Windows update is here:  http://www.adobe.com/support/downloads/detail.jsp?ftpID=5383
    The issue is that Process Version 2012 is what LR4 defaults to and this is not understood by the older ACRs. 
    Using PV2010 in LR4 would also probably work but the new toning model is one of the main reasons to use LR4 so that’s not the optimal choice.

  • Images are not being display in people search for few users - why ?

    Hello,
    In my farm, users having profile picture in UPSA and they are able to see in My Profile page as well.
    However when I find user in People search - images are not being display for few users while for others it works.
    I have checked picture property which is indexed and then I run full crawl still its same issue.
    Following are the settings for Picture Property - would you please let me know why its still not being display in people search ?
    Dipti Chhatrapati

    Dipti,
    Hope below urls will help you,
    https://littletalk.wordpress.com/2010/12/10/people-search-result-doesnt-have-images-in-sharepoint-2010/
    https://social.technet.microsoft.com/Forums/office/en-US/eea8aa10-4565-41bf-98ec-dc93fb600021/some-users-pictures-are-not-showing-in-people-and-groups-but-are-viewable-in-the-thumbnail-and-my?forum=sharepointgeneralprevious
    http://westerdale.biz/sharepoint-2010/display-active-directory-profile-thumbnail-photo-and-other-attributes-in-sharepoint-2010?doing_wp_cron=1421939809.4895009994506835937500
    Sudip
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

Maybe you are looking for