Close ShowDetailItem

Hi guys,
I have page that has this struct:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <af:document title="main.jsf" id="d1" binding="#{backingBeanScope.backing_main.d1}">
        <af:form id="f1" binding="#{backingBeanScope.backing_main.f1}">
            <af:panelBox text="Welcome" id="pb1" binding="#{backingBeanScope.backing_main.pb1}">
                <f:facet name="toolbar"/>
                <af:panelTabbed id="pt1" binding="#{backingBeanScope.backing_main.pt1}"
                                tabRemoval="all"
                                styleClass="AFStretchWidth">
                    <af:showDetailItem text="ShowDetailItem 1"
                                       id="sdi2"
                                       disclosed="false"
                                       itemListener="#{backingBeanScope.backing_main.remove}" stretchChildren="first">
                        <af:outputText value="Other tab" id="ot1" binding="#{backingBeanScope.backing_main.ot1}"/>
                    </af:showDetailItem>
                    <af:showDetailItem text="ShowDetailItem with Region" id="sdi1"
                                       disclosed="true"
                                       itemListener="#{backingBeanScope.backing_main.remove}">
                        <af:region value="#{bindings.taskflowexitsample1.regionModel}" id="r1"
                                   binding="#{backingBeanScope.backing_main.r1}"
                                   regionNavigationListener="#{backingBeanScope.backing_main.hearEvents}" />
                    </af:showDetailItem>
                </af:panelTabbed>
            </af:panelBox>
        </af:form>
    </af:document>
    <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_main-->
