Results 1 to 2 of 2

Thread: email address from relate field

  1. #1
    momigno is offline Junior Member
    Join Date
    Feb 2009
    Posts
    2

    Default email address from relate field

    Hi, is it possible to show and/or export in csv format, an email address related to account module from a relate field of a custom module? I have this custom module, with a relate field from the account module. What I can tryng to do is to show and export the email address from that account.
    Any help?

    thanks
    momigno

    PS. I am using Sugar5.2a CE

  2. #2
    Superman's Avatar
    Superman is offline Sugar Community Member
    Join Date
    Oct 2005
    Location
    Kazakhstan
    Posts
    852

    Default Re: email address from relate field

    You need to rewrite create_export_query() in your module bean file.
    Especially you need to construct resulting query so that it get email address from related account.
    So, say, your module is related with Accounts by field account_id.

    then this SQL will return email address from related account:
    PHP Code:
    SELECT ea.email_address FROM your_module_table ymt LEFT JOIN email_addr_bean_rel eabr ON ymt.account_id eabr.bean_id AND eabr.bean_module='Accounts' LEFT JOIN email_addresses ea ON eabr.email_address_id ea.id WHERE eabr.deleted '0' AND eabr.primary_address='1' 
    Farkhad Rakhimzhanov
    E-mail: farkhad@gmail.com
    Skype: rakikama

    SuperTimesheet and Invoicing — timesheet tool with invoicing for SugarCRM.
    Book time against Cases, Project Tasks and Projects.
    Create invoice regarding booked time, print it in PDF or HTML,
    customize template as you like.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. relate Field -> Search Field
    By Mr.X in forum Developer Help
    Replies: 2
    Last Post: 2009-02-05, 07:04 AM
  2. email address-like field control
    By DragonflyMaster in forum Help
    Replies: 10
    Last Post: 2008-05-16, 07:44 AM
  3. Replies: 2
    Last Post: 2007-01-27, 12:22 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
  •