sage-erp

sData REST APIs for sage 100 ERP

扶醉桌前 提交于 2019-12-24 13:57:41
问题 I have a business partner account. And, I have setup sage SData and Sage ERP 100 on window server machine. I can access some resources in the browser like: https://sage.lvh.me/SData/MasApp/MasContract/ABX/AR_Customer It returns a huge file of XML. My problem is that, I need to integrate Sage ERP with my Rails application. Which will fetch products from Sage ERP and also make order for those products from rails application? So, I need a complete sample API request which accepts some parameters

Create XML (using XML Schema) with Scribe job: XML element must be omitted if specific attribute has value that does not fit the criteria

北城以北 提交于 2019-12-08 06:01:51
问题 I have written a Scribe Insight job, which transfers data from Sage ERP MAS to XML file. It runs successfully. Now, one more requirement got added to the job. My current XML file looks like: <?xml version="1.0" encoding="UTF-8"?> <Entries> <Organization MemberName="00-1234567" Comments="XYZ " FullName="XYZ Name" OrgIdType="XYZ Type"> <RelatedTo RelationType="PART_OF"> <Group MemberName="00-1234567"/> </RelatedTo> <MemberInfo DynamicEntryType="CustomerInfo" InfoType="CustomerInfo.Independent"

Integrate Sage Line 50 with windows application

£可爱£侵袭症+ 提交于 2019-12-04 11:43:42
问题 I have to integrate C# Windows application with Sage Line 50. (To send all invoice details from application to Sage). I searched on Google and most of the places it says to integrate Sage Line 50, we need to use Sage development kit (SDK). But it's not free. We already bought Sage Line 50. But now I want to know how we can integrate our accounting software with Sage Line 50? I found this URL http://crmsageconnector.codeplex.com/ they use Microsoft Dynamics CRM Connector for Sage Line 50 to

Could not add the table (

那年仲夏 提交于 2019-12-02 07:37:36
问题 The following code works in Sage200. SELECT bcs.BomReference ,bcs.DateTimeCosted ,bcs.TotalCost FROM ( SELECT BomReference ,Max(DateTimeCosted) AS MaxDate FROM NDM_Sage200.dbo.BomCostSession BomCostSession GROUP BY BomReference ) AS ldc INNER JOIN BomCostSession AS bcs ON bcs.BomReference = ldc.BomReference AND bcs.DateTimeCosted = ldc.MaxDate ORDER BY BomReference As soon as I try extending this with an INNER JOIN to another table to get more columns (using BomReference ), I get the error

Could not add the table (

亡梦爱人 提交于 2019-12-02 03:51:18
The following code works in Sage200. SELECT bcs.BomReference ,bcs.DateTimeCosted ,bcs.TotalCost FROM ( SELECT BomReference ,Max(DateTimeCosted) AS MaxDate FROM NDM_Sage200.dbo.BomCostSession BomCostSession GROUP BY BomReference ) AS ldc INNER JOIN BomCostSession AS bcs ON bcs.BomReference = ldc.BomReference AND bcs.DateTimeCosted = ldc.MaxDate ORDER BY BomReference As soon as I try extending this with an INNER JOIN to another table to get more columns (using BomReference ), I get the error message: Could not add the table ( . See below for example of modified code; I have to use 2 joins to get