# Demo ERP system For evaluation and demo purposes several web services are available at [http://demo.powergate.online](http://demo.powergate.online/PGS/ERP/BomService).\ They are used by the delivered sample [Vault ERP Integration](), whereby **all Vault users that are connected to the same Vault** on the same Vault Server (ADMS) **share the same test data**. :::{admonition} Testdata will be removed :class: warning As this ERP system should only be used for demo and testing purposes, the stored data **will be be removed** after about 30 days. ::: The following OData services are based on the [powerGateServer ERP plugin]() and are publicly accessible: - MaterialService - `http://demo.powergate.online/PGS/ERP/MaterialService` - BomService - `http://demo.powergate.online/PGS/ERP/BomService` - DOCUMENT_INFO_RECORD_SRV - `http://demo.powergate.online/PGS/ERP/DOCUMENT_INFO_RECORD_SRV` :::{admonition} Requirement :class: info The following domain needs to be accessible on TCP port 80 *'demo.powergate.online'* ::: ### Testing This demo system can be used to try out the sample [Vault ERP Integrations](), the []() or the [](): 1. Open the *powerGate Console* shortcut 2. **Connect to the Vault** for which you want to start a new test session: ```powershell Import-Module powerVault Open-VaultConnection -Server '' -Vault '' -User 'Guest' ... ``` 2. **Connect to the Demo ERP system** using the provided `$demoErpConnect` variable, which enables a new test session for your Vault: ```powershell Connect-ERP -Service 'http://demo.powergate.online:8080/PGS/ERP/BomService' -OnConnect $global:demoERPconnect ``` 3. Retrieve the available entity sets: ```powershell Get-ERPEntitySets <# Service Name EntityType ------- ---- ---------- http://demo.powergate.online/PGS/ERP/BomService BomItems BomItem http://demo.powergate.online/PGS/ERP/BomService Boms Bom #> ```