What's the control on List Forms for Person or Group?

Hi,
Anyone know what is the control that binds to Person or Group field in SharePoint 2013? It does not have the Check Names and Browse buttons beside the text box like PeopleEditor does, and it displays a list of possible users for selection as you type in
the text box.
I would like to use this control in a SharePoint project in Visual Studio 2013.
Thank you.

http://prasadpathak.wordpress.com/2013/10/10/setting-show-field-for-person-or-group-type-column-using-powershell/
http://www.c-sharpcorner.com/UploadFile/54db21/create-peoplegroup-field-in-sharepoint-2010-programmatically/
http://social.technet.microsoft.com/Forums/sharepoint/en-US/e5a50ad0-bd83-4a37-bed7-fa9a2d475bfe/how-to-get-a-value-from-peoplegroup-field-and-use-it-in-visual-studio-workflow?forum=sharepointcustomizationlegacy
The below links is same as your case. Please check it
http://mazdev.blogspot.in/2014/05/get-value-of-persongroup-list-item.html

Similar Messages

  • Is there a list of Out of the Box Adobe Interactive forms for HCM (HR)?

    Hi,
    Is there a list of Out of the Box Adobe Interactive forms for HCM (HR)? Can you please help me?
    Venkatesh

    hi,
    there are standard ISR Adobe forms (interactive) to my knowledge, which you can customise at your convenience.
    kindly check at <a href="http://service.sap.com/adobe"></a>.
    more precisely, go here
    <a href="https://websmp110.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000478323&">Interactive Forms Delivered by SAP Solutions</a>
    Do update the forum reg your findings.
    Thanks and Regardas,
    Anto

  • What are the best settings to use for the newest AirPort Extreme (AC wifi) with my optimum online service provider?

    I have the current generation of the AirPort Extreme and a handful of devices that utilize the new 5Ghz A/C frequency. My internet speeds were blazing fast when I had first set it up but lately it has been lagging terribly. I was told that changing my dhcp did help, which it did it seems like it might be back to its normal speeds but I just want to know what are the best settings to configure for the airport so that I can get the most out of my service on all my devices? I'm using a CAT 6 cable which does help, I have a guest wifi setup with a wifi password which I understand will slow it down a little. Can anyone just point me in the right direction or just give me a step by step guide on what settings to configure? Should I really consider turning off the guest network?

    I am assuming that you are looking to configure your network to provide the highest level of bandwidth possible for your network clients. If that is the case, the following are a few things to consider:
    The Internet modem should support Gigabit Ethernet. That is the Ethernet connection between the modem and your 802.11ac AirPort Extreme should be Gigabit Ethernet.
    Use CAT-5e or CAT-6 Ethernet cables between all wired connections.
    Only expect 802.11ac performance with 802.11ac clients in the same room as the base station.
    Eliminate or significantly reduce any forms of Wi-Fi interference on both the 2.4 & 5 GHz bands.
    When streaming, especially HD video on your local network, use wired connections between the host and player devices when possible.
    Other than the above suggestions there are no "magic" settings that you can make on your AirPort. Note: The Guest network shares the same bandwidth as the "main" network. Unless you have a network goal to provide this type of network, it is best left disabled.

  • What are the 3-bit field choices for Hw_Arm_Sel in PCI-6601

    Hi,
    I am programming our own driver to operate the PCI-6601. For our application we need hardware arm option. I know it is possible to use 2 counters for that, but NI-TIO should support also hw_arm. Although it is not explained in the registry document at all, after some tedious check in the DDK examples I found that this bits are located in the Gi counting mode register. I know the position of the HW_enable as well as the position of the 3 bits for pin sellect options. What I do not know is What are the 3-bit field choices for Hw_Arm_Sel . I contacted NI support but got no support. How can NI sell boards and when a customer who is not using LAbview or Measurement Studio or DDK, but is implementing his own driver is then so arrogantly turned down from NI? Also, how can NI publish just part of the registers the board support, and when a customer contacs and asks for some registers get not at all support? I can not foretell the missing registers, and it is pretty unprofessional to document just partly the registers of 660x devices. And on request you got nothing.
    I hope someone from the community know about this Hw_Arm_Sel 3 pin options. Otherwise, there is just an option of error and trial. Or simply throw the board in the garbage.
    Dr. Kirco Arsov
    Solved!
    Go to Solution.

    Hi Kirco,
    I have some more information for you :-)
    I haven't been able to speak to the developer who is the most familiar with TIO programming since he's out of the office, but I have come across his notes from when he was writing support for the DAQmx driver.
    As I described earlier, the HW_Arm_Sel bits don't select a connector I/O pin, but an internal trigger signal. There are seven internal trigger lines, and the HW_Arm_Sel bits map directly to the internal trigger signal: 0b000 - 0b111 map to 0d0 - 0d7. In order to route an I/O pin to an internal trigger, you must also write to a few more registers.
    From what I've read, there are two more register families that need to be programmed: TG_x_LevelEdgeReg and TG_x_CombinationReg, where x is the internal trigger number. In your case, you only need one pin from the I/O connector to be your arm start trigger, so TG_0_LevelEdgeReg and TB_0_CombinationReg will suffice for your application.
    TB_0_LevelEdgeReg :: Offset 0x660
    TG_0_LevelEdgeReg is only 8 bits wide, and maps as follows:
    7..6: EdgeMode
    5..0: LESel
    LESel selects the I/O connector pin to use as the source for the internal trigger signal. 0d0 - 0d39 will select the I/O pin of the same number. NB: behavior for TG_x_LevelEdgeReg is more limited for triggers 1-7, and only a small subset of the I/O pins can be selected for those trigger signals. Trigger 0 can use any I/O pin. Setting these bits to 0d63 forces the trigger source low, and can be used as a way to 'unroute' it when you're finished with your program.
    EdgeMode determines whether the TIO will detect an edge of the incoming signal, or just pass the signal level straight through. When detecting edges, it will latch the signal and generate a single TIMEBASE3 pulse instead. 0b00 sets level mode; 0b01 sets rising edge; 0b10 sets falling edge; 0b11 sets either edge.
    TG_0_CombinationReg :: Offset 0x6A0
    TG_0_CombinationReg is 32 bits wide, and has three fields of interest:
    19..16: CombFunction
    5..4: CombTypeB
    1..0: CombTypeA
    CombTypeA controls which trigger subsystem to use as the source for the trigger signal. Since you're coming from an I/O pin and using the edge/level subsystem, you must set these bits to 0b01.
    CombTypeB is similar to CombTypeA, and although you won't be using trigger B, set it to 0b01 to be safe.
    CombFunction performs a simple logic function on A and B. Since you're only using a single I/O connector, you only need the A output, so set these bits to 0b1100.
    All of the other bits should be set to 0b0.
    Unfortunately, I'm unable to test these statements since my test machine is currently being used for another research project. Please let me know what happens if you decide to test.
    Joe Friedchicken
    NI VirtualBench Application Software
    Get with your fellow hardware users :: [ NI's VirtualBench User Group ]
    Get with your fellow OS users :: [ NI's Linux User Group ] [ NI's OS X User Group ]
    Get with your fellow developers :: [ NI's DAQmx Base User Group ] [ NI's DDK User Group ]
    Senior Software Engineer :: Multifunction Instruments Applications Group
    Software Engineer :: Measurements RLP Group (until Mar 2014)
    Applications Engineer :: High Speed Product Group (until Sep 2008)

  • What are the best dimensions to allow for iPad 3 Retina for full-page landscape images?

    What are the best dimensions to allow for iPad 3 Retina for full-page landscape images?
    I read an article and cannot find it that said something about trying to make it 2million pixels and JPG to keep it small, but what exactly should the dimensions be that I ultimately import?  Is there some kind of a "density" setting I have to use, as well, when exporting from Photoshop, for example?

    See Optimizing performance in your iBooks Author books
    Density is discussed by Apple in this context as 'dpi'...
    132 - iPad 2
    264 - new iPad
    At the top of this forum there are popular links listed on the right, including image sizing etc. Be sure to study those existing/previous threads on this topic.
    Good luck.
    Ken

  • I have a 2007 macbook and I am wondering what is the best external hard drive for my Mac?

    What is the best external hard drive for a 2007 Macbook?

    The Apple USB superdrive would be a great choice for you, ( http://store.apple.com/ca/product/MD564ZM/A/apple-usb-superdrive?fnode=5f ) I am not certain but I am pretty sure that it has the same form factor as the MacMini (Not thickness but all the other dimenetions) so it fits just under and looks like an extension of your mac. 

  • What is the best investment tracking software for macs?

    what is the best investment tracking software for macs?

    Three issues to consider about an external HD:
    1. Connectivity. In other words, USB 2.0 and Firewire. If you intend to move large chunks of data at once, such as when streaming audio or video for professional applications, then Firewire is better suited for that. Otherwise, for normal applications, USB is ok.
    2. RPMs. In other words, how fast the HD platter spins around. Most consumer HD have a 5400 rpm (rotations per minute) speed. Some HD have a 7200 or even 10,000 rpm spec. The faster the rotation, the faster the access time, the faster information on the HD can be accessed. Not a critical factor unless you deal with audio or video.
    3. Brand. In other words, reliability. Best ones, form my experience, are Seagate and Western Digital. Go for Seagate if you can. I've never had any issues with a Seagate drive. You can also go to your local computer shop and they will have separate drives and enclosures, so you can customize the look and connectivity of your HD.
    A.

  • Foxit Reader has just been upgraded to 7.0. What is the latest Foxit Reader Plugin for Mozilla?

    Today 24 Sep 2014 I received notice and Upgraded to Foxit Reader 7.0.
    Under Plugins in Thunderbird it says Unknown. When you click on the Research Button the question is not answered in the list given.
    I am presently using Plugin 2.2.4.903 is there a later one.
    What is the Latest Foxit Reader Plugin for Mozilla?

    You'd need to check with Foxit. Plugins are 3rd party software, and not provided by Mozilla.

  • What is the price of new screen for mac air 11'', coz mine is broken

    what is the price of new screen for mac air 11'' in singapore, coz mine is broken, the lcd crashd, whatever

    You may have to check local official authorized Apple service providers for a price or estimate on the cost of repair parts and labor; there may be other companies than those officially listed in the locator page here http://www.apple.com/sg/service/ in the Singapore area, that can do the job. Be wary of those not Authorized or Certified, since these may not use the correct parts or may not be properly trained in the repair procedure.
    In the case of a computer still under offiical original or extended Apple warranty, when accidental damages cause need for a repair, be sure to get the damage fixed in an authorized repair facility so as to keep the remainder of the offiical warranty in effect. Unofficial repairs by unqualified persons can void the remainder of a factory warranty; while the damage may not be covered at all, the rest of the computer could retain coverage if it is repaired correctly using Apple trained and authorized service personnel and original equipment parts.
    So, be sure if you find a shop that can do a repair, that it won't make matters worse by performing inexact or  sub-par service; and if the computer no longer has an official warranty on the remainder of the unit (outside of the accidental damages not covered anyway) you may be able to find a good display, new or used, and have another service company replace the one in your MB/Air. Depending on what build year-model MB/Air 11" you have, the parts may vary; so be sure to research whoever can do this job, so it may be done correctly. 
    There are independent authorized Apple repair agents with certified technicians who use correct parts, so maybe you can find one in your region; at least to initially research the costs involved in restoring the MB/Air.
    Not sure which model you have, but for something out of warranty or damaged in a way to no longer be covered, you may see what may be involved in doing a repair or parts swap, yourself; the following may be helpful in restoring this model.Or give you an idea, should it be too technical for a DIY fix.
    MacBook Air Repair - iFixit:
    http://www.ifixit.com/Device/MacBook_Air
    However that works out...
    Good luck & happy computing!

  • What are the three drives listed on my iMac?

    Just out of curiosity, what are the three drives listed on my new iMac when one performs the diskutil list command in Terminal?
    More specifically, what is /dev/disk0 ?
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *121.3 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         121.0 GB   disk0s2
       3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3
    /dev/disk1 says Apple_Boot Recovery HD which makes sense with the new recovery partition.
    /dev/disk2 says Apple_HFS MyDIskName and Logical Volume on disk0s2, disk1s2, followed by a bunch of numbers and characters, then Unlocked Encrypted Fusion Drive. I am assuming tis refers to the actual fusion drive that is mounted on the desktop.
    Thank you very much!

    Amazon has sync software that uses a Cloud Drive as stated at http://appadvice.com/appnn/2013/04/amazon-cloud-drive-sync-arrives-for-mac
    Allan

  • What's the best mac configuration setup for Logic?

    I think that I didn't configure my Mac good enough to work with Logic and I hear that there is a special configuration that should be used to have everhything work together as best as possible in terems of memory use etc. But what are the best settings? And where do i configure them?

    Are you talking about within logic or the actual system?
    as far as logic is concerned, the preferences / audio tab will offer you most of the controls to optimize logic for your system.
    as far as the actual mac, the best would obviously be a 12 core mac pro, speced till it would spec no more LOL.
    but a I5 imac and that much ram is still a reasonable beast in the home studio stakes.
    the best way to use all the RAM is to run logic in 64 bit, 
    find logics icon in the finder, and either right/ctrl click and click get info or press cmd-I.
    this will bring up the get info dialog, and uncheck run in 32bit.
    hey presto, logic can get to 16gb of RAM (in theory).

  • What is the relation between adobe forms and web dynpro

    hi
    what is the relation between adobe forms and web dynpro

    Hi Jyothsna,
    Adobe forms are advanced to smartforms and scripts.
    Adobe forms are much easier than smartforms they are online forms.
    they can be developed online.
    Adobe forms : This is another SAP tool designed to create your own forms. The transaction for this is SFP.
    How to use them: You can create a sales order form in adobe form and send to the sales reps. Sales reps can fill this form when they are not connected to internet / SAP system. Once they connect to SAP just send an e-mail to a specific user id in outlook. You got to customize and code how do you want to process once you receive this form. This enables you to create orders even when you are not connected to the system. Hence no data loss. This is not how i used though :-). This is just my idea.
    What is the difference between Adobe forms and smart forms / scripts.
    Smart forms / scripts are used to show the data in SAP. Most likely you will use these to print / display some kind of reciepts / forms. Many companies must be using this for hard copies / ALE / EDI or to transfer data from SAP to others.
    Adobe forms are used to post data into SAP from SAP too.  So this has an additional feature compared to smartforms.
    Please check this link
    http://www.erpgenie.com/index.php?option=com_content&task=view&id=600&Itemid=77
    Web dynpro in one of the component in NETWEAVER.
    Web Dynpro is the SAP NetWeaver programming model for user interfaces and provides support when developing the Web representation of business applications. The Web Dynpro model is based on the Model View Controller paradigm, and has the following features that build on the classic dynpro model:
    ·        Clear separation of business logic and display logic
    ·        Uniform metamodel for all types of user interfaces
    ·        Execution on a number of client platforms.
    ·        Extensive platform independence of interfaces
    please check this link
    http://help.sap.com/saphelp_nw04/helpdata/en/a5/1a1e3e7181b60ae10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm
    Best regards,
    raam

  • What is the best iTunes Equalizer settings for Bose QC15 Headphones?

    What is the best iTunes Equalizer settings for the Bose QC15 Headphones? An image of those settings would be great.

    I'm a bit of an audio geek, so I can tell you that YES whatever sounds right is what you want, but NO those settings are not very good. The general setting is "OK" but the values are extremely out of range. Take that setting and reduce the distance between the sliders and you're getting there. Look for example at how the other iTunes presets are made, the don't go that far from the horizontal middle, and for good reason.
    When you play a recorded song, the song has usually been put through an extensive process of mixing, EQ and mastering before you got it, in order to get the best balance of all frequencies, to ensure the best sound accross a wide range of speakers and headphones, and to ensure the most important details and instruments are audible when played together.
    All speakers are different, and that's where the idea of an EQ for the listener is introduced. The idea is to tweak the overall sound from your music player (iTunes) to compensate for the strengths and weaknesses of your speakers. Which to be honest, is a bit much to expect form a typical music consumer.
    The iTunes EQ has a set of horizontal lines representing 3dB (volume steps) each. In my experience you should not boost or cut more than 6 db at the most - and that's a lot! I stay at around 0-4dB. The extreme options are there to cut noise from bad recordings or emphasize a detail you can't hear very well.
    So here's basic EQ lesson:
    The EQ represents the range frequencies in sound that the human ear can hear. Actually they go beyond that - most people cannot hear the far left and right frequencies. The range of frequencis start at "deep" or "low" frequencies at the left (bass) passing through the Midrange (midtones) in the center, to the (treble) at the right.
    Your speaker has a limit to how many frequencies it can play at once before it starts to lose detail - meaning one sound will drown out in order to make room for another. So don't over-EQ your sound or it'll ruin it.
    How to tweak an EQ:
    1) Start by playing a well-produced piece of modern music  - it'll most likely be well mixed and employ a wide range of frequencies. I'm into heavy metal but for this I'd probably go with some average pop music, because metal is so noisy it gets hard to pick out the details.
    2) Set you EQ to FLAT - zero all accross the board. It'll sound pretty flat and boring unless your speakers are very "flavoured" or "colored" already.
    Sliding any of the EQ bar up, will increase or boost the volume of the frequency the bar represents. You can't really add frequencies that aren't there already - you're just adding noise in that freqeuncy and that will "fill up" the available frequencies on your speaker, causing that "drowned out" effect I was talking about.
    Instead, slide them down from the center, and you're cutting the volume instead. This is better because it'll leave more "room" for the other frequencies. You can always use the Preamp slider at the end if you're worried about loudness (but I wouldn't).
    3) Start by tweaking the 500 and 1K slider. This represents the middle of your ears' range of hearing and the most noticable change. It should most likely go downwards - this will take the "canned" sound out of your music and that'll be apparent quickly. Go ahead and slide that down as far as -6dB.
    4) Now work outwards from the center forming a "v" shape, where the top tips of the V end at the 64 slider and the 8k slider. The very far left and right sliders (32 and 16K) should dip down again to about 0bB. Trust me, these are almost non-important in most music. You can tweak thos last if you feel it's needed.
    5) now it's time to start playing round with the V shape. Go ahead and try sliding the sliders a little up or down between 125-250 and 1K to 4K. You may find that some need to move a lot out of the average "V" shape before the sound is good. This is what my iTunes EQ settings ended up looking like for my Motörheadphones "Motorizer" headphones:
    Hope it helps.

  • What is the difference between smart forms and scripts.?

    what is the difference between smart forms and scripts.?

    Differences between Smartforms and SAPscript
    a) Multiple page formats are possible in smartforms which is not the case in SAPScripts
    b) It is possible to have a smartform without a main window .
    c) Routines can be written in smartforms tool.
    d) Smartforms generates a function module when activated.
    e) Smartforms can create web enable forms like XML
    f) smartforms itself contine subroutine pools need not to main separetly like in case of scripts
    Request you to refer the following links
    www.sap-img.com/smartforms/smartform-sapscripts.htm
    www.erpgenie.com/abap/smartforms_sapscript.htm
    Sapscript vs Smartforms
    Difference with SMARTFORMS vs. SapScript(SE71)
    The Following are the differences :-
    a) Multiple page formats are possible in smartforms which is not the case in SAPScripts
    b) It is possible to have a smartform without a main window .
    c) Labels cannot be created in smartforms.
    d) Routines can be written in smartforms tool.
    e) Smartforms generates a function module when activated
    Scripts are client dependent whereas smartforms aren't.
    Upto 99 main windows are possible in scripts and only one in smarforms.
    To create multiple main windows in scripts, you just have to give the window type as MAIN whnever you create a window.
    Scripts still exists but smartforms are in use from 4.6c version, now the lastest version of these two is adobe forms
    SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms.SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. Thus, a power user without any programming knowledge can
    configure forms with data from an SAP System for the relevant business processes.
    Advantages of SAP Smart Forms
    SAP Smart Forms have the following advantages:
    1. The adaptation of forms is supported to a large extent by graphic tools for layout and logic, so that no programming knowledge is necessary (at least 90% of all adjustments). Therefore, power user forms can also make configurations for your business processes with data from an SAP system. Consultants are only required in special cases.
    2. Displaying table structures (dynamic framing of texts)
    3. Output of background graphics, for form design in particular the use of templates which were scanned.
    4. Colored output of texts
    5. User-friendly and integrated Form Painter for the graphical design of forms
    6. Graphical Table Painter for drawing tables
    7. Reusing Font and paragraph formats in forms (Smart Styles)
    8. Data interface in XML format (XML for Smart Forms, in short XSF)
    9. Form translation is supported by standard translation tools
    10. Flexible reuse of text modules
    11. HTML output of forms (Basis release 6.10)
    12. Interactive Web forms with input fields, pushbuttons, radio buttons, etc. (Basis-Release 6.10)
    Reward Points if useful.

  • What does the symbol ".." stand for?

    [root@localhost jeff]$ls -al
    total 64
    drwx------ 3 jeff jeff 4096 2008-01-02 20:20 .
    drwxr-x-x 6 root root 4096 2008-01-02 20:30 ..
    I want to know: what does the symbol ".." stand for?

    But why does it display the parent directory here? I
    just to list the current directory!It's a shortcut to parent directory. Otherwise how do you quickly go back one level of directory? Do you prefer to always enter the full path ?

