hi Guys,
I have a custom entity called receptionmanagementsystem while save the record want to set value in read only field..but the value is not coming...here it is my code..
if(context.InputParameters.Contains("Target") && context.InputParameters["Target"] is Entity)
{
Entity entity = (Entity)context.InputParameters["Target"];
if (entity.LogicalName == "new_receptionmanagementsystem")
{
Entity reception = new Entity("new_receptionmanagementsystem");
//string note = "New one is coming to meet you";
reception["new_welcomenote"] = "New one is coming to meet you";
service.Update(reception);
}
*This post is locked for comments