# Customized Panes for 'IMPMENLZ' Created: 2010/04/13 # PANE:Contract Search [PANE] ADMIN IMPMENLZ 01000Contract Search 104 000000500001IMPMEN050M000 1281 00000CS SearchWindow [VBSCRIPT] Option Explicit Function CustomizedPane_OnLoad() ' Notes : ' ' 1) The more columns that the business object must return, the slower it will run. ' 2) If the business object must return lots of rows it will significantly affect the performance. ' 3) Because the business object is not returning XML, the columns in this list must appear in the ' exact same sequence as the list supplied to the business object. ' 4) Columns that appear below with the Hidden option set to True will be available in the Field ' Chooser. These fields are returned by the business object but are not displayed to save time. ' 5) There are several columns that are commented out. This is to significantly reduce the time taken ' by the business object to return the data, and for the listview to display this. Because they ' appear in the code it is a simple case of removing the apostrophe that comments them out. The ' next time that this search is called these fields will be present. ' 6) When removing the apostrophe that comments out the entry, it must be done against both the column ' definition of what is to be displayed, as well as the business object. dim ListXML ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" ListXML = ListXML & "" CustomizedPane.CodeObject.ListviewProperties = ListXML End Function Function CustomizedPane_OnRefresh() dim XMLOut, XMLParam XMLParam = XMLParam & " " XMLParam = XMLParam & " PrjContMaster" XMLParam = XMLParam & " 1" XMLParam = XMLParam & " 999999" XMLParam = XMLParam & " " XMLParam = XMLParam & " Contract" XMLParam = XMLParam & " ContractDesc1" XMLParam = XMLParam & " Responsibility" XMLParam = XMLParam & " RespPerson" XMLParam = XMLParam & " Customer" XMLParam = XMLParam & " HierarchyCode" XMLParam = XMLParam & " PrgBillingMethod" XMLParam = XMLParam & " DepositMethod" XMLParam = XMLParam & " DepositType" XMLParam = XMLParam & " DepositPercent" XMLParam = XMLParam & " ContractDesc2" XMLParam = XMLParam & " ContractDesc3" XMLParam = XMLParam & " ContractDesc4" XMLParam = XMLParam & " ContractDesc5" XMLParam = XMLParam & " DepositProdClass" XMLParam = XMLParam & " RetentionRequired" XMLParam = XMLParam & " RetentionCustomer" XMLParam = XMLParam & " RetentionMethod" XMLParam = XMLParam & " RetentionType" XMLParam = XMLParam & " RetentionPct" XMLParam = XMLParam & " RetentionPrd" XMLParam = XMLParam & " RetentionProdClass" XMLParam = XMLParam & " TermsCode" XMLParam = XMLParam & " " XMLParam = XMLParam & " " XMLParam = XMLParam & CustomizedPane.CodeObject.Statement XMLParam = XMLParam & " " XMLParam = XMLParam & " " on error resume next XMLOut = CallBO("COMFND",XMLParam,"auto") if err then msgbox err.Description, vBCritical, "Calling Business Object" exit function end if ' Switch on error handling on error goto 0 ' Take the XML that has been built and populate the ListviewData variable. CustomizedPane.CodeObject.ListviewData = XMLOut End Function