/// <summary> /// Create and configure the organization service proxy. /// Initiate the method to create any data that this sample requires. /// Create a medication request. /// </summary> public void Run(ServerConnection.Configuration serverConfig, bool promptforDelete) { try { //<snippetMarketingAutomation1> // Connect to the Organization service. // The using statement assures that the service proxy will be properly disposed. using (_serviceProxy = new OrganizationServiceProxy(serverConfig.OrganizationUri, serverConfig.HomeRealmUri, serverConfig.Credentials, serverConfig.DeviceCredentials)) { // This statement is required to enable early-bound type support. _serviceProxy.EnableProxyTypes(); Entity medicationrequest = new Entity("msemr_medicationrequest"); medicationrequest["msemr_identifier"] = "MR-1234"; medicationrequest["msemr_groupidentifier"] = "MRG-12345"; medicationrequest["msemr_priority"] = new OptionSetValue(935000000); medicationrequest["msemr_intent"] = new OptionSetValue(935000000); medicationrequest["msemr_status"] = new OptionSetValue(935000000); medicationrequest["msemr_dispenserequestvalidityperiodstartdate"] = DateTime.Now; medicationrequest["msemr_dispenserequestvalidityperiodenddate"] = DateTime.Now; medicationrequest["msemr_authoredon"] = DateTime.Now; medicationrequest["msemr_expectedsupplyduration"] = (decimal)3.5; // Setting Request Type as Organisation medicationrequest["msemr_requesteragenttype"] = new OptionSetValue(935000001); //Organisation Guid RequesteragentTypeOrganization = Organization.GetAccountId(_serviceProxy, "Galaxy Corp"); if (RequesteragentTypeOrganization != Guid.Empty) { medicationrequest["msemr_requesteragenttypeorganization"] = new EntityReference("account", RequesteragentTypeOrganization); } //Setting Medication Type as Medication Reference medicationrequest["msemr_medicationtype"] = new OptionSetValue(935000001); Guid MedicationTypeReference = Medication.GetProductId(_serviceProxy, "Panadol"); if (MedicationTypeReference != Guid.Empty) { medicationrequest["msemr_medicationtypereference"] = new EntityReference("product", MedicationTypeReference); } // Setting Subject Type as Patient medicationrequest["msemr_subjecttype"] = new OptionSetValue(935000000); Guid SubjectTypePatient = SDKFunctions.GetContactId(_serviceProxy, "James Kirk", 935000000); if (SubjectTypePatient != Guid.Empty) { medicationrequest["msemr_subjecttypepatient"] = new EntityReference("contact", SubjectTypePatient); } //Setting Context Type as Episode as Care medicationrequest["msemr_contexttype"] = new OptionSetValue(935000000); Guid ConextTypeEpisodeofCare = EpisodeOfCare.GetEpisodeOfCareId(_serviceProxy, "EPC-153"); if (ConextTypeEpisodeofCare != Guid.Empty) { medicationrequest["msemr_contexttypeepisodeofcare"] = new EntityReference("msemr_episodeofcare", ConextTypeEpisodeofCare); } Guid Recorder = SDKFunctions.GetContactId(_serviceProxy, "Emily Williams", 935000001); if (Recorder != Guid.Empty) { medicationrequest["msemr_recorder"] = new EntityReference("contact", Recorder); } Guid Category = SDKFunctions.GetCodeableConceptId(_serviceProxy, "Pain", 935000080); if (Category != Guid.Empty) { medicationrequest["msemr_category"] = new EntityReference("msemr_codeableconcept", Category); } Guid PriorPrescription = getMedicationRequestId(_serviceProxy, "MR-1234"); if (PriorPrescription != Guid.Empty) { medicationrequest["msemr_priorprescription"] = new EntityReference("msemr_medicationrequest", PriorPrescription); } Guid RequesterOnBehalfOf = Organization.GetAccountId(_serviceProxy, "Galaxy Corp"); if (RequesterOnBehalfOf != Guid.Empty) { medicationrequest["msemr_requesteronbehalfof"] = new EntityReference("account", RequesterOnBehalfOf); } Guid SubstitutionReason = SDKFunctions.GetCodeableConceptId(_serviceProxy, "Substitution Reason", 935000144); if (SubstitutionReason != Guid.Empty) { medicationrequest["msemr_substitutionreason"] = new EntityReference("msemr_codeableconcept", SubstitutionReason); } Guid DispenseRequestPerformer = Organization.GetAccountId(_serviceProxy, "Galaxy Corp"); if (DispenseRequestPerformer != Guid.Empty) { medicationrequest["msemr_dispenserequestperformer"] = new EntityReference("account", DispenseRequestPerformer); } medicationrequest["msemr_substitutionallowed"] = true; medicationrequest["msemr_dispenserequestquantity"] = 1; medicationrequest["msemr_dispenserequestnumberofrepeatsallowed"] = 1; medicationrequest["msemr_dispenserequestexpectedsupplyduration"] = 1; Guid MedicationRequestId = _serviceProxy.Create(medicationrequest); // Verify that the record has been created. if (MedicationRequestId != Guid.Empty) { Console.WriteLine("Succesfully created {0}.", MedicationRequestId); } } } // Catch any service fault exceptions that Microsoft Dynamics CRM throws. catch (FaultException <Microsoft.Xrm.Sdk.OrganizationServiceFault> ) { // You can handle an exception here or pass it back to the calling method. throw; } }
/// <summary> /// Create and configure the organization service proxy. /// Initiate the method to create any data that this sample requires. /// Create a procedure. /// </summary> public void Run(ServerConnection.Configuration serverConfig, bool promptforDelete) { try { //<snippetMarketingAutomation1> // Connect to the Organization service. // The using statement assures that the service proxy will be properly disposed. using (_serviceProxy = new OrganizationServiceProxy(serverConfig.OrganizationUri, serverConfig.HomeRealmUri, serverConfig.Credentials, serverConfig.DeviceCredentials)) { // This statement is required to enable early-bound type support. _serviceProxy.EnableProxyTypes(); Entity procedure = new Entity("msemr_procedure"); procedure["msemr_datetime"] = DateTime.Now; procedure["msemr_performedstartdate"] = DateTime.Now; procedure["msemr_performedenddate"] = DateTime.Now; Guid EpisodeofCare = EpisodeOfCare.GetEpisodeOfCareId(_serviceProxy, "EPC-153"); if (EpisodeofCare != Guid.Empty) { procedure["msemr_episodeofcare"] = new EntityReference("msemr_episodeofcare", EpisodeofCare); } Guid Code = Medication.GetProductId(_serviceProxy, "Panadol"); if (Code != Guid.Empty) { procedure["msemr_code"] = new EntityReference("product", Code); } Guid LocationId = SDKFunctions.GetLocationId(_serviceProxy, "Noble Hospital Center"); if (LocationId != Guid.Empty) { procedure["msemr_location"] = new EntityReference("msemr_location", LocationId); } Guid NotDoneReason = SDKFunctions.GetCodeableConceptId(_serviceProxy, "Blood pressure was high", 935000109); if (NotDoneReason != Guid.Empty) { procedure["msemr_notdonereason"] = new EntityReference("msemr_codeableconcept", NotDoneReason); } Guid Category = SDKFunctions.GetCodeableConceptId(_serviceProxy, "xyz-123", 935000103); if (Category != Guid.Empty) { procedure["msemr_category"] = new EntityReference("msemr_codeableconcept", NotDoneReason); } Guid EncounterId = Encounter.GetEncounterId(_serviceProxy, "E23556"); if (EncounterId != Guid.Empty) { procedure["msemr_encounter"] = new EntityReference("msemr_encounter", EncounterId); } //Setting Subject Type as Patient procedure["msemr_subjecttype"] = new OptionSetValue(935000000); //Patient Guid Patient = SDKFunctions.GetContactId(_serviceProxy, "James Kirk", 935000000); if (Patient != Guid.Empty) { procedure["msemr_patient"] = new EntityReference("contact", Patient); } Guid Outcome = SDKFunctions.GetCodeableConceptId(_serviceProxy, "mno-123", 935000107); if (Outcome != Guid.Empty) { procedure["msemr_outcome"] = new EntityReference("msemr_codeableconcept", Outcome); } procedure["msemr_status"] = new OptionSetValue(935000000); procedure["msemr_procedureidentifier"] = "mdf/xyz"; procedure["msemr_notdone"] = true; Guid ProcedureId = _serviceProxy.Create(procedure); // Verify that the record has been created. if (ProcedureId != Guid.Empty) { Console.WriteLine("Succesfully created {0}.", ProcedureId); } } } // Catch any service fault exceptions that Microsoft Dynamics CRM throws. catch (FaultException <Microsoft.Xrm.Sdk.OrganizationServiceFault> ) { // You can handle an exception here or pass it back to the calling method. throw; } }
/// <summary> /// Create and configure the organization service proxy. /// Initiate the method to create any data that this sample requires. /// Create an observation. /// </summary> public void Run(ServerConnection.Configuration serverConfig, bool promptforDelete) { try { //<snippetMarketingAutomation1> // Connect to the Organization service. // The using statement assures that the service proxy will be properly disposed. using (_serviceProxy = new OrganizationServiceProxy(serverConfig.OrganizationUri, serverConfig.HomeRealmUri, serverConfig.Credentials, serverConfig.DeviceCredentials)) { // This statement is required to enable early-bound type support. _serviceProxy.EnableProxyTypes(); Entity observation = new Entity("msemr_observation"); observation["msemr_identifier"] = "OBS-123"; observation["msemr_comment"] = "following Schedule"; observation["msemr_description"] = "Recovery is good"; observation["msemr_status"] = new OptionSetValue(935000000); //Setting Context Type as Encounter observation["msemr_contexttype"] = new OptionSetValue(935000001); //Encounter Guid EncounterId = Encounter.GetEncounterId(_serviceProxy, "E23556"); if (EncounterId != Guid.Empty) { observation["msemr_conexttypeencounter"] = new EntityReference("msemr_encounter", EncounterId); } //Setting Device Type as Device Metric observation["msemr_devicetype"] = new OptionSetValue(935000001); Guid DeviceMetricId = SDKFunctions.GetDeviceMetricId(_serviceProxy, "Device Metric"); if (DeviceMetricId != Guid.Empty) { observation["msemr_devicetypedevicemetric"] = new EntityReference("msemr_device", DeviceMetricId); } //Setting Effictive as DateTime observation["msemr_effectivetype"] = new OptionSetValue(935000000); //DateTime observation["msemr_effectivetypedatetime"] = DateTime.Now; //Setting Subject Type as Device observation["msemr_subjecttype"] = new OptionSetValue(935000002);//Device Guid SubjectTypeDevice = Device.GetDeviceId(_serviceProxy, "Pacemaker"); if (SubjectTypeDevice != Guid.Empty) { observation["msemr_subjecttypedevice"] = new EntityReference("msemr_device", SubjectTypeDevice); } //Setting Value Type as Range observation["msemr_valuetype"] = new OptionSetValue(935000004); //Range observation["msemr_valuerangehighlimit"] = 10; observation["msemr_valuerangelowlimit"] = 1; Guid BodySite = SDKFunctions.GetCodeableConceptId(_serviceProxy, "Body Site", 100000000); if (BodySite != Guid.Empty) { observation["msemr_bodysite"] = new EntityReference("msemr_codeableconcept", BodySite); } Guid Code = SDKFunctions.GetCodeableConceptId(_serviceProxy, "Observation Name", 935000073); if (Code != Guid.Empty) { observation["msemr_code"] = new EntityReference("msemr_codeableconcept", Code); } Guid EpisodeOfCareId = EpisodeOfCare.GetEpisodeOfCareId(_serviceProxy, "EPC-153"); if (EpisodeOfCareId != Guid.Empty) { observation["msemr_episodeofcare"] = new EntityReference("msemr_episodeofcare", EpisodeOfCareId); } Guid DataAbsentReason = SDKFunctions.GetCodeableConceptId(_serviceProxy, "Absent Reason", 935000090); if (DataAbsentReason != Guid.Empty) { observation["msemr_dataabsentreason"] = new EntityReference("msemr_codeableconcept", DataAbsentReason); } Guid DeviceId = Device.GetDeviceId(_serviceProxy, "MAGNETOM Sola"); if (DeviceId != Guid.Empty) { observation["msemr_device"] = new EntityReference("msemr_device", DeviceId); } Guid Interpretation = SDKFunctions.GetCodeableConceptId(_serviceProxy, "Interpretation Code", 935000085); if (Interpretation != Guid.Empty) { observation["msemr_interpretation"] = new EntityReference("msemr_codeableconcept", Interpretation); } observation["msemr_issueddate"] = DateTime.Now; Guid Method = SDKFunctions.GetCodeableConceptId(_serviceProxy, "Interpretation Code", 935000086); if (Method != Guid.Empty) { observation["msemr_method"] = new EntityReference("msemr_codeableconcept", Method); } observation["msemr_observationnumber"] = "OBS-123"; Guid SpecimenId = SDKFunctions.GetSpecimenId(_serviceProxy, "SP-1234"); if (SpecimenId != Guid.Empty) { observation["msemr_specimen"] = new EntityReference("msemr_specimen", SpecimenId); } Guid ObservationId = _serviceProxy.Create(observation); // Verify that the record has been created. if (ObservationId != Guid.Empty) { Console.WriteLine("Succesfully created {0}.", ObservationId); } } } // Catch any service fault exceptions that Microsoft Dynamics CRM throws. catch (FaultException <Microsoft.Xrm.Sdk.OrganizationServiceFault> ) { // You can handle an exception here or pass it back to the calling method. throw; } }