Kbase P54024: Building Customized Dynlookup / Dyncombo - Need Handles to Temp Tables
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  16/10/2008 |
|
Status: Unverified
FACT(s) (Environment):
Dynamics
SYMPTOM(s):
Building Customized Dynlookup / Dyncombo - Need Handles to Temp Tables
CAUSE:
To make own object based on the combo and lookup objects delivered by dynamics, the handles of the temp-tables are required in viewer.p to fill the ttLookup and ttDCombo tables. If not, a separate construction to retrieve data from the server is required.
FIX:
To obtain this, add following code in viewer.p.
procedure getComboLookupTables:
/*------------------------------------------------------------------------------
Purpose: procedure created by Organi
this returns the full temp-tables ttDcombo and ttLookup
these are needed for manual changes in one of these tables (proc obtainCombo)
Parameters: <none>
Notes:
------------------------------------------------------------------------------*/
define output parameter table for ttDcombo.
define output parameter table for ttLookup.
END PROCEDURE.