Cannot create to distribution group for a tenant on hosted exchange 2010

hi everyone,
I have installed a hosting exchange 2010 than created a tenant1 and users in this tenant1. 
I would like to create a distribution group named "dist group1" for tenant1 for exp: [email protected]
but while I was trying, I got following the errors;
[PS] C:\Windows\system32>New-DistributionGroup -name "dist group1" -Alias distgroup1 -PrimarySmtpAddress "[email protected]" -DisplayName "distgroup1" -Organization tenant1 -ManagedBy "onder.cloud/Microsoft Exchange
Hosted
 Organizations/tenant1/tenant1 Admin"
Name                          DisplayName                   GroupType                     PrimarySmtpAddress
dist group1                distgroup1                Universal                     [email protected]
[PS] C:\Windows\system32>Get-DistributionGroup
[PS] C:\Windows\system32>Enable-DistributionGroup "distgroup1"
The operation couldn't be performed because object 'distgroup1' couldn't be found on 'clouddc01.onder.cloud'.
    + CategoryInfo          : NotSpecified: (0:Int32) [Enable-DistributionGroup], ManagementObjectNotFoundException
    + FullyQualifiedErrorId : 11C76BCC,Microsoft.Exchange.Management.RecipientTasks.EnableDistributionGroup
please help me,

Hi,
In order to narrow down the cause, I’d like to recommend you can try the following troubledhooting:
1.  Check if the distribution group exists in ADUC on your DC server. And you can refer to the following path:
DC>ADUC>Domain.com>users
2. Create another distribution group to have a test.
 I refer to the following article to create a new distribution group, and it works well:
http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/managing-distribution-lists-exchange-server-2010.html
Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
sure that you completely understand the risk before retrieving any suggestions from the above link.
Thanks,
Angela
Angela Shi
TechNet Community Support

