diff --git a/.gitignore b/.gitignore index 7c0f1ee72..8e25bef26 100644 --- a/.gitignore +++ b/.gitignore @@ -159,4 +159,4 @@ sap_netweaver_rfc # Databricks-connect .databricks-connect -.dotnet \ No newline at end of file +.dotnet diff --git a/CHANGELOG.md b/CHANGELOG.md index fe6a083b3..b98535865 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ### Added +- Added `GetSalesQuotationData` view in `BusinessCore` source. ### Fixed diff --git a/viadot/sources/business_core.py b/viadot/sources/business_core.py index 3495cecd9..bd02b00f0 100644 --- a/viadot/sources/business_core.py +++ b/viadot/sources/business_core.py @@ -150,6 +150,7 @@ def to_df(self, if_empty: Literal["warn", "fail", "skip"] = "skip") -> pd.DataFr "GetSalesInvoiceData", "GetSalesReturnDetailData", "GetSalesOrderData", + "GetSalesQuotationData", ]: raise APIError(f"View {view} currently not available.")