Using the MYOB ODBC driver, can I update invoices? - myob

I'm using the MYOB ODBC driver to export some job and charging details from a custom application. Is there any way to update an existing invoice using ODBC, or can I only insert new ones?

I donot think you can by using the import_xxxx tables via the MYOB ODBC Driver, you can only import by using the MYOB Import wizard.

MYOB does not allow updating sales invoices or purchase invoices. You can only insert them by MYOB ODBC. Moreover, it only allows updating Cards (Customers, Suppliers, Employees and Jobs ).

Related

Integration of Oracle DB or APEX with Abinitio

How to integrate Oracle DB/APEX with abinitio.
Scenario : I have a Abinitio code which generates the monthly report. So being database developer i wants to run same code which is in abinitio and generates monthly report. So i am looking for any connector between Abinitio and oracle DB / APEX.
To integrate Oracle with another database you have different options
JDBC (you have to develop this function in JAVA as ETL) (Use a software like Talend or another ETL)
Oracle Link Database (You have to ask your DBA if it's possible)
Expose the info in JSON and make a web service call (Develop a web service in java, node, python, as so on) and consume the json exposed.
If I were you, I would use the option number 3 because It's cleaner option.
If you need more info let me know asap.
Preliminary step: make sure that JDBC drivers is installer and accessible
create DBC file for specify connection to Oracle DBMS.
use m_db for generate DBC template and also for test connection from Shell or GDE

Export data from sharepoint database

In my sharepoint site, users save some data. Now I want to export the data. I know Export to Excel is available under List tab, but I want to do this in another way and I decided to access sharepoint database directly.
In SQL Server Management, I opened my site's database and there are many tables. In which table user data stored? There is no table named with my site's name.
I opened some tables but couldn't find the data.
There are couple of ways, but using SQL directly in case of SharePoint is bad.
You can use:
Export to Excel
SQL Server Integration with SharePoint List Adapter
SharePoint .NET Server, CSOM, JSOM, and REST APIs
Sharepoint Search
Direct SQL queries on SharePoint databases Part I, Part II

Determining how Dynamics CRM-2011 custom entity is stored in SQL Server CCRM database

A custom entity for storing email templates is created in my Dynamics CRM - 2011 on-premise instance. I can see the entity in CRM instance but not able to find it in SQL Server CCRM database. Any help on how to query the entity schema in DB?
I have to move all the templates stored to a new on-premise CRM instance. Is there a better way to achieve this?
Thanks.
You should be able to find two tables:
[YourOrganization_MSCRM].[dbo].[EntitySchemaNameBase]
[YourOrganization_MSCRM].[dbo].[EntitySchemaNameExtensionBase]
Copying data directly into the CRM SQL database is unsupported. In general, the only supported direct use of CRM's SQL database is to read from the Filtered Views and create custom indexes.
It would be best to copy the templates to the new instance in a supported way. Supported ways to import data into CRM include writing custom code against the SOAP or REST Organization Services, using an ETL tool that provides a Dynamics CRM Connector (such as Scribe or KingswaySoft on SSIS), and the Bulk Import Wizard.
Depending on how much data you're moving, the easiest way to go is probably to export to Excel and import into the new system via the Bulk Import Wizard.
Otherwise, the CRM 2011 SDK provides the DLL's and examples for writing C# to hit the SOAP service, as well as an example JavaScript library for using the REST endpoint (sdk.rest.js).

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
The DataFileInformation table is read-only, so no you can't alter company file settings or company information using the ODBC driver. The version of MYOB you are targeting runs an ISAM database, so the functionality that the ODBC driver exposes is really a set of virtual mappings or services.

Import WebTrends Data to SQL Server Using SSIS

I need to import all the webtrends data to my local sql server database. on top of that i need to build reports.
I am very new to Webtrends, so can some one suggest me how to import the WebTrends data to my local DB Server.
Just for context - I work at Webtrends.
My first questions is are you using the site software version or the ondemand SaaS version? It also depends on which version.
If you're using the latest version of software the best way to go about getting things from the Webtrends Analytics product data store is to use the ODBC connector that is available for the product. This you can download from the web UI and it installs with a single click. I can provide more documentation, just send me an e-mail and I'll send you the actual documentation file on this.
The other method, and this is currently in beta and available only to OnDemand customers is to use the web services (REST based) that we've created. Check out the documentation here: http://product.webtrends.com/dxapi/index.html

Resources