HP P6000 Replication Solutions Manager User Guide (T3680-96089, October 2012)

Viewing job properties
View a job's listing without opening it in the job editor.
Considerations
You can only use the GUI to view a job's properties (listing).
Procedure
1. In the navigation pane, select Jobs to display the Jobs window in the content pane.
2. Click the List tab.
3. Select the job whose properties you want to view.
4. Select Actions > View Properties.
The Job Properties window opens, displaying the job's run state and commands.
Job concepts
Job language overview
The job language provides a simple and structured way to automate replication and other storage
related tasks. A typical job consists of commands, assignments (variables), branching instructions,
labels, comments and exits. Jobs with launch commands often include transactions. See also
Imported jobs.
Click the links below for information.
TaskLine
// Replicate storage volumes.1Comment >
//2
ValidateStorageSystem ( %array_name% )3command >
...
Launch ( %source_host%, %suspend_command_line%, "", WAIT, "0" ) onerror
pauseat E1:
9Branch >
DO {10Transaction start >
$Rep1 = SnapshotStorageVolume ( %array_name_source_storvol_unc1%,
FULLY_ALLOCATED, SAME, %dest_storvol1%, NOWAIT ) onerror pauseat E1:
11Assignment >
//12
} ALWAYS {13
// Resume the host application.14
Launch ( %source_host%, %resume_command_line%, "", WAIT, "0" )15
}16transaction end >
...
Exit (SUCCESS)27Exit >
//28
// Failure exit - no rollback needed.29
E1: Exit (FAILURE)30Label >
...
168 Jobs