In SuiteCRM in workflow module display phone related fields in dropdown - sugarcrm

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:

Related

How to add dynamically changing fields in work items in Azure Devops

I am using a custom process.
I have multiple teams in project eg: A , B.
There is a custom field (dropdown) in a Bug work item.
My requirement is that when a user from "Team A" edit the Bug work item, he should only be able to view some of the values in that dropdown, same for the user in Team B .
In summary we need to filter the dropdown values in that custom dropdown list based on the team of a user.
Is this customisation possible in azure devops?
How to add dynamically changing fields in work items in Azure Devops
I am afraid that there is no out of box method to dynamically changing fields in work items in the current processes.
According to the document Work item fields and attributes, the picklistId property cannot be changed once it has been set:

Suite CRM - Label missing in subpanel

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.

hide one particular field in search layout for normal users sugarcrm 6.5.18

Need to hide one particular field in search layout for normal user, if admin logins no need to hide that particular filed in search lay outs..
You can integrate following plugin for field level access control:
SugarCRM Field Level Access Control

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.

How to add new fields in cart of VirtueMart (Joomla!)

I am working on joomla and using joomla VirtueMart component.I created new fields in product detail page like color and size (drop down), Now I want to add that POST value (ex. $_POST["cmbColor"]) in shopping cart process and finally to be saved in database of VirtueMart.Please help me how to add these fields in cart.
Did you use the attribute system to add the optional color and size? Using either child products or attributes will get the options to show in the cart and saved on a sale. The VM documentation is pretty good on this topic, you can find how to use attributes here -
http://virtuemart.net/documentation/User_Manual/Product_Attributes.html