Demo ERP system

For evaluation and demo purposes several web services are available at http://demo.powergate.online.
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.

Testdata will be removed

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

Requirement

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 .NET Library or the Cmdlets:

  1. Open the powerGate Console shortcut

  2. Connect to the Vault for which you want to start a new test session:

    Import-Module powerVault
    Open-VaultConnection -Server '<Your Vault Server>' -Vault '<Your Vault name>' -User 'Guest' ...
    
  3. Connect to the Demo ERP system using the provided $demoErpConnect variable, which enables a new test session for your Vault:

    Connect-ERP -Service 'http://demo.powergate.online:8080/PGS/ERP/BomService' -OnConnect $global:demoERPconnect
    
  4. Retrieve the available entity sets:

    Get-ERPEntitySets
    <#
     Service                                         Name     EntityType
     -------                                         ----     ----------
     http://demo.powergate.online/PGS/ERP/BomService BomItems BomItem
     http://demo.powergate.online/PGS/ERP/BomService Boms     Bom
    #>