home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 8.ddi / README.TXT < prev   
Encoding:
Text File  |  1993-02-03  |  26.3 KB  |  527 lines

  1. ackage procedures and their equivalent macros as well.
  2.  
  3. The reason for this is that this navigational macro does not make sense in the
  4. Pull-down style.  In keeping with the standard behavior of a Pull-down menu,
  5. after a choice is made, one always return to the main menu.  A good analogy
  6. would be to think in terms of the Macintosh interface or a DEC workstation.
  7. The user clicks on the submenu choice, that item is executed, and then
  8. the user is back at the main menu.  As a navigational macro, Previous_menu
  9. does not make sense in a pull down choice - because after one makes a choice -
  10. he/she will be back at the main menu.
  11.  
  12. To accomplish the same action as a Previous_menu in a Pull-down menu
  13. style, create an item that is command type 7, has "previous menu" as the
  14. item text, and on the command line has the following text "null;".
  15. This will get the user back to the main menu accomplishing the same function
  16. as [Previous Menu]. Be careful not to use this in Full_screen or Bar style
  17. menu applications, as this item will not accomplish anything.
  18.  
  19. The [Previous Menu] key has not changed and works in all three possible menu
  20. styles.  Since a user cannot dynamically change the style of a menu once
  21. he/she is executing it, some planning in the design stage (deciding on which
  22. menu style is needed) should enable one to code accordingly (previous_menu vs
  23. pl/sql cmd type 7 null;).  This restriction on these package procedures and
  24. macros did not appear in the documentation (Product Change Request # 40929).
  25. Certain macros were maintained in SQL*Menu Version 5.0 simply for upward
  26. compatibility reasons.  The Pull-down menu display style is Oracle's
  27. standard style.
  28.  
  29. DISABLING THE EXIT KEY IN SQL*MENU V5.0
  30. =======================================
  31.  
  32. In an application designed with SQL*Menu V5.0, it is possible to turn off the
  33. [Exit] key. The user will be forced to exit out of the application using one
  34. of the menu items during run time (ie. RUNMENU). Before disabling the [Exit]
  35. key, each menu within the application must have a menu item to allow them
  36. to exit:eg.  command type 7 using the EXIT_MENU package procedure.
  37.  
  38. The method will involve modifying the Oracle*Terminal resource file.
  39. SQL*Forms applications called by SQL*Menu will not be affected.
  40.  
  41. Note: this technique will NOT work if a SQL*Forms application invokes SQL*Menu.
  42.       The [Exit] key is controlled by the RUNFORM product mapping even
  43.       though the cursor is active in the form's menu.  Users will still
  44.       be able to press the [Exit] key to navigate out of the menu and back
  45.       to the form.
  46.  
  47. To remove the [Exit] key, invoke Oracle*Terminal, open the resource file
  48. and selec the appropriate device.  In the Product Definition screen, use
  49. the [Duplicate Record] to make a copy of RUNFORM-RUNMENU Product Name.
  50. Rename the new Product to RUNMENU as shown below:
  51.  
  52. +---------------------------   Product Definition   ---------------------------+
  53. +-----------------------------------------------------------------------------+
  54. |            Product Name          |                Description                |
  55. +----------------------------------+-------------------------------------------|
  56. |    RUNFORM-RUNMENU               |  SQL*Forms (Run Form) and SQL*Menu (Run   |
  57. |    RUNMENU                       |  SQL*Forms (Run Form) and SQL*Menu (Run   |
  58. +------------------------------------------------------------------------------+
  59. In the Key Mapping Definition screen, remove the mapping for [Exit].  Make sure
  60. that the status line reflects the correct Product and Device as shown below:
  61.  
  62. Res: oraterm.r   Prd: RUNMENU          Dev: vt100               <List><Replace>
  63.  
  64. Now the RUNMENU mapping will supersede the RUNFORM-RUNMENU mapping and
  65. the [Exit] key will be disabled.  The user will be forced to use one of
  66. the menu options to exit out of SQL*Menu.
  67.  
  68.  
  69.  
  70. Documentation
  71. =============
  72. Complete documentation is available with the release.  All users are advised to
  73. obtain the most current documentation.  The Version 5.0 documentation set
  74. includes:
  75.  
  76. SQL*Menu User's Guide and Reference V5.0 (Production)   3303-V5.0
  77. SQL*Menu Designer's Quick Reference V5.0 (Production)   5527-V5.0
  78.  
  79. For information on mapping function keys and video attributes or customizing
  80. key mappings, consult the Oracle*Terminal User's Guide, part no. 5206-V1.0.
  81.  
  82. For complete information on PL/SQL, refer to the PL/SQL User's Guide and
  83. Reference, part no. 800-V1.0
  84.  
  85. Documentation Bug Notes for 5.0.11.12
  86. =====================================
  87. 52640   SQL*NET login syntax incomplete.
  88.  
  89.         The example on p12-2 for logging in to ORACLE through SQL*NET (SQL*Menu
  90.         User's Guide and Reference V5.0 (0490) shows the following syntax:
  91.  
  92.                 :node_name
  93.  
  94.         The syntax should be:
  95.  
  96.                 @driver_name:node_name
  97.  
  98. 56161   Undocumented error: MNU-21011: UNHANDLED EXCEPTION [EXCEPTION_NAME].
  99.  
  100.         Cause: A menu application raised the predefined PL/SQL exception
  101.         indicated. The [EXCEPTION_NAME] is one of the following:
  102.  
  103.         PROGRAM_ERROR   ORACLE error code ORA-06501. Raised when PL/SQL has an
  104.                         internal problem. Can occur when a menu calls a
  105.                         SQL*Forms packaged procedure when SQL*Menu is linked
  106.                         with SQL*Forms, but no form is currently active.
  107.  
  108.         NO_DATA_FOUND   ORACLE error code ORA-01403. Raised when a single-row
  109.                         SELECT returns no rows.
  110.  
  111. 57521   Undocumented error: MNU-10259: INVALID NULL ARGUMENT TO PACKAGED
  112.         PROCEDURE OR FUNCTION
  113.  
  114.         Cause: Your menu application called a packaged procedure or function
  115.         without supplying a required parameter in the parameter list.
  116.         Action: Recode the procedure or function call to include the required
  117.         parameter(s).
  118.  
  119. 64064   The syntax for DOCMENU command is incorrect (SQL*Menu User's Guide and
  120.         Reference V5.0 (0490) p12-8):
  121.  
  122.         The -o switch (object reference) described in the documentation is not
  123.         implemented in SQL*Menu and should not be documented.
  124.  
  125. 78708   SQL*PLUS version dependency undocumented.(VMS)
  126.  
  127.         Running SQL*Menu on VMS requires SQL*Plus version 3.0.9.5+.
  128.  
  129. 85638   The syntax for the GENMENU command is incomplete (SQL*Menu User's Guide
  130.         and Reference V5.0 (0490) p12-6).
  131.  
  132.         The descriptions of the following switches are incorrect or missing:
  133.         -e [filename]   Create a SQL*Plus export file named [filename].
  134.         -m [#]          Create an application library with [#] number of
  135.                         modules.
  136.         -p [filename]   Create a library listing file named [filename].
  137.         -u              Upgrade a 4.1x menu application to version 5.
  138.  
  139.  
  140. 98905   Predefined substitution parameter LN undocumented.
  141.         LN is a predefined substitution parameter (similar to UN and PW) whose
  142.         value is a two-letter constant that defines the language preference of
  143.         the current user. Because its value is always known, SQL*Menu does not
  144.         display the Enter Paramter Values dialog when you use this parameter in
  145.         a menu-item command statement.
  146.  
  147.  
  148.  
  149.  
  150.  
  151. Upgrading from Earlier Versions
  152. ===============================
  153. 1.      All menus created prior to Version 5.0.10 must be regenerated to run
  154.         with SQL*Menu Version 5.0.10.
  155.  
  156. 2.      At installation time, all 4.0 or 4.1 menu applications are
  157.         automatically converted to Version 5.0 (if you select that installation
  158.         option).  At this time, all security information is also automatically
  159.         upgraded from Version 4.1 work classes to Version 5.0 roles.  Security
  160.         is upgraded as in the following example:
  161.  
  162.                 Version 4.1 application, SAMPLE, has two work classes, 10 and
  163.                 20.  Once upgraded, Version 5.0 application, SAMPLE, will have
  164.                 two roles:
  165.  
  166.                 SAMPLE_10 and SAMPLE_20   (application-name_work-class#)
  167.  
  168.         All users in the old work classes will be enrolled in the
  169.         corresponding new role, and the roles unt's password
  170. in order to install the designer tables.
  171.  
  172. .<PARTIAL_HELP>
  173. Some, but not all, of the tables required by SQL*Menu are
  174. present in your database.  The designer will not work unless all of them
  175. are present.  If you wish to correct this, this install can remove the
  176. tables currently present and replace them with a full set.  Any data in
  177. the tables will be lost.  Alternatively, you can run MENUINS.CMD.
  178.  
  179. # **********************************************************************
  180. # Update filelist.ora with filenames not found in .FILES commands
  181. # **********************************************************************
  182. .<DEINSTALL>
  183. %ORACLE_HOME%\PBIN\SQLMENU.COM
  184. %ORACLE_HOME%\PBIN\RUNMENU.COM
  185. %ORACLE_HOME%\PBIN\GENMENU.COM
  186. %ORACLE_HOME%\PBIN\DOCMENU.COM
  187. %ORACLE_HOME%\MENU\MENUTABS.LOG
  188. %ORACLE_HOME%\MENU\MENUVWS.LOG
  189. %ORACLE_HOME%\MENU\MENUGRTS.LOG
  190. %ORACLE_HOME%\MENU\MENUIDXS.LOG
  191.  
  192. This is the SQL*Menu 5.0.11.12.3 release.
  193. (Linked with PL/SQL 1.0.35.1.0)
  194.  
  195. This version was primarily created as a synchronized-release version, but
  196. also includes the bug fixes noted below in section "BUGS FIXED IN 5.0.11".
  197.  
  198. Additionally, bugs 85960, 102060, 103012, 137452, 137453, and 138333 have
  199. been fixed in this version of SQL*Menu.
  200.  
  201. Bugs outstanding: 90144, 132661, 134725, 136081.
  202. --------------------------------------------------------------------------------
  203.  
  204.          +------------------------------------------------------+
  205.          | CAUTION:                                             |
  206.          | Installation of this patch on an OS/2 system with a  |
  207.          | local ORACLE database requires that the database     |
  208.          | and Required Support Files be updated to 6.0.36.1.0  |
  209.          | BEFORE this patch can be applied!  Failure to do so  |
  210.          | may result in making the RDBMS inoperable!           |
  211.          |                                                      |
  212.          | Installation of this patch on a client-only system   |
  213.          | (no local database) requires that Required Support   |
  214.          | Files (16-bit) 6.0.36.1.0 be installed on the client |
  215.          | system BEFORE this patch can be applied!             |                               |
  216.          +------------------------------------------------------+
  217.  
  218. --------------------------------------------------------------------------------
  219.  
  220. Release Bulletin
  221. SQL*Menu Version 5.0.11 (Production)
  222. April, 1992
  223.  
  224. This bulletin contains important information about the production release of
  225. SQL*Menu. It is recommended that you read it before attempting to use this
  226. version.  This bulletin also directs you to function key mappings for this
  227. release for both VT100 and VT220 terminals.
  228.  
  229.  
  230. New Features since Versions 4.1 and 4.0
  231. =======================================
  232. These new features are described in detail in the SQL*Menu User's Guide and
  233. Reference Version 5.0 documentation.
  234.  
  235. o   Complete built-in menu integration with SQL*Forms applications
  236.  
  237. o   Multiple runtime menu display styles:
  238.         o   Pull-down
  239.         o   Bar
  240.         o   Full-screen
  241.  
  242. o   PL/SQL support - Oracle's procedural language extension to SQL
  243.  
  244. o   New security structure - using roles (privilege groups)
  245.  
  246. o   Comprehensive documentation capabilities:
  247.         o   Application, menus, items, parameters, procedures
  248.         o   Object reference report
  249.         o   Comprehensive or summarized application reports
  250.  
  251. o   Mouse support for bitmap environments
  252.  
  253. o   Ability to copy and reference objects such as menus and parameters
  254.  
  255. o   The SQL*Menu (Design) interface is completely revised
  256.         o   Menu-driven, like SQL*Forms 3.0
  257.         o   Context-sensitive online help system
  258.         o   Pop-up lists-of-values - with auto-restrict capabilities
  259.         o   Scroll regions - with automatic word-wrapping and scrolling
  260.         o   Editing functions including:
  261.                 o   Search and Replace
  262.                 o   Cut, Copy, and Paste
  263.  
  264.  
  265. Changes in SQL*Menu (Design) from 4.1 to 5.0
  266. ============================================
  267. When one was developing an application with SQL*Menu Version 4.1, most of the
  268. committing (saving) to the SQL*Menu tables was done during the application
  269. building process.  Basically there was a 4 step process to building
  270. applications in version 4.1.  Selecting the first three options off the
  271. Menu Information Maintenance menu would define the application information
  272. that would be saved to the SQL*Menu tables:
  273.  
  274. 1.      Update Application Information - defines the title and directory for
  275.         the .DMM file.
  276.  
  277. 2.      Update Work-class and User Information - defines who is authorized to
  278.         use this application.
  279.  
  280. 3.      Update Menu Information - defines the actual information to appear
  281.         within the application.  As each menu item is defined, it is committed
  282.         to the SQL*Menu tables.
  283.  
  284. 4.      Generate the application - this would create the.DMM library file that
  285.         gets executed when the application is run.
  286.  
  287. A designer could not leave the above three options without being prompted
  288. with "Do you want to commit the changes you have made? Y".  SQL*Menu 4.1
  289. designers had to save their work at each of the three points in the
  290. development process.
  291.  
  292. In SQL*Menu 5.0, it is possible to create, generate, and execute an
  293. application from the design interface, without ever saving the application
  294. information to the SQL*Menu 5.0 tables.  If you attempt to execute an
  295. application or exit the design interface, then the following alert message
  296. is issued, "Application locks may be lost.  Continue?"
  297.  
  298. Oracle recommends that you save a newly created or modified application before
  299. generating the library file.  A new application must be saved at least
  300. once before it can be executed, otherwise a user will receive the MNU-10249
  301. error (No authorization to run application <application name>).
  302. In the SQL*Menu 5.0 Users Guide and Reference (pg 5-25), the following is not
  303. emphasized enough "Remember to save the application before you exit SQL*Menu".
  304.  
  305. In version 4.1, a designer would not get the opportunity to execute an
  306. application in which he/she was not defined in a Workclass because the
  307. application would not show up as an item on that users application menu
  308. (which shows all the applications that a user has access to).
  309.  
  310. In SQL*Menu 5.0, Workclasses are replaced by ROLES.  A designer could attempt
  311. to execute an application in which they are not defined in a ROLE.
  312. Your id has been granted access to SQL*Menu as a Designer, but you neglected
  313. to include your userid in the appropriate ROLE definition associated with the
  314. menu items for the application.  Given this scenario, the designer would get
  315. the MNU-10249 error at the RUNMENU login screen when he/she attempts to
  316. execute. Additionally, if the designer specified an invalid user name and
  317. password at this screen, then he/she would be disconnected from Oracle and
  318. would be unable to commit any unsaved changes to the application once back in
  319. designer mode. The "ORA-03114: not connected to ORACLE" would be issued when
  320. the designer attempts to save.
  321.  
  322. To avoid the above scenario, a designer should define at least one ROLE with
  323. his/her own userid defined within that ROLE for use in testing the application
  324. that is being developed. This ROLE should be set up before any substantial
  325. development work is done.
  326.  
  327. In SQL*Menu 4.1, it was possible, though not recommended, to design a
  328. menu application that had circular menu references.  That is, an item
  329. on a submenu might reference another menu and go to that menu using
  330. command type 1.  A SQL*Menu application with circular menu references
  331. will not generate under SQL*Menu 5.0.
  332.  
  333. Changes in Execution of SQL*Menu applications - SQL*Menu (Run Menu)
  334. ===================================================================
  335. SQL*Menu Version 4.1 full-screen applications are upwardly compatible and will
  336. run on Version 5.0 of SQL*Menu after being converted.  Two changes in behavior
  337. exist that warrant additional explanation. These are explained in the following
  338. sections.
  339.  
  340. I. The RUNFORM command line switches with command type 4.
  341.  
  342. In SQL*Menu 4.1, it was possible to specify a different CRT definition when
  343. running a SQL*Forms 2.3 application that was linked  with DMU (command type 4).
  344. SQL*Menu 5.0 uses Oracle*Terminal resource files, not CRT files. Using command
  345. type 4 in version 5.0 would attempt to run a linked-in SQL*Forms 3.0
  346. application. The SQL*Menu Users's Guide and Reference explicitly states that
  347. the -c command line switch, as well as the -e, -i, -r, and -w switches,
  348. for RUNFORM, command type 4, are not supported (pg 8-16).  Starting with
  349. SQL*Menu Version 5.0.10, the -c command line switch will be allowed for
  350. command type 4, as long as the device type does not change.
  351.  
  352. For example, if you went into RUNMENU with a VT100 terminal definition, then
  353. you could specify another Oracle*Terminal mapping (eg VT100NEW) with the
  354. RUNFORM command. This VT100NEW could contain the same key mappingautomatically given privilege to
  355.         execute the same menu items that the work class could access.
  356.  
  357.         In addition, starting with SQL*Menu Version 5.0.9, SQL*Menu users will
  358.         be granted access to SQL*Menu Version 5.0 as an installation option.
  359.         Prior to Version 5.0.9, SQL*Menu users had to be granted access to
  360.         Version 5.0 by hand, even though the work classes were automatically
  361.         upgraded to roles.
  362.  
  363. 3.      In addition, all menu applications created with SQL*Menu Version 4.1 or
  364.         4.0 must have their table structures converted to Version 5.0, using
  365.         ORA_ROOT:[SQLMENU50]CONVMENU.SQL (application_name) in SQL*Plus.  This
  366.         SQL script will update the SQL*Menu base tables as necessary for
  367.         Version 5.0.  You will then need to run GENMENU on the transferred
  368.         application to actually generate and create a library file
  369.         (application_name.DMM).
  370.  
  371.  
  372. General Restrictions/Notes
  373. ==========================
  374. 1.      All Oracle*Terminal key mappings are stored in ORA_ROOT:[SQLFORMS30].
  375.         Default mappings can be found in the ORATERM.R resource file, and
  376.         should not be deleted nor moved from the [SQLFORMS30] directory.
  377.  
  378. 2.      When using SQL*Menu in conjunction with SQL*Forms 3.0, be aware that
  379. |       the SQL*Menu role name that you put in the Menu Security Group Name
  380. |       field in the Form Definition form in SQL*Forms (Design) WILL
  381. |       OVERRIDE any SQL*Menu application security that you have set up.  This
  382. |       is a convenience factor that is put in so you can have all your users
  383. |       see the default menu application you use with your form as the same
  384. |       user (they see the same options).  If you do not fill in this field,
  385. |       application security will be followed, and SQL*Menu will check the
  386. |       database for a list of roles to which the current username has
  387. |       privilege, and will build the menu tree accordingly.
  388.  
  389.  
  390. Bugs Fixed in 5.0.11
  391. ====================
  392. 33762   Need an error message for when login fails.
  393. 36451   Help text prints out wrong for generated application documentation.
  394. 40369   Purpose text of the Menu Definition spread table disappears after you
  395.         hit [Return].
  396. 40691   Lines get reformatted (Carriage returns not preserved) on the command
  397.         line text for an item when you resequence the items in the spread
  398.         table.
  399. 40975   Access violation when NULL arguments are passed to NEW_APPLICATION
  400.         packaged procedure.
  401. 41493   Reference procedure gets compile error when used on an item's command
  402.         line.
  403. 41998   MENU_FAILURE should be set when OS_COMMAND ('(type=4) runform) does not
  404.         successfully run a form (e.g., when the .frm field does not exist).
  405. 42036   GLDMU and GLMND .com files should create the executable in the current
  406.         directory and it should setup a symbol to run that executable.
  407. 42112   Access violation after hitting Ctrl-C twice when executing a menu from
  408.         SQL*Menu (Design).
  409. 42716   menu hangs in Full-screen and Bar style when a user tries to navigate
  410.         to a submenu where that user is not defined in any roles for the items
  411.         of that submenu.
  412. 42991   Test:  In TESTTABS.sql, second CREATE should be:
  413.         CREATE TABLE MENU_B_APPL_GRP instead of MENU_B_APPL.
  414. 43048   Hitting PF4 to cancel out of the Query Parameter dialog box should fail
  415.         query_parameter packaged procedure and/or set menu_failure.
  416. 43227   Unable to save an application if a role in a reference menu is added.
  417. 44026   Cannot specify Oracle*Terminal filename:mapping in the user preference
  418.         file.
  419. 44916   Role definitions are not retained if you use the copy object function
  420.         on a menu item.  Roles are maintained if you copy an application or a
  421.         menu.
  422. 44945   SQL*Menu returns unhandled PL/SQL error to SQL*Forms when SQL*Menu
  423.         tries to perform PL/SQL operations on a form but passes a NULL argument
  424.         to PL/SQL.
  425. 44959   Cannot generate a library file when a logical in the application
  426.         directory points to a different node over DECNET - unless the library
  427.         already exists on that node.
  428. 45170   SQL*Forms application hangs when pressing [Menu] function key.
  429. 45182   SQL*Menu should prompt user when there are more choice on the menu
  430.         than can be displayed.
  431. 45621   SET_INPUT_FOCUS does not work for Full-screen menus.
  432. 45948   Stack dump when Ctrl-C pressed twice from a linked-in menu.
  433. 45972   SQL*Menu doesn't work if language in INIT.ORA is Finnish or any other
  434.         language where JAN is not the proper month name abbreviation.
  435. 46021   Referencing the same submenu causes the item text not to be displayed.
  436. 46026   Incorrect hint text in SQL*Menu (Run Menu) logon screen.
  437. 46595   Global variables are preserved when developing a menu application.
  438. 47042   New_user packaged procedure will not function for "/" ops$id.
  439. 47072   Access violation running a menu with (Run Menu) product mapping in
  440.         resource file.
  441. 47323   Grants on the SQL*Menu tables are not preserved when migrating from
  442.         version 4.1 to 5.0.
  443. 64692   Identification field not displayed in application menu
  444. 61452   Genmenu dmgfre's pointers twice when generate fails
  445. 60857   Dmuapl.ok: invalid pointer use in for() loops
  446. 60856   Dmdp.c: dmgfre() called with invalid pointer
  447. 60259   Should use pointer arithmetic in files Dmuapl.ok, Dmufsm.ok
  448. 65457   Memory accretion between SQL*Menu and SQL*Plus
  449. 73999   BGM DOES NOT CARE ABOUT ROLES ASSOCIATED WITH ITEMS
  450. 95824   Genmenu No Longer Allows Granting Options -GE, -GD, -GA, -R, -U, ?
  451.         without supplying an application name.
  452. 103749  Can't run application if it doesn't have a Background Menu
  453. 85947   UNABLE TO ENTER 8-BIT CHARS IN APPLICATION DEFINITION SHORTNAME
  454. 104293  ASSIGING VALUE TO FREED MEMORY IN DMUFSM DO COMMAND
  455.  
  456. Notes for 5.0.11
  457. ================
  458. 1.      SQL*Menu Version 5.0.11 is compatible with and only with SQL*Forms
  459.         Version 3.0.16.
  460.  
  461. 2.      All menu applications created prior to version 5.0.11 must be
  462.         regenerated to run under 5.0.11.  This is due to several performance
  463.         enhancements that make start-up faster, and generation significantly
  464.         faster.  Now that 5.0.11 is full production, we will strive to minimize
  465.         future regeneration needs.
  466.  
  467. Changed Features in 5.0.11
  468. ==========================
  469.  
  470. PLSQL commands in a SQL*Menu item (type 7) which follow a
  471. CALL(.,DO_REPLACE) or CALL_QUERY(.,DO_REPLACE) -- which replace the
  472. all of the current menu information in the process -- are not
  473. executed beginning with SQL*Menu 5.0.11. The fact that they did
  474. execute in previous versions was allowed by a loophole in the way that
  475. menu information was disposed when the current menu was Replaced. An
  476. explanation follows:
  477.  
  478.     Each Runform session can have at most one menu application
  479.     associated with it at any given time. In particular, menus
  480.     are not stacked as are called forms. In general, this is
  481.     where confusion lies.
  482.  
  483.     When the single menu which exists for each Runform session
  484.     gets REPLACED, this causes all of the current menu's
  485.     information (menus, parameter values, items, etc) to be
  486.     discarded upon reading in the new menu. When one form calls
  487.     another with the DO_REPLACE option, the single menu is
  488.     replaced, as the name would imply, and upon returning control
  489.     back to the calling form, the menu associated to the calling
  490.     form is reread into memory. The REPLACE_MENU packaged
  491.     procedure behaves analogously. Only one associated menu is
  492.     ever "on hand" at a time.
  493.  
  494.     Prior to Menu 5.0.11, the currently executing PLSQL context
  495.     (item,  procedure, etc) was not correctly disposed, along
  496.     with all of the other information during a DO_REPLACE. This
  497.     lead to problems if a given menu item issued a CALL with the
  498.     DO_REPLACE option, and later contained references to
  499.     parameter values which had been subsequently reinitialized
  500.     upon rereading the original menu when the calling form
  501.     regained control. Now ALL menu information is disposed of in
  502.     thes DO_REPLACE scenario, making the CALL(.,DO_REPLACE) in a
  503.     PLSQL Menu Item effectively behave similar to the NEW_FORM
  504.     packaged procedure. All commands in the menu item/procedure
  505.     which follow the CALL(.,DO_REPLACE) are disposed of (during
  506.     the process of menu Replacement) and are never executed.
  507.  
  508.     These comments only apply to the DO_REPLACE option of the
  509.     CALL/CALL_QUERY commands, and the change of behaviour is
  510.     specifically for CALL/CALL_QUERY(.,DO_REPLACE) when used from
  511.     a menu item. Note that DO_REPLACE-ing a menu does not affect
  512.     the values of Global variables which may already exist.
  513.  
  514.     A possible solution to emulate the previous behaviour is to
  515.     have the SQL*Menu PLSQL item use the EXECUTE_TRIGGER packaged
  516.     procedure to issue the CALL(., DO_REPLACE) from a trigger in
  517.     the current form. Since the DO_REPLACE does not dispose of
  518.     the PLSQL information from the currently running form in the
  519.     process of replacing the menu, commands following the
  520.     CALL(.,DO_REPLACE) issued from a form trigger are not
  521.     affected.
  522.  
  523. 2.  5.0.11.12 has had some slight modifications made to allow it to be used
  524.     against an ORACLE V7 Database.  No changes need to be made to continue to
  525.     run against earlier versions of the database.
  526.  
  527.