Translations:Requests/1/en
Requests are the most important entities in ARIS, whose main purpose is to manage them. They are always associated to a given patient, who must have been created before hand.
<graphviz border='frame' format='svg'> digraph RequestsDiagram {
node [shape="oval" style=filled fillcolor="orange" fontsize="9pt"]; //edge [minlen=2]; //----- Requests graph // Nodes Requests [label="Requests" ]; Create [label="Create", URL="#Create" ]; ChangeInformation [label="Change Information", URL="#Change_information"]; PatientsData [label="Patients' Data", shape="tab", URL="#Create"]; AdditionalInformation [label="Additional Information", shape="tab", URL="#Create"]; BiologicalSamples [label="Biological Samples", shape="tab", URL="#Create" ]; AnalyticalTests [label="Analytical Tests", shape="tab", URL="#Create" ]; DeliverSamples [label="Deliver Samples", URL="#Deliver_samples" ]; IntroduceResults [label="Introduce Results", URL="#Introduce_results" ]; ValidateResults [label="Validate Results", URL="#Validate_results"]; SearchHistoric [label="Search Historic", URL="#Search_historic"]; // Edges Requests -> Create; Requests -> ChangeInformation; Create -> PatientsData; ChangeInformation -> PatientsData; PatientsData -> AdditionalInformation [dir=both minlen=2]; AdditionalInformation -> BiologicalSamples [dir=both minlen=2]; BiologicalSamples -> AnalyticalTests [dir=both minlen=2]; Requests -> DeliverSamples DeliverSamples -> BiologicalSamples; Requests -> IntroduceResults; IntroduceResults -> AnalyticalTests; Requests -> ValidateResults; ValidateResults -> AnalyticalTests; Requests -> SearchHistoric;