# Supported SAP Ariba elements

> AribaWeb-based interfaces contain a variety of specific controls with which you can interact, as exemplified on this page.

AribaWeb-based interfaces contain a variety of specific controls with which you can interact, as exemplified on this page.

## SAP Radio button

Radio buttons present a set of options. A list contains at least two radio buttons, and you can only select one.

!['SAP Radio Buttons' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-sap-radio-buttons-image-608500-913f44f7.webp)

Sample selector:

```
<webctrl aw-label='Project:/Full Project' aw-name='RadioButton' tag='DIV' />
```

Use the Radio Button control with the [Check/Uncheck](https://docs.uipath.com/activities/other/latest/ui-automation/n-check) activity.

## SAP Checkbox

Checkbox elements represent a list of multiple choices. One, more, or no options can be selected.

!['sap checkbox' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-sap-checkbox-image-612150-2167513f.webp)

Sample selector:

```
<webctrl aw-label='Exempt from Backup Withholding:' aw-name='Checkbox' tag='DIV' />
```

Use the Checkbox control with the [Check/Uncheck](https://docs.uipath.com/activities/other/latest/ui-automation/n-check) activity.

## SAP Dropdown

Dropdown lists allow you to select single items from predefined lists.

!['sap dropdown' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-sap-dropdown-image-608542-10526466.webp)

Sample selector:

```
<webctrl aw-label='Approval Status:' aw-name='Dropdown' tag='DIV' />
```

Use the Dropdown control with the [Select Item](https://docs.uipath.com/activities/other/latest/ui-automation/n-select-item) activity.

## SAP Chooser

Chooser controls are used for multiple value selection.

!['SAP Chooser' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-sap-chooser-image-608556-20b912e5.webp)

Sample selector:

```
<webctrl aw-label='Country/Region:' aw-name='Chooser' tag='DIV' />
```

Use the Chooser control with the [Select Item](https://docs.uipath.com/activities/other/latest/ui-automation/n-select-item) or the [Select Multiple Items](https://docs.uipath.com/activities/other/latest/ui-automation/select-multiple-items) activity.

## SAP Popup menu

Popup Menu controls are used for single selections in a dynamic popup menu.

!['SAP Popup menu' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-sap-popup-menu-image-608564-8fa64a93.webp)

Sample selector:

```
<webctrl aw-label='Create' aw-name='PopupMenuLink' tag='A' />
```

Use the Popup Menu control with the [Select Item](https://docs.uipath.com/activities/other/latest/ui-automation/n-select-item) activity.

## SAP Data tables

Data Tables contain tabular data information.

!['SAP data table' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-sap-data-table-image-608720-7f436277.webp)

Sample selector:

```
<webctrl aw-name='DataTable' tag='TABLE' />
<webctrl aw-collabel='Status' aw-tablerow='24' tag='TD' />
```

Use the Data Table control with common activities, such as [Click](https://docs.uipath.com/activities/other/latest/ui-automation/n-click), [Type Into](https://docs.uipath.com/activities/other/latest/ui-automation/n-type-into), [Get Text](https://docs.uipath.com/activities/other/latest/ui-automation/n-get-text), or [Check](https://docs.uipath.com/activities/other/latest/ui-automation/n-check).

Supported and unsupported activities and features:

* [Extract Table Data](https://docs.uipath.com/activities/other/latest/ui-automation/n-extract-data) activity – supported.
* [Expand Tree](https://docs.uipath.com/activities/other/latest/ui-automation/nsap-expand-tree) activity – supported for hierarchical tables.
* [Table Cell Scope](https://docs.uipath.com/activities/other/latest/ui-automation/nsap-table-cell-scope) activity – unsupported.
* Autoscroll feature – supported; you can identify elements by their row number or row path, even if they are not yet loaded in the table.

## SAP Input fields

Use Input fields controls with the [Type Into](https://docs.uipath.com/activities/other/latest/ui-automation/n-type-into) activity.

### Text fields

Text fields are used to capture single-line input.
  !['Text fields' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-text-fields-image-608981-186200f4.webp)

Sample selector:

```
<webctrl aw-label='Name:' aw-name='TextField' tag='INPUT' />
```

### Text areas

Text ares are used to capture multi-line input.

!['Text areas' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-text-areas-image-608988-210afe10.webp)

Sample selector:

```
<webctrl aw-label='Description:' aw-name='TextArea' tag='TEXTAREA' />
```

### Password fields

Password fields are used to capture secure input.

!['Password field' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-password-field-image-608998-94160cee.webp)

Sample selector:

```
<webctrl aw-label='Password:' aw-name='PasswordField' tag='DIV' />
```

## SAP Text button

Text buttons are used to display standard buttons with text.

!['SAP text button' image](https://dev-assets.cms.uipath.com/assets/images/activities/activities-sap-text-button-image-609006-5152b2cd.webp)

Sample selector:

```
<webctrl aw-label='Create' aw-name='TextButton' tag='BUTTON' />
```

Use the Text button control with the [Click](https://docs.uipath.com/activities/other/latest/ui-automation/n-click) activity.
