Quantcast
Channel: Microsoft Dynamics CRM Forum - Recent Threads
Viewing all 55831 articles
Browse latest View live

CRM Workflow for Date field

$
0
0

Hi All,

I would like to create a workflow between 2 Dates fields. My workflow should trigger when the employee's termination date is within 1 year of the start date.

(Eg) Employee start date: 1/1/2019

       His Termination date: 1/10/2019.

In this example, he got terminated within a year and so my workflow should start and send an email.

How can I compare these 2 Dates fields in the workflow particularly to check if the termination date is within a year of starting date? ? Any help is much appreciated. 

Thank you,

Poorni.


Is there a way to retrieve records from subgrids using flow?

$
0
0

Hi there,

We have a subgrid on opportunity form where it allows us to add existing contacts to the current opportunity.

We have a requirement in the Microsoft flow to list records from the subgrid from each opportunity.

I did not find a way to achieve this functionality in MS flow.

can we achieve this using MS flow?

Please suggest.

Thanks,

Venu

Creating Configurable Calendar Views in Dynamics 365

$
0
0

A CRM integrated calendar comes with several advantages. Apart from the features, one major pro is a crystal-clear picture you get of what’s going on in the background. It is a lot better than managing a single task in a calendar and CRM system separately.With Calendar 365, activity management becomes easier because you can leverage its configurable calendars with separate views. This means you can have a separate view of all your important activities.

Creating Separate Calendar Views

What if you could have separate calendar views for your lead calls and opportunities? It can make your calendar less cluttered while keeping you up to date for all the activities. Just like the below screenshot, you can choose your entities from the contact calendar field. You can select any one or multiple entities and create views accordingly.

You get to select the view, the number of days to be displayed, slot duration, the title format i.e. D/MMMM/YYYY or MMM/D/YYY, etc.

You can also create a shareable calendar. A shared calendar that you can hand out with other Dynamics CRM users.

Configuring Activities

In your selected views from service calendar Dynamics 365, you can select the activities to configure. Activities like Task, Fax, Phone Call, Email, Letter, Appointment, Campaign Activity, or any Custom Activity.

After selecting the activity to edit, you can apply modifications to it like the color, status, tooltip, detail attribute, title, an email reminder, etc. You select any activity as required.

How Would You Like to Manage Your Calendar?

The major goal behind providing configurations to the users in Calendar 365 is to make sure users get to manage their calendar in a more organized way that increases productivity. If you have a team of two or more, having a Dynamics CRM integrated calendar will give them the flexibility to prioritize the tasks with bifurcation and get more work done in lesser time.

Deploy plug-in to version 1710 (9.1.0.10334) online

$
0
0

Our CRM instance got update an update this weekend (version 1710 (9.1.0.10334), gcc region) and since than we can't register new plug-in assemblies or update existing.

Error is:

ERROR: Exception retrieving custom activity info using SandboxWCFMethod - Unhandled exception: 
Exception type: Microsoft.Crm.CrmNotSupportedException
Message: This action is not supported.
   at Microsoft.Crm.Sandbox.SandboxCustomActivity.GetSandboxCustomActivityInfo(ActivityInfo activityInfo, Guid organizationId)

It looks really similar to this issue: https://community.dynamics.com/crm/f/microsoft-dynamics-crm-forum/253106/registering-a-custom-workflow-activity-using-plug-in-registration-tool

So I guess it comes from SDK version mismatch.

But which SDK assemblies versions am I supposed to use with this CRM version?

Latest I see in NuGet is 9.0.2.21 with comment "Updating for 9.1.0.10129" which doesn't work for us.

Search Accounts that didn't have any OPPTY before certain date

$
0
0

hi everyone,

Does anybody know how I can create a personal view to search Accounts that didn't have any OPPTY before a certain date?

I need to create a view of "new customers". 

It's easy to do so for Accounts that were only created this FY in CRM. But what about those that were already added as a prospect before, but were we never actually won any OPPTY? 

KR

Anneke

Remove Navbar and sidebar panel from from entity records in USD

$
0
0

Hello guys,

I amusing MS CRM D365 and USD 4.1 as USD Client.

I have been stuck to this problem, I need to remove Navbar and sidebar panel from entity records in USD.

I am new to this but don't get how to do this. Please help me with this.

Here is the screenshot..

Can I add a link in Note body?

$
0
0

Can I add a link in Note body?

When I am trying to write in document body , it is not working

Portal Web form disappears on submission of first step (After clicking Next Button)


