Kbase P97276: How to avoid the SDO query to be opened automatically?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  23/08/2005 |
|
Status: Verified
GOAL:
How to avoid the SDO query to be opened automatically?
GOAL:
Where should I change the openOnInit SDO property?
FIX:
Uncheck the 'Open query on initialization' instance property of the SDO or alternatively change the openOnInit SDO property by creating a initializeObject procedure override for the SDO:
/* Code placed here will execute PRIOR to standard behavior. */
DYNAMIC-FUNCTION('setOpenOnInit':U,
INPUT FALSE /* LOGICAL */).
RUN SUPER.
/* Code placed here will execute AFTER standard behavior. */
END PROCEDURE.