Questions tagged [dynamics-crm-online]

Microsoft Dynamics CRM Online is a Customer Relationship Management software package developed by Microsoft Corporation. It was offered under this name between December 2007 and September 2018 (version number 4 until version number 8.1), before it was integrated into the Dynamics 365 product family and marketed as Dynamics 365 for Customer Engagement (for questions regarding this more recent product, please see the related tag).

Useful Links:

  1. Online vs Onpremise - FAQ
  2. Dynamics CRM Online - Licensing & Pricing guide
  3. Dynamics CRM Online and Dynamics 365 build versions
  4. Microsoft announces branding switch from CRM Online to 365 for Customer Engagement
1206 questions
0
votes
2 answers

Can't disable (set to read-only, protect, gray-out etc.) a field

I've run this code: Xrm.Page.data.entity.attributes.get("subject").setValue("Beep");; alert(Xrm.Page.ui.controls.get("subject").setDisabled); Xrm.Page.ui.controls.get("subject").setDisabled(true); As expected, I get the text Beep into the field. As…
user1672517
0
votes
1 answer

How to circumvent the maximum number of timeouts in a workflow?

When I'm designing a workflow using the built-in GUI, I noticed that after the fifth depth of timeout(timeout until x minutes, then do...) I can no longer add more steps. Vertically, I can enter many lines but depth-wise (i.e. to the right) it seems…
user1672517
0
votes
2 answers

Recurrent workflow stops after a number of iterations

A workflow is started upon instantiation of the the entity Hazaa. It waits for a while and then creates a new instance of Hazaa. After that, it's put to sleep as successful. I'd expect it to fire perpetually creating a bunch of Hazaas. However, I…
Konrad Viltersten
  • 36,151
  • 76
  • 250
  • 438
0
votes
3 answers

How to debug a plugin in on-line version?

I've created a plugin and registered it using hte registration tool. I've also added a step that is supposed to handle a message of creation of an instance. Sadly, the intended behavior doesn't occur. My guess is that something inside the plugin…
user1672517
0
votes
1 answer

The entity's form doesn't get updated

I have a HTML file, which I've uploaded as a web resource and linked to via an activity's form designer in an IFRAME. So far, so good. Then, when I edited the source file locally and uploaded it (browse-save-publish, of course), I got no difference…
Konrad Viltersten
  • 36,151
  • 76
  • 250
  • 438
0
votes
1 answer

Microsoft Dynamics CRM Online register new assembly

I downloaded a free 30 day trail from Microsoft, I wanted to Register a new Assembly using Plugin Registration Tool. When I go to create new connection, for discovery URL what do I write? my url is: https:// xxxx.crm.dynamics.com my company has a…
Benk
  • 1,284
  • 6
  • 33
  • 64
0
votes
1 answer

Assigning a value of a field in the main window from IFRAME

In an IFRAME there's a value declared by var blipp = 7;. In the main window, I there's a field called new_blopp. I'd be delighted to get blipp into blopp. According to this MSDN discussion, it can be done by one of the following…
Konrad Viltersten
  • 36,151
  • 76
  • 250
  • 438
0
votes
2 answers

How to differentiate manual save and programmatic save in CRM 2011 JScript

I have a Javascript code registered onSave of record. I need to check whether the save operation is happening by clicking on Save button or saving programmatically like Xrm.Page.data.entity.save(). Do we have a JScript code to get the source control…
0
votes
2 answers

Add form tab to all the entities in CRM 2011

My requirement is to add a Tab inside the form(not a ribbon tab) on create of custom configuration record. The functionality is like this: A custom config entity has a field called 'Entity Name'. On creation of this config record I need to add one…
0
votes
1 answer

Confused about JavaScript contexts - crm 2011 online

I have overridden the case resolve button to call my custom JavaScript. I will call this function custom_resolve_func(). That works fine. When I press the resolve button, custom_resolve_func() is invoked. I have another function attached to the…
0
votes
1 answer

Pre-allocation of attributes by creating new entity

While creating new entity in CRM, some fields will be pre-allocated. Exmaple: for a new contact - transactioncurrency and ownerid will be filled with values. Haw can I programmatically find out, which rules will be used for such pre-allocation. I…
Igor
  • 556
  • 3
  • 19
0
votes
3 answers

Can I get current record Guid in CRM dialog?

I call a crm dialog from ribbon button on some record form. Is there a way to get this record Guid inside dialog?
0
votes
1 answer

CRM 2011 Plug-in chaining

Just a quick question I wasn't able to Google-fu about CRM 2011 plug-in behavior. If I have a plug-in on, let's say Account, that updates another entity, let's say Contact, plug-ins registered on Contact messages will fire (correct?). If those…
Chris
  • 107
  • 6
0
votes
4 answers

Create ribbon button Dynamically in CRM 2011

Can any one help me to create a ribbon button dynamically in CRM 2011. The scenario is, when we create a record, one ribbon button has to be created dynamically based the optionset value selected in that record. Can we get it work using JScript or…
0
votes
0 answers

How do I find attachment records not referenced by an activitymimeattachment record?

I need to find all "attachment" (A) records that are not referenced by an "activitymimeattachment" (AMA) record. If these 2 records are related, the Id of the A record is stored in the "attachmentid" attribute of the AMA record. I can find all As…
keerz
  • 717
  • 1
  • 6
  • 21