Hi Sergio, Adxstudio must have direct access to a Dynamics 365 (CRM) instance. The Web Form is actually data inside Dynamics 365 (CRM). All form related data are in Dynamics 365 (CRM). What you can do is, host Adxstudio inside the Private Cloud and configure a proxy such as Web Application Proxy outside the Private Cloud. That way, all requests go through WAP and only WAP server will have access to Adxstudio Server. Inside the Private Cloud, you can create an additional subnet to host Adxstudio to separate the two. You can also add an additional firewall between the Adxstudio and Dynamics 365 (CRM).
↧
Forum Post: RE: ADX Studio integration with Dynamics 2015 in a private cloud
↧
Forum Post: RE: What background is required to learn MS CRM developer?
Hi newbie_edmon, Good luck! I am sure you'll enjoy working with Dynamics 365 (CRM). Please mark the answer/s as verified, if they were helpful.
↧
↧
Forum Post: RE: CRM 2016 organization update failed version 8.0.0.1088 to 8.1.0.359
Hi Shrikant, Please check out below threads which provides a workaround for the issue. community.dynamics.com/.../184508 community.dynamics.com/.../201943
↧
Forum Post: RE: Getting error when upgrading Org to Service Pack 1 (2016.01)
Hi Nirmal, Please check out below threads which provides a workaround for the issue. community.dynamics.com/.../184508 community.dynamics.com/.../201943
↧
Forum Post: DEFFRENCE BETWEEN WORKFLOW AND PLUGIN
HI Friends, my task is when ever create a account record one task will be created in task entity but it will develop with workflow and plugin and javascript these three are possible which one i have select ? why? please somebody help me. Regards, Naresh.
↧
↧
Forum Post: Unable to login CRM dynamics personal account.
Hi All, I have an CRM dynamics personal account and when I try to login it always says " We don't recognize this user ID or password ". But in different system I am able to login. I am not getting what's the actual issue is. And I don't want to login with school or business account. I need ti login through personal account. Can some one help me out in resolving this issue ? Thanks, Manjunatha R
↧
Forum Post: RE: Change Opportunity Form Based on Field Value
Thank you!
↧
Forum Post: RE: Change Opportunity Form Based on Field Value
I should've said, thank you both!
↧
Forum Post: RE: How to set 'Unit' on Quote product to a default value CRM 2011
Use this code: if (Xrm.Page.getAttribute("uomid").getValue() == null) { var lookupData = new Array(); lookupData[0]= new Object(); lookupData.id = '{DD0CD04E-6D92-E311-86C4-00505688378E}'; lookupData.entityType = 'uom'; lookupData.name = 'KG'; // Set the value of the lookup field to the value of the array. Xrm.Page.getAttribute("uomid").setValue(lookupData); Xrm.Page.getAttribute("uomid").setSubmitMode("always"); alert(lookupData); }
↧
↧
Forum Post: RE: Unable to login CRM dynamics personal account.
Clear your cache or try login through IE InPrivate browsing. This means you are already logged in some other microsoft domain with a different ID. So, try the above two
↧
Forum Post: RE: DEFFRENCE BETWEEN WORKFLOW AND PLUGIN
Hi Naresh, Here's the answer: www.powerobjects.com/.../workflows-vs-javascript-vs-plugins-dynamics-crm blogs.msdn.microsoft.com/.../plug-ins-vs-workflows-in-microsoft-dynamics-crm
↧
Forum Post: RE: Process starting on Lead being created
Can you change the scope of the workflow to Organization and Execute as 'the owner of the workflow'
↧
Forum Post: How to increase the frequency of Goal Rollups
Trying to increase the frequency in which the goals are recalculated. By default the goals rollup every 24 hours. I would like to have it at least once an hour. I'm using the msdyncrmWorkflowTools (1.0.36.0):Goal Recalculate within a workflow to do the work. Would there be a way to use JavaScript to kick off a workflow every hour based on the system time. I have tried scheduling the Bulk Delete jobs, and due to the restriction that the earliest the next time would be 7 days later I had to create a recurring job for each time it was supposed to run that day ( 8am, 9am, 10am, 11am, 12pm, 1pm, 2pm, 3pm, 4pm, 5pm, 6pm, 7pm), and repeated that for each day. That was a lot of work, and still couldn't get it to work. Does anybody have a simpler solution?
↧
↧
Forum Post: RE: DEFFRENCE BETWEEN WORKFLOW AND PLUGIN
Refer this: knowdynamicscrm.blogspot.in/.../difference-between-workflow-and-plug-in_13.html blogs.msdn.microsoft.com/.../plug-ins-vs-workflows-in-microsoft-dynamics-crm
↧
Forum Post: RE: How to increase the frequency of Goal Rollups
Refer this: dynamicscrmpros.com/changing-rollup-calculation-frequency-microsoft-dynamics-crm-2015 dynamicscrmcoe.com/how-to-change-goal-roll-up-recurrence-frequency
↧
Forum Post: RE: Automatic Case Creation/Automatic Record Creation and Update Rules Issues
Hi MikeC282. I'd suggest to configure one queue at a time. If the first queue works then go for your next queue. I think you should use a licensed user account like what happened to Nadeeja.
↧
Forum Post: RE: TypeError: Cannot read property '0' of null when the lookup field clear
Use this code: function setExpenseCategorybasedonVendor() { if(Xrm.Page.getAttribute("cse_vendor_name") && Xrm.Page.getAttribute("cse_vendor_name").getValue()){ var lookup1 = Xrm.Page.getAttribute("cse_vendor_name").getValue()[0].id; var clientUrl = Xrm.Page.context.getClientUrl(); var query = clientUrl + "/api/data/v8.0/cse_vendormasters(" + lookup1.slice(1, -1) + ")?$select=_cse_expense_category_value"; makeRequest('GET', query) .then(function (res) { var res2 = JSON.parse(res); var guid = res2._cse_expense_category_value; var query2 = clientUrl + "/api/data/v8.0/cse_expensemasters(" + guid + ")?$select=cse_name,cse_expensemasterid"; makeRequest('GET', query2) .then(function (response) { var res3 = JSON.parse(response); var value = new Array(); value[0] = new Object(); value[0].id = res3.cse_expensemasterid; value[0].name = res3.cse_name; value[0].entityType = "cse_expensemasters"; if (lookup1 != null){ Xrm.Page.getAttribute("cse_expense_category").setValue(value); Xrm.Page.getControl("cse_expense_category").setFocus(); Xrm.Page.getControl("cse_amount").setFocus(); } else{ Xrm.Page.getElementById("cse_expense_category").clear(); } }) .catch(function (err) { console.error('there was an error!', err.statusText); }); }) .catch(function (err) { console.error(' there was an error!', err.statusText); }); } }
↧
↧
Forum Post: RE: Unable to login CRM dynamics personal account.
Clear you browser cache, temp files and then try again
↧
Forum Post: RE: Case creation error question
I agree with Pawel, this should be normal and shouldn't cause the workflow to fail.
↧
Forum Post: RE: Emails are not being sent from CRM
↧