Maybe you are looking for

  • Using Excel 2007 to display and auto-refresh planning.

    Hi all, a customer wants to display a simple planning screen on a 24" monitor. We're using an old domain pc, with domain user (planning) logged on to display the planning file. We've configured the worksheet so that multiple users can edit it. I've a

  • How do you compile movie on new iMovie app?

    I have been a user of the prior iMovie software.  I now have the newest version and am puzzled since when compiling a new video I cannot figure how to save it into a file which I can burn to a disk which will play on my standard blu-ray player.  When

  • Issue with HDMI adapter of N8 (Please help)

    Okay here's the thing. I just bought a Nokia N8 yesterday and it works great so far but there's only 1 problem. I tried to connect a standard HDMI cable (the one I got when I bought a Sony TV) to the HDMI adapter provided with the N8. However, the st

  • Send HTML mail with image

    Hi experts and gurus, how can I send an HTML email which is displaying an image in the HTML context (table)? I'm using the 'SO_NEW_DOCUMENT_SEND_API1' like below: CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'     EXPORTING       document_data            

  • How can I transfer Photoshop CS5 from my macbook pro running Maverick to my iMac that is running Mountain Lion

    I have been trying to figure out how to transfer Photoshop CS5 from my Macbook Pro to the my iMac. The Macbook Pro was running Mountain Lion until I updated a few days ago to Maverick. The iMac is sill running Mountain Lion because when I went to upd