Results 1 to 4 of 4

Thread: Howto search with query related to accounts and opportunities?

  1. #1
    andreasbalzer2 is offline Senior Member
    Join Date
    Aug 2008
    Posts
    56

    Default Howto search with query related to accounts and opportunities?

    Hi,
    I'd like to see all opportunities from my database whose related accounts have a specific field set to a specific value and contain another specific value in their opportunity title.
    e.g.:
    Show all opportunities with clubbing in the name that are related to accounts from France.

    How is this possible?

    Andreas

  2. #2
    andopes's Avatar
    andopes is offline A Sugar Hero | Help Forum Moderator
    Join Date
    Jul 2006
    Location
    São Paulo - Brazil
    Posts
    8,335

    Default Re: Howto search with query related to accounts and opportunities?

    Hi Andreas

    It is easily possible in phpMyAdmin

    SELECT a.name AS account_name, o.name AS opportunity_name, o.amount, o.sales_stage
    FROM accounts AS a
    INNER JOIN accounts_opportunity AS ao ON a.id = ao.account_id
    INNER JOIN opportunities AS o ON ao.opportunity_id = o.id
    WHERE a.<some_field> = '<some_value>' AND o.name LIKE '%<some_value>%'

    Replace the string into tags <> by the appropriate value.

    Cheers
    André Lopes
    DevToolKit / Project of the Month - June 2009
    Lampada Global Services- Open Source Solutions
    Avenida Ipiranga, 318
    Bloco B - CJ 1602
    São Paulo, SP 01046-010
    Brazil
    Office: +55 11 3237-3110
    Mobile: +55 11 7636-5859
    e-mail: andre@lampadaglobal.com

    Lampada Global delivers offshore software development and support services to customers around the world.
    Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.

    I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.

  3. #3
    andreasbalzer2 is offline Senior Member
    Join Date
    Aug 2008
    Posts
    56

    Default Re: Howto search with query related to accounts and opportunities?

    Aem.. I'd like to see these information within sugarcrm of course I guess sales employees are not able to enter SQL queries yet

  4. #4
    michamamo2 is offline Senior Member
    Join Date
    Sep 2008
    Posts
    64

    Default Re: Howto search with query related to accounts and opportunities?

    Hi,

    if you have ZuckerReports you can create report for that (I did such things during the last week) ... ... and the report can be accessed by your users.

    Micha

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Opportunities vs. Leads vs. Accounts
    By jasolution in forum General Discussion
    Replies: 5
    Last Post: 2011-01-13, 02:01 AM
  2. SOAP Opportunities to Accounts issue
    By iastor in forum Developer Help
    Replies: 3
    Last Post: 2008-06-18, 02:02 AM
  3. Replies: 0
    Last Post: 2008-01-18, 12:57 PM
  4. Creating Opportunities for Contacts instead of Accounts
    By organi in forum General Discussion
    Replies: 1
    Last Post: 2007-09-16, 10:20 PM
  5. Replies: 1
    Last Post: 2006-09-11, 03:38 PM

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
  •