importdictprocedures
SOURCETEXT
,
DICTIONARY

The importdictprocedures statement converts source code exported by the ExportAllProcedures statement into a dictionary.


Parameters

This statement has two parameters:

sourcetext – Source code that was exported with the ExportAllProcedures statement.

dictionary – Field or variable to store result in.


Description

This statement converts source code exported by the ExportAllProcedures statement into a dictionary. This dictionary can be used with the LoadAllProcedures statement.

This example transfers all of the procedures from the current database into some other database.

global psave
exportallprocedures "",psave
...
...
...
...
window "Some Other Database"
local psDictionary
importdictprocedures psave,psDictionary
loadallprocedures psDictionary

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.