Refresh the list of VIAccounts with PowerCli to select a newly created group

Hi all

I use a script that creates groups in Active Directory and connects to my server vCenter by using New-VIPermission. The trick is that it does not find the groups unless I restart the script (and so, I suppose, the connection).

$My_Group = New-QADGroup -Name $My_AD_GroupName -SamAccountName $My_AD_GroupName -ParentContainer $My_OU -Connection $My_adConnection

New-VIPermission -Entity $param_objects -Principal "Domain\$My_AD_GroupName" -Role ($My_Role.Name) -Propagate:($My_Role.Value) | Out-Null

This script is going to create the group in my ad, but if you link to a new authorization in my vCenter, he'll be backNew-VIPermission Could not find VIAccount with name 'Domain\MY_GROUP_NAME'.

When you restart the script, he will pass on the creation of group directly to the new VIPermission and properly bind to the vCenter object.

I tried to add a waiting order, and a sleep of 5 seconds, but used to change one thing...

How can I manage to reload and refresh the list of available groups without having to restart the vCenter connection?

Thanks in advance!

Well, I added the following:

"while (!). "(() Get-VIAccount-groupe-nommer"REDOUTE_FRANCE\$ My_AD_Task_GroupName")) {Start-sleep - s 1}.

And it works. Slow but it works

Thanks, LucD!

Tags: VMware

