--- title: "Get-VEHANARestoreJobActionLogItems" description: "Returns action log items for an SAP HANA restore job. Product: Veeam Backup & Replication Product Edition: Enterprise Plus, Veeam Universal License This cmdlet returns action log items for a specific SAP HANA restore job, giving you a detailed ov" canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-vehanarestorejobactionlogitems.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for SAP HANA > Get-VEHANARestoreJobActionLogItems" dateModified: "2026-08-18" --- # Get-VEHANARestoreJobActionLogItems ## Short Description Returns action log items for an SAP HANA restore job. **Product**: Veeam Backup & Replication **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VEHANARestoreJobActionLogItems [-Session] -RestoreJob [] ``` ## Detailed Description This cmdlet returns action log items for a specific SAP HANA restore job, giving you a detailed overview of the restore process. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

RestoreJob

Specifies an SAP HANA restore job. The cmdlet will return information about the specified restore job.

Accepts the VEHANARestore object. To get this object, run the Get-VEHANADatabaseRestore cmdlet.

VEHANARestore

True

Named

True (ByValue)

Session

Specifies the restore session in which the restore job was started.

Accepts the VEHANARestoreSession object. To get this object, run the Get-VEHANARestoreSession cmdlet.

VEHANARestoreSession

True

0

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Docs. ## Output Object The cmdlet returns the [`VEHANARestoreActionLogItem`](vehanarestoreactionlogitem.md)`[]`object that contains information about the SAP HANA restore job. ## Examples ::: example ### Getting Action Log Items for Specific Restore Job This example gets action log items for the specified restore job. ``` $session = Get-VEHANARestoreSession $system = Get-VEHANASystem $session[0] $database = (Get-VEHANADatabase $system)[0] $restorejob = Start-VEHANADatabaseRestore -Database $database Get-VEHANARestoreJobActionLogItems -Session $session -RestoreJob $restoreJob ``` Perform the following steps: 1. Run the [`Get-VEHANARestoreSession`](get-vehanarestoresession.md) cmdlet. Save the result to the `$session` variable. The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session. In this example, it is the first restore session in the array. 2. Run the [`Get-VEHANASystem`](get-vehanasystem.md) cmdlet. Set the first restore session in the `$session` variable as the `Session` parameter value. 3. Run the [`Get-VEHANADatabase`](get-vehanadatabase.md) cmdlet and set the `$system` variable as the `System` parameter value. Select the necessary database returned by this command and save it to the `$database` variable. In this example, it is the first database in the array. 4. Run the [`Start-VEHANADatabaseRestore`](start-vehanadatabaserestore.md) cmdlet and set the `$database` variable as the `Database` parameter value. Save the result to the `$restorejob` variable. 5. Run the `Get-VEHANARestoreJobActionLogItems` cmdlet. Set the `$session` variable as the `Session` parameter value and set the `$restorejob` variable as the `RestoreJob` parameter value. ::: ## Related Commands - [`Get-VEHANARestoreSession`](get-vehanarestoresession.md) - [`Get-VEHANASystem`](get-vehanasystem.md) - [`Get-VEHANADatabase`](get-vehanadatabase.md) - [`Start-VEHANADatabaseRestore`](start-vehanadatabaserestore.md)