After migrating from a version of Mariner / PPM prior to 2009 R1 the first time you open a Task Plan on an investment you are alerted that this is the first time and the task plan will need to be migrated to the task plan format. After you publish the task plan the first time you won't get prompted with this alert any more for that investment. The attached report when run will show all the task plans in the database that haven't yet been migrated.
Steps to Reproduce: 1 . Login to Mariner. 2. Go to the Tasks view for an investment( Alerting Service) 3. Checkout the task plan. 4. Select the first task and click the Show/hide details button. 5. Go to the details tab.
Steps to Reproduce: 1. View Designer, put a Dropdown attribute 2. Set Event to the dropdown attribute as Onselection event 3. Code: alert (" xxxxxxx"); and Save. 4. This does not execute in the view. This works fine on R3.0.
The following example code can be put in the onselectionchange event of a list box. When the value is changed a alert should show the currently selected text value. The underlying value is actually a numeric value that will be stored in the database.
To get this fix, you must change the javascript code to push the function onto the stack using windows.View. A complete code example is below: function evtOnBeforeSave_Form43() { alert ('OnBeforeSave event fired'); } var summaryFormCollection = window.View.GetFormsCollection(); if (summaryFormCollection) { var len = summaryFormCollection.length;