Built plug-in: topology not refreshing?

Hi,
We built a plug-in for a storage array. The topology view doesn't seem to be refreshed after removing a target. Let me try to explain.
One of its configuration metrics shows the mapping of ASM disks on the host down to the device on the target (array).
If ASM on another host uses the same storage array, we can deploy the plug-in to that host as well and get the mapping from that ASM's disks to the same array (same target type, but under different target_name). When we display the topology (via either of the targets in OEM), it will show the relationship that the array has with the ASM instances of the hosts where the plug-in is deployed.
In my test scenario I have target 1 and target 2 (of same target_type) deployed to 2 different hosts. ASM on these hosts use the same storage array.
After the initial refresh of their ECM snapshots, the topology reflected the correct situation.
Then I removed target 2, expecting that the topology of target 1 would be updated at some point, to reflect the change.
This is not happening; it is still showing the old situation. I have even refreshed the ECM snapshot of target 1, thinking this would set off the derived associations trigger.
When I run the association query directly in Oracle, it shows the correct result!
Where is this old metadata kept?
Why is it not being refreshed to reflect the new situation?
How can I get it refreshed?
Many thanks for any feedback,
Ed

Hi,
We built a plug-in for a storage array. The topology view doesn't seem to be refreshed after removing a target. Let me try to explain.
One of its configuration metrics shows the mapping of ASM disks on the host down to the device on the target (array).
If ASM on another host uses the same storage array, we can deploy the plug-in to that host as well and get the mapping from that ASM's disks to the same array (same target type, but under different target_name). When we display the topology (via either of the targets in OEM), it will show the relationship that the array has with the ASM instances of the hosts where the plug-in is deployed.
In my test scenario I have target 1 and target 2 (of same target_type) deployed to 2 different hosts. ASM on these hosts use the same storage array.
After the initial refresh of their ECM snapshots, the topology reflected the correct situation.
Then I removed target 2, expecting that the topology of target 1 would be updated at some point, to reflect the change.
This is not happening; it is still showing the old situation. I have even refreshed the ECM snapshot of target 1, thinking this would set off the derived associations trigger.
When I run the association query directly in Oracle, it shows the correct result!
Where is this old metadata kept?
Why is it not being refreshed to reflect the new situation?
How can I get it refreshed?
Many thanks for any feedback,
Ed