Similar Questions

  • where the list book mark with the star icon

    The list of bookmarks with a star that normally appears on the right side does not appear. Where is he

    Note that the screenshot shows you the bar menus visible.

    The button Menu bookmarks will be only visible when you hide the Menu bar you can access bookmarks from the bookmarks menu in this case.

  • When I click on the compose window with my accidentally selection tool, it creates a mask or a form, that I can't get rid of.

    When I click on the compose window with my accidentally selection tool, it creates a mask or a form, that I can't get rid of.  Undo does not work.  Newbie here.  What I am doing wrong?  How can I avoid this?  Thanking you in advance

    Then you have a region of interest to market. It is one of the icons in the Middle at the bottom of the composition Panel.

  • CSS refresh after javascript DOM change (tab Ajax control) and also refresh the list of objects of Navigation

    Hi all

    When I access a Web page, that I created in the browser or Widget that uses an ASP.NET Ajax Control Toolkit Tabs the action of switching between tabs works well but the tab header does not reflect the change to display the active tab.

    In a standard browser of the tab header will be change / light tone based on the css classnames active Ajax control for settings changes dynamically in the DOM when switching between tabs and I was wondering if maybe the BB browser will not reflect/refresh css when changes on the client side affect the DOM? If that's the case (?) is there a way to force that change somehow?

    Also in the same direction and on the similar question I posted yesterday on switching between Navigation power user mode in a Widget, so javascript client-side dynamically is change the 'x-blackberry-focus' of a DOM object possible to have the change reflected in the Navigation objects? Or is the list of objects that can be traversed only generated load initial page and cannot change without a new post?

    Thank you

    Derek

    I solved the problem with the Ajax Control Toolkit TabContainer uisng having to do a "dummy" DOM change in the TabHeader after that the tab is passed between the tabs then forcing the refresh and repaint the tab headers.

  • refresh the list of selection - keep value

    Hi all

    I'm having a problem where I don't have a solluion for. Maybe can someone help?

    The (Simplified) situation is as follows:
    There are 2 selection lists in my page:
    -one with articles (you see the name of the topic and the price). The source of this selection list is a query more ITEMS from collection.
    -one with countries (source is not important)

    When a user runs the page, the content of the selection with the items list is defined by a process that calls a procedure in a package to database; This package fills the collection of ARTICLES. So far so good. But when the user selects a country in the second, select list, the same procedure is called to update the ITEMS collection, because for some countries, the price is different. But how do I update the list of selection, while keeping the same selected article? When I run a dynamic action of refresh type, the value of the selection list is cleared. If I backup the value before updating the selection list and after refreshing, set the value of the selection list does not work or the other.

    I hope that the above is clear enough. Otherwise I'll set an example on apex.oracle.com.

    Thanks for your answer in advance!

    Edit: Version of the Apex is 4.2

    Edited by: tomvdduin, 3-dec-2012 0:16

    Hello

    The value of the P2_ARTICLES_BACKUP page element was not defined in the session state (as seen in the option 'session' in the developer toolbar).

    I changed the following:
    1. use of an action "Set the value" of the body of the function type pl/sql to update the value of P2_ARTICLES_BACKUP
    2 removed the last DA update the P2_ARTICLES value using javascript. It is not necessary. You had this code:

    $s('P2_ARTICLES',$v('P2_ARTICLES_BACKUP'));
    

    3. update the default value of P2_ARTICLES to & P2_ARTICLES_BACKUP.

    The changes described above solves your problem. Please test.

    Thank you
    Rohit

    Published by: jaouad khalifi on December 3, 2012 03:44

  • Require a script to the list of files with sizes on all data stores in a cluster

    Hi all

    Please be gentle, im not new to Vmware, but new to powershell/powercli and need your help.

    cli power can make or y at - it tools available that will do that for me?

    I need to generate a list of all the files of the virtual machine in all stores of data available for cluster and their sizes to go with it.

    I am mainly interested in the .log files and vmdk files, but I don't mind if it lists all.

    I don't mind how his im laid out not after anything fancy just a list of output type something like

    /

    I did some research but there is nothing I have found that it will make.

    My environment is currently esx 3.0.2 with vcenter servers. (currently being upgraded to 4)

    Lots of help thanks

    Yes, it's a 'characteristic' knowledge when using PowerCLI 4u1 against a VI 3.x environment.

    There is a way to workaround, try this

    $dsImpl = Get-Cluster  | Get-VMHost | Get-Datastore | where {$_.Type -eq "VMFS"}
    $dsImpl | % {
         $ds = $_ | Get-View
         $path = ""
         $dsBrowser = Get-View $ds.Browser
         $spec = New-Object VMware.Vim.HostDatastoreBrowserSearchSpec
         $spec.Details = New-Object VMware.Vim.FileQueryFlags
         $spec.Details.fileSize = $true
         $spec.Details.fileType = $true
         $vmdkQry = New-Object VMware.Vim.VmDiskFileQuery
         $spec.Query = (New-Object VMware.Vim.VmDiskFileQuery),(New-Object VMware.Vim.VmLogFileQuery)
         #Workaround for vSphere 4 fileOwner bug
         if ($dsBrowser.Client.Version -eq "Vim4") {
              $spec = [http://VMware.Vim.VIConvert|http://VMware.Vim.VIConvert]::ToVim4($spec)
              $spec.details.fileOwnerSpecified = $true
              $dsBrowserMoRef = [http://VMware.Vim.VIConvert|http://VMware.Vim.VIConvert]::ToVim4($dsBrowser.MoRef);
              $taskMoRef = $dsBrowser.Client.VimService.SearchDatastoreSubFolders_Task($dsBrowserMoRef, $path, $spec)
              $result = [http://VMware.Vim.VIConvert|http://VMware.Vim.VIConvert]::ToVim($dsBrowser.WaitForTask([http://VMware.Vim.VIConvert|http://VMware.Vim.VIConvert]::ToVim($taskMoRef)))
         } else {
              $taskMoRef = $dsBrowser.SearchDatastoreSubFolders_Task($path, $spec)
              $task = Get-View $taskMoRef
              while("running","queued" -contains $task.Info.State){
                   $task.UpdateViewData("Info")
              }
              $result = $task.Info.Result
         }
    
         $result | % {
              $vmName = ([regex]::matches($_.FolderPath,"\[\w*\]\s*([^/]+)"))[0].groups[1].value
              $_.File | % {
                   New-Object PSObject -Property @{
                        DSName = $ds.Name
                        VMname = $vmName
                        FileName = $_.Path
                        FileSize = $_.FileSize
                   }
              }
         }
    } | Export-Csv "C:\File-report.csv" -NoTypeInformation -UseCulture
    

    I have attached the script to avoid any problems with the hooks.

    And the regex expression is updated to account for the names of comments with whites.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Refresh the list of Presets in development settings?

    Is it possible to force a refresh of the presets list in the settings menu to develop?  I want to work around this problem:

    (1) right click on an image and select develop settings - a list of the presets in the CameraRaw/Settings folder appears in the submenu.

    (2) with the bridge remaining in the open air in the foreground, change the content of the presets in the CameraRaw/Settings folder (I do this with a jsx script in my case).

    (3) right click on an image and go again the parameters of development - the list is the same as the list in step 1.

    (4) give any other focus of the application, and then come back straight into the bridge.

    (5) right click on an image, select parameters of development again - this time the preset list reflects what is in the CameraRaw/Settings folder.

    It is therefore possible to force the bridge to refresh this list somehow in my jsx script?

    Sorry no, you cannot change a menu once it is created.

    You can access one of the elements in the development settings with...

    //Develop Settings > Camera Raw Defaults
    app.document.chooseMenuItem("CRDefault");
    //Develop Settings > Previous Conversion
    app.document.chooseMenuItem("CRPrevious");
    //Develop Settings > Copy Settings
    app.document.chooseMenuItem("CRCopy");
    //Develop Settings > Paste Settings
    app.document.chooseMenuItem("CRPaste");
    //Develop Settings > Clear Settings
    app.document.chooseMenuItem("CRClear");
    

    You cannot bring the focus to another application, but you can send commands to another application on Adobe using BridgeTalk

    You can deselect all the thumnails and select the ones you want to work, a few orders below might be useful...

    //change Bridge to folder
    app.document.thumbnail = Folder(Folder.desktop + "/myfolder");
    //de-select all thumbnails
    app.document.deselectAll();
    //select thumbnail
    var thumb = new Thumbnail(thumb);
    app.document.select(thumb);
    
  • Adding a paralytic to the catalog in vCD with PowerCLI

    I would add a paralytic to a catalog via PowerCLI. I see not all the methods under the the VAPP extensiondata that allow this.

    Then I thought that maybe I need to look at the catalog and couldn't find CatalogItems in the GetCIView() of the org and don't know how to edit:

    $ciorg. ExtensionData.Catalogs.CatalogReference [0]. GetCIView(). CatalogItems

    Then I tried to script on the creation of a new catalog... It works but I still don't know to go to add vApps.

    $ciorg = get - org "Org name"

    $cat = New-Object vmware.vimautomation.cloud.views.AdminCatalog
    $cat. Owner = New-Object VMware.VimAutomation.Cloud.Views.Owner
    $cat. Owner.User = New-Object VMware.VimAutomation.Cloud.Views.Reference
    $cat. Owner.User = (get - org). ExtensionData.Users.UserReference [0]
    $cat. CatalogItems = New-Object VMware.VimAutomation.Cloud.Views.CatalogItems
    $cat. IsPublished = $True
    $cat. Name = "catalog name.
    $cat. Description = "created with PowerCLI.
    $ciorg. ExtensionData.CreateCatalog ($cat)

    * Entries in bold must refine. Didn't know how to find a specific user so I used the first input that is mine in the user table.

    So currently, I'm puzzled. Alan, LucD or Jake... Ideas?

    Thank you!

    The ExtensionData and Get-CIView expose the vCloud API REST. The documentation is available here: https://www.vmware.com/support/vcd/doc/rest-api-doc-1.5-html/index.html. What PowerCLI exposes them, however, are slightly different. We will publish a separate documentation to another point that would be more accurate.

    Note the PowerCLI interface exposes to .net is not the same as the c# SDK for vCloud.

    To access the documentation for the 2 operations, you should define the scope of research on all operations and the search for InstantiateVAppTemplate or ComposeVApp, follow the link of type Input to InstantiateVAppTemplateParams/ComposeVAppParams.

    Creating a vApp on a vApp model is done with InstantiateVAppTemplate. ComposeVApp is for the creation of a paralytic from scratch.

    Just an aside: take a look at the CIVApp import and import-CIVAppTemplate, those who are able to "register" a virtual machine of vSphere in vCloud. Maybe it's a quicker way of migration of machines virtual vSphere to vCloud VAPP model that they can do the conversion without facing the virtual machine.

  • ADF Mobile: Refresh the list

    Hello

    I have a list of Web Service and put a refresh on the screen button. I want to update the list when the user clicks the update button. I tried to do a flow control to himself, so he could have refresh the data, but it did not work. I put also updated forever in the links and cache to false, but it did not work. How can I make a button update so it will do exactly what it does as it initializes to view the updated list.

    Kind regards

    Have the button action directly call the Web service method again.
    (Essentially drag the method of the data on the button control to bind).

  • Override the port NIC teaming with powercli group?

    Hi all

    Any chance you could lend a hand?

    I have a powercli script that goes out to all of my ESX 4.0 host and add a new port group to vswitch1 with a new VLAN ID. That works well, but I also need to override the NIC teaming on this port group, to set an active NIC and the other to be the backup. (we put NIC failover port groups not the vswitches).

    I see ways to change NIC vswitches grouping settings, but am yet to find a way to change the settings of the NIC collection for groups of ports themselves with powercli?

    Can someone shine a light?

    Thank you

    Try something like:

    Get-VirtualPortGroup-name '' | Get-NicTeamingPolicy | Game-NicTeamingPolicy - MakeNicActive "vmnic1" - MakeNicStandby "vmnic0".

    I hope this helps!

  • Skillbuilders Super LOV, refresh the list of SLOV values dynamically

    Hi, another question.

    I have 2 SLOVs. 1 is a relative of the 2nd.

    The first has its value dynamically for a reason any.
    I can not then dynamically change the value of the 2nd until the cascading effect is triggered by the opening of the 2nd SLOV via the button.

    If the page has LOV1 with value 'A' with LOV2 have child values "A1", "A2", "A3" available and I then proceed as follows

    $('#P1_LOV1).apex_super_lov ('setValuesByReturn', 'B'); (where B is a valid value)

    followed by
    $('#P1_LOV2').apex_super_lov ('setValuesByReturn', 'B1'); (assuming that B1, B2 and B3 are values of child for B)

    Then, it does not work.

    In fact
    $('#P1_LOV2').apex_super_lov ('setValuesByReturn', 'A1');
    $('#P1_LOV2').apex_super_lov ('setValuesByReturn', 'A2');
    $('#P1_LOV2').apex_super_lov ('setValuesByReturn', 'A3'); Still work, even if the parent is now wrong.

    So, basically, it seems that dynamically change the SLOV parent value is not triggering of the ripple effect that manually the SLOV itself chosen.

    Is it possible to force the list of values for updated after change dynamically children parent cascading?

    Concerning
    Mark

    Hi Mark,

    Some problems with the State of session here! Your lov EMP is limited to documents that match the DEPT value in session state. Initially this will be null and no value. Suppose you select a Department and send the page, so that the values are stored in session state. When you open the lov, employees would be only those for the Department which the value is stored in session state. Understand the State of Session, Oracle docs

    You were on the right track with cascading lists, but it breaks your choice by default features. So I've ignored this output, I don't want the default functionality. We need to do our own for this. Don't worry, not too!

    Off, when dept in the default settings or dept lovs changes because of a choice, the selected Department must first go to session state. This is necessary for the lov emp can find the correct records. So I added a dynamic action to fire on the change of P14_CHOOSE_DEFAULTS and P14_DEPT. The real action is a PLSQL code execution. PLSQL is always on the server side, and we can provide items to submit to the session state. The executed code is simply

    NULL;
    

    because we don't need to run anything, but P14_DEPT has the value that will be submitted to the session state when the call is made.

    With these changes, everything works. But EMP must be blanked when DEPT changes. Otherwise, you could spend DEPT autour but are not yet in a bad EMP.
    So I added another dynamic action that fires on the evolution of the DEPT and blanks in the EMP. No worries about default values, picking, because that won't change due to values only being edited
    javascript change events that are not performed.

    PS: don't forget to assign the answer useful/correct labels to messages that are :-)

  • Based on the list of components with drag-/ dropEnabled = true can not coexist with other moveable components

    Hello Flexers,

    because I find it a bit difficult to describe the problem I will try that after posting the code and a screenshot:


    <s:Application
         xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
         xmlns:mx="library://ns.adobe.com/flex/mx"
         width="100%" height="100%">
        
         <s:layout><s:HorizontalLayout/></s:layout>
        
         <fx:Script>
              <![CDATA[
                   import mx.core.IUIComponent;
                   import mx.core.IVisualElement;
                   import mx.events.DragEvent;
                   import mx.managers.DragManager;
                  
                   protected function draggableLabel_mouseDownHandler(event:MouseEvent):void {
                        DragManager.doDrag(event.currentTarget as IUIComponent,null,event);
                   }
                  
                   protected function leftGroup_dragEnterHandler(event:DragEvent):void {
                        DragManager.acceptDragDrop(event.currentTarget as IUIComponent);
                   }
                  
                  
                   protected function leftGroup_dragDropHandler(event:DragEvent):void {
                        leftGroup.addElement(event.dragInitiator as IVisualElement);
                   }
                  
              ]]>
         </fx:Script>
        
        
         <s:List id="leftList"
              dragEnabled="true"
              dropEnabled="true"
              width="200" height="200">
              <s:ArrayCollection>
                   <fx:String>Item 1</fx:String>
                   <fx:String>Item 2</fx:String>
                   <fx:String>Item 3</fx:String>
              </s:ArrayCollection>
         </s:List>
        
         <s:List id="rightList"
              dragEnabled="true"
              dropEnabled="true"
              width="200" height="200">
              <s:ArrayCollection>
                   <fx:String>Item 4</fx:String>
                   <fx:String>Item 5</fx:String>
                   <fx:String>Item 6</fx:String>
              </s:ArrayCollection>
         </s:List>
        
         <s:Group id="leftGroup"
              dragEnter="leftGroup_dragEnterHandler(event)"
              dragDrop="leftGroup_dragDropHandler(event)"
              width="200" height="200">

              <s:Rect left="0" right="0" bottom="0" top="0">
                   <s:fill><s:SolidColor color="0x00FF00"/></s:fill>
              </s:Rect>

         </s:Group>
        
         <s:Group id="rightGroup"
              width="200" height="200">

              <s:Rect left="0" right="0" bottom="0" top="0">
                   <s:fill><s:SolidColor color="0xFF0000"/></s:fill>
              </s:Rect>

              <s:Label text="DRAG ME"
                             color="0x000000"
                             mouseDown="draggableLabel_mouseDownHandler(event)"
                             y="0"/>
              <s:Label text="DRAG ME"
                             color="0x000000"
                             mouseDown="draggableLabel_mouseDownHandler(event)"
                             y="40"/>
              <s:Label text="DRAG ME"
                             color="0x000000"
                             mouseDown="draggableLabel_mouseDownHandler(event)"
                             y="80"/>
            </s:Group>
        
    </s:Application>

    DragDrop.png

    I came across a problem recently. I wanted to be able to use drag - and list controls dropEnabled property and (on the same canvas) use the functionality of drag-and-drop automatic implemented other components (in this case, a combination of movable labels that can drag a group component). I wanted the labels to be moved in the entire screen, but only fall on the part of the Group (NOT the list). The items in the components list were supposed to be interchangeable between the lists in the set of properties dragEnabled and dropEnabled to true. The problem is that when I drag the labels of the groups on the lists a null #1009 object reference error is thrown because the list does not try to calculate the index fall for labels. I know that I could work around the problem by setting dropEnabled = false on the lists and implement drag - move by hand, but I hope that both variants of drag-and-drop coexist in a spirit of flexibility.

    Any thoughts? Thank you very much!

    Kind regards

    Thilo

    When you delete something on a spark list you will need to provide a dragSource not null in the format 'itemsByIndex', if you change your code to something like this, it should work:

    protected function draggableLabel_mouseDownHandler(event:MouseEvent):void {}
                   
    do some data to pass to the list
    var someData:Vector. = new Vector. ();
    someData.push ("hello world");
                   
    List is waiting for data to slip with the format "itemsByIndex".
    var dragData:DragSource = new DragSource();
    dragData.addData (someData, "itemsByIndex");
                   
    DragManager.doDrag (event.currentTarget IUIComponent, dragData, events);
    }

  • Control of VISA resource name: to refresh the list of COM ports programmatically

    When the application runs, and you first click this control, it takes 2 to 5 seconds to respond and complete the list for the first time.

    I would like to auto fill in the first time that the application is busy. Can I do this?

    Before allowing the user to click & Select resource VISA name, first use the 'VISA find resource' in your program to do the same thing & then allow or prompt the user to select resources.

    Given that loading EXE, it will execute the FIND VI-first & Labview will inform the resources available.

  • Place the missing documents in the list of records with a rank value

    Hi all

    I have this table:
    WITH taba AS (SELECT 99 AS id,
                         '2011-08-08' AS date_ini,
                         10 AS VALUE,
                         1 AS RANK
                    FROM DUAL
                  UNION ALL
                  SELECT 99 AS id,
                         '2011-09-08' AS date_ini,
                         11 AS VALUE,
                         2 AS RANK
                    FROM DUAL
                  UNION ALL
                  SELECT 99 AS id,
                         '2011-10-08' AS date_ini,
                         10 AS VALUE,
                         4 AS RANK
                    FROM DUAL
                  UNION ALL
                  SELECT 999 AS id,
                         '2011-08-08' AS date_ini,
                         10 AS VALUE,
                         1 AS RANK
                    FROM DUAL
                  UNION ALL
                  SELECT 999 AS id,
                         '2011-09-08' AS date_ini,
                         10 AS VALUE,
                         2 AS RANK
                    FROM DUAL
                  UNION ALL
                  SELECT 999 AS id,
                         '2011-10-08' AS date_ini,
                         10 AS VALUE,
                         3 AS RANK
                    FROM DUAL
                  UNION ALL
                  SELECT 9999 AS id,
                         '2011-08-08' AS date_ini,
                         10 AS VALUE,
                         2 AS RANK
                    FROM DUAL
                  UNION ALL
                  SELECT 9999 AS id,
                         '2011-09-08' AS date_ini,
                         15 AS VALUE,
                         3 AS RANK
                    FROM DUAL
                  UNION ALL
                  SELECT 9999 AS id,
                         '2011-10-08' AS date_ini,
                         10 AS VALUE,
                         4 AS RANK
                    FROM DUAL)
    SELECT *
      FROM taba
    And I need to return the same results but with the addition of records that have no rank. For new records the VALUE must always be zero (0) and the value of DATA_INI must have the same value as the order of the records immediately following. Just like that:
    99       2011-08-08     10     1
    99       2011-09-08     11     2
    *99       2011-10-08     0     3*
    99       2011-10-08     10     4
    999      2011-08-08     10     1
    999      2011-09-08     10     2
    999      2011-10-08     10     3
    *9999     2011-08-08     0     1*
    9999     2011-08-08     10     2
    9999     2011-09-08     15     3
    9999     2011-10-08     10     4
    I can do this using a loop procedure, but I want a filter query. ;)

    Thanks in advance.
    Filipe Almeida

    Hi, Felipe,.

    So, you want multiple copies of a few lines. In other words, if a value or rnk (RANK is not a column name right) is missing in a given id you want to with the next highest rnk and the same id line repeated 2 or maybe even several times. All copies will be identical, except that rnk will have the missing numbers, and the value will be 0 on all additional copies.

    A way to do that is to join your table (or something very similar to it, as in the example below) to a Meter of Table , which is a table (or a result set, in this example) counts 1, 2, 3,... up to however many copies may be required.

    WITH     got_rows_needed          AS
    (
         SELECT     id, date_ini, value, rnk
         ,     rnk - LAG (rnk, 1, 0) OVER ( PARTITION BY  id
                                                ORDER BY          rnk
                                )         AS rows_needed
         FROM    taba
    )
    ,     cntr               AS
    (
         SELECT     LEVEL - 1     AS n
         FROM     (
                   SELECT     MAX (rows_needed)     AS max_rows_needed
                   FROM     got_rows_needed
              )
         CONNECT BY     LEVEL <= max_rows_needed
    )
    SELECT    r.id
    ,       r.date_ini
    ,       CASE
              WHEN  c.n  = 0
              THEN  r.value
              ELSE  0
             END               AS value
    ,       r.rnk - c.n          AS rnk
    FROM       got_rows_needed  r
    JOIN       cntr             c     ON  c.n  < r.rows_needed
    ORDER BY  id
    ,            rnk
    ;
    

    By elsewhere, store date information in a VARCHAR2 column, such as date_ini, is a very bad idea. Use a DATE column.

    Published by: Frank Kulash, August 8, 2012 11:02

    RANK is a keyword from Oracle. (It is the name of a built-in function). If you specify your own columns of RANK, it will confuse people reading the code, and it can result in compiler errors, too.
    ID is also an Oracle keyword. To be sure, you can use another name, such as grp_id, instead of id.
    It is best not to name your own objects with any name of fArrondi in v$ reserrved_words.keyword.

  • Former employees and candidates in the newly created groups

    HI :-)

    I created a group of learners and added an "XYZ" Organization as a component assignment.
    If I see the members of the group learning, I could see active, former employees and applicants of org "XYZ" in the list.

    Why former employees and candidates added as members of the Group?

    What is a planned feature or a bug?

    Thanks in advance :)


    Thank you
    Versa.

    Hey Versa,.

    That was never part of the organization that you add to a group of learning will also be part of the group learning.

    Concerning
    Anders

Maybe you are looking for