ArchiveJanuary 2013

How to enable .net to access Quickbooks company file

H

To do this You should have : A) QuickBooksEnterprise (here we used 13) B) QBSDK  (here we used  12.0) c) Microsoft Visual Studio 2008 How we can do ? a.  Open Connection to QuickBooks b.  Begin session with a company file c.  Construct set of request messages d.  Send request to QuickBooks e.  Receive response messages f.   End session g.  Close connection a. Open Connection to QuickBooks :...

How to implement Paging in Apex Salesforce

H

Put this code in your class & replace your query for myRequestsSetCon: public ApexPages.StandardSetController myRequestsSetCon { get { if(myRequestsSetCon == null) { myRequestsSetCon = new ApexPages.StandardSetController(Database.getQueryLocator([ select Id, Name, Merchant_Name__c, Requested_Pricing_Change_Effective_Date__c, Status__c, CreatedDate from Global_Merchant_Pricing_Change__c where...

Category