Similar Messages

  • Dynamic query built from items is not refreshing state

    Hi. I'm generating a report table using the Pl/SQL function returns SQL query report region. My region source is:
    declare
    v_tbl varchar2(500);
    v_sql varchar2(32676);
    begin
    v_tbl := v('P7_STUDENT_TBL');
    v_sql := 'select b.grade,
    b.lastname,
    b.firstname,
    b.middlename,
    b.permnum,
    a.student_attended,
    a.parent_attended,
    a.num_assoc_w_student,
    a.ea_id
    from event_attendance a right outer join ' || v_tbl || ' b
    on ( lpad(a.permnum, 12, '' '') = b.permnum
    and a.event_id = ' || v('P7_EVENT_ID') || ' )
    where b.status = '' ''
    order by b.lastname, b.firstname ';
    return v_sql;
    end;
    As you can see, the query relies on a dynamic table name and event id. These 2 items are hidden items, although i've checked them and they are correct, as is the sql query supposed to generate the report.
    It seems i have to go back and forth between the event page and this page in order for the report to "catch up" to the items (event id, table name).
    It's almost like it's cached the old report, and won't discard it and bring up the current report unless the page is repeatedly accessed. There's no place to designate the source to be "Always, replacing any existing value in session state" like other items.
    My dynamic tablename is accessing a remote database using a dblink. It's working, and shouldn't be remarkably slower, but i'm wondering why my report is not current with the items its using to generate the report?
    I hope this is clear... any ideas?

    Thanks for the reply, Scott.
    I am indeed using bind variables in my query. The page before the "event attendance" page is "events" where you can search for an event. A link for attendance is there for each event record, which passes on the event id to the event attendance page, where you are recording the attendance for that event, which is for a particular school.
    The query uses the event id and the school id in the query. The school table is dynamic, so i get the table's name from a function call. This query generates the list of students and some form elements for each student so you can record their attendance at an event.
    Now i've verified that the table name, school id, event id, and even query are correct, by creating items i can see displayed on the page with their values. And the report is correct, but it seems a step behind.
    For example, i may have an event for school 100. If i go back and select an event for school 200 to edit the attendance, my students are still from school 100. If i go back and select an event for school 300 to record attendance on, my students are from school 200. So you see, it's like the bind variables are hanging around. Yet if i look at the items (which are the same pl/sql source, but are items, not regions) they are correct.
    My item query (which shows proper substitutions) is:
    select b.grade,
    b.lastname,
    b.firstname,
    b.middlename,
    b.permnum,
    a.student_attended,
    a.parent_attended,
    a.num_assoc_w_student,
    a.ea_id
    from event_attendance a right outer join schema.school015@dblink b
    on ( lpad(a.permnum, 12, ' ') = b.permnum
    and a.event_id = 91 )
    where b.status = ' '
    order by b.lastname, b.firstname
    This item has EXACTLY the same pl/sql function returning sql source as the region, but it's an item, not a region. So what you see is the parsed query.
    And here's my debug output:
    0.00: S H O W: application="114" page="7" workspace="" request="" session="8149080792357934854"
    0.01: alter session set nls_language="AMERICAN"
    0.01: alter session set nls_territory="AMERICA"
    0.01: ...Setting NLS Decimal separator="."
    0.01: Application 114, Authentication: CUSTOM2, Page Template: 5225413680368493
    0.01: ...Supplied session ID can be used
    0.01: ...Application session: 8149080792357934854, user=ARICHMOND
    0.01: ...Determine if user ARICHMOND with SGID 4503012961108875 can develop application 114 in workspace 4503012961108875
    0.01: Fetch session header information
    0.01: Branch point: BEFORE_HEADER
    0.02: Fetch application meta data
    0.02: ...fetch page attributes: f114, p7
    0.02: Fetch session state from database
    0.02: Computation point: BEFORE_HEADER
    0.02: Processing point: BEFORE_HEADER
    0.03: Show page template header
    0.03: Computation point: AFTER_HEADER
    0.03: Processing point: AFTER_HEADER
    0.03: Computation point: BEFORE_BOX_BODY
    0.03: Processing point: BEFORE_BOX_BODY
    0.03: Region 1:Record Event Attendance for the following event:
    Edit
    0.04: FORMITEM: P7_EVENT_SCHOOL_DESC DISPLAY_ONLY_HTML
    School:      School 015
    0.04: FORMITEM: P7_EVENT_TYPE_AND_DATE DISPLAY_ONLY_HTML
    Event:      Event Desc
    0.04: FORMITEM: P7_LOCATION DISPLAY_ONLY_HTML
    Location:      Auditorium
    0.04: FORMITEM: P7_SCHOOLNUM DISPLAY_AND_SAVE      snum 015
    0.04: FORMITEM: P7_STUDENT_TBL DISPLAY_AND_SAVE
    tbl :      schooltbl015
    0.04: FORMITEM: P7_QUERY TEXTAREA
    (see query above)
    0.05: Region 2:Students
    StudentsEdit
    Edit Edit     
    0.05: show report 15
    0.05: set report template: user defined template
    0.06: determine column headings
    0.06: is numeric ?
    0.06: parse query
    0.06: describe columns
    0.07: define columns
    0.07: execute cursor
    0.07: print template before rows text
    0.07: print column headings
    0.07: rows loop
    0.30: pagination
    0.30: print template after rows text
    0.30: Computation point: AFTER_BOX_BODY
    0.30: Processing point: AFTER_BOX_BODY
    0.30: Computation point: BEFORE_FOOTER
    0.30: Processing point: BEFORE_FOOTER
    0.30: Show page tempate footer
    0.31: Computation point: AFTER_FOOTER
    0.31: Processing point: AFTER_FOOTER
    0.31: Log Activity:
    0.31: End Show:

  • BI Plug-in does not correctly update Excel reports

    Hello All,
    I am having issues in that when I export to Excel 2010, the BI Plug-in will not refresh reports with rows that repeat, it still continues to merge the rows even though the reports are set up to repeat in BI Answers. Any help would be greatly appreciated.
    Thanks,
    Jacob Nguyen
    Edited by: 948195 on Jul 24, 2012 8:56 AM

    Hi Praneeth,
            Follow the link to get SSO fixed - make sure you did all steps without missing a one.
    http://wiki.sdn.sap.com/wiki/display/BOBJ/HowtosetupSSOagainstSAPBWwithSAPBOBI4.0CommonSemanticLayer(UNX)orBICS
           SSO.Enabled , SecSapr3 and default.logon must be configured at 2-3 different config files at your BO as only
           WEB-INF file configure doesn't do the job.
    Thanks,
    Suresh Reddy

  • Built In Enthernet Cable not Plugged in

    Hey folk I need your help in finding the solution to having Tiger recognise that I do have a cable plugged into the ethernet port.
    I have ain Network Prefernce a red dot next to built in ethernet and is gives me a message that it isn't plugged in but is obviously is. Heres what I;ve tried
    Hardware
    Test says the port is recognised just nothing is plugged into it.
    New cables
    plenty Cat 5 or cat 6
    New locations
    I've tried it at home in the office in another country
    different routers
    I've tried different brands and direct into the modem
    PMU reset http://support.apple.com/kb/HT1431#faq6
    Maybe I've done this wrong but the forums say to reset the Power Menangement Unit on the ibook G4 hold and release the Shift, Control, option and power button.
    Forums
    I've tried many different forums and their solutions are complicated to say the least and most aren't solutions
    one thing I've noticed is that this problem is not unique to me and hence I've come to your strong minds for support can you help?

    Hello Richard
    The Port Looks healthy all the pins are straight and at the same level. I also had it inspected by someone else they confirm. The contacts I clean today again with air so the physical port I am happy is ok.
    What I can say though is that along with the Built in ethernet port not working the Internal Modem is not seen either and one of the speakers doesn't work also when you plug headphones into the earphone slot the remaining working speaker doesn't mute/go off it gets louder.
    Firewire, USB and External Monitor port work fine however.
    I have diabled Airport while troubleshooting in the past as well as today when trying to configure the Built In Ethernet manually. This did not help
    I am not sure what you mean here but in booting from another system on an external hard drive but I have not used another mac connected to or an external hard drive while trying to make the port work.
    I have reinstalled Tiger once since having this issue for matters unrelated to this one and I still do not have the ethernet port working.
    Does it sound like death to the port?

  • My built in camera is not working after upgrading to a new Skype version

    my built in camera is not working after upgrading to a new Skype version

    See this thread:
    https://discussions.apple.com/thread/5306216?tstart=0
    FIX: 
    1. You need Time Machine
    2. Go to folder /Library/CoreMediaIO/Plug-Ins/DAL/
    3. Copy AppleCamera.plugin to good place (usb memory stick is the best place).
    4. Go to Time machine in date that skype work fine.
    5. Change AppleCamera.plugin with file from Time Machine
    6. Restart system, Now skype need to work with camera.
    If that doesnt pass,
    Suggest looking here, much success has been found:
    http://community.skype.com/t5/Mac/OS-X-10-8-5-broke-Video-on-MacBook-Air/td-p/18 91729/page/4

  • Macbook Pro 17" - My built in speakers are not working.

    Macbook Pro 17"
    My built in speakers are not working.
    The speaker logo is not highlighted (grey not Black) and when in sound options  "output" pane only displays the digital out for 'optical' - ie, the internal speakers dont register (headphone socket works)
    Any ideas?

    1. If red light is visible in the headphone port, plug the headphone into and out of the port 5 or 6 times
         to flip the microswitch inside the port. Hopefully that will make the mode revert back to analog from digital.
    2. Reset PRAM. http://support.apple.com/kb/PH4405
    3. Reset SMC.   http://support.apple.com/kb/HT3964
         Choose the appropriate method.
    Hope any one of these steps helps.

  • Login Window: Screen does not refresh correctly after waking 10.7.2 iMac and MacBook.

    I have a client who brought to my attention that when we wakes his iMac and MacBook after the screen dims or sleeps at login screen, that sometimes the screen does not refresh correctly and you must use the cursor to basically "clear the screen."  I have witnessed this myself and elimiated all third party products and this still happens.  I am starting to believe that is is a bug in 10.7.2.  Has anyone witnessed this or have any suggestions on how to remedy?  Thank you.

    Thanks lynque.  It turns out I did need a keychain repair, but that didn't fix the problem.  I probably should have done this earlier, but I ended up unplugging all peripherals (2 firewire + 3 USB) then powered up without issue.
    So I shut down, plugged in one at a time, and ran into the problem again after plugging in an external hard drive (WD My Book Essential).  I repaired with disk utility, but the problem remained.
    I then rebuilt the partitions with Disk Warrior, and now everything seems to work....

  • Plugged in, but not detected and not charging

    recently i sent my laptop for repair, but after 1 month, the same problem occured.  I plugged the charger in, but it is not detected.  it even won't charge the battery.  sometimes it happens, but sometimes it can be detected the charger.  Usually it does not detect.. what should i do? what may be the problem?

    Hi
    Welcome To Lenovo Community
    We are really sorry to hear about the issue you are facing,  
    You may want to try below different methods and check which one work for you.
    Method A:
    Remove the AC and Battery from the laptop
    Press and hold the power button for 30 to 40 seconds
    Replace the battery and AC
    Boot the laptop up and check if the same message is still displaying
    If same error still persist, try to uninstall Lenovo Energy Management, reboot then install the Energy Management software again.
    Method B:
    1.Open Lenovo Energy Management
    2.Click on the bottom gear icon between i and ?.
    3.Under Battery Health, Click on Start for Battery Gauge Reset. (refer to Fig. 1 below)
    4.That should refresh the gauge and let the system finish through the cycle.
    Method C:
    1.Open Lenovo Energy Management
    2.Click on the bottom gear icon between i and ?.
    3.Under Battery Health, choose "Optimize For Battery Runtime" instead of "Optimize for Battery Lifespan".
    Note: The latter option will extend the lifespan of battery by limiting the charging capacity to be between 0-80%. 
    http://forums.lenovo.com/t5/IdeaPad-Y-and-U-series-Laptops/Z570-Battery-plugged-in-but-not-charging-...
     Do give this a try and let us know  
    Hope This Helps
    Cheers!!!
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    How to send a private message? --> Check out this article.
                            English Community   Deutsche Community   Comunidad en Español

  • Admin Console not refreshing

    I am running WLS v6.1 sp2 and using the monitoring feature of the admin console
    to view MDBs. Under a load of 200 requests we cannot refresh the monitoring view.
    The hourglass icon appears for the pointer and will only refresh when all requests
    have completed.
    Any suggestions why we have to wait 'til the MDBs return to an idle state before
    the console will refresh?
    Thanks ...

    just re-start the admin instance and then tpye the correct url on a new browser
    window.
    let me know if this helps !!!
    Frank D. Greco <[email protected]> wrote:
    "E allen" <[email protected]> sez:
    Help please ! This is a wierd problem. We cant get the admin console(port 7001)
    to come up in a browser. The browser just runs and runs and never displaysan
    error message ... we were able to see the console a couple of days ago... never
    saw anything like it. Admin server is running and application serverinstance
    is running ,,, we can see application in browser ,, just not Admin console!
         I've had the same problem (in IE). I have to kill IE and restart it
         quite often.
         Also, Opera has significant problems with displaying the console (the
         left-hand applet).
         It may be a JVM-versioning, which I haven't checked yet. I'm using
         the 1.4 plug-in JVM, not the default 1.1 JVM (circa 1997) of
         MonopolySoft.
         frank
    +=========================================+
    | Crossroads Technologies Inc. |
    | Enterprise Java Engineering |
    | Web: www.CrossroadsTech dot com |
    | Email: fgreco @ crossroadstech dot com |
    +=========================================+

  • Macbook power icon not refreshing

    On my macbook (10.6.8) the battery icon in the top toolbar does not refresh to reflect the current charge.
    For example - it might display as being plugged in when it's not, read 90% charged when it's about to die, etc.
    I can force it to refresh to the proper state by changing the display seeing for the icon (ie, from percent to time) and it will show the current state properly. But it won't continue to show the updated status. Any time i need to know what my battery is, i need to refresh the icon.
    Note - I haven't noticed any actually battery issues. It seems to charge just fine and has appropriate battery life when not plugged in. The interface simply doesn't show the power properly.
    Not sure what could be causing this. Thanks for the help
    -Nick

    Hi Nick...
    Try Resetting the System Management Controller (SMC)
    And here >  Apple Portables: Troubleshooting MagSafe adapters

  • Can not refresh server manager Error:0x8007045b

    OS: Windows 2012 R2 Core
    Services: Hyper V
    I was trying to remote reboot and the session hung. No worries I decided I could just reboot the next morning. So I rebooted the next day but when I go into server manager I get
    an errror can not refresh server manager Error:0x8007045b. Did some research found suggestions to fix it using a DISM.exe /Online /Cleanup-image /Restorehealth.
    But then I get an error 1115 A system Shutdown is in progress. I attempt to fix this issue using pskill winlogon but the issue pursistest. I have restarted the server several times now. Not sure how to fix this.
    Thanks in advance,
    Jake

    Hi,
    In addition to the above information,
    Checkout the below thread for similar discussion,
    http://social.technet.microsoft.com/forums/windowsserver/en-US/a700e9f6-4491-4c70-8bd0-d9d3111e2f70/windows-reboot-error
    Regards,
    Gopi
    JiJi
    Technologies

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

  • Can not refresh the metrics in schedular

    Post Author: sachinddalal
    CA Forum: Performance Management and Dashboards
    Hi,
    When I refresh the metric using schedular, the metric is not refreshed , nor schedular return any error. But when checked in metrics proparties, the last refresh date is not changed, niether the values are updated.
    Whe I try to refresh the metric manual, the values are refresh.
    Please help me to troubleshoot the problem of refreshing metric through schedular.
    Thanks,
    Regards
    Sachin Dalal

    Post Author: jezbraker
    CA Forum: Performance Management and Dashboards
    Scheduler is pretty horrid for refreshing metrics.Better of to use the Rules engine and create a rule thats based on a schedule that based on condition (1=1 works well ) then refreshes metircs.troubleshooting is best done with the trace options in setup/parameters.there are a few other ways or seeing what the schedulers up to - but id stick to rules if i were you.

  • Converting Acrobat 7 SDK -built plug-in to Acrobat 9

    We have a plug-in developed inhouse with Acrobat 7 SDK. We are looking for someone with SDK programming experience to help us port it for Acrobat 9. We tried ourselves using Xcode compiler, but it seems that the plug-in is not showing up either as a Menu item nor as a tool icon.
    I understand that it may be a very simple problem, which somehow we miss resolving, but since our original programmer is no longer with us, we need some help in porting the tool to Acrobat 9 Pro.
    If interested, or have a suggestion, please call me at 216-252 7300 ext. 2684.
    Andrzej

    NoSmoking,
    Thanks for the reply. Since I am not the programmer you may need to just bear with me a bit, if you can.
    First, the app is running on OSX (10.3.9 - 10.5.11) - hence the use of XCode as compiler. I checked About Adobe Plug-ins list in 9 Pro which shows loaded plug-ins and our UpdatePage4Layer.acroplugin is not there. Unless there is another way to look at the loaded plug-in list, I cannot find it.
    Second, could you explain the check using PluginInit method? There is a section in the project's code which covers PluginInit, but I am not sure how I can use it:
    /* PluginInit
    ** The main initialization routine.
    ** Return true to continue loading plug-in.
    ** Return false to cause plug-in loading to stop.
    ACCB1 ASBool ACCB2 PluginInit(void)
    return MyPluginSetmenu();
    I also searched for AVMenuItemNew in the project's code and here is what I found:
    // Create our menuitem
    menuItem = AVMenuItemNew (MyMenuItemTitle, MyMenuItemName, NULL, true, NO_SHORTCUT, 0, NULL, gExtensionID);
    AVMenuItemSetExecuteProc (menuItem, ASCallbackCreateProto(AVExecuteProc, MyPluginCommand), NULL);
    AVMenuItemSetComputeEnabledProc (menuItem,
    ASCallbackCreateProto(AVComputeEnabledProc, MyPluginIsEnabled), (void *)pdPermEdit);
    // get advanced menu
    advancedMenu = AVMenubarAcquireMenuByName (menubar, "Advanced");
    endToolsGroup1MenuItem = AVMenubarAcquireMenuItemByName(menubar, "endToolsGroup1");
    ASInt32 sepIndex = AVMenuGetMenuItemIndex(advancedMenu, endToolsGroup1MenuItem);
    // add new menuitem under AcrobatSDK Sub Menu
    if(bUnderAcrobatSDKSubMenu) {
    // Acquire the common "AcrobatSDK" sub menu.
    commonMenu = AVMenubarAcquireMenuByName (menubar, "AMGR:AG_Plugins");
    // if "AcrobatSDK" sub menu is not existing, create one under Advanced menu.
    if (!commonMenu) {
    commonMenu = AVMenuNew ("AG Plugins", "AMGR:AG_Plugins", gExtensionID);
    commonMenuItem = AVMenuItemNew ("AG Plugins", "AMGR:AG_Plugins", commonMenu,
    false, NO_SHORTCUT, 0, NULL, gExtensionID);
    bCreatedCommonMenu = true;
    AVMenuAddMenuItem(advancedMenu, commonMenuItem, sepIndex);
    // add new menu item to Acrobat SDK sub menu
    AVMenuAddMenuItem (commonMenu, menuItem, APPEND_MENUITEM);
    // or directly add new menu item under Advanced menu
    else {
    endToolsGroup1MenuItem = AVMenubarAcquireMenuItemByName(menubar, "endToolsGroup1");
    ASInt32 sepIndex = AVMenuGetMenuItemIndex(advancedMenu, endToolsGroup1MenuItem);
    AVMenuAddMenuItem(advancedMenu, menuItem, APPEND_MENUITEM);
    AVMenuRelease(advancedMenu);
    AVMenuItemRelease(endToolsGroup1MenuItem);
    AVMenuRelease (commonMenu);
    HANDLER
    if(endToolsGroup1MenuItem)
    AVMenuItemRelease(endToolsGroup1MenuItem);
    if (advancedMenu)
    AVMenuRelease (advancedMenu);
    if (commonMenu)
    AVMenuRelease (commonMenu);
    return false;
    END_HANDLER
    Then I found also instructions to get the tool bar button (which BTW did not work in Acrobat 8):
    //add button to toolbar
    DURING
    // Create the main toolbutton. We position it just before the end of the
    // tools group of buttons.
    toolsSeparator = AVToolBarGetButtonByName(toolBar, ASAtomFromString("endSelectToolsGroup"));
    toolButton = AVToolButtonNew (ASAtomFromString("AMGR:UpdatePG4Layer"),GetToolButtonIcon("UpdatePG4Icon","png"), true, false);
    // You must set the internal/external nature of the toolbutton
    // before adding it to the toolbar. Buttons are internal by default.
    // AVToolButtonSetExternal (toolButton, TOOLBUTTON_EXTERNAL);
    AVToolBarAddButton (toolBar, toolButton, true, toolsSeparator);
    AVToolButtonSetExecuteProc (toolButton,
    ASCallbackCreateProto(AVExecuteProc, MyPluginCommand), NULL);
    AVToolButtonSetComputeEnabledProc (toolButton,
    ASCallbackCreateProto(AVComputeEnabledProc, MyPluginIsEnabled), (void *)pdPermEdit);
    AVToolButtonSetHelpText (toolButton, "AG Plugins:UpdatePG4Layer");
    HANDLER
    return false;
    END_HANDLER
    return true;
    However I do not know where I can find AVMenuItemNew&#12289, or is that expression a combination of separate items?
    Thanks again for your help,
    A.

  • Clicking a tree node does not refresh the fields in the table component

    hi all,
    I am using a tree component along with a table component in my page.so whenever i am clicking on a node it should display the relevant information of that node in the table from the database.But whenever i am doing the page is not refreshing and the old values of the textfields in the table still exist.i have written the code to populate the table in a button click event.It is working fine but the same is not working when i am clicking any node in the tree component.Can anyone provide a solution to this problem.
    Thanks and regards,
    Prasant Kumar

    Never mind... I actually found something that works...
    treeModel.nodeStructureChanged(leadSelection);

Maybe you are looking for

  • Full screen caller picture on iOS 7.1?

    Now that iOS 7.1 is out I successfully upgraded my iPhone 5. It changes the full screen pictures to a small picture in a circle. It used to be more  aesthetically pleasing, showed more information at a glance, it's totally beyond me while they would

  • From newbie: How to change data source?

    To Crystal Reports design forum: I'm just trying to get to know Crystal Reports.  (Version 11.5.8.826)  So I used one of the examples in their sample database (a pie chart), and saved a new version with a new name.  Now, I'm trying to change the data

  • Sub-report variable on main report

    HI Forum, I have a report with a sub-report. I am trying to have the sub-report to get an item "price" from a salesorder on a given year in this case 2010... i get that with a shared variable... the sub-report prints the correct value.... except that

  • How to enable Rosetta at the system level using the command line?

    I need to find a way to enable Rosetta at the system level (e.g. all users) using the command line. When Rosetta is enabled, the following entry is created in ~/Library/Preferences/com.apple.LaunchServices (run defaults read com.apple.LaunchServices)

  • Logical Column Agreggation:  Count Distinct

    I have a logical column with agreggation = 'CountDistinct'. The problem is when this column is included in my request, it slows down the generation of request. Sometimes the request would run for more than 40 minutes just reading 250,000 records. Is