Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Group Help

  1. #1
    Sonnie is offline Member
    Join Date
    Jul 2007
    Posts
    8

    Default Group Help

    Hello Guys..

    I have a Sugar Open Source Version 4.5.1d (Build 1273) , i want to ask if it supports grouping? because in one of the FAQs there is a "group tab" but in my crm there's none, it is possible to activate it.

    Thanks!!!

  2. #2
    default is offline Sugar Community Member
    Join Date
    Jun 2007
    Posts
    102

    Default Re: Group Help

    you can see it when you edit a user.. try editing your administrator you will see it.. its navigation paradigm..
    Last edited by default; 2011-03-17 at 04:52 PM.

  3. #3
    Sonnie is offline Member
    Join Date
    Jul 2007
    Posts
    8

    Default Re: Group Help

    What i mean is how can i group the users so they can have limitations on what they can access, like i assigned user to either group A or group B, sorry i am just a newbie here, thank you so much!

  4. #4
    default is offline Sugar Community Member
    Join Date
    Jun 2007
    Posts
    102

    Default Re: Group Help

    go to admin and role management.... sorry ...
    ________
    Marijuana Indica
    Last edited by default; 2011-03-17 at 04:53 PM.

  5. #5
    Sonnie is offline Member
    Join Date
    Jul 2007
    Posts
    8

    Default Re: Group Help

    Thanks! Are there other ways I can create a group or organization of crm users? So I can organize them.
    And also is there other ways i can email a group of crm users, because i tried the email campaign, is it right?

    Thanks and GodBless!!

  6. #6
    default is offline Sugar Community Member
    Join Date
    Jun 2007
    Posts
    102

    Default Re: Group Help

    on the enterprise edition theres a module called teams.. the sugar developer our currently developing it for opensource... so while it is not yet available, i dont know if you can use target list..

    its ok. helping is a honor.
    Last edited by default; 2011-03-17 at 04:54 PM.

  7. #7
    Sonnie is offline Member
    Join Date
    Jul 2007
    Posts
    8

    Default Re: Group Help

    how can i restrict the users from changing their passwords and account settings?
    thanks! i set the users as targets in the email campaign..

  8. #8
    default is offline Sugar Community Member
    Join Date
    Jun 2007
    Posts
    102

    Default Re: Group Help

    on detailview .php

    if ((is_admin($current_user) || $_REQUEST['record'] == $current_user->id)
    && !empty($sugar_config['default_user_name'])
    && $sugar_config['default_user_name'] == $focus->user_name
    && isset($sugar_config['lock_default_user_name'])
    && $sugar_config['lock_default_user_name']) {
    $buttons = "<input title='".$app_strings['LBL_EDIT_BUTTON_TITLE']."' accessKey='".$app_strings['LBL_EDIT_BUTTON_KEY']."' class='button' onclick=\"this.form.return_module.value='Users'; this.form.return_action.value='DetailView'; this.form.return_id.value='$focus->id'; this.form.action.value='EditView'\" type='submit' name='Edit' value=' ".$app_strings['LBL_EDIT_BUTTON_LABEL']." '> ";
    }
    elseif (is_admin($current_user) || $_REQUEST['record'] == $current_user->id) {
    $buttons = "<input title='".$app_strings['LBL_EDIT_BUTTON_TITLE']."' accessKey='".$app_strings['LBL_EDIT_BUTTON_KEY']."' class='button' onclick=\"this.form.return_module.value='Users'; this.form.return_action.value='DetailView'; this.form.return_id.value='$focus->id'; this.form.action.value='EditView'\" type='submit' name='Edit' value=' ".$app_strings['LBL_EDIT_BUTTON_LABEL']." '> ";
    if (!$focus->is_group) {
    $buttons .= "<input title='".$mod_strings['LBL_CHANGE_PASSWORD_BUTTON_TITLE']."' accessKey='".$mod_strings['LBL_CHANGE_PASSWORD_BUTTON_KEY']."' class='button' LANGUAGE=javascript onclick='return window.open(\"index.php?module=Users&action=Change Password&form=DetailView\",\"test\",\"width=320,he ight=230,resizable=1,scrollbars=1\");' type='button' name='password' value='".$mod_strings['LBL_CHANGE_PASSWORD_BUTTON_LABEL']."'> ";
    }
    }

    you need to chane it into

    if ((is_admin($current_user))
    && !empty($sugar_config['default_user_name'])
    && $sugar_config['default_user_name'] == $focus->user_name
    && isset($sugar_config['lock_default_user_name'])
    && $sugar_config['lock_default_user_name']) {
    $buttons = "<input title='".$app_strings['LBL_EDIT_BUTTON_TITLE']."' accessKey='".$app_strings['LBL_EDIT_BUTTON_KEY']."' class='button' onclick=\"this.form.return_module.value='Users'; this.form.return_action.value='DetailView'; this.form.return_id.value='$focus->id'; this.form.action.value='EditView'\" type='submit' name='Edit' value=' ".$app_strings['LBL_EDIT_BUTTON_LABEL']." '> ";
    }
    elseif (is_admin($current_user)) {
    $buttons = "<input title='".$app_strings['LBL_EDIT_BUTTON_TITLE']."' accessKey='".$app_strings['LBL_EDIT_BUTTON_KEY']."' class='button' onclick=\"this.form.return_module.value='Users'; this.form.return_action.value='DetailView'; this.form.return_id.value='$focus->id'; this.form.action.value='EditView'\" type='submit' name='Edit' value=' ".$app_strings['LBL_EDIT_BUTTON_LABEL']." '> ";
    if (!$focus->is_group) {
    $buttons .= "<input title='".$mod_strings['LBL_CHANGE_PASSWORD_BUTTON_TITLE']."' accessKey='".$mod_strings['LBL_CHANGE_PASSWORD_BUTTON_KEY']."' class='button' LANGUAGE=javascript onclick='return window.open(\"index.php?module=Users&action=Change Password&form=DetailView\",\"test\",\"width=320,he ight=230,resizable=1,scrollbars=1\");' type='button' name='password' value='".$mod_strings['LBL_CHANGE_PASSWORD_BUTTON_LABEL']."'> ";
    }
    }


    but it is not advisable to edit the sourcecode..

    try to have some second comments on this
    ________
    WHITE WIDOW SEEDS
    Last edited by default; 2011-03-17 at 04:54 PM.

  9. #9
    Sonnie is offline Member
    Join Date
    Jul 2007
    Posts
    8

    Default Re: Group Help

    what are the problems or errors that may occur when i change it?
    thanks!

  10. #10
    default is offline Sugar Community Member
    Join Date
    Jun 2007
    Posts
    102

    Default Re: Group Help

    have you tried it.. the only problem you will encouter . is that your crm will be upgrade unsafe.. but if you try to upgrade you can jjust put the code back again...
    ________
    Vaporizer Questions
    Last edited by default; 2011-03-17 at 04:54 PM.

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Group Mail Configure
    By vaishjan in forum Feature Requests
    Replies: 1
    Last Post: 2008-11-10, 10:48 PM
  2. Group Mail Configuration
    By vaishjan in forum Help
    Replies: 17
    Last Post: 2008-02-07, 02:23 AM
  3. 4.50c Group Inbox odd behavior? Urgent!
    By Elmerbug in forum Help
    Replies: 0
    Last Post: 2006-10-04, 03:04 PM
  4. Group Mail
    By vaishjan in forum Help
    Replies: 1
    Last Post: 2006-06-07, 06:16 AM
  5. Replies: 0
    Last Post: 2006-01-18, 09:33 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •