--- title: "New-VBRSAPHANAOptions" description: "Creates the SAP HANA backup settings for application backup policies. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet applies to application backup policies for Veeam Plug-In for SAP HANA." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrsaphanaoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Plug-Ins for Enterprise Applications, MongoDB Backup and Epic EHR System Protection > Working with Managed Veeam Plug-Ins, MongoDB Backup and Epic EHR System Protection > Application Backup Policy Settings for Veeam Plug-In for SAP HANA > New-VBRSAPHANAOptions" dateModified: "2026-08-19" --- # New-VBRSAPHANAOptions ## Short Description Creates the SAP HANA backup settings for application backup policies. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRSAPHANAOptions [-ParallelChannelsCount ] [-UseCustomPrefix] [-Prefix ] [] ``` ## Detailed Description This cmdlet applies to application backup policies for Veeam Plug-In for SAP HANA. This cmdlet creates SAP HANA backup settings. You can run this cmdlet to allow Veeam Plug-In to send application backups to the target storage using several parallel data channels. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

ParallelChannelsCount

Specifies the number of data channels that can be assigned.

Permitted values: 1 to 32.

Int32

False

Named

False

Prefix

Specifies the custom prefix for backup files on the SAP HANA side.

Provide this parameter together with the UseCustomPrefix parameter.

String

False

Named

False

UseCustomPrefix

Defines that Veeam Plug-In for SAP HANA will use a custom prefix for backup files on the SAP HANA side instead of the standard backup prefixes (COMPLETE_DATA_BACKUP, DIFF_DATA_BACKUP and INC_DATA_BACKUP).

If you provide this parameter, specify the prefix using the Prefix parameter.

SwitchParameter

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRSAPHANAOptions` object that defines SAP HANA backup settings. ## Examples ::: example ### Creating SAP HANA Backup Settings for Application Backup Policies for Veeam Plug-In for SAP HANA This command creates a SAP HANA backup settings for application backup policies for Veeam Plug-In for SAP HANA. The policy will send application backups to the target storage using 3 parallel data channels. ``` New-VBRSAPHANAOptions -ParallelChannelsCount 3 ``` :::