Is it possible to add/remove a person from a group using workflow?

Hi All,
Is it possible to add/remove a person from a group using workflow?

What version of SharePoint are you using?
There is CodePlex project that adds additional work flow steps that would help you out. These include
Create Site
Create Group 
Add users to group
The link is http://ilovesharepoint.codeplex.com/releases/view/89201
Steven Andrews
SharePoint Business Analyst: LiveNation Entertainment
Blog: baron72.wordpress.com
Twitter: Follow @backpackerd00d
My Wiki Articles:
CodePlex Corner Series
Please remember to mark your question as "answered" if this solves (or helps) your problem.

Similar Messages

  • How do I remove a person from a group photo?

    How do I remove a person from a group photo?

    Try the re-compose tool.
    http://www.youtube.com/watch?v=diY3y4LwsI0

  • How to remove firefox persona from my homepage

    how do i remove firefox persona from my homepage
    it takes too long to load my homepage with this on my homepage

    A Persona doesn't affect the "homepage", it decorates the Toolbars and the Statusbar.
    You can revert to the Default theme (Tools > Add-ons > Themes).
    See [[Using themes with Firefox]] and http://kb.mozillazine.org/Themes (Lightweight theme)

  • How do you remove a person from a photo and replace her with another person

    How do you remove a person from a photo and repalce her with another person.

    There are many tool and "tricks" to accomplish this manipulation. However, depending on the image one technique might be more appropriate than an other. And then there is the question of how to do it "skillfully". For example, the shadows in the person that is being substituted might be different than in the original image creating the obviously "photoshopped" look.
    Doing an Internet search on your posting title brings up lots of examples.

  • How do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

  • How to remove a keyword from a group of photos

    I want to remove a keyword from a group of photos.  They all have the same keyword attached, of course.  When I right-click keyword and choose 'Remove keyword from selected photos' it removes the keyword from the most-selected photo ONLY, not from all photos that are selected.  I have to remove the keyword from each photo one at a time.
    I'm running LR 5.6 on a Mac.
    Thanks for any assistance.

    etmarcr wrote:
    I didn't think about..
    Perhaps not the most intuitive, but that's how I do it..
    Free tip: to assign to all, remove the '*' (asterisk).

  • How do I permanently remove a name from a group list?

    I would like to permanently remove a name from a group list. I have highlighted and deleted and it still won't go away. I have deleted him from my address book but I cannot remove him from the group list.

    There is the mailing list stored (which addressbook)? Perhaps the addressbook is read-only or unavailable?

  • How do I remove a contact from a group?

    How do I remove a contact from a group?

    Warning: the method Demo mentioned seems to delete the contact off your device entirely (and off of all your devices if you're using iCloud for your contacts), not just remove them from the group. I haven't found a way to remove them from the group while keeping them on the device.

  • Add/Remove data object from dataset

    Hello,
    I was working out a way to add and remove data from a dataset
    on the fly and could not figure out any built in methods to do
    this.
    As I have decided to include spry in my project I like to try
    and utilise as much as of its code as possible since it is
    complicated to explain I have created a simple example – a
    colour picker! (thought it might be more interesting…) of
    what I am trying to achieve at
    http://www.freshfresh.co.uk/spry/
    - if you have a go on this and maybe look at the source code (all
    the JS is embedded in HTML there are no modifications to other the
    other core files). I have only used spry effects etc, including the
    ‘accordion’ – which I have become quite attached
    to, it is really good for condensing pages down.
    You will see I am using the setDataFromDoc method to create
    the dataset – I tried the .data = myArrayOfData; .dataHash =
    hashTable; method i.e. creating from an object rather than array
    but it did’nt seem to play ball with the
    addDataChangedObserver method – it did’nt update itself
    each time it was modified (I am sorry I cannot remember exactly
    what I did – but I tried all kinds of ways…). I stuck
    with the string method because it worked - each time my new dataset
    changed it updated itself on the screen (you will have to have a
    look to understand.....sorry!!), but I would be interested to know
    how such a thing could be implemented using the object route if you
    believe this would be more efficient.
    My second question is more simple – is there a shorter
    way to add and remove a data object from a dataset? – as you
    can see from the source code I have effectively created an
    ‘interface’ to do these tasks…. I could’nt
    work out whether these methods are already built in. Maybe they
    are?
    Third question is… to extract a data object from a
    dataset I use the .dataHash[the_row_id] method – is this the
    right thing to do or could it lead to complications… that is
    using methods that might supposedly be private?
    Fourth question (observation really) – whilst creating
    that colour picker example I went over board with my datasets and
    loaded in several palettes some of which had over 1000 elements or
    data objects. Which inevitably was very slow (on my computer
    anyway) – but it got me thinking about trimming the contents
    of my spry regions for better performance. I am I right in thinking
    that the less HTML etc that there is in a spry region the quicker
    SPRY will process it. For example say you had spry repeat with an
    image tag in with some onclick, onmousover, onmouseout, style
    attributes etc and compare this to a spry repeat with a simple
    image with minimal attributes set. I suppose what I am trying to
    say is – does spry ‘store’ all the contents of
    each spry region somewhere? Or does it just process it and leave it
    to the browser dom?
    Fifth observation.... I find it really difficult to explain
    computer technicalities in writing. It must be tough reading these
    posts.... I know I find it difficult sometimes when dealing with
    written end user feedback!
    Andrew

    Just clarifying my questions a bit further....
    I found some old code regarding question 1 by using the
    object method I mean something like this...
    var mySwatches = [{'@hex':'ff0000'},{'@hex':'00ff00'}];
    var hashTable = [];
    function createDs(){
    for (var i = 0; i < mySwatches.length; i++)
    mySwatches
    .ds_RowID = i;
    hashTable = mySwatches
    dsMySwatches.data = mySwatches;
    dsMySwatches.dataHash = hashTable;
    dsMySwatches.loadData();
    i.e. not writing out a whole XML string string as the online
    example does. When using this way I did'nt seem to be able to get
    the HTML to refresh. I tried using [
    Spry.Data.updateRegion('mydata'); ] after recreating the dataset I
    also tried adding an [ .addDataChangedObserver ] (like in the
    string example) amongst numerous other ways but it just would not
    work like the string way. - Maybe I did something wrong somewhere.
    In question 3 I refer to the [ .hash ] method .... its not a
    'method' its a 'property' - my question should read - is it ok to
    access private properties (from a browser campatiblity/security
    point of view) that do not have specific methods to gain access to
    them. I suppose it does'nt really matter with JS...
    In question 4 I mention minimising the amount of code in a
    spry region to speed it up. A clearer example of this might be for
    example - a gallery with lots of images. As we know there will be a
    slight delay as SPRY writes all the html so to speed up that intial
    write I strip out all the image attributes such as onlclick do
    this, onmouse over do that... and add these after the images have
    loaded using a seperate function similar to my
    fillSwatches(ds,prefix) function in my online colorpicker example.
    I suppose it like a 2 tier processing of all the data. SPRY does
    the intial display writing to get everything in place and then
    another pass is made over to add any further functionality
    adjustments etc. I am still not sure if that makes any sense!
    ***edit
    Also on the subject of speed and the application as a whole
    i.e. including my PHP - In one example I was creating I ended up
    with an XML structure where each node has over 14 attributes i.e.
    <somenode att1=”x” ……..
    att14=”z”/> - as the file grew it obviously took
    longer to process particularly on the server side, i.e. added all
    those attributes just slowed it all down. So I did
    this…… <somenode att1=”x:y:z” /> i.e
    condensed selected attributes into a string that I could explode
    later on.
    Obviously this limits SPRYS ability to access the attributes
    using the {attr} syntax. I had to create a function to explode the
    array and do the ‘necessary’ on a second pass over the
    data – this works ok for me. But its interesting that in this
    particular case the server could not refresh the XML in an
    acceptable time without doing this – just thought that might
    be interesting to you. I suppose technically what I am doing is
    abusing the concept of an XML structure and simply using it as a
    ‘carrier’ to feed my application …. Which I
    suppose is where JSON comes in…. which is a bit more compact
    and maybe faster to manipulate on both the server and client side
    – I don’t really know, I have never used it –
    just throwing ideas around!!
    Andrew

  • Add/Remove datagridview event from other class

    Hi,
    I have a 'Class A' which have a datagridview object with cellvaluechanged event. i pass this datagridview as byreference to 'Class B'.
    i need to remove/add the cellvaluechanged event of given datagridview object from 'Class B'.
    below is my code
    Thanks and Regards
    Kasim

    Hi Thangam-Kasim,
    If you want to add/remove the event of DataGridView in ClassB.
    You need to add a reference of Class A in Class B.
    I supposed the ClassA is Form1, The Class B is Form2. in Form2, there is a method called SetDataSource() like yours.
    Then you could add/remove the event like below.
    Public Sub SetDataSource(ByVal dt As DataTable, ByRef DGView As DataGridView)
    Dim dgvrow As DataGridViewRow
    If DGView.Rows.Count > 0 Or DGView.DataSource IsNot Nothing Then
    DGView.Rows.Clear()
    End If
    Dim form1 As Form1 = Application.OpenForms.OfType(Of Form1)().FirstOrDefault()
    RemoveHandler DGView.CellValueChanged, AddressOf form1.DataGridView1_CellValueChanged
    AddHandler DGView.CellValueChanged, AddressOf form1.DataGridView1_CellValueChanged
    End Sub
    In Form1, you need to set the DataGridView1_CellValueChanged method to Public.
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to dynamically add/remove a button from the ribbon based on some condition? (Ribbon XML)

    Hi,
    I have a ribbon (done using ribbon XML) with menu options. I need to remove few buttons from the menu dynamically based on some condition. Also, I want to change the label of another button. How to achieve this programmatically? (C#)
    Thanks in advance.
    Thanks Prasad

    Hello Prasad,
    Use callbacks for populating Ribbon controls such as menu, dropDown, gallery and etc. Then you can use the
    Invalidate or
    InvalidateControl methods of the
    IRibbonUI interface to get your callbacks invoked when required. Thus, you will be able to delete the required item(s).
    You will find the following articles in MSDN helpful:
    Chapter 11: Creating Dynamic Ribbon Customizations (1 of 2)
    Chapter 11: Creating Dynamic Ribbon Customizations (2 of 2)
    To change the label of your controls at runtime you need to use the getLabel callback and call the Invalidate or InvalidateControl methods of the IRibbonUI interface. The following series of articles describe the Fluent UI in depth:
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)

  • Removing pw-protection from multiple documents using v. 11.0.4

    I'm hoping someone can help me out here. I'm at my wit's end after wasting an hour and a half with an Adobe chat person who couldn't figure this out.
    In previous versions of Acrobat, one was able to add pw-protection to multiple documents at once using the batch process, and conversely, one was able to REMOVE that pw-protection using a similar batch process. I now have about 150 documents that all have the same password, which I must remove because of the need for edits. In v. 11.0.4, however, this capability seems to have disappeared. The chat support person said the only way to do it was to create an Action, but then be willing to re-enter the pw for each and every file! 150 times! Surely we haven't gone backwards in this version?! Say it ain't so!
    If anyone knows how to do this, I would be very grateful. It seems a shame that I would have to revert to an older version to get this job done (with the hassle of uninstalling/installing to boot).
    Thanks,
    Gail

    Hi Dave,
    OK I’ve downloaded your  file and installed. The option Remove Security appears under the Encrypt action only if I have a file open and it will indeed remove the pw from that file and allow me to save back to the same file name. However I don’t see an option to add multiple files to the action, and if no file is open, the action is dimmed out. This is my last hurdle to getting this job done; can you point me in the right direction?
    Gail

  • How do I remove an address from a group without deleting it from my address book?

    I'd like to send out a group email about the death of the mother of one of the group members. I need to temporarily remove him from the group. How do I do that? I cant display all of the group in my address line so I can cut his out, & can't figure out how to remove him from the group. (I'm afraid the delete button in his info will take his info out permanently, not just out of the group.

    Install the AddExpandedList add-on allow the removal of select contacts from a mailing list addressing:
    https://nic-nac-project.org/~kaosmos/index-en.html#explist
    http://chrisramsden.vfast.co.uk/3_How_to_install_Add-ons_in_Thunderbird.html
    Press F9 in a Write window to show the Contacts sidebar, then right-click a mailing list.

  • Hi there can I remove a device from my iTunes using my iphone not a pc?

    Can u help I need to remove a device form my iTunes using my phone

    Many newer wireless routers can create more than one network simultanesouly. If I wanted to do this, I'd set up a separate network for my child to use, then change the password during those times I wanted him to stay off the net. Or just pull the plug and keep the wireless transmitted (the plug) where he couldn't reach it.
    If you're using a recent Airport Base Station or Time Capsule there are better options.

  • Removing an attribute from a group by clause

    This concerns a web application developed by JDeveloper 10.1.2 (adf, uix). I have viewobject with a query, written in expert mode, that has a group by clause. I removed an attribute from the select statement that was included in the group by clause and removed it from the bindings of the page that displays the data from the view. When I test the application module the data is grouped correctly. But when I run the view the attribute is not shown on the page but the data is still grouped by the attribute. The same query works fine in SQL plus, it looks like JDeveloper 'remembers' the old group by clause somewhere. I checked the xml file of the view object and it looks ok. Where can the old group by clause be written? How comes it is still applied?

    joni1129 wrote:
    I am trying to place a shape on an image and remove it from the photo, creating just the picture within the shape.  When I follow instructions, I get a lovely shape around my image, but the image isn't removed.  It just sits in a white-checkered background.
    How do I get rid of the white background?
    The white-checkered background is a visual reference for transparency. (It won't print.) To keep the transparency, you need to save in a format that supports transparency, PSD, TIF (with save transparency checked), PNG, or GiF. If you save in a format such as JPG that doesn't support transparency, the transparency is replaced by white.
    Edit: If you are transferring the image into another software application, you may have to save the selection along with the image. Select<Save Selection. You'd have to also check which of the formats that application accepts.

Maybe you are looking for

  • "more than one application server offer ENQ service " in SICK transaction

    Dear Gurus We have a problem in SICK Transaction in 4.6 b server contanining 3 instances . " more than one application server offer ENQ service" When 2 instances are stopped and run the SICK transaction for one instanse found no error but when other

  • Backup as a service

    Hi guys, We are a small IT service provider and MS partner. We don't use SCCM for config management, and our alternative product has a file-level / VM backup option that we are using for our clients. All of our clients are connected to us via VPN, MP

  • 2 Ipods and 1 Itunes

    Can I run 2 different Ipods 60gb & 4GB nano with one version of Itunes? Will Itunes recognise that they are different Ipods?

  • Application loads (1 second) then disappears.  Help!

    I have NO Java experience. I'm just trying to run a Java (data base query) application that I have downloaded. I'm trying to run a .jar application called sdssQA v 2.2.25a located at: http://cas.sdss.org/dr4/en/help/download/sdssQA/pub/sdssQA.jar I'v

  • Click Tracks!

    Like a lot of people here I've used just about every Multi-track Recording Software under the sun. I've always sworn by Adobe, but lately there is something that is bugging me. I have started to work on some very complex projects that requires lots o