invantive-sql

Insert Invoice into Exact Online

人盡茶涼 提交于 2019-12-24 07:41:43
问题 I want to insert an Invoice into Exact Online. When I insert the invoice manual, it works fine, but with the Invantive Control tool I get an error: insert into UploadXMLTopics ( topic , payload , division_code , orig_system_reference , orig_system_group ) select 'Invoices' , '<?xml version="1.0" encoding="utf-8"?>' || '<eExact xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="eExact-XML.xsd">' || ' <Invoices>' || ' <Invoice>' || ' <Journal code="70"/>' || '

'Use select' notation to specify multiple partitions of Exact Online data container

限于喜欢 提交于 2019-12-12 08:57:29
问题 I'd like to select an active partition in the Data Hub. Normally I would use the following statement: INVANTIVE> use 1552839 2> Exclamation itgendhb077: Error in Invantive Data Hub. Database '1552839' does not exist. Make sure that the name is entered correctly. That gives an error. I noticed when I use the alias for my Exact Online Connection it does work so: INVANTIVE> use 1552839@eol 2> itgendhb018: 0 Rows Affected (111 ms) But I'd like to do the following, selecting the divisions I want

Exact Online query with joins runs more than 15 minutes

送分小仙女□ 提交于 2019-12-12 04:20:27
问题 I am using the following query: set use-result-cache false set use-http-cache false create or replace table settings@inmemorystorage as select '29676ec4-61b5-45eb-a5a3-6feffe03d1d3' sor_id , '[[Exploded]]' exploded_signal_text , '{res:itgen_eol_sales_order}' entity_name_singular , '{res:itgen_eol_sales_orders}' entity_name_plural from me select ... from settings@inmemorystorage stg left outer join ExactOnlineREST..salesorders sor on sor.orderid = stg.sor_id left outer join ExactOnlineREST.

'Use select' notation to specify multiple partitions of Exact Online data container

痴心易碎 提交于 2019-12-04 16:27:18
I'd like to select an active partition in the Data Hub. Normally I would use the following statement: INVANTIVE> use 1552839 2> Exclamation itgendhb077: Error in Invantive Data Hub. Database '1552839' does not exist. Make sure that the name is entered correctly. That gives an error. I noticed when I use the alias for my Exact Online Connection it does work so: INVANTIVE> use 1552839@eol 2> itgendhb018: 0 Rows Affected (111 ms) But I'd like to do the following, selecting the divisions I want from a SQL table, that doesn't work: use select division_code from dc.rs.selected_admins@sql An