Results 1 to 2 of 2

Thread: Upgrade 6.2.4: Lost Custom Fields

  1. #1
    Nearsited is offline Junior Member
    Join Date
    Oct 2011
    Posts
    3

    Default Upgrade 6.2.4: Lost Custom Fields

    Hi.
    After upgrading from 6.2.0, my labels for custom fields display in ACCOUNTS, but no data. Can't edit the fields either. Diags generates this table in versions.html:
    id; name; vname
    Accountsmyco_account_id_c; myco_account_id_c; LBL_MYCO_ACCOUNT_ID
    Accountsdpid_c; dpid_c; LBL_DPID
    Accountsrecs_c; recs_c; LBL_RECS
    Accountssiteid_c; siteid_c; LBL_SITEID

    Our system depends on MYCO_ACCOUNT_ID.

    Would appreciate any help or insights.

  2. #2
    dkinzer's Avatar
    dkinzer is offline Sugar Community Member
    Join Date
    Sep 2011
    Posts
    67

    Default Re: Upgrade 6.2.4: Lost Custom Fields

    I'm not sure if this applies in your case,

    But I noticed a similar thing happen to me when I upgraded where some custom fields I defined seemed to disappear in studio. In my case I just made sure to add a 'studio' attribute to the vardef with the appropriate visibility per view:


    PHP Code:
    $dictionary['Contact']['fields']['order_docs_url_c'] =
        array (
          
    'name' => 'order_docs_url_c',
          
    'rname' => 'order_docs_url_c',
          
    'vname' => 'LBL_ORDER_DOCS',
          
    'type' => 'url',
          
    'source' => 'non-db',
          
    'studio' => array(
            
    'listview' => false,
            
    'detailview' => true,  // If this is missing or not set to true, my field will not show up in detailview layout in studio.
          
    ),
        ); 
    ?>

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Lost Custom Notes Fields
    By phunky54 in forum Help
    Replies: 0
    Last Post: 2007-09-11, 08:43 PM
  2. Replies: 10
    Last Post: 2007-06-19, 05:45 PM
  3. Custom fields lost in upgrade?
    By rblack in forum General Discussion
    Replies: 7
    Last Post: 2007-05-22, 04:19 PM
  4. Lost custom fields!!!!
    By jenjen in forum Help
    Replies: 0
    Last Post: 2006-06-06, 06:23 PM
  5. Lost custom layouts in upgrade to 4.0
    By emass in forum General Discussion
    Replies: 1
    Last Post: 2006-01-17, 01:42 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
  •