currency type field Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/currency-type-field/ Microsoft Dynamics CRM . Microsoft Power Platform Thu, 13 Mar 2014 13:32:00 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 currency type field Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/currency-type-field/ 32 32 176351444 Plugin Tutorial 2 : Update and set “currency and date type” field Value On Create Of Record [ Basic Plugin ] in MS CRM 2011 2013 http://microsoftdynamics.in/2014/03/13/plugin-tutorial-2-update-and-set-currency-and-date-type-field-value-on-create-of-record-basic-plugin-in-ms-crm-2011-2013/ Thu, 13 Mar 2014 13:32:00 +0000 http://microsoftdynamics.in/2014/03/13/plugin-tutorial-2-update-and-set-currency-and-date-type-field-value-on-create-of-record-basic-plugin-in-ms-crm-2011-2013/ THIS PLUGIN SIMPLY UPDATE AN FIELD (currency) VALUE TO AN GIVEN VALUE ON CREATION OF NEW RECORD : AS CURRENCY TYPE HAS TO BE TYPE CAST TO “Money”.Currency Type Field  value can not be set as INT  or  STRING using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Runtime.Serialization; using System.ServiceModel; using Microsoft.Xrm.Client; using Microsoft.Xrm.Portal; using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Sdk.Query; namespace plugin1 {     public class Class1 :IPlugin     {...

The post Plugin Tutorial 2 : Update and set “currency and date type” field Value On Create Of Record [ Basic Plugin ] in MS CRM 2011 2013 appeared first on Microsoft Dynamics 365 Blog.

]]>
THIS PLUGIN SIMPLY UPDATE AN FIELD (currency) VALUE TO AN GIVEN VALUE ON CREATION OF NEW RECORD : AS CURRENCY TYPE HAS TO BE TYPE CAST TO “Money”.


Currency Type Field  value can not be set as INT  or  STRING




using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization;
using System.ServiceModel;
using Microsoft.Xrm.Client;
using Microsoft.Xrm.Portal;
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Query;

namespace plugin1
{
    public class Class1 :IPlugin
    {
        public void Execute( IServiceProvider serviceProvider)
        {
            IPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService(typeof (IPluginExecutionContext ));
            IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory )serviceProvider.GetService(typeof(IOrganizationServiceFactory));
            IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);

  // Retrieve all fields and records from the Entity “new_teston” 
            new_teston test = (new_teston)service.Retrieve(context.PrimaryEntityName, context.PrimaryEntityId, new ColumnSet (true ));
                       // convert value into Money type            Money mon = new Money(1000000);
            test.new_currency = ( Money)mon;
// for date type  
                DateTime dnew = new DateTime (1991, 5, 22);

            test.new_dateonly = ( DateTime)dnew;

 service.Update(test);
         

        }
    }
}






SOURCE : JUST2CODE.IN
Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post Plugin Tutorial 2 : Update and set “currency and date type” field Value On Create Of Record [ Basic Plugin ] in MS CRM 2011 2013 appeared first on Microsoft Dynamics 365 Blog.

]]>
2832