Creating groups in DA

i created a group in the DA web gui - and added internal members, but there is no email address for the group, as the postmaster group has... any ideas?

Yes, ANY account that has a mail address, and is used for mail MUST have the "service" of mail.
There are two different "list" or "group" options.
A mail "group" is useful for a few users, and allows vacation replies, and such to be sent to the group.
A mail "list" does not, and is suitable for any size list.
To turn a "group" into a "list", simply add the msgGroupErrTo attribute

Similar Messages

  • HT3529 My group messaging on/off label isn't showing up at all. I can only create group messages but every time someone starts a group chat it says its send to my number but I never got any text. I wen't to settings Messages and I can't find any on/off sw

    I can only create group messages but every time someone starts a group chat it says its send to my number but I never got any text. I wen't to settings>Messages and I can't find any on/off switch.

    Hello there, Idaniabb.
    The following Knowledge Base article offers up some great information in regards to group messaging and also links to another excellent resource for troubleshooting messages as well:
    iOS: Understanding group messaging
    http://support.apple.com/kb/HT5760
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Error while creating  group chart of accounts

    hi
    i am learning sapfico now.while i was practicising to create group chart of accounts ,i got an error"group chart of accounts not created to a/c no 111111.".first i created chart of accounts  code for group chart of accounts.then i have created chart of accounts  per company code.like wise i have created 2 account groups and 2 retained earning a/cs(1 for per company code & 1 per group chart of account purpose)
    while i was creating GL master records in FS00 i got the error like that.any any body please help me.

    Hi,
    Have you entered "111111" in the filed group account number?  If so, this account should be available / created in your group chart of account.
    Hope it helps
    Saravanan.A

  • Error while creating Group

    Hi All,
    We have a typical scenario.
    In our application we have a form 'Cust_fmb' which will give count of records for customer. We are populating the customers group using following query.
    rg := create_group_from_query('custgrp','
              select cust_id rlabel,cust_id rvalue
              from custschema.customer_tab
    When user login into our application and open that Cust_fmb form , form is populating the customer group but when user login into our application and opens and access multiple forms and then opens Cust_fmb forms
    we are getting the error 'FRM-41072: Cannot create Group custgrp'.
    We are not able to find out the cause why we are getting this error.
    Please helps us,
    Thanks in advance,
    maddy

    Thanks for the response
    My code as below
    PROCEDURE POPULATE_CUST_GROUP IS
      rg recordgroup;      
      nn number;
      rquery varchar2(600);
    BEGIN
         rg := find_group('custgrp');
         if not id_null(rg) then
              delete_group(rg);
         end if;
    rg := create_group_from_query('custgrp','
              select cust_id rlabel,cust_id rvalue
              from custschema.customer_tab
    nn := populate_group(rg);
    if nn <> 0 then
         message('Populate group had error ');
    end if;
    populate_list('MAIN.GROUP_ID',rg);
    END;
    Can any one tell me why do I get this error. Please..
    Thanks,
    maddy

  • Error while creating Group Asset

    Dear All
    While Creating Group Asset I am getting the Following error:
    No depreciation area in company code 1000 allows group assets.
    Message no. AY160
    Diagnosis
    You cannot create group assets in company code 1000. There are no depreciation areas that can manage group assets in this company code.
    Procedure
    Make sure that you really want to create a group asset in company code 1000.
    If so, then allow group assets in the desired depreciation areas.
    Please advice.
    Thanks & Regards
    Kanwaljit

    Hi,
    Check the config in OAYM and OAAX.
    Then your issue will get solved.
    Thanks,
    Srinu

  • ABAP Dump while creating Group Asset

    Hi all
    I am getting the following dump while creating Group Asset through AS21-
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Except.                CX_SY_REF_IS_INITIAL
    Date and Time          19.11.2007 21:16:06
    Short text
         Access via 'NULL' object reference not possible.
    What happened?
         Error in the ABAP Application Program
    The current ABAP program "SAPLGLO_FIAA_SCREENS" had to be terminated because it
    has
    come across a statement that unfortunately cannot be executed.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
    caught in  procedure "SET_MANAGER_FOR_UPDATE" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "GO_ASSET_MAINDATA").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    Source Code Extract
    Line  SourceCde
      545 *      -->P_LS_WORK  text
      546 *      <--P_LO_ASSET_MANAGER  text
      547 *      <--P_LO_TIMEDPNDNT_MANGER  text
      548 *----
      549 FORM set_manager_for_update
      550        USING
      551          is_work TYPE raist03
      552        CHANGING
      553          co_asset_manager    LIKE go_asset_manager
      554          co_timedpndt_manger LIKE go_timedpndt_manager
      555          ct_err_msg          TYPE tt_err_msg.
      556
      557   DATA:
      558     ls_asset_maindata TYPE gty_s_asset_maindata,
      559     ls_anla_key       TYPE anla_key,
      560     ls_err_msg        LIKE LINE OF ct_err_msg.
      561
      562 * check operation
      563   IF is_work-kz      EQ con_ins AND
      564      is_work-flg_unr NE on.
      565
      566     MOVE-CORRESPONDING is_work TO ls_anla_key.
      567     ls_anla_key-mandt = sy-mandt.
      568     ls_anla_key-anln1 = is_work-anln1_new.
      569 * start of Note # 954513
      570     IF ls_anla_key-anln1 IS INITIAL.
      571       ls_anla_key-anln1 = is_work-anln1.
      572     ENDIF.
      573 * end of Note # 954513
    >>>>>     ls_asset_maindata = go_asset_maindata->get( ).
      576
      577 * clone time-independent asset data manager
      578     TRY.
      579         co_asset_manager = lcl_amd_mngr_clone_factory=>clone_asset_manager( ls_anla_key ).
      580
      581       CATCH cx_faa_asset.
    Any1 has a clue where I might be going wrong?
    Cheers
    Hrishi

    Hello Hrishi
    I have researched your issue and note 1063792 should resolve it. The
    SAP_APPL that it is included in is SAPKH60011. I recommend you to upgrade to the latest support package available to avoid eventual errors.
    For program errors you should open a support ticket in the SAP Service Market place.
    Regards
    Javier

  • I can no longer create groups that contain subgroups??

    Folks,
    I used to be able to create a group, drag existing subgroups and individuals into that group, and send emails to all by simply typing the group name into Mail.
    I can no longer do this.
    Now, to be precise. I can create what looks like a group and by dragging existing subgroups into it -- but it no longer functions as a group. When I type the name or drag it (from Contacts) into the "To:" line of Mail, the only thing that shows up are the top-level individuals (i.e., those who I put dragged in as individuals, not those who are only in one of the subgroups that I dragged in).
    If I create a group that only has subgroups (i.e., no individuals at the top level, only individuals who are members of one or more of the included subgroups) then after I type the group name in the "To:" line of mail, the group name dissappears, and nothing appears in Mail's "To:" line.
    The actual behavior is a little more subtle than this but the bottom line is that I can no longer create groups with subgroups.
    Help!!

    Hi,
    If you list the steps you have taken to fix this it will help.
    Have you tried using the File > New Event menu item?
    Have you logged the user account out/ restarted the computer?
    Have you tried un-syncing any accounts synced to Calendar?
    Is there some change made to the computer that may have triggered this?
    Best wishes
    John M

  • How to create groups in AD using AD group process definition

    Hello,
    I want to create group in AD when i create group in OIM & i had achieved this using JNDI & was able to create groups in AD
    successfully,now i want to create groups in AD using AD Group process definition which contains create AD Group task.
    Can anyone suggest what flow should be followed to achieve this ?
    Thanks & Regards,
    Rahul Shah

    I think you can do R & D to acheive this via Event Handler.
    1. Apply Event Handler on Group Object Form.
    In Event handler class.
    2. get the parameter from ADITresource.
    3. Make JNDI call.
    4. Create the same group name in AD.
    There may be easy approach.
    Which version of OIM you are using?
    Thanks,
    Kuldeep

  • Creating group dynamically in active directory depending on their role

    Hi,
    I have sycn oid and active directory using directory integration platform. Now the scenario is We have one system says hr system which take care of entering all the user information. Once it submit that information it goes to oid. Now we want that when we import all that user from oid to active directory it didn't duplicate any user as well as depending on their role it should create groups dynamically in active directory. For e.g: If user belong to Trainee category or manager category it must create Trainee group & Manager group & respective person should go into that group. I don't know whether my question is placed in right group or not. I am using filter to do this task but not able to write proper condition in "source matching filter" and "destination matching rule". Any help will be appreciated.
    Thanks,
    Sonya Sharma

    Thanks Tamim. To clear your thought, i will explain again. I have sync oid and active directory through Directory integration platform. I have created user in oid.(cn=users,dc=mycompany,dc=com). It get sync in active directory properly. Now i have created two group in active directory say for e.g Trainees and Manager. There is a field name position in oid which is a custom attribute. When i fill the information of user in oid, I have to fill "Position" attribute also. So my question is that, if i fill Trainee as a value in Position attribute and click on submit it should go in Trainee Group In active directory and not in user group. Same for manager. How can we achieve this? Can we do it through filter? Or any other way? It's needed desperately. Please help me in resolving this issue.
    Regards,
    Sunil

  • Is it possible to create group above report between to different data model

    Hi,
    I am having one problem.. I am working on Bi publisher 10...
    I have to create 2 different data models.. which i have done successfully.... its showing xml data perfectly.. but my problem is i want my 2nd data model to be dependent of 1st model...
    when i am designing my template ... i am not able to create a group by report..
    i want my report like this ...
    ------------------------------------------------------------ (fetching data from first data model)
    abc xyz pqrs
    --------------------------------now their it must show the data from second data model... dependent on first model...
    simply i want to know is it possible to create group above report between to different data models..

    Thanks for your response..
    I already tried this.. But its not working ..
    i want parent information from data model 1
    then all detail information related to parent template ...from data model 2..
    but its not working.. its giving me all parent informations first then all details informations..

  • Problem in creating group above AND group left in one report!

    Hi all,
    I need a report that is a combination of group above and group
    left.
    Suppose I have 3 table (Emp, Sales, Product):
    Emp Table has 2 column
    - Emp_PK
    - Emp_Name
    Sales Table has 4 column
    -Sales_PK
    -Sales_Date
    -Emp_FK
    -Produck_FK
    -Quantity
    Product Table has 3 column
    -Product_PK
    -Product_Name
    -Product_Price
    I want to make Employee Sales Report For The Month that will
    look like this:
    Emp Number___: Emp_PK
    Emp Name_____: Emp_Name
    Sales Date______Product_Name____Quantity \(2 sales
    ________________Product_Name____Quantity /the date)
    Sales_Date______Product_Name____Quantity
    As you can see this consist of group above (The Employee) and
    group left (The Sales and Product).
    I create this by using 2 queries and link them (the Emp_PK from
    1st query and Emp_FK from 2nd query) on the report builder using
    data link.
    The first query is:
    Select Emp_PK, Emp_Name from Emp
    The second query is
    Select Emp_FK, Sales_Date, Product_Name, Quantity
    From Sales, Product
    Where Product_PK=PRODUCT_FK
    I then create the layout for second query and choose group left
    for Sales_Date using wizard and I create additional layout to
    for the employee.
    The problem is that when I run this report, it will print ALL
    the employee record first (including employee who has NOT sale
    anything) and then on the last page it will print the record of
    Last employee on the Emp table and ALL sales record (including
    those that is done by other employee).
    This report will run correctly if I choose an exact employee
    (For example by adding Where Emp_PK=1111 in the first query) to
    report all of the sales done by this person (employee with emp
    number of 1111). However I need the report to run and print
    ONLY those employee who has Sales Records!
    I thought that by linking the 2 queries in Data Model, it will
    have the same effect as linking using the WHERE clause in query.
    If suppose I create a query like this:
    SELECT Emp_PK, Emp_Name, Sales_Date, Product_Name, Quantity
    FROM Emp, Sales, Product
    WHERE Emp_PK=Emp_FK AND Product_PK=Product_FK
    The report will run OK but I can only choose EITHER group above
    or group left for this ONE query methods in report Wizard.
    Sorry if it is a long question but I hope you can see what I am
    trying to do.
    Thanks in advance for any tip.

    hello,
    of course you can create group left and group above blocks in a
    single report.
    you might want to use the INSERT REPORT BLOCK instead of the
    report wizard, as the report wizard only allows you to use one
    report layout per report, where the report block wizard (invoked
    by INSERT REPORT BLOCK) allows you to choose on a per-block
    basis.
    of course you can create the blocks completely from scarth by
    hand, if you want to.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • [CS3][JS] Create Group Prior to its Children

    Hi
    Is there a way to create group along with all members in one go?
    What I currently do is:
    myGroupMembers = [
    myBox01,
    myBox02,
    myBox03,
    myBox04
    myDoc.groups.add(MyGroupMembers)
    Obviously, InDesign has to create all group members first and let me stare
    at the partial screen updates as the script runs. This can take quite long
    for 500 item catalogue subsection.
    So I thought there must be a quicker way.
    So far I tried this:
    mySpecs = {
    myItem01: Rectangle{
    label: "01",
    // other properties
    myItem02: Rectangle{
    label: "02",
    // other properties
    myItem03: Rectangle{
    label: "03",
    // other properties
    myGroup = myDoc.groups.add(mySpecs);
    I based this on ScriptUI resource string. I didn't expect it to work (It
    doesn't indeed). I'm just wondering whether it's only syntax error or flawed
    idea.
    Can anuone help me please?
    Thanks
    Weller

    Change those curly brackets around your mySpecs definition to square brackets (thereby changing it from an object to an array) and I think it'll work.
    Dave

  • Problem in Dynamically create Group ui element

    Hi everyone,
    I was trying to create group UI element  dynamically in Webdynpro ABAP. I was getting Error :Access via 'NULL' object reference not possible.
    I have gone through the following procedure
    Create component with window and view
    In view layout Method: WDDOMODIFYVIEW and done the following code
      Source Code
    if first_time  = ABAP_TRUE.
    data:lr_container type REF TO CL_WD_UIELEMENT_CONTAINER,
          lr_flowdata TYPE REF TO cl_wd_flow_data,
          lr_group TYPE REF TO cl_wd_group,
          object type REF TO IF_WD_VIEW_ELEMENT.
    CALL METHOD view->get_root_element
       receiving
         root_view_element = object.
    lr_container ?= object.
    CALL METHOD cl_wd_group=>new_group
       EXPORTING
         design                   = 01
         enabled                  = ABAP_TRUE
         has_content_padding      = ABAP_TRUE
         id                       = 'GRP1'
         view                     = VIEW
         visible                  = 02
       receiving
         control                  = lr_group.
    CALL METHOD lr_container->add_child
       EXPORTING
         the_child = lr_group.
    CALL METHOD cl_wd_flow_data=>new_flow_data
       EXPORTING
         element     = lr_group
       receiving
         control     = lr_flowdata.
    endif.
    To get Group ui element dynamically what i have to do rather than the above code
    Thanks in Advance
    Sreenivas P

    Hi Sreenivas,
    Try to debug and find what line the error occurs and return it to us.
    If the error occurs in
    CALL METHOD view->get_root_element
       receiving
         root_view_element = object.
    or in
    lr_container ?= object.
    you will need to check content of object.
    Best regards

  • How do you create groups in Contacts?

    Is there a way to create groups in the Contact software on the iPad?

    No, and yes.  Groups are created on your computer, and synced to contacts.  You cannot create groups on the pad.  But don't get excited, because when you sync over the groups it is very difficult to get them to do anything.
    The good news is that there are a couple of apps that do this pretty well.  I used group email a lot and it works just fine.  There are a couple of others.  Read the reviews.

  • Creating group contacts

    How do I creat group contacts?  I have a group of managers that I text/email regularly.  Is it possible to save these as a group so I don't have to add each individual each time I need to send a message?

    Nicole, you can create group of contacts on your computer, and then sync them on iPhone, but you will not be able to select a group as recipient of a message. I have created a free application, Easy Group, to do this.
    http://itunes.apple.com/fr/app/easy-group/id461469079?mt=8
    Rémi
    Note: I may receive some form of compensation, financial or otherwise,from my recommendation or link.

  • I can't create group chat in messages using Bonjour connection

    Need help, please.
    I wanted to use messages for group chat while connecting under bonjour.
    I only able to chat private but not creating group.
    Anybody had experience this before?

    This isn't quite what I'm looking for. I want to be able to simultaneously chat with more than one person. For example, if I am person A, I want to chat with persons B and C at the same time, so that our chat would involve people A, B, and C.

Maybe you are looking for

  • How can I create a new format in pages?

    Basically this comes from trying to change the vertical indentation on pages. (Like you can change the horizontal, you know? I just wanted to make the text field smaller on all sides. Incidentally, if you know how to do a vertical indentation change,

  • If I sell my Mac the warranty will no longer be valid?

    If I sell my Mac the warranty will no longer be valid?

  • CUE 8.6.6 default password and username

    Dears, i have a new CME with CUE 8.6 installed i tried to login thru cli to the module without any luck i tired everything in my mind  the questions what is the default password and username for CUE or how to reset the password  thanks 

  • BOM ALE issue

    Hello all,    I am trying to ALE BOM changes from client 300 to 100. SO I changed the qauntity of a component and saved without using ECM . I did the ALE, but in target system it did not update the item quantity. Instead it added a new line item with

  • Question to Transferring Global Settings from Source Systems

    1) When we do this steps, we found the following information as follows, so the question is that which fields that we should maintain? BW User ALE Debugging User BEx order number Releasest. hier Monitor initial Last IDoc no. Last IS-Nr. XPRA executed