Suite CRM - Label missing in subpanel - sugarcrm

I have added a new field in the contacts subpanel of Accounts. The added field's name is coming in the Admin ->Studio->Accounts->labels. But it is not coming in the subpanel contacts lists. If i added another label also, it is coming in the Labels list of accounts in studio. Where i missed. Please help. Thanks.

You need add the label to the contacts module. As the sub panels are relationships to other modules. In this case the contacts module.

Related

In SuiteCRM in workflow module display phone related fields in dropdown

I'm fresher working in SuiteCRM, please help me out with this requirement.
In workflow, in add action section I kept one dropdown list in which all fields are displayed according to module selected.
For example, if I select Account module, all fields related to accounts will be displayed in dropdown.
I want only office_phone and alernate_phone fileds to displayed in that dropdown,of selected module.
dropdown of all fields as per module selected:

Change the default form in created contacts in Outlook

You know that Outlook has a default form to show contacts(this one)
and I have my own form created(this one)
I want to see all my contacts like my own form,but I only can create new contacts with that form.I can't modify the created ones,which are with the default form.
How can I do that?
Could I do it with a macro?Any idea?
Thank you very much
Forms are associated with the message class. You need to change the MessageClass property values for contacts where you want to get the form shown. For example, when an item is selected, Outlook uses the message class to locate the form and expose its properties.

Adding new page to Admin Panel in Magento

I am developing an e-commerce website and I need to customize the database. I want to add some tables into the database and records entry should be done from the Magento Admin Panel, eg:-
Like as we click Add New Product under Manage Products from Magento Admin Panel, whatever data we provide there like, name, weight, description, sku, etc, it is entered to the respective database table automatically.
Now, let’s say I want three more tables to be created in the database: Brand(brand_id, brand_name, brand_desc...), Brand_loc(brand_id, brand_loc_id, brand_address, brand_city, brand_state...), Product(prod_id, brand_id, brand_loc_id, prod_name, prod_weight....).
So, I want the above tables’ attributes to be shown in Magento Admin Panel and as I enter the data from Magento Admin Panel, it should be entered to the respective tables in the database like I explained of Add New Product above.
Can anyone please help me on the above issue....
Thanks.
I will proceed as follows :
add a event observer in my module so that can be called once a product is saved, there are various observers in magento for before and after events.
when a product is saved i will add my code of saving data into custom tables in the observer function.
tutorial to add product after observer is here :
http://snipplr.com/view/56959/
As per a magento developer i would advice to create a complete module doing as said above, and also create pages so that admin can edit/delete brands in your case.

Magento - Transactional emails not displaying

I am having a problem with creating an new email template in the Transaction Emails int he admin area.
In this section if I click Add New Template the drop down box for 'Template' is empty.
In the directory app/locale/en_US/template/email the relevant html files are there.
Any help is much appreciated.
If you don't modify any core file then check your core_email_template table.
If this table is not empty the you need to debug

How to create custom field and Add more button along with custom field in sugarCRM

I want to create a custom field which should have 'Add more button' so that we can add as many as we want..(like email address field with + symbol to add more you can see in Contact Module).Is it possible in SugarCRM studio ?
You can't do this in Studio.
A alternate way to do this, is using relationship. But one-many relationship must be managed with in subpanel.
You'll want to look at using the Collection Field type; it's what's used to power the Email address and Teams fields.