Similar Messages

  • Create separate dynamic distribution groups for each UPNs domain

    Hi All,
    we have several UPNs in our Domain and need to create separate distribution groups for each UPNs.
    the command that I used is,
    new-dynamicdistributiongroup -name GroupName -RecipientFilter {(UserPrincipalName -like‘*@connect.test.local’)}
    but this returns an error saying "Exception setting "RecipientFilter": "Invalid filter syntax"
    what is the exact way of creating distribution group in O365 by filtering the UPN domain name?
    Many thanks

    Hi All,
    we have several UPNs in our Domain and need to create separate distribution groups for each UPNs.
    the command that I used is,
    New-DynamicDistributionGroup -Name "All Students" -Alias "All_Students"  -PrimarySmtpAddress "[email protected]" -RecipientFilter {(UserPrincipalName -like ‘*@connect.test.local’)}
    new-dynamicdistributiongroup -name AllStudents  -RecipientFilter {(UserPrincipalName -like '*@connect.test.local')} 

  • Error message:FRM-12001: Cannot Create the record group(check your query)

    Requirement: Need to get employee name and number in the LOV in search criteria.
    So I created LOV "full_name" and Record group Query under Employee Name property palette with
    select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number
    from apps.per_all_people_f papf, apps.per_person_types ppt
    where sysdate between papf.effective_start_date and papf.effective_end_date AND papf.person_type_id=ppt.person_type_id AND ppt.system_person_type IN ('EMP', 'OTHER', 'CWK','EMP_APL')
    AND PPT.default_flag='Y' and papf.BUSINESS_GROUP_ID=1
    order by papf.full_name
    I was unable to save and getting error message "FRM-12001: Cannot Create the record group(check your query)".
    I cant use PER_ALL_PEOPLE_F.FULL_NAME since full name here is last_name||title||middle_names||firstname.
    But my requiremnet is papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name .
    Can any one of you help me.

    First, Magoo wrote:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    for l_rec in ( select decode ( p_title, null, null, p_title || ' ' ) ||
    p_last_name || ', ' || p_first_name ||
    decode ( p_mid_names, null, null, ' ' || p_mid_names ) full_name
    from dual ) loop
    return ( l_rec.full_name );
    end loop;
    end;</font></pre>
    Magoo, you don't ever need to use Select from Dual. And the loop is completely unnecessary, since Dual always returns only one record. This would be much simpler:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name
    ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    Return ( Ltrim( Rtrim ( p_title
    ||' ' ||p_last_name
    ||', '||p_first_name
    ||' ' ||p_middle_names )));
    end;</font></pre>
    And second:
    user606106, you did not mention how you got your record group working. However, you DO have an issue with spaces. If you change this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number </font></pre>
    to this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select Ltrim(Rtrim(papf.title||' '||papf.last_name||', '
    ||papf.first_name||' '||papf.middle_names)) AS emp_full_name,
    papf.employee_number</font></pre>
    it should work. The Ltrim(Rtrim()) removes leading and trailing spaces from the resulting full name.

  • How to Create Multiple Distribution Groups

    How to Create Multiple Distribution Groups using power shell?
    i have created new csv file with below format
    Name,Type
    Test01,Distribution
    test02,Distribution
    Executed below command and it's prompting for each and every account to enter the sam account name.
    [PS] C:\Windows\system32>Import-CSV "c:\dl\users.csv" | foreach {new-distributiongroup -name $_.name type $_.Type}
    cmdlet New-DistributionGroup at command pipeline position 1
    Supply values for the following parameters:
    SamAccountName:
    is there any other way to create bulk DL groups?
    Aucsna

    Please check this here is a similar thread.
    http://social.technet.microsoft.com/Forums/exchange/en-US/0f86bb8a-63a2-44e5-921f-4a227221e71d/creating-distribution-groups
    Thanks, MAS
    Please mark as helpful if you find my comment helpful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

  • Create dynamic distribution group from 2 or more OU ?

    How I can create Dynamic distribution group from 2 or more OU ?
    I tried modified solution from this post:
    http://social.technet.microsoft.com/Forums/office/en-US/11a338b9-dbca-4378-9cda-4590a5b8d0f7/exclude-specific-ou-or-user-from-dynamic-distribution-groups?forum=exchangesvrgenerallegacy
    but I'm not sure will this work.

    Hi,
    I have some tests in my environment using Exchange 2013. I use the following cmdlet to create a dynamic distribution group through multiple OUs, but it can't work as I expect.
    New-DynamicDistributionGroup -Name "Users with mobile phones" -Alias "usermobile" -RecipientFilter{(((recipienttype -eq 'usermailbox') -and (MobilePhone -ne $null) -and ((RecipientContainer -eq 'contoso.com/users') -or (RecipientContainer -eq 'contoso.com/test
    OU'))) )}
    Actually, we have a dedicated support team regarding the Microsoft Scripts. I recommend you ask your question on our Microsoft Scripts forum which is staffed by more experts specializing in this kind of problems. Thanks for your understanding.
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?category=scripting
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Hello, I have created a distribution kit for my program.The problem is that the when the program is installed onto another computer, it fails to communicate with field point (Using FP-AO-200 and FP-AO-1000). Help is greatly appreciated, Thanks faen9901

    Hi Everyone,
    I have a program that sends information(analog output) to lab windows cvi in the form of a text file or user input.
    The program runs on the computers that I have the field point explorer and lab windows cvi installed on. In order to run the program without always installing labwindows/cvi and field point; I wanted to create an executable file that could be load on another computer.
    I used the create distribution kit part of labwindows/cvi to do this.After creating the distribution kit, I then installed it
    to another computer.
    My user interface appears on the screen, when the user clicks on the exe. file, but no data is sent to the field point module. I know that the data is being read from the user and textfile because in it appears in the uir.
    The following are some details about the problem:
    1. On another computer without labwindows/cvi and field point explorer not installed - no data is sent to field point module
    I know this because a current is being read on the current meter connected to field point module.
    My questions are the following:
    1. What are the possible reasons for the data not being sent to the field point module?
    2. Do I still need to create an iak. (Installing Field point Explorer) file stored on any new computer that I install my created distribution kit file too?
    Thankyou very much for any help that you can provide. I greatly appreciate it.
    Faen9901

    Re: Hello, I have created a distribution kit for my program.The problem is that the when the program is installed onto another computer, it fails to communicate with field point (Using FP-AO-200 and FP-AO-1000). Help is greatly appreciated, Thanks faen9901Faen9901,
    1) If you do not install FieldPoint Explorer, the FieldPoint Server is not installed so there is nothing on the target computer that knows how to talk to the FieldPoint system.
    2) Yes, you need an IAK file on the target computer. Assuming the settings (i.e. com port#) are identical you can simply include the iak file as part of the distribution.
    3) You also need to include as part of your installer the file "fplwmgr.dll". If this file is not installed, your program will not be able to access the FieldPoint Server. Alternatively, this file is installed automatically if FieldPoint Explorer detects LabWindows/CVI or Measurement Studio Development versions on the target computer or if you choose to do a custom FieldPoint Explorer installation and
    choose to provide LabWindows/CVI support.
    Regards,
    Aaron

  • Cannot Create a New Group

    All of a sudden, I cannot create any new groups within Address Book! Will not work either from the plus sign at the bottom of the group list or the main menu!
    Any advice on how to resolve?

    quit Address book and delete the file homedirectory/library/application support/address book/AddressBook-v22.abcddb. then start Address Book and see if you can create groups.

  • I want to create a authorization group for  cic0 tcode.

    i want to create a authorization group for cic0 tcode.
    in detail...
    in  cic0 tcode  i will enter business partner name
    and press enter it gives me list of  same names..
    i want to restrict as per the region..there...
    for exapmle....
    if i enter name as raja
    it gives me a list of raja in all region
    but i want for a particular region....
    how to create a authori object.....................
    Regards
    Anbu

    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a92195a9-0b01-0010-909c-f330ea4a585c
    If you start SU21, find the authorization object and double click on it you should be able to see who the author is.
    Or you can findout through SUIM

  • FRM-12001:  Cannot create the record group (check your query).

    I WANT TO ADD A RECORD GROUP IN PRI BUILD FORM THE QUARY IS VERY SIMPLE LIKE
    SELECT item_code
    FROM items
    WHERE active = 'Y'
    AND item_code like 'FAJ%'
    BUT THE SYSTEM SHOW THE ERROR MESSAGE
    Cannot create the record group (check your query).

    Make sure the user connected to the database from the forms builder has the privilege of select from the table, or there's a synonym.
    Try your query from SQL*Plus connected with the same user.
    Tony

  • How to create a authority group for our customer table(se54)?

    Hi,everyone:
          I found a problem when I create a authority group for my customer table,I can't write the creation
    to a request no(can't assign to a package),I want to know whether the authority group I created can be
    transport to the PRD when I realse the request no.
    Thanks!!!

    Auth Group is nothing but a table entry so for sure it can be transported to any environment, before Assigning any Auth group create one in SE54 when you try saving it it would ask you the TR number which you can transport to PROD.

  • Want to create new protection group for 2 members which are already under another protection group.

    Want to create new protection group for 2 members which are already under another protection group. I have 12 servers under xyz protection group, want to move 2 members server to new protection group. How it is possible without loosing current backups.

    Hi,
    It all depends if the data source was originally co-located on the same replica shared with other data sources. If not then DPM will simple re-use the same replica and pick up where it left off.  If it was co-located, then the old replica and RP
    volume is shared and the RP's will expire as new ones are made on the new replica and RP volume created when it's re-protected.
    Moving Between Co-Located and Non-Co-Located Protection Groupshttp://technet.microsoft.com/en-us/library/ff399045.aspx
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Dynamic Distribution Group on HOSTED exchange 2010 not setting up properly

    Hi all,
    We have a hosted exchange 2010, which prevents us from using the EMC.
    I want to create a simple dynamic distribution group for every staff member in the organization but am facing a problem. I use the following command:
    New-DynamicDistributionGroup -Organization "organizationname" -IncludedRecipients MailboxUsers -Name "Office"
    This appears to work according to shell. In addition,
    Get-DynamicDistributionGroup -Organization "organizationname"
    DOES come up with "office" as a listing (though the "Managed by" field is empty. Should I care?)
    However:
    sending to that address creates a bounce-back "no such email address"
    a look in AD shows that the object has been created somewhat incorrectly
    It appears that while a group is nominatively created no email address is created attached to it (which should be [email protected]).
    I am by no means a shell expert and have been bumping my head for a few days now, any suggestion would be great!
    Thanks in advance,
    Rodolphe

    Hey, thanks for your reply Willard.
    Everything looks correct:
    name: Office
    Alias: Office
    PrimarySmtpAddress: [email protected]
    EmailAddressPolicyEnabled: False
    The bounceback now is quoting a permissions issue
    #< #5.7.1 smtp;550 5.7.1 RESOLVER.RST.AuthRequired; authentication required> #SMTP#
    This actually gives me the clues to resolve:
    When creating a distribution group through the EMC, by default it is "closed" so only members of that DDL can send to it. I have tested this by sending to it from an internal address and it does go through.
    Set-DynamicDistributionGroup <name> -RequireSenderAuthenticationEnabled $False
    resolves the issue to allow external senders.
    Thanks for your help Willard, your question was enough to get me going in the right direction. Hopefully some other newbie will find this useful in the future.

  • Cannot create new Calendar Group in Mountain Lion

    I am using a brand new iMac. I didn't use the migration tool-- instead I exported all of my Calendars from Snow Leopard and Imported them via the File menu in the Calendar application in Mountain Lion.
    Under the File menu, there is no "New Calendar Group" option. Command-Shift-N results in an error alert sound and no action.
    I do not use iCloud for anything other than email-- everything is turned off in System Preferences.
    In Calendar, under the Preferences -> Accounts section, I have NO accounts. It is completely blank.
    My previous groups from my export/import are there under the "On My Mac" section of the Calendars panel. I can edit them. But I cannot create any new ones.
    Any suggestions? Everything on the internet says I need to deactivate my iCloud account calendars... but I don't use them.

    Ah, Barney, you are a lifesaver!
    Sorry for the late reply, I was away from my computer this weekend.
    All of my calendars had been in groups. I moved one of them outside, and TA DA-- "New Calendar Group" appeared.
    Thanks so much for the help. I will have to leave 1 calendar outside of a group so I can add as many as I'd like.

  • Creating a Distribution list for iPhone using Outlook

    I use Microsoft outlook for contacts and have multiple "Distribution lists" that I send information to. The DL's are not syncing with my iPhone. I need to send group emails and am having to put each name in individually. Is there a way, using Outlook that I can create a "Distribution list", have it sync with the phone, select that group and send an email to all the contacts on the DL

    My address book groups in the Address Book on my Mac are synced and available on my iPhone, but addressing an email or an SMS to an address book group or distribution list is not supported - at the present time anyway.

  • Create several distribution channel for an existing customer

    Hi,
    to create a new customer, we use the BAPI "BAPI_CUSTOMER_CREATEFROMDATA1" with the specified distribution channel.
    After creation of the customer I want to create another distribution channel to this customer without create a new customer number.
    Is there any BAPI, which solve this issue?
    Best regards,
    Dirk

    hii,
    From ECC it is manadatory that you maintain Common Distribution Channel (Reference distribution channel for conditions, Reference distrib.channel for cust.and material masters) and Common Division (Reference division for conditions, Reference division for customers). so you will have to create the customer similarly. Thumb rule it is standardized.
    Customer created for one sales area i.e., 1000,10,01 cannot be used in another sales area 1000,11,01 unless the customer is extended. (which means you cannot use the customer for other sales area)
    rgrds,
    Shweta

Maybe you are looking for