Questions tagged [myob]

MYOB is a company that produces a number of accounting packages aimed at different company sizes and requirements (e.g. General Accounting, Inventory, Payroll, Payments, ...). It offers a programmatic interface for querying and importing information through a pseudo SQL ODBC driver (AccountRight V19) and more recently through REST based APIs (AccountRight Live, Essentials, Cashbook, ...).

MYOB is a company that produces a number of accounting packages aimed at different company sizes and requirements (e.g. General Accounting, Inventory, Payroll, Payments, ...). It offers a programmatic interface for querying and importing information through a pseudo SQL ODBC driver (AccountRight V19) and more recently through REST based APIs (AccountRight Live, Essentials, Cashbook, ...).

More information about developing against MYOB products can be found in their developer portal - http://developer.myob.com/ and on samples provided on github - https://github.com/MYOB-Technology

79 questions
0
votes
2 answers

Myob - AccountRight Live Api v2 Skip login screen

I am using accountright Live api v2 by MYOB. I want to get access token without going to login screen. When I send a CURL request to obtain access token i am redirected to myob login screen, how to skip that? The request I am sending is to…
Passionate
  • 73
  • 2
  • 8
0
votes
1 answer

SQl query across 2 tables with conditional

Using the MYOB database I want to query across two tables. I have the following inner join occuring and it's linked between the ShippingMethodID. INNER JOIN ShippingMethods ON Sales.ShippingMethodID = ShippingMethods.ShippingMethodID There is a…
Pete
  • 683
  • 1
  • 8
  • 17
0
votes
0 answers

32 Bit ODBC ( MYOB ) Runs under IIS / ASP.NET MVC on one Machine but not another

Spent a few hours on this. 2 seemingly identical machines with the same code , same operating system. I am trying to open a 32 bit ODBC connection ( MYOB ) that uses a .exe file to access it. It works on one machine fine - but not the other. I have…
Martin Thompson
  • 3,415
  • 10
  • 38
  • 62
0
votes
2 answers

ODBC to SQL DATABASE using C# ADO.net

I have MYOB (AccountingSoftware) Database which I can read using ODBC. Now I have dataset containing all tables of MYOB database. What is best way that I can convert this Dataset into SQL Database. Where all tables are created automatically and data…
SOF User
  • 7,590
  • 22
  • 75
  • 121
0
votes
2 answers

MYOB ODBC Import Customer - address details not importing

I am using the MYOB ODBC Driver to insert new customer records into MYOB (AccountRight Premier V19) from a .NET application but the records are not being imported correctly - specifically the address part of the insert is not working correctly and…
kseeley
  • 63
  • 6
0
votes
1 answer

Unable to retrieve new customer from MYOB SDK

I am trying something like customer.Uid = Guid.NewGuid() // set other properties myCustomerService.Insert(myCompanyFile, myobCustomerContact, myCredentials ); myobCustomerContact = myCustomerService.Get(myCompanyFile,…
Kirsten
  • 15,730
  • 41
  • 179
  • 318
0
votes
1 answer

How can I integrate MYOB APIs with Magic XPA?

I am looking to integrate MYOB desktop services with Magic XPA 3.0. Can anyone help about this?
Anupam Shukla
  • 35
  • 2
  • 9
0
votes
1 answer

How to create Departments and assign users to each in Seratec Central 8.2.1

I'm trying to create new Departments and assign my company users to each department without touching the Database and only using the Central window. However I cannot edit existing department or add any new department to it. It would be great, if…
nikericky
  • 1
  • 1
0
votes
1 answer

MYOB oauthService.GetTokensAsync not showing dialog

As a result of my question about TaskCompletionSource I tried a similar technique for getting the tokens private t.Task GetOAuthTokens() { var tcs = new t.TaskCompletionSource(); t.Task.Run( …
Kirsten
  • 15,730
  • 41
  • 179
  • 318
0
votes
1 answer

callback based async method with multiple parameters to awaitabletask

I have the following code to connect to MYOB's SDK var cfsCloud = new CompanyFileService(_configurationCloud, null, _oAuthKeyService); cfsCloud.GetRange(OnComplete, OnError); where private void OnComplete(HttpStatusCode statusCode,…
Kirsten
  • 15,730
  • 41
  • 179
  • 318
0
votes
2 answers

Refactoring api calls to use await

want to update a C# Winforms application to use await. The application calls the MYOB Accountright API via an SDK. I am using Dot Net Framework 4.5.1 The old code is like this public void GetItems( CompanyFile companyFile ) { …
Kirsten
  • 15,730
  • 41
  • 179
  • 318
0
votes
1 answer

Installation of MYOB ODBC Driver fails on x64

Using either the v19 test drive software to install Premier v19 or the NZ_ODBCv7013.exe file to install the v7 ODBC driver. Both of these methods work on 32 bit systems but fail to install anything on x64 - there were no error msgs either. Am I…
Mark Plumpton
  • 506
  • 3
  • 10
  • 20
0
votes
1 answer

MYOB ODBC (Invoice generation with correct Tax calculation)

We are connecting to MYOB AccountRight Enterprise v19 with ODBC direct v10. We are creating Invoices in MYOB using the same. We sent only the tax code i.e. GW in the ODBC call to MYOB, however, in that case no tax got calculated in the Invoice…
0
votes
1 answer

MYOB Import "amount paid"

I seem to have found an anomaly with MYOB (I've actually found many anomalies, this is just another one that is doing my head in...) I am generating a file with all invoices from the web system - no problems. If an invoice has 3 lines and the…
php-b-grader
  • 3,191
  • 11
  • 42
  • 53
0
votes
1 answer

How to update DataFileInformation Table using ODBC

I need to ask you that can i update DataFileInformation table using ODBC in MYOB. I have searched their document but not find any information regarding that. Thanks Nasir