Next-and Previous record button stop working when using Legacy From Rendering

$
0
0

Hi,

I had a strange issue.

When i"m using legacy form rendering (systemsetting) to "No" the Entietets(views) which have an editable grid, will stop working when I go into the record, then the previous and next record button is disabled.

But when i change Legacy form rendering to Yes, the button starts working for the views/entities which have an editable grid.

Any input on this? 

Lead to Opportunity on Qualify - Error - "Attribute 'msdyn_contractorganizationalunitid' cannot be NULL"

$
0
0

Hi All

I am a bit stuck here. I'm unable to qualify leads when the Lead Type is "Work based". It fails with the following error message:

"Business Process Error"

"Attribute 'msdyn_contractorganizationalunitid' cannot be NULL".

I tried the solution provided by Dominic Carvalho in this thread https://cCannot qualify Lead to Opportunity on a Sandbox D365 online instance.

I even deactivated the "Project Service - Contracting Unit is Required" business rule on the Opportunity record. Still fails.

This started I think when I changed the Project service > Settings > Parameters > Default Organizational Unit

I assume I'm missing a setting or configuration somewhere, but I haven't found the minimum required settings for this to work.

Your help would be much appreciated.

Thanks

Qualify Lead Request not working

$
0
0

We have code which we are executing from custom workflow. We are qualifying Lead to Contact, this is working perfectly fine for 80% of transaction but 20% of transaction is not working correctly.
Lead is getting qualified bu contact is not getting created. 

If there is code issue it should failed for all, if security role issue it should fail for all. 

var req = new QualifyLeadRequest
{
CreateContact = true,
SourceCampaignId = lead.GetAttributeValue<EntityReference>("campaignid"),
Status = new OptionSetValue((int)DGS.RMM.XRM.lead_statuscode.Qualified),
LeadId = new EntityReference(DGS.RMM.XRM.Lead.EntityLogicalName, entityid)
};

resp = (QualifyLeadResponse)service.Execute(req);

Any comments to find cause will be much helpful.

Qualify Lead Request not working

$
0
0

We have code which we are executing from custom workflow. We are qualifying Lead to Contact, this is working perfectly fine for 80% of transaction but 20% of transaction is not working correctly.
Lead is getting qualified bu contact is not getting created. 

If there is code issue it should failed for all, if security role issue it should fail for all. 

var req = new QualifyLeadRequest
{
CreateContact = true,
SourceCampaignId = lead.GetAttributeValue<EntityReference>("campaignid"),
Status = new OptionSetValue((int)DGS.RMM.XRM.lead_statuscode.Qualified),
LeadId = new EntityReference(DGS.RMM.XRM.Lead.EntityLogicalName, entityid)
};

resp = (QualifyLeadResponse)service.Execute(req);

Any comments to find cause will be much helpful.

On-demand Synchronous (Real-time) Workflow on the Unified Interface app

$
0
0

Hello

Microsoft recently announced that CRM users are forced to take the Unified Interface into use by fall 2020, so I've created a Unified Interface app for our CRM for a review.

We use a few Workflows, one of which is assigning incoming Leads to Users based on information stored in the associated Product.

The Product holds fields for Owner, Coworking User, and a field (Last Assignee) to store whom the previous lead was assigned to.

The Workflow is run as an on-demand, real-time Workflow to selected multiple Leads on a (queue) view.

The workflow is able to split every second Lead between Product Owner and Coworking User, and it does this by keeping a record on whom the Lead was assigned (Product owner or the coworking User) to previously. Therefore it is essential that each lead is processed before processing the next one.

In the traditional interface, the workflow is run on one Lead at a time, so it works perfectly.

In the Unified Interface, however, it seems to run asynchronously in the background and does not update Last Assignee right.

Does anyone know a) will Microsoft make real-time workflows work on the Unified Interface in the same way as they do now or b) is there a way to make it execute one by one in the background?

How to calculate a license end date based on start date, cancellation date and period (month/year).

$
0
0

How to calculate a license end date based on start date, cancellation date and period (month/year).

For instance:

- a clients’ starts a user license on January 5, 2019 (start date),

- the license period is set to a month (period),

- on October 12, 2019, the client has let us know that he wants to end the license (cancellation date),

- Since the period is set to a month, the first possible end date should be November 4, 2019 (license end date)

How can we calculate the license end date based on start date, cancellation date and period (month/year)?

How to calculate a license end date based on start date, cancellation date and period (month/year).