</f:view>and I want close a ShowDetailItem after I finish to execute my taskflow. I created a region listener to find when my taskflow finish but I can't close the showDetailItem, I'm trying this way:
    public void hearEvents(RegionNavigationEvent regionNavigationEvent) {
        System.out.println("old " + regionNavigationEvent.getOldViewId());
        System.out.println("new " + regionNavigationEvent.getNewViewId());
        if(regionNavigationEvent.getNewViewId() == null){ //because it's exit (final return)
            List<UIComponent> children = this.getPt1().getChildren();
            for(UIComponent comp : children){
                if(comp instanceof RichShowDetailItem){
                    RichShowDetailItem item = (RichShowDetailItem)comp;
                    if(item.isDisclosed()){
                          this.getPt1().getChildren().remove(item);
            AdfFacesContext.getCurrentInstance().addPartialTarget(this.getPt1());
    }anybody can help me?
Renan
I'm using : JDeveloper 11.1.2.1.0

I tried the following code and it works for me.
              <af:panelBox text="Welcome" id="pb1" binding="#{CloseShowDtlItem.pb1}">
                    <af:panelTabbed id="pt1" tabRemoval="all" styleClass="AFStretchWidth"
                                    binding="#{CloseShowDtlItem.pt1}">
                        <af:showDetailItem text="ShowDetailItem 1" id="sdi2" disclosed="false" stretchChildren="first"
                                           binding="#{CloseShowDtlItem.showDtl1}">
                            <!-- itemListener="#{backingBeanScope.backing_main.remove}"-->
                            <af:outputText value="Other tab" id="ot1"/>
                        </af:showDetailItem>
                        <af:showDetailItem text="ShowDetailItem with Region" id="sdi1" disclosed="true"
                                           binding="#{CloseShowDtlItem.showDtl2}">
                            <af:region value="#{bindings.taskflowdefinition1.regionModel}" id="r2"
                                       regionNavigationListener="#{CloseShowDtlItem.hearEvents}"/>
                        </af:showDetailItem>
                    </af:panelTabbed>
                </af:panelBox>
          public void hearEvents(RegionNavigationEvent regionNavigationEvent) {
              System.out.println("old " + regionNavigationEvent.getOldViewId());
              System.out.println("new " + regionNavigationEvent.getNewViewId());
              if(regionNavigationEvent.getNewViewId() == null){ //because it's exit (final return)
                  List<UIComponent> children = this.getPt1().getChildren();
                  RichShowDetailItem item = null;
                  for(UIComponent comp : children){
                      if(comp instanceof RichShowDetailItem){
                          item = (RichShowDetailItem)comp;       
                           if(item.isDisclosed()){
                               break;
                  this.getPt1().getChildren().remove(item);
                  item.setRendered(false);
                  AdfFacesContext.getCurrentInstance().addPartialTarget(pt1);
        }Thanks,
TK

Similar Messages

  • Help on Panel tabbed component

    Hi everybody,
    i have a panel tab with two show detail items in it.
    on first show detail item, i have a button - when click should show second show detail item.
    Can any help how to do this from a bean?
    Thanks
    KM.

    Hi,
    you can programatically disclose/close showdetailitem. see this http://www.youritbox.com/index.php?option=com_content&view=article&id=801&Itemid=399
    ~Abhijit

  • Close icon display for a Tab(ShowdetailItem)

    Hi,
    I am using the PanelTab with multiple ShowDetailItems. I am giving the close icon provision for the showdetail item. But the close icon is coming only in mouse over.
    I need to display the close always(ShowDetailItem).
    Reg,
    Brahma B

    There is a tutorial for JScrollPane:
    http://java.sun.com/docs/books/tutorial/uiswing/components/scrollpane.html
    It came to my mind that JSplitPane is not using JScrollPane for the two components you add. So perhaps the solution would be to "wrap" both your components to their own JScrollPane before you add them to the split pane.
    Then for those scroll panes I would probably use:
    JScrollPane.setColumnHeaderView(myXCloseButtonInAPanel)
    or
    JScrollPane.setCorner(upperRightCorner, myXCloseButton)
    I don't know if that will work, or how it will look like now that you use the scroll pane's scrollbars instead of the split pane's scroll bar. You have to experiment with it. The scroll pane's should be able to resize themself to fit in the split panes areas when you move the divider, and maybe that's not so easy to do. Otherwise you will end up with both a scrollbar from the split pane and a scroll bar from the scroll pane.. yuck.
    Maybe someone else has a better solution?

  • How i can catch de close ovent on a ShowDetailItem?

    I need ask if the user wants to close the DetailItem with a popup dialog. i use itemListener(ItemEvent itemEvent) in my MB but i can't stop the close action.
    Edited by: user12982724 on 10-feb-2012 10:46

    Ok, the requeriments has change, IF the user do a change, for example delete a row in a table (delete method of adf binding) and the user doesn't click un the save button and attends to close de browser windows HOW I CAN WARNING THE USER THAT THERE ARE CHANGES WICH ARE NOT SAVED????

  • Deactivating region (taskflow) when changing showDetailItem in panelTabbed

    Jdev 11.1.1.4
    I have a JSF page with a af:panelTabbed wiith two af:showDetailItem
    In every af:showDetailItem I have a region mapping to the same task flow in both regions (in order to reuse).
    The taskflow has to main steps: First one method call initializing some view objects and variables. the second a view displaying a JSF.
    Every time the af:showDetailItem is changed (by clicking on the tab) I need the taskflow to be restarted and begin a new fresh copy of it.
    To achieve this I have defined both af:showDetailItem like this
    <af:showDetailItem text="#{viewcontrollerBundle['ALU.CERTIFICADOS']}" id="sdi1"
    stretchChildren="first" immediate="true"
    binding="#{backingBeanScope.pertanasSolCertCompBB.sdi1}"
    *disclosureListener="#{backingBeanScope.pertanasSolCertCompBB.sdi1_disclosureListener}"*
    partialTriggers="r1">
    and
    <af:showDetailItem text="#{viewcontrollerBundle['ALU.COMPULSAS']}" id="sdi2"
    immediate="true"
    binding="#{backingBeanScope.pertanasSolCertCompBB.sdi2}"
    *disclosureListener="#{backingBeanScope.pertanasSolCertCompBB.sdi2_disclosureListener}"*
    stretchChildren="first" partialTriggers="r2">
    The sdi1_disclosureListener is defined:
    public void sdi1_disclosureListener(DisclosureEvent disclosureEvent) {
    activacionRegion activeRegionBean = (activacionRegion)resolveELExpression("#{activacionRegion}");
    if (disclosureEvent.isExpanded()) {
    activeRegionBean.setRegionCertificadosActivation(true);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r1);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r2);
    else activeRegionBean.setRegionCertificadosActivation(false);
    the sdi2_disclosureListener is defined more or less the same but opposite:
    public void sdi2_disclosureListener(DisclosureEvent disclosureEvent) {
    activacionRegion activeRegionBean = (activacionRegion)resolveELExpression("#{activacionRegion}");
    if (disclosureEvent.isExpanded()) {
    activeRegionBean.setRegionCompulsasActivation(true);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r2);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r1);
    else activeRegionBean.setRegionCompulsasActivation(false);
    The activeRegionBean.setRegionCompulsasActivation(false); and activeRegionBean.setRegionCertificadosActivation(false); is a bean controlling the binding of the regions in the page:
    <taskFlow id="AlumnosSolCertificados1"
    taskFlowId="/WEB-INF/Aumnos/AlumnosSolCertificados.xml#AlumnosSolCertificados"
    activation="conditional"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    active="#{activacionRegion.regionCertificadosActivation}">
    <parameters>
    <parameter id="TipoPantalla"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"
    value="CERTIFICADOS"/>
    </parameters>
    </taskFlow>
    and
    <taskFlow id="AlumnosSolCertificados2"
    taskFlowId="/WEB-INF/Aumnos/AlumnosSolCertificados.xml#AlumnosSolCertificados"
    activation="conditional"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    active="#{activacionRegion.regionCompulsasActivation}">
    <parameters>
    <parameter id="TipoPantalla"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"
    value="COMPULSAS"/>
    </parameters>
    </taskFlow>
    All this works ok when I click on B showdetailitem after intially having shown A. The task flow first terminates and then initiates a new taskflow.
    But when I reactivate showdetailitem A clicking on it, the taskflow is first activated and then deactivated loosing all its initialization.
    The problem is that ADF first executes always the conditional activation of the first showdetailitem and the the conditional activation of the second showdetailitem what is ok in one sense but not on the other because it closes the taskflow after having been opened.
    Do I have any way to avoid this and control that the taskflow is always first deactivated and then activated ?

    Jdev 11.1.1.4
    I have a JSF page with a af:panelTabbed wiith two af:showDetailItem
    In every af:showDetailItem I have a region mapping to the same task flow in both regions (in order to reuse).
    The taskflow has to main steps: First one method call initializing some view objects and variables. the second a view displaying a JSF.
    Every time the af:showDetailItem is changed (by clicking on the tab) I need the taskflow to be restarted and begin a new fresh copy of it.
    To achieve this I have defined both af:showDetailItem like this
    <af:showDetailItem text="#{viewcontrollerBundle['ALU.CERTIFICADOS']}" id="sdi1"
    stretchChildren="first" immediate="true"
    binding="#{backingBeanScope.pertanasSolCertCompBB.sdi1}"
    *disclosureListener="#{backingBeanScope.pertanasSolCertCompBB.sdi1_disclosureListener}"*
    partialTriggers="r1">
    and
    <af:showDetailItem text="#{viewcontrollerBundle['ALU.COMPULSAS']}" id="sdi2"
    immediate="true"
    binding="#{backingBeanScope.pertanasSolCertCompBB.sdi2}"
    *disclosureListener="#{backingBeanScope.pertanasSolCertCompBB.sdi2_disclosureListener}"*
    stretchChildren="first" partialTriggers="r2">
    The sdi1_disclosureListener is defined:
    public void sdi1_disclosureListener(DisclosureEvent disclosureEvent) {
    activacionRegion activeRegionBean = (activacionRegion)resolveELExpression("#{activacionRegion}");
    if (disclosureEvent.isExpanded()) {
    activeRegionBean.setRegionCertificadosActivation(true);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r1);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r2);
    else activeRegionBean.setRegionCertificadosActivation(false);
    the sdi2_disclosureListener is defined more or less the same but opposite:
    public void sdi2_disclosureListener(DisclosureEvent disclosureEvent) {
    activacionRegion activeRegionBean = (activacionRegion)resolveELExpression("#{activacionRegion}");
    if (disclosureEvent.isExpanded()) {
    activeRegionBean.setRegionCompulsasActivation(true);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r2);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r1);
    else activeRegionBean.setRegionCompulsasActivation(false);
    The activeRegionBean.setRegionCompulsasActivation(false); and activeRegionBean.setRegionCertificadosActivation(false); is a bean controlling the binding of the regions in the page:
    <taskFlow id="AlumnosSolCertificados1"
    taskFlowId="/WEB-INF/Aumnos/AlumnosSolCertificados.xml#AlumnosSolCertificados"
    activation="conditional"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    active="#{activacionRegion.regionCertificadosActivation}">
    <parameters>
    <parameter id="TipoPantalla"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"
    value="CERTIFICADOS"/>
    </parameters>
    </taskFlow>
    and
    <taskFlow id="AlumnosSolCertificados2"
    taskFlowId="/WEB-INF/Aumnos/AlumnosSolCertificados.xml#AlumnosSolCertificados"
    activation="conditional"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    active="#{activacionRegion.regionCompulsasActivation}">
    <parameters>
    <parameter id="TipoPantalla"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"
    value="COMPULSAS"/>
    </parameters>
    </taskFlow>
    All this works ok when I click on B showdetailitem after intially having shown A. The task flow first terminates and then initiates a new taskflow.
    But when I reactivate showdetailitem A clicking on it, the taskflow is first activated and then deactivated loosing all its initialization.
    The problem is that ADF first executes always the conditional activation of the first showdetailitem and the the conditional activation of the second showdetailitem what is ok in one sense but not on the other because it closes the taskflow after having been opened.
    Do I have any way to avoid this and control that the taskflow is always first deactivated and then activated ?

  • How to close a tab?

    Hi,
    I am displaying a tabs on click of commandImageLink in the center panel. For this I have used PanelTabbed and inside that I have included 3 ShowDetailItems. I have changed the TabRemoval property of PanelTabbed to All and visibility false for the showDetailItems. On click of commandImageLink I am making the ShowDetailItem visible as a tab in the center. But how can I close tab on click of cross sign(Close Tab) or hide its visibilty?

    ya I'm aware of the shortcut keys. Been using a mac since they came out. She is used to interaction with the mouse, hence the specific question as to where the X has gone.

  • Oracle Web Center Portal - af:showDetailItem/ Client Listener using Javascript

    Dear,
    I wonder if it is possible to run a JavaScript function whenever a tab is selected in the component <af: panelTabbed /> which contains components <af: panelTabbed /> I need to run the function each time you select a tab, it is possible this??
    Here my example:
    <af:resource type="text/javascript">                                                   
                        function alertTabSwitch(disclosureEvent){
                            var tab = disclosureEvent.getSource();
                            if(tab.getDisclosed()==true){
                               alert("test tab : " + tab);
                               disclosureEvent.cancel();                         
    </af:resource>
    <af:panelTabbed id="pt1" styleClass="detalleAutoridad" dimensionsFrom="auto">
          <af:showDetailItem text="#{portalBundle.BIOGRAFIA}" id="sdi1" disclosed="true"  persist="disclosed" clientComponent="true">
    Thanks,
    Best Regards.

    Here is the code snippet, which is will call every time you click the tab.
    <af:resource type="javascript">
    function performOnTabSwitch(disclosureEvent){
        var tab = disclosureEvent.getSource();   //This is the tab to close
        if(tab.getDisclosed()==true){
           alert(tab);
           disclosureEvent.cancel();
    </af:resource>
          <af:panelTabbed id="pt1">
                <af:showDetailItem text="FirstTab" id="sdi1" disclosed="true" stretchChildren="first"
                                   clientComponent="false">
                                   First Tab
                    <af:clientListener method="performOnTabSwitch" type="disclosure"/>
                   </af:showDetailItem>
                <af:showDetailItem text="SecondTab" id="sdi2" stretchChildren="first" clientComponent="false">
                Second Tab
                <af:clientListener method="performOnTabSwitch" type="disclosure"/>
                   </af:showDetailItem>
            </af:panelTabbed>
    -K

  • Find open and close smart quotes

    Dear scripter,
    Here I am trying find whether all the open double smart quotes(") are closed with close double smart quotes("). Here is my small work to find how many open and close quotes.
    myopenqu=app.activeDocument.search("^{", false, false, "^{");
    myclosequ=app.activeDocument.search("^}", false, false, "^}");
    myopenqulength = myopenqu.length;
    myclosequlength = myclosequ.length;
    if(myopenqulength!=myclosequlength)
    alert("Quotes not matched\n"+ myopenqulength +" Open quotes found\n" + myclosequlength +" Close quotes found")
    It works well, the script just alert if I have 25 open quotes and 23 close quotes
    Quotes not matched
    25 Open quotes found
    23 close quotes found
    Now I want to find the quote set where the 24,25th set close quotes are missing?
    Is there any way to find the misisng quotes
    Thanks in advance
    regards
    a r u l
    vpublish.net

    You'd have to look for unmatched quotes, in this case two cases of two open quotes without an intervening closed quote. This is difficult to script in CS2 because it doesn't have GREP natively and because of footnote problems. In CS3/4 it should be possible. But even then it will work only if you don't have quotes within quotes.
    Peter

  • Report OPEN and CLOSE in computers client

    Post Author: B.prata
    CA Forum: Crystal Reports
    I have an application developedin Visual Basic with report in the CR 4.6, but in the computers customers when I will access the application,I try to emit a report , it opens and close the report. What can be?

    There is no FaceTime app for the iPhone if that's what you're asking.  FaceTime is accessible through your Contacts as one of the options in how to contact a person -- there is no standalone FaceTime app for iPhone.
    If you mean how to disable FaceTime, you can do that in Restrictions (Settings/General/Restrictions).

  • UGGGH itunes wont open it says error and has to close HELPPP

    ok so everytime i tryyy to open iTunes it says iTunes has encountered a problme and needs to close. we are sorry for the inconvenience and i really wanna get this fixed and im going away for thanksgiving and i wanna get it ready cuase its 5 hours long and i wanna have my iPod i went on my brothers got his music so atleast i have something
    I do have Norton thingy running but, i dont know how to fully close it i right click and click disable
    but i keep downloading iTunes then removing then restarting my computer
    still nothing
    so i would like be so happy if someone helped meee!

    hi kristen!
    iTunes has encountered a problme and needs to close.
    the first thing i check for with one of those is a broken quicktime. does your quicktime currently launch?
    if not, first try a careful standalone QT install. see:
    b noir, "QuickTime Installation FAILED!! "Error Code: -1"" #1, 09:31am Oct 22, 2005 CDT
    keep us posted.
    love, b

  • Re: i can't start up indesign cc each time it says it has to close the program on start-up. I have uninstalled and reinstalled and have rebooted my machine seeveral times and it still doesn't work.

    How do you create another user account?
    I am having a similar problem - have deleted preferences which did not  solve - this is since I  installed the latest update - it is very slow - and  cannot close - says background task running  - but when I open background task  window - shows nothing - only way to close is to use Windows task manager and end program
    mouse movements are delayed - it takes forever to do anything
    Windows 7 Pro
    Intel CPU - 2.93 Ghz
    Ram - 8 Gb
    AMD Radeon HD 7900 Series

    My problem is really weird - ID CC 2014 with the latest update  can become very slow - at first it was only when I had other applications going [especially Photoshop] - but  for the last week it has  been every time I try to use it - even with no other app running.
    Mouse movements are delayed, any selection takes forever to take effect. When closing - I sometimes get message saying background task is running [but not every time]
    new user account didn't help, deleting preferences neither .
    I had several ID files open -closed those - crashed ID - rebooted - opened  totally different files - same problem.
    However - I have just deleted the file Recovery Data  in the users/user name/appdata/local/adobe/indesign/version 10.0/en_US/Caches/InDesign REcovery- and that seems to have temporarily fixed the issue as ID is behaving normally now.  [I guess that 's the same as  creating another user account]
    Ann

  • Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems n

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

  • My apps dance open and close on their own in my IPad 2 what can be the prob? I have already restored

    I got the charger flex or pin changed and now the apps dance on the screen, photos open and zoom in, then out, the other apps open and close. I have already restored the device with Itunes and prob is still there. What can be the problem? Any suggestion will be welcome. Thank you

    THANKS for your prompt reply  Bluetooth is off in my laptop and IPhone.. and in fact the reset is the only thing that can make it back to normal. But for a lil while. I wonder if it is the touch, or the home botton... both things are very expensive to replace, so I wouldn't like to spend $$ and continue having the prob.....

  • Apps in iPad 1 open and close quickly

    Hello,
    My mother has an iPad 1 (she has her own itunes account) but had never synced and updated her iPad with a computer (pc or mac).
    Today I had to use it and connected to my iTunes on the pc but only to update her iOS on the iPad wich was 3.x. After the whole update process (wich went normal and smooth) almost every app that I woud open, closed imeadtly. I say ALMOST because, a few from the default apps (like Mail, Photos, Safari, System, etc) opens normaly. Though iBooks doesnt and all 3rd party apps also doesnt open normaly.
    I've tryed to reboot it one more time thinking it was some kind of strange bug or something but didn't work. The apps continue to open and close almost instantly.
    I'd like to know if anyone had a similar problem and how they solved it or if my only resource is to roll back to the iPad backup made in my pc.
    Thanks in advance.
    Luis Felipe

    Try double-tapping the home button, then holding the app icon until the minus sign appears. Touch the minus sign to kill all the apps. Then restart the iPad with the home/power buttons (hold for ten seconds) until the apple appears.

  • Where we have to open and close posting periods in asset accounting

    hi sap gurus
      can anybody give where we have to open and close posting periods in asset accounting
    thank you
    venkatareddy

    Hi Venkatareddy,
    You make specifications for fiscal years and posting periods in the SAP R/3 System in Customizing for Financial Accounting. This is done in the fiscal year variant in the global parameters of the company code. These settings are, in general, also binding for Asset Accounting. The depreciation periods in Asset Accounting then correspond to the posting periods in Financial Accounting.<b> It is usually not necessary to create a separate fiscal year variant for Asset Accounting.</b>
    The period control in the depreciation key determines the start and end of depreciation when asset transactions are posted . The period control determines the relationship between the calendar period in which the asset transaction is posted and the depreciation period.
    These calendar periods are independent of the posting periods in Financial Accounting. The only restriction is that the beginning of the first calendar period and the end of the last calendar period defined in a period control have to match the start date and final date of the fiscal year in Financial Accounting.
    Kindly let me know if this useful for you

Maybe you are looking for

  • Logical System is Not Defined in EBP...

    Hi SAP GURU's,   Please do Accept My Thanks for Kind Help   Rendered So far ..   My issue is whie working wih Accoutn Assignment is EBP ,I Tried to Maintain Logical System ..But system  is throwing Error Massage Logical System is Not Defined in EBP..

  • How can I stop Firefox from crashing when I try to clear history?

    For the last few days I haven't been able to clear history for the day. I tell firefox to Clear for Today. I tell it to clear now but after a while nothing is happening. When I check with the task manager my Firefox windows have stopping responding.

  • How do i find & remove duplicated source .jpg files?

    i have a number of duplicate copies of .jpg picture files which, when imported into iphoto, are fairly easy to identify as duplicates, thus cleaning up my iphoto library. however, i would like to remove the duplicate source files as well just to tidy

  • TEXT_IO.FOPEN how to pick file without specifying the full directory path

    Hi, I am using Oracle application server 10gR2 on Linux with forms 10g application. I am building the DEV/TEST/UAT environment on same Linux machine with one OAS. I am using TEXT_IO.FOPEN ('/home/oracle/check.txt','r') to read a server side file and

  • Hyperlink to open in new window on clicking via crystal client

    Hi, How to call hyperlink in new window via crystal client. I have main report. In that ,for two-three columns, I have made the hyperlink and I want that when user click on that column, it should open in new window. But I am unable to open the below