add products dropdown to oppurtunity module in suitecrm - sugarcrm

I am trying to add products dropdown to the opurtunities module in suitecrm.
Tried adding relationships "one to many, and many to many". Also tried adding dropdown with products. But it shows irrelevant options in the dropdown.
I am trying to achieve the products created in the "products module" to be shown in the dropdown.
I have tried googling/reading the documentation. But am unable to find any thing on this.
Any help or guide with this is highly appreciated.

Apparently there was some issue with the installation installation.
got it working with,
1) adding a relation between opportunity and products
2) adding a relate field to products
3) create a dynamic drop down field with product

Related

Cannot create Attendance in Moodle as there is no such Activity

I'm trying to apply face recognition for attendance in moodle for senior project. I've created a course in my Moodle, but I cannot add attendance activity as it just doesn't exist in the activity list. Activity list looks like this. From search results seems like very strange (and new?)bug.
Github issues doesn't seem to be checked by anyone regularly, so I'm asking here
https://github.com/danmarsden/moodle-mod_attendance/issues/465
The attendance module isn't part of the default Moodle code.
You will need to download and install it.
https://moodle.org/plugins/mod_attendance

Category listing in magento2 in custom page

I wanted to create a custom page having all categories listed with checkbox and on click of that products should get filtered. Can anybody suggest how to go about it?
Just as an idea:
We are using Multiple Select in Layered Navigation von Manadev. There you get a Category filter which you may use.
Otherwise you may have a look at a Collection Filter as described here.
It would be quite easy to get a select with all your categories with category_id as option. Then you built your request.

Relationship type is not showing in sugarcrm

I am working with sugar crm 7.1.1 and I am trying to create a subpanel for a module. When I try to create the subpanel I dont see any relationship in dropdown other than "one to one".
How could I resolve this?
If you want to create subpanel then it should be always One to many relation ship And for Campaigns it is showing only one relation it is a default . IF you want more check Account module.

adding personnalized field for tests status on HP QC/ ALM

On my test plan tab, i'm trying to add another option to my tests technical status "ready, design".. so i'm tring to add: "to review" as shownenter image description here
I've tried to do it by the customization, but I don't find how.
Thank you
You need to be a project admin to perform this action.
Basically you need to change the Lookup List that assigned to this entity and add values you need to the list of possible values.
For details please address ALM Help:
Customizing Project Entities and Customizing Project Lists

Plugin not firing when using "Manage Members" on a marketing list in CRM 2013

Good afternoon. Thank you in advance for taking the time to read this. Inside of a Dynamics CRM 2013 environment, I have a custom entity which holds 3 data grids. Whenever a record (of contact, account or lead) is added to its respective datagrid, it adds the record to a static marketing list via a custom plugin I wrote. The trouble I'm having is that when I use the "Manage Members" (to add/remove records using the advanced find feature) it's not firing at all. The plugin IS firing correctly when I add/remove items from the custom entity using the "+" and "trash can" buttons. The RemoveMember portion is firing when I use "Remove from Marketing List" button list as well, just not from "Manage Members". I have three steps registered on this plugin, associate on post-op/sync, disassociate on pre-op/sync, and removemember on post-op/sync. The idea is to be able to add or remove records from my custom entity OR the marketing list, and it auto-updates the other.
Does anybody have any suggestions or advice on how to fire a plugin when using the "Manage Members" portion of marketing lists? I've tried all valid combinations of messages and steps that I could think of, and I've written and re-written the code a few times to try to get it to work. Below is a pastebin with my code.
http://pastebin.com/X1n017Nr
Thank you.
I created a second plugin and moved the logic for AddMember into it. I have no idea why, but this solved my problem.
Try this approach, hope this can help you:
Register the plug-in on the 'Update' Message.
Ask for the parentContext.Message AddMember, RemoveMember y AddMembersByFetchXml, the last one maybe is the message you can't find.
Do the logic you need with de message.
This worked for CRM2011.