/
† library_program_task_schedule_set ()

† library_program_task_schedule_set ()

DEPRECATED IN VERSION 2.7.8 (substituted by † workplan_template_set ())

Function prototype

library_program_task_schedule_set  (session, task)

API VersionALL

Modifies details of one task's workplan

Input

session: Session

  • task: id of the library_program task (composed with program, protocol and task_id)
  • frequency: to define if the workplan is a RECURSIVE TASK. Posible values:
    • NULL (not recursive)
    • 'EVERYHOUR'
    • '4ADAY'
    • '3ADAY'
    • '2ADAY'
    • 'DAY'
    • 'WEEK'
    • 'BEWEEK'
    • 'MONTH'
    • 'YEAR';
  • recursive_mode: To define how RECURSIVE TASKS are generated. This property is only used when frequency is not NULL. Valid values are:
    • 0: The new iteration of a RECURSIVE TASK is generated when the TASK si closed
    • 1: The new iteration of a RECURSIVE TASK is generated automatically by the system even when the previous TASK is not closed. The TASK is generated when the date/time of the theoretic next TASK arrives. For example, i a TASK has a frequency of type 'DAY' and is programmed for '2018-11-01 09:00:00', the next programmed TASK should occur on '2018-11-02 09:00:00', so if that time arrives and the previous TASK is not closed yet, then the new iteration is calculated automatically 
  • visibility_mode:
    • 0 - wont appear in list of optional tasks of mobile device, only in list of patient optional tasks in web application. (professional)
    • 1 - in case of optional task this task will appear in list of optional tasks in mobile device (patient)
    • 2 - will appear in list of optional tasks of both professional and patient.
  • allow_add_activity: (true/false) Indicates whether TASKS based on this TASK TEMPLATE should allow to add activities dynamically. If false, then once the TASK instance has been created, the system will not allow to add more ACTIVITIES
  • admission_required: (true/false) This property is only used for EVENT TEMPLATES (i.e. the STAGE of the WORKPLAN is "EVENT"). If true, when creating an EVENT based on this TEMPLATE, it is mandatory that it is associate to an ADMISSION. Otherwise functions like event_insert ( session, date, case, event_type {, event_code} {, team} {, admission} ) or event_set () will return an error
  • closed: task will be inserted already closed (state 13 = Done)

Output

result: new reference to the task-plan

ErrorMsg:  Error message if the operation fails

Request Sample

library_program_task_schedule_set (“LC53060c6f729de8.42629546”,

<?xml version="1.0" encoding="UTF-8"?>
<task>
  <ref>ENROLL_EVAL|31|DRAFT|49||7|1|</ref>
  <workplan>
    <frequency>DAILY</frequency>
    <recursive_mode>0</recursive_mode>
	<day>90</day>
	<end_day>1234</end_day>
	<week_days>0|1|2|3|4</week_days>
	<order>3</order>
	<roles>24|20|26</roles>
  	<visibility_mode>0</visibility_mode>
	<closed>true</closed>
    <allow_add_activity>false</allow_add_activity>
    <admission_required>false</admission_required>
    <locked>false</locked>
    <end_day>134</end_day>
    <default_time>00:11</default_time>
  </workplan>
  <trial_group>I</trial_group>
  <stage>
    <ref>ENROLL</ref>
  </stage>
 </task>

)

ResponseSample

<?xml version="1.0" encoding="UTF-8"?> <result>

</result> <ErrorMsg></ErrorMsg>


Related content