$
0
0

How to calculate a license end date based on start date, cancellation date and period (month/year).

For instance:

- a clients’ starts a user license on January 5, 2019 (start date),

- the license period is set to a month (period),

- on October 12, 2019, the client has let us know that he wants to end the license (cancellation date),

- Since the period is set to a month, the first possible end date should be November 4, 2019 (license end date)

How can we calculate the license end date based on start date, cancellation date and period (month/year)?


How to calculate a license end date based on start date, cancellation date and period (month/year).

$
0
0

How to calculate a license end date based on start date, cancellation date and period (month/year).

For instance:

- a clients’ starts a user license on January 5, 2019 (start date),

- the license period is set to a month (period),

- on October 12, 2019, the client has let us know that he wants to end the license (cancellation date),

- Since the period is set to a month, the first possible end date should be November 4, 2019 (license end date)

How can we calculate the license end date based on start date, cancellation date and period (month/year)?

On delete record from subgrid field need to update field in parent entity form in crm

$
0
0

Hi All,

On record creation , deletion & updation from subgrid one currency field is getting updating so wrote plugin for this.On creation record from subgrid which is quick create form currency field is updating whithout page refresh but when deleting record from subgrid field value is not updating instead which requires page refresh then only its working.

Even I followed this one https://community.dynamics.com/365/sales/b/stuffandtacos/posts/refresh-parent-entity-when-creating-a-quick-record-from-a-subgrid

but not able to do.Anyone has any idea on this how to achieve , please let me know.

Thanks,

Jharana

Portals - change customization of default SEARCH page

$
0
0

Hi

I am struggling to remove a whole section form the SEARCH page.  there is a section  called 

<h1 class="section-landing-heading"><div class="xrm-editable-html xrm-attribute" data-cmstemplate-render-url="/_services/portal/7b138792-1090-45b6-9241-8f8d96d8c372/adx_contentsnippet/0ccb8a6f-d924-4925-96cc-987677e95564/__templates/live-preview/L3NlYXJjaC8%3d" data-cmstemplate-url="/_services/portal/7b138792-1090-45b6-9241-8f8d96d8c372/adx_contentsnippet/0ccb8a6f-d924-4925-96cc-987677e95564/__templates/all/L3NlYXJjaC8%3d" data-editable-title="Search/Title" data-editable-url="/_services/portal/7b138792-1090-45b6-9241-8f8d96d8c372/adx_contentsnippet/0ccb8a6f-d924-4925-96cc-987677e95564/adx_value" data-encoded="false" data-filebrowser-dialog-url="~/xrm-adx/filebrowser.html" data-filebrowser-url="/_services/portal/7b138792-1090-45b6-9241-8f8d96d8c372/elFinder/connector" data-label="Search/Title" data-languagecontext="English" data-liquid="true" data-xrm-base="/xrm-adx/"><div class="xrm-attribute-value">Discover contoso</div></div></h1>

I want to get rid of this whole section so i can use the space on the page. 

In the search web template I have added the following code 

<script>
$(document).ready(function(){
$(".section-landing-heading").hide();
});
</script>
But it does not work , I still get the whole white space.. I am newbie here so trying ot learn as i go along , can someone help me how to do that please ...
Currently the page looks like 
doing f12 - and deleting the h1 element I get the below , which is what I am looking for .. 
Any help please .. 
Thanks

On-demand Synchronous (Real-time) Workflow on the Unified Interface app

$
0
0

Any knowledge on whether Microsoft will make synchronous workflows work on the Unified Interface?

I have an on-demand workflows which are run over multiple selected Leads on a view and they must be processed one by one. It seems that even though I have set the workflow to be run in real-time, it is run in the background if initiated at the Unified Interface app. All works well on the traditional interface. Since MS announced that the traditional interface is closed by the end of 2020, I'm in early steps reviewing the new UI.

Or - is there a trick to get background workflows run in order?

In Workflow, can't add email text field as variable in To field

$
0
0

I have a custom entity "Request" that has text field with type email to be used for an internal requester's email address. Internal requester's doesn't have access to CRM.  We want to send them an email acknowledgement that we have created a request on their behalf. After that, our team sends emails from their own Outlook when interacting with them.

When we create a workflow that includes sending an email, the email field is not showing up as a choice to be placed in the "To" field.  The only choices are User entity related fields and Contact related fields.  We are managing external vendor contacts in the Contact entity. 

How would I get this to work? 

Viewing all 55831 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>