Is Disribution group in use?

Exchange 2013. On-Premise.
Is there a place to find if someone is sending to a distribution group?
I am looking to remove older groups.
I sent to one group; Went to "Delivery Reports"; Selected a mailbox of one of the members; Selected "Search for messages sent to:".  Added the distribution group.
That showed no messages.
Is there a text log I can search for the Distribution name or address?

Hi,
I recommend you use the following cmdlet to check whether users send message to this specific distribution group.
Get-MessageTrackingLog -Recipients RecipientAddress1
Here is result in my environment (Exchange 2013) for your reference.
Hope it helps.
Best regards,
If you have feedback for TechNet Subscriber Support, contact
[email protected]
Amy Wang
TechNet Community Support

Similar Messages

  • "Acct group RENT uses internal no.assignment; leave blank

    Hi experts,
    Iu2019ve created a vendors account group RENT with number range u201C06u201D (0600000001 u2013 0699999999).
    But when creating the vendor Ivan15, I get the following error:  u201CAcct group RENT uses internal no.assignment; leave blank
    Message no. F2047u201D
    I have read some infomation in this forum but it does not solve my problem.
    Can you please assist in order to solve that ?
    Thanks in advance,

    Thank to all, you are kind good guys.
    I have chosen to use External number and I create successfully the vendor Ivan15 wihtinthe Vendor Account Group.
    But when posting an invoice to the vendor account Ivan15, the following error raises:
    "G/L account  is not defined in chart of accounts INT".
    I try also the internal number assignement for vendor in vendor Account. I get the vendor number: 200241 aumatically assigned.
    But I still have the same error.
    Should I create in T-code FS00 a G/L account for the vendor ? How to link the G/L account to the vendor Ivan15 ?
    Can you please assit with that ?
    Thanks in advance.
    NB: I'm a new bie in FI

  • XK01 Account group 0003 uses ext no assignment Specify account number

    Hi
    When I am trying to create one time vendor in XK01 , after filling all fields (except vendor , when I click the enter I am getting the following error .
    "Account group 0003 uses ext no assignment Specify account number "
    Any idea where should I specify account number  and what is this account number  ? I mean is it GL account number ?
    Thanks
    SN

    Hi Satya,
    if you donot want to assign the external number range to the vendors.....use T.code XKN1..remove the tickmark from checkbox "EXT" and save.
    Try creating again. The problem occurs because you have selected external number ranges for vendors in XKN1.
    Regards
    A
    Assign points if useful

  • Error in nested group function used with column name.

    Hi Team,
    If i used nested group function with column name its not working. Could you please any one suggest me.
    How to use it.
    Regards,
    Venkat.
    Please find Spool ........
    SQL> select user_name,max(max(CNT)) from (select USER_NAME,count(*) CNT from v$open_cursor group by USER_NAME)
    2 group by user_name,CNT;
    select user_name,max(max(CNT)) from (select USER_NAME,count(*) CNT from v$open_cursor group by USER_NAME)
    ERROR at line 1:
    ORA-00937: not a single-group group function
    SQL> select max(max(CNT)) from(select USER_NAME,count(*) CNT from v$open_cursor group by USER_NAME)
    2 group by user_name;
    MAX(MAX(CNT))
    605

    Venkat wrote:
    Hi Sayan
    Its giving output like below, but not given maximum CNT.
    SQL> select user_name,max(CNT)from (select USER_NAME,count(*) CNT from v$open_cursor group by USER_NAME)
    2 group by user_name;
    USER_NAME MAX(CNT)
    BANES_LERG 6
    VENE_USER 8
    USER3 339
    DBUS 106
    VEL_USER 37
    SYS 597
    6 rows selected.Check it - Re: Error in nested group function used with column name.
    and previous post

  • GROUP BY USING CASE ?

    SELECT
    E.ACTV_DESC AS ACTV_DESC,
    E.ACTV_CDE AS ACTV_CDE,
    COUNT(E.ACTV_CDE) AS CNT_ACTV_CDE,
    CASE WHEN B.VET_OTHR_ELIG_CDE ='01' THEN 'NO' ELSE NULL END AS VET_NO, -- new column to be added
    CASE WHEN B.VET_OTHR_ELIG_CDE IN ('02','03','04') THEN 'YES' ELSE NULL END AS VET_YES --new column to be added
    FROM
    ETR_RGT_PARTC A,
    ETR_INT_PARTC_INTK_JS B,
    ETR_SDT_PARTC_PGM_ACTV C,
    ETR_VM_SM_STFFNME D,
    ETR_SMT_ACTV_MSTR E
    WHERE
    A.PARTC_ID = B.PARTC_ID AND
    B.PARTC_ID = C.PARTC_ID AND
    B.APPLC_ID = C.APPLC_ID AND
    B.PGM_ID = C.PGM_ID AND
    C.RESP_STFF_ID = D.STFF_ID AND
    C.PGM_ID = E.PGM_ID AND
    C.ACTV_ID = E.ACTV_ID AND
    (D.RACF_ID LIKE :P_RACF_ID||'%') AND
    C.LOC_ID LIKE 'ES%' AND
    (TRUNC(C.CRTE_DTE) >= :P_FROM_DATE AND
    TRUNC(C.CRTE_DTE) <=:P_TO_DATE) AND
    D.STFF_LOC_ID = 'ES00'||:P_LOCL_OFFC_ID
    AND D.CLOS_DTE IS NULL
    GROUP BY
    ACTV_DESC,
    ACTV_CDE
    ORDER BY ACTV_CDE;
    we cant group by using alias in this situation what shud i do ?
    Thanks in advance

    If you want to group by using the added new columns as well, then all you need to do is - put the full CASE statements into group by clause without alias.
    But if you do not want to group by your data based on the added new columns then you can use the inline view and do the group by first based on first 2 columns and then do the CASE afterwards.
    Also, one error I noticed in the give query is that you are doing COUNT on the column E.ACTV_CDE which is also your group by column - E.ACTV_CDE. This means that you will always receive 1 as count for each actv_cde as you are doing the grouping on the same column.

  • How to Insert Sharepoint 2013 Person or Group Field using VBA

    Hello,
    How to Insert Sharepoint 2013 Person or Group Field using VBA , I tried set the field with ID / ID;Name / Name
    but all failed, Please advice 
    Function SetSP_Field(F_Yer As Single, F_WekNo As Single, F_ProjectNum As String, strField As Variant, strFieldValue As Variant) As String
    ' test code
        Dim rst         As Recordset
        Dim strSQL      As String
        Dim SP_RecSet   As ADODB.Recordset
        Set SP_RecSet = New ADODB.Recordset
        SetSP_Field = False
        strSQL = "Status Report"
        On Error Resume Next
        Call SP_Connect(2)
        strSQL = "select " & SP_List & ".* From  " & SP_List _
               & " Where [Year] = " & CInt(F_Yer) _
               & "   and [WeekNo] = " & CInt(F_WekNo) _
               & "   and [Compass_Code] = '" & F_ProjectNum & "' ; " _
    '           & " Set " & strField & " = " & strFieldValue
        'Debug.Print strSQL
        'Debug.Print SP_CN
        SP_RecSet.Open strSQL, SP_CN, adOpenStatic, adLockOptimistic
        If SP_RecSet.RecordCount = 0 Then
            Debug.Print "Record for project: " & F_ProjectNum & " not found"
            LogFile.WriteLine ("Record " & strID & " not found")
        End If
        If Not SP_RecSet.EOF Then
            'SP_RecSet.Edit
            SP_RecSet.Fields(strField) = strFieldValue
            SP_RecSet.Update
            If Err.Number <> 0 Then
                MsgBox ("SP Update Error: " & Err.Description)
                GoTo Exit_Fun
            End If
            SetSP_Field = True
        End If
    Exit_Fun:
        SP_RecSet.Close
        Set SP_RecSet = Nothing
    End Function

    Hi Tim,
    Let’s verify the followings:
    Whether this issue occurred for other lists in the same site.
    Whether this issue occurred for all users who don’t have full control.
    Whether this issue occurred on other sites.
    When you created the people & group column, which show field did you used? Please try to use a different show field for the people & group column, compare the result.
    In addition, please check if the link is useful:
    http://www.learningsharepoint.com/2013/08/21/empty-value-in-people-picker-after-saving-the-list-form-in-sharepoint/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • HT1918 Hello!  Staff of E4 Group JSC use Apple devices for call, reading email and calendars. When the user open event in calendar of iPhone or iPad, he does not see attachments (picture №1, picture №2). But it is possible on Blackberry (picture №3).

    Hello!
    Staff of E4 Group JSC use Apple devices for call, reading email and calendars. When the user open event in calendar of iPhone or iPad, he does not see attachments (picture №1, picture №2). But it is possible on Blackberry (picture №3). How user of Apple can see these attachments? Recommend please any apps for it.

    Hello!
    Staff of E4 Group JSC use Apple devices for call, reading email and calendars. When the user open event in calendar of iPhone or iPad, he does not see attachments (picture №1, picture №2). But it is possible on Blackberry (picture №3). How user of Apple can see these attachments? Recommend please any apps for it.

  • Unable to connect to Group chat using AIM under Messages

    Is anyone else having a problem using the group chat function in Messages.  My friend said that everytime she sent the invitiation, it said that group chat was not supported by this client.  I had problems in the past with Trillium when I first switched to my iMac, so I added a new AIM account to chat.  Tonight was my first time trying to participate in a group chat since I upgraded to Mountain Lion and Messages.. I couldn't find any settings that could be causing this.  I also tried to use the stand alone version of AIM, and it still did not work.  Any ideas?

    Hi,
    Using three different Screen Names on three different different computers I can do a group chat using AIM valid names.
    I started on a computer with iChat 4 and invited a Screen Name on the iMac to a group chat (prelisted on the G4/iChat 4 computer)
    That has the option to "Show the participants"  - which has disappeared from the Messages > View Menu.
    Once I had that Accepted on the iMac (it does pop up an Accept/Decline option buttons in Messages) I then called a Screen Name that is only on my MacBook Pro (iChat 5).
    I then closed/ended the Chat on the iMac and went to the File Menu > Go to Chatroom and changed it to the account that had been in the chat and entered the room name I had started from on the G4 (iChat 4)
    iChat 4 and 5 reported me as leaving the Group chat and coming back again. I also checked I could IM and that was delivered.
    I tried inviting a second Screen Name that the iMac uses.
    The Invite shows in the same Chat window but you cannot separate out which account is then making the reply.
    i.e it does not show as a separate chat/Invite and then make it join the group chat you have going on.
    The iChat 4 that did the Inviting shows the Buddy as being "Invited" but in Messages I have no way of Accepting.
    The upshot of this is that Messages can join an Existing group chat using the File Menu > Go to Chat Room
    The Account you are calling from may have to be changed in the drop item which is a drop down.
    Uploaded with Skitch!
    Then you need to add the room name.
    There is a definite issue if you want to use two Screen Names in the same chat.
    7:41 PM      Sunday; September 9, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Does group messaging use up mobile data?

    My family and I were group messaging earlier and I noticed that just before I got a message my LTE transfer lights would flicker. I know thathat group messaging uses MMS instead of SMS but was not sure if it counted. I am on android but everyone else has an iPhone using iMessage. I don't want to gorder using up my data but we like to group chat. Any info would be appreciated
    Thanks,
    Cam

    That is correct. Keep in mind if you do not have unlimited texting, you may want to monitor your usage.
    When group texting, you get charged for 1 text for each of the recipients of a group text. You send a group text to 10 people, you will be charged for 10 texts.

  • How to prevent user or group to use 3-tier WebI and DeskI in XI 3.1

    How to prevent user or group to use 3-tier WebI and DeskI in XI 3.1
    This function is enable in BOE 6.5 by using Supervisor.

    Hi,
    You can explicitly deny access to these applications from the CMC in BOE 3.1. Open the CMC, click on BusinessObjects Enterprise Application and then select the WebI.
    From the right hand side click on the 'Net Access' section for that group and disable the 'Log on to Web-Intelligence and view this object in CMC.'
    This will prevent the option of the WebI for that group.
    I hope this helps you.
    Regards,
    Prashant

  • How do you add an iTunes Gift Card so that all purchases of any members of a Family Sharing Group can use the credit?

    How can all family members of a Family Sharing Group use a gift card that has been been applied to the iTunes master account? I added a gift card to our master iTunes account for my grandson, and even though he's a family sharing group member, none of the purchases I have approved from his requests have used the gift card credit. A search of the iTunes support site failed to turn up anything that even remotely addresses this topic. It would seem reasonable to assume that any purchase made by any family member should be able to use the gift card credit since all purchases go through the master account, but this does not appear to be the case.

    Regarding your statement about the gift card balance being used if redeemed to the organizers account - http://www.apple.com/feedback.
    Regarding redeeming the gift card to the child's account, it is the same as redeeming to yours.  You have to be signed in to the iTunes store using the child's apple ID, then redeem the gift card there.  If you already redeemed the card on your ID, you won't be able to redeem it again.
    Redeem and use iTunes Gift Cards and content codes - Apple Support

  • How to update a People and group field using a sandbox solution

    Hi,
    I am creating a sandbox solution for office 365 and creating a custom form using visual web part, which will allow users to enter data in a custom list.
    And that list also have a user field. I am able to get SharePoint user field on the form (using javascript) which is searching for the user and get a value (working fine).
    Issue: But I am not able to save the user value. Because to save user value I require web, UserID and login name, to construct SPFieldUserValue object or string in "111;#TestUser" format. Moreover that user should be present in
    SiteUserInfoList. 
    I tried web.EnsureUser() but did not work under sanbox solution.
    Can you please provide any pointer or workaround to the problem? I may be missing something here.
    Thanks,
    Himanshu

    Hi,
    According to your description, my understanding is that you want to update the people and group field in Sandbox solution.
    In the sandbox solution, you can still use the web.EnsureUser() function to get the user information, see the thread below:
    EnsureUser in sandboxed solution
    In additional, there is a demo with your similiar requirement for your reference:
    Using the People Picker Control in Sandbox Solutions / Office 365
    Thanks
    Best Regards,
    Jerry Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to allow a user to select an instrument from a group and use that VI?

    Hi All,
    In a previous application I wrote using Agilent VEE I created a Configure Equipment and Initialise Panel for the user to select for example a signal generator from a drop down list of different types, and when initialised the functions for that item would loaded into a generic library called Signal Generator into my main program. I could then call these functions in my main program
    When I wrote the instrument drivers I named each function the same for each type of signal generator I could offer the user. e.g. Set_Frequency (would be in all instrument drivers)
    I would like to do this in LabVIEW and am struggling to find out how to do it.
    Does anyone have any suggestions? And I hope what I have said above makes sense.
    TIA
    Martin

    Hi Martin,
    With regards to communicating with hardware
    from other manufacturers, yes you are able to do this using LabVIEW
    provided the drivers are available from National Instruments, or
    sometimes the manufacturers themselves provide LabVIEW VIs to use with
    their instruments.
    To configure the device it may be worth
    implementing some form of popup dialog box to input the values for your
    particular configuration. This can be done by creating a SubVI where
    you are able to input the values and once a button is pressed the
    dialog box closes (as in the example I have attached)
    Just to
    mention also, VI Libraries are mainly for organization purposes, and
    grouping VIs together. It also allows you to protect your VIs by
    setting them to private, which means they are only able to communicate
    with other VIs within that particular library.
    Hope this Helps,
    Steve
    Attachments:
    Popup Example.vi ‏16 KB

  • How do I send an email to a group address using my iPad

    I use and IPad Air 2 with latest IOS and am trying to send and email to a group.  How do I do this?  I simply type in the group name when I'm sending the message from my iMac, however that doesn't work on my iPad.  I have the group set up on my iCloud account and have that account selected on my iPad, still when I type in the group name, nothing comes up.  Suggestions?

    I Might have worked this out! Go into contacts, tap add. When the box comes up put the name of the group you want to create as the first and last names. In Add email box neR the first email address, then tap add email address again and add another email address, continue until you have entered all the email addresses for the group. When finished tap Done.
    Open email and in the To, Cc or Bcc box key in the name of the group. All email addresses should then receive the email when you tap send.
    this works for me on my iPad air 2.
    THIS HAS WORKED FOR ME YESTERDAY AND TODAY! 

  • Sum and group by using CAML query

    Is there any way to get the SUM of values with group by ID using CAML query?
    I have a custom list, in that I have ID and Value columns as below
          ID         Value1      Value2
          1             10             4
          2              5              3
          1             15             2
          3             20             1
    I want to get result:
         ID          Value1        Value2
         1             25                6
         2             5                  3
         3             20                1
    I used CAML query:
    <View>
    <Query>
    <Where>
    <IsNotNull>
    <FieldRef Name="ID" />
    </IsNotNull>
    </Where>
    <GroupBy Collapse="FALSE">
    <FieldRef Name="ID" />
    </GroupBy>
    </Query>
    <ViewFields>
    </ViewFields>
    <Aggregations Value="On">
    <FieldRef Name="Value1" Type="SUM" />
    <FieldRef Name="Value2" Type="SUM" />
    </Aggregations>
    </View>
    But
    this query returns all the records
    that satisfy the condition <Where>.
    I
    do not correctly?

    You need to work with current view based aggregation. Please check below threads for your reference.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/dda5735a-fecf-403f-9495-1b63617d2fbf/question-on-a-caml-query?forum=sharepointdevelopmentlegacy
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/24e88d6a-ee15-4d81-a5fe-504c7bd14e46/how-to-sum-a-column-value-using-caml-query?forum=sharepointdevelopment
    Hope this helps.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful
    I've seen these
    issues and articles and do them, but
    does not work. I use object mozhel
    Sharepoint (javascript).

Maybe you are looking for

  • How to find serial Number for BCC Plugin?

    Hi, How to find serial number for Bcc plugin on FCP? I need format my Mac so before that I to find the serial number? Please anyone can help me....

  • IMac doesn't recognise phone attached via usb

    I have an iMac and originally I had an iPhone. For certain reasons I have had to change to a Samsung Galaxy S3. Originally when I plugged my Samsung into the iMac via usb cable it connected without any issues, however recently when I connect it the i

  • Boot camp XP on mac Pro with Leopard

    I have tried to load windows xp onto my new Mac Pro. The firmware is up to date. The files load but the startup disk never ejects. The computer says that it is starting up windows, but never enters into the windows start up screen. The computer conti

  • The page contains markup that is not valid when attached to master page

    Hi, I have create an web application in VS 2005 and convert into VS2008. now i am facing a problem that a single page is not open in design mode which is inherit from master page. and a message comes. Error: The page contains markup that is not valid

  • Exercise for sync/async bridge scenario

    Hi, Can anybody send me exercise scenario or link for sync/async bridge scenario? Thanks Narayana