HandleUnscheduledMPPS Method

Summary
Handles exceptions that result from adding an unscheduled performed procedure step.
Syntax
C#
C++/CLI
public void HandleUnscheduledMPPS( 
   string mppsSOPInstanceUID, 
   string scheduledProcedureStepID 
) 
public: 
void HandleUnscheduledMPPS(  
   String^ mppsSOPInstanceUID, 
   String^ scheduledProcedureStepID 
)  

Parameters

mppsSOPInstanceUID
The SOP Instance UID for the MPPS Instance that is to be deleted.

scheduledProcedureStepID
Identifier that identifies the Scheduled Procedure Step.

Remarks

Connect an unscheduled procedure step with an existing scheduled procedure step.

Example

Shows how to use the miscellaneous methods of the broker service.

C#
using Leadtools; 
using Leadtools.Medical.Worklist.Wcf.Service; 
using Leadtools.Medical.Worklist.DataAccessLayer.MatchingParameters; 
using Leadtools.Dicom; 
using Leadtools.Medical.Worklist.Wcf.Entities; 
 
 
public void MiscelleaneousTest() 
{ 
   try 
   { 
      List<string> uids = new List<string>(_BrokerService.GetUnscheduledPerformedProcedureStepUIDs()); 
 
      if (uids.Contains("987.654.3210000")) 
      { 
         _BrokerService.HandleUnscheduledMPPS("987.654.3210000", "123.456.89000000"); 
      } 
 
      Console.WriteLine("Exists: " + _BrokerService.PerformedProcedureStepExists("987.654.3210000").ToString()); 
   } 
   catch (Exception e) 
   { 
      Console.WriteLine(e.Message); 
   } 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Medical.Worklist.Wcf Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.