Metadata-Version: 2.4
Name: sap_functions
Version: 1.2
Summary: A utility package for sap automations
Project-URL: Homepage, https://github.com/RA4Z/sap_functions
Project-URL: Repository, https://github.com/RA4Z/sap_functions
Project-URL: Issues, https://github.com/RA4Z/sap_functions/issues
Author-email: Gabriel Volles Marinho <gabrielvmarinho1711@gmail.com>, Robert Aron Zimmermann <robert.raz@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: pywin32==311
Description-Content-Type: text/markdown


# sap_functions
Library with utility classes and functions to facilitate the development of SAP automations in python.

This module is built on top of SAP Scripting and aims to making the development of automated workflows easier and quicker.

## Implementation example
```python
from sap_functions import SAP

sap = SAP()
sap.select_transaction("COOIS")
```
This script:

Checks for existant SAP GUI instances.
Connects to that instance.
Write "COOIS" in the transaction field.
# Classes overview

## Module `sap_functions.base_sap_connection`

### Class `BaseSapConnection` 

**Methods:**
- `__init__(self, window: int = 0)`: Initialize self.  See help(type(self)) for accurate signature.


## Module `sap_functions.grid`

### Class `Grid` 

**Methods:**
- `__init__(self, grid_obj: CDispatch, session: CDispatch)`: Initialize self.  See help(type(self)) for accurate signature.
- `click_cell(self, index: int, column_id: str) -> None`: This function will select and double-click in a SAP Grid cell
- `count_rows(self) -> int`: This function will count all the rows in the current Grid
- `get_cell_value(self, index: int, column_id: str) -> str`: Get the value of a specific Grid cell
- `get_column_id(self, column_name: str) -> str`: This function will return the column id based on its column name
- `get_columns(self, *column_id: str) -> Union`: Return each column content
- `get_content(self) -> dict`: Store all the content from a SAP Grid, the data will be stored and returned in a dictionary with 'header' and
- `get_grid_columns(self, *column_id: str) -> Union`: Deprecated: use `Grid.get_columns` instead.
- `get_grid_content(self) -> dict`: Deprecated: use `Grid.get_content` instead.
- `get_grid_row(self, row: int) -> list`: Deprecated: use `Grid.get_row` instead.
- `get_row(self, row: int) -> list`: Get a grid row content
- `press_button(self, field_name: str, skip_error: bool = False) -> None`: This function will press any button in the SAP Grid component
- `press_nested_button(self, *nested_fields: str, skip_error: bool = False) -> None`: This function needs to receive several strings that have the texts that appear written in the button destination
- `select_all_content(self) -> None`: Select all the table, using the SAP native function to select all items
- `select_column(self, column_id: str) -> None`: Select a specific column
- `select_layout(self, layout: str) -> None`: This function will select the desired Grid Layout when a SAP select Layout Pop up is open


## Module `sap_functions.label`

### Class `Label` 

**Methods:**
- `__init__(self, session: CDispatch, window: int = 0)`: Initialize self.  See help(type(self)) for accurate signature.
- `get_all_screen_labels(self) -> list`: This function will return each label row in the SAP Screen
- `get_content(self) -> dict`: Store all the content from a SAP Label, the data will be stored and returned in a dictionary with
- `get_label_content(self) -> dict`: Deprecated: use `Label.get_content` instead.


## Module `sap_functions.node`

### Class `Node` 

**Methods:**
- `__init__(self, node_obj: CDispatch)`: Initialize self.  See help(type(self)) for accurate signature.
- `click_selected_node(self)`: Double-click the Node selected previously
- `expand_selected_node(self)`: Expand the Node selected previously
- `get_content(self) -> list`: Get all Nodes names in a list format
- `get_node_content(self) -> list`: Deprecated: use `Node.get_content` instead.
- `select_node(self, node_text: str, target_index: int = 0, skip_error: bool = False)`: Select a specific Node based on the text inside of it


## Module `sap_functions.sap`

### Class `SAP` 

**Methods:**
- `__init__(self, window: int = 0) -> None`: Initialize self.  See help(type(self)) for accurate signature.
- `change_active_tab(self, selected_tab: Union, skip_error: bool = False) -> None`: This function will try to select the transaction tab using the number "selected_tab"
- `choose_text_combo(self, field_name: str, desired_text: str, target_index: int = 0, selected_tab: Union = 0, skip_error: bool = False) -> None`: This function has the ability to choose a specific text that is found within a combo box component
- `clean_all_fields(self, selected_tab: Union = 0, skip_error = False) -> None`: Clean all the input fields in the actual screen
- `find_text_field(self, field_name: str, selected_tab: Union = 0) -> bool`: Verify if a text exists in the SAP screen
- `flag_field(self, field_name: str, desired_operator: bool, target_index: int = 0, selected_tab: Union = 0, skip_error: bool = False) -> None`: This function can flag and unflag checkboxes based on the field_name, it will flag/unflag the checkbox in the
- `flag_field_at_side(self, field_name: str, desired_operator: bool, side_index: int = 0, target_index: int = 0, selected_tab: Union = 0, skip_error: bool = False) -> None`: This function can flag and unflag checkboxes based on the field_name, it will flag/unflag the checkbox at the
- `get_footer_message(self) -> str`: Get the message text that is in the SAP Footer
- `get_grid(self, target_index: int = 0) -> Grid`: Get the SAP Grid object from the current SAP Grid Window
- `get_label(self) -> Label`: Get the SAP Label object from the current SAP Label Window
- `get_node(self, target_index: int = 0) -> Node`: Get the SAP Node object from the current SAP Node Window
- `get_table(self, target_index: int = 0) -> Table`: Get the SAP Table object from the current SAP Table Window
- `get_text_at_side(self, field_name, side_index: int, target_index: int = 0, selected_tab: Union = 0) -> str`: This function will return the text next to the text received as a parameter
- `get_tree(self) -> Tree`: Get the SAP Tree object from the current SAP Tree Window
- `insert_variant(self, variant_name: str, skip_error: bool = False) -> None`: This function will try to press the "Get Variant" button in the transaction, after that it will overwrite the
- `multiple_selection_field(self, field_name: str, target_index: int = 0, selected_tab: Union = 0, skip_error: bool = False) -> None`: This function will press the "Multiple Selection" button in the respective field
- `multiple_selection_paste_data(self, data: list, delete_values: bool = False, skip_error: bool = False) -> None`: With the Multiple Selection window open, it's possible to execute this function to easily paste all the data
- `navigate_into_menu_header(self, *nested_path: str) -> None`: This function needs to receive several strings that have the texts that appear written in the header destination
- `open_focused_field_modal(self)`: This function will open the modal of a focused field
- `option_field(self, field_name: str, target_index: int = 0, selected_tab: Union = 0, skip_error: bool = False) -> None`: This function will select an option field
- `press_button(self, field_name: str, target_index: int = 0, selected_tab: Union = 0, skip_error: bool = False) -> None`: Press any button in the SAP screens, except in shells and tables components
- `run_actual_transaction(self, skip_error: bool = False) -> None`: Run the active transaction, this function will try to press Enter, and after that will try to press F8
- `save_file(self, file_name: str, path: str, option: int = 0, type_of_file: str = 'txt', skip_error: bool = False) -> None`: This function will easily navigate into SAP menu header to save the current transaction data, commonly used to
- `select_main_screen(self, skip_error: bool = False) -> None`: Navigate to the SAP main Screen
- `select_transaction(self, transaction: str) -> None`: Navigate to a transaction in SAP GUI
- `set_focus(self, field_name, side_index: int = 0, target_index: int = 0, selected_tab: Union = 0)`: This function will select/focus in the field with the text received as a parameter
- `write_text_field(self, field_name: str, desired_text: str, target_index: int = 0, selected_tab: Union = 0, skip_error: bool = False) -> None`: This function will write the desired text in the respective input at the side of the field name
- `write_text_field_until(self, field_name: str, desired_text: str, target_index: int = 0, selected_tab: Union = 0, skip_error: bool = False) -> None`: This function will write the desired text in the "until" field in the respective input at the side of the


## Module `sap_functions.table`

### Class `Table` 

**Methods:**
- `__init__(self, table_obj: CDispatch, session: CDispatch, target_index: int, window: int = 0)`: Initialize self.  See help(type(self)) for accurate signature.
- `_return_table(self)`: 
- `click_cell(self, row: int, column: int, skip_error: bool = False) -> None`: Focus in a cell and double-click in it, using the relative visible table row. The desired cell needs to be
- `count_visible_rows(self, skip_error: bool = False) -> int`: Count all the visible rows from a SAP Table
- `flag_cell(self, row: int, column: int, desired_operator: bool, skip_error: bool = False) -> None`: Flags a checkbox in a SAP Table cell, using the relative visible table row. The desired cell needs to be
- `get_cell_value(self, row: int, column: int, skip_error: bool = False) -> str`: Return the content of a SAP Table cell, using the relative visible table row. The desired cell needs to be
- `get_content(self, skip_error: bool = False) -> dict`: Store all the content from a SAP Table, the data will be stored and returned in a dictionary with 'header' and
- `get_table_content(self, skip_error: bool = False) -> dict`: Deprecated: use `Table.get_content` instead.
- `select_entire_row(self, absolute_row: int, skip_error: bool = False) -> None`: Select the entire row from a SAP Table, it uses the absolute table row. The desired cell needs to be
- `unselect_entire_row(self, absolute_row: int, skip_error: bool = False) -> None`: Unselect the entire row from a SAP Table, it uses the absolute table row. The desired cell needs to be
- `write_cell_value(self, row: int, column: int, desired_text: str, skip_error: bool = False) -> None`: Write any value in a SAP Table cell, using the relative visible table row. The desired cell needs to be


## Module `sap_functions.tree`

### Class `Tree` 

**Methods:**
- `__init__(self, tree_obj: CDispatch)`: Initialize self.  See help(type(self)) for accurate signature.
- `get_columns(self, *column_text: str) -> Union`: Return each column content
- `get_content(self, skip_error: bool = False) -> dict`: Store all the content from a SAP Tree, the data will be stored and returned in a dictionary with 'header' and
- `get_tree_columns(self, *column_text: str) -> Union`: Deprecated: use `Tree.get_columns` instead.
- `get_tree_content(self, skip_error: bool = False) -> dict`: Deprecated: use `Tree.get_content` instead.


## Module `sap_functions.utils`

### Top-level Functions

- `active_window(sap) -> int`: 
- `count_and_create_sap_screens(connection: CDispatch, window: int)`: 
- `generic_conditionals(sap, index: int, children: CDispatch, objective: str) -> bool`: 
- `get_sap_connection() -> CDispatch`: 
- `scroll_through_fields(sap, extension: str, objective: str) -> bool`: 
- `scroll_through_grid(sap, extension: str) -> Union`: 
- `scroll_through_node(sap, extension: str) -> Union`: 
- `scroll_through_table(sap, extension: str) -> Union`: 
- `scroll_through_tabs_by_id(sap, area: CDispatch, extension: str, selected_tab: int) -> CDispatch`: 
- `scroll_through_tabs_by_name(sap, area: CDispatch, extension: str, tab_name: str) -> CDispatch`: 
- `scroll_through_tree(sap, extension: str) -> Union`: 
