Frontend crud in orocrm - crm

I need to create functionality for any customer/user can add/update/delete his own products. so I need to create CRUD in Frontend.
Please share any reference link for the same.
Thanks,
Ankit

Related

sonataadmin as both frontend and backend for symfony 2 project

I used sonataadmin and really like some features, like creating an entity and its related entity in the same page. I want to use it for frontend user also. Is it possable to use sonamaadmin for both backend and frontend users? Or is there another bundle allowing me to create an entity and its related entity in the same page?
Those are just form types, provided by the SonataAdminBundle. You can use them in any form.
You probably looking for the sonata_type_model or sonata_type_collection. See the documentation for more information.
Of course you can use Sonata Admin in both, although will be like only having a backend and made the correct security configuration for two kind of users. About entity and its related entities in the same page, that has nothing to do with Sonata, this can be achieved with symfony simple and embed forms.

MS CRM 2011 - custom plugin to share dashboard views

I'm trying to create a MS CRM Dynamics 2011 plugin that shares views in a dashboard when the dashboard is shared with users. Right now, when we share a dashboard, users cannot see the views because the views have not been shared as well.
I know how to share records with code, but I'm not sure how to hook my plugin to a dashboard share event. Normally I use the Plugin Registration Tool and specify an entity and CRUD operation required to kick off my plugin:
But because Dashboards are not entities (Contact, Account, etc.), I'm not sure how to fire my plugin during sharing. Does anyone know how to do this?
Figured this out.
Message: GrantAccess.
Primary Entity: userform

Dynamic linking to Wordpress database

I intend to use WP to setup a freelancers website (similar to oDesk) to connect service providers with service seekers in a WEB 2.0 dynamic environment. This site requires multiple forms to enter and retrieve information using database and show them in filtered or non-filtered views in separate pages.
Please advise if there are available plugins to expedite developing this site, or otherwise any guidance would be appreciated. I specifically would like to know how to connect forms to database and then how to retrieve this information from the DB.
Regards,
You are likely going to have to create your own custom WordPress theme, using various custom PHP pages to connect your web forms to your database. I think your project is well beyond the scope of a simple WP plugin.
If this was my project, I'd ditch WordPress and go for something custom built in Rails. WordPress is a good enough CMS, but it isn't really a good fit for what you are looking to accomplish.

Wordpress Plugin - Membership With Upload Functionality

I have had a look around but cannot currently find a plugin that combines membership / upload functionality.
What I envisage happening is a logged in member uploads documents and has these documents displayed on their profile, along with the ability to manage them, so add new docs and delete docs.
I like the wp-members plugin for the membership functionality but need this additional upload facility that will display the docs on the profile for that user and will then allow an admin to download them.
Does anyone know of anything like this?
Thanks in advance.
wp-members is very good plugin for membership functionality,
However you can always do little bit customization with you own custom field.
Check this tutorial Adding Custom Fields in WP-Members for your own custom fields.
Hope, This will help you!

Dynamics CRM 2011 online, custom workflow

I am very new to Dynamics and am wanting something which when a lead is created my workflow will create a contact. However I do not want duplicate contacts to be created. I read that duplication detection does not work in workflows and that I need to write a plugin. I am following this tutorial. I have created a EmailExists entity and referenced the Lead entity. What I need to do is get that Lead entity and then check whether or not a contact exists with that leads email address. I'm pretty much stuck on how to get the lead from my custom entity and then query the contactbase. Any suggestions or further reading would be greatly appreciated.
Thanks in advance
The link you reference is a workaround for the problem of not being able to register custom workflow activities in CRM Online. If you are using the On Premise version, you should be able to write custom workflow activities.
If you are already going to write a plugin, you don't need to follow the instructions in that link. You might as well just write a plugin that fires on Pre-Create of the Lead entity. It would go query Contacts for that email address, and if it finds one, it would throw an InvalidPluginExecutionException which will cancel the Create. No need for the "EmailExists" entity.
Here's a step-by-step guide on creating a simple plugin:
http://msdn.microsoft.com/en-us/library/gg695782.aspx

Resources