Issue with adf projectGantt showing popus

hi all
am working with adf projectGantt using page template every thing goes perfectly but when I want to see task properties for example or modify the time axis reliated popus never appear (when i dont use templates every thing gonna be alright :s)
i'll be very thankful if any one could help
this is my gantt.jspx with template
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:dvt="http://xmlns.oracle.com/dss/adf/faces">
<jsp:directive.page contentType="text/html;charset=windows-1252"/>
<!--h:inputHidden value="#{typeBean.init}"/-->
<f:view>
<af:document title="Project Gantt"
binding="#{templateBindings.documentComponent}" theme="medium"
id="d">
<af:form id="form">
<af:pageTemplate id="gant" viewId="/tagDemoTemplate.jspx">
<!-- Document Title -->
<f:attribute name="documentTitle" value="Project Gantt"/>
<!-- Tag Name -->
<f:facet name="first1">
<af:image source="/images/d.png"
inlineStyle="width:1400px;heigth:150px"/>
<!--f:subview id="enteteTache">
<jsp:include page="/entete.jspx"/>
</f:subview-->
</f:facet>
<f:facet name="auxiliaryGlobal">
<f:subview id="menuTache">
<jsp:include page="/MenuProjet.jspx"/>
</f:subview>
</f:facet>
<f:facet name="top1">
<af:navigationPane id="nav1" hint="tabs">
<af:commandNavigationItem id="tagGuideTab" text="Projet Assigné"
shortDesc="Description détaillée du projet, diagramme de gantt, tâches, etc."
selected="true"
actionListener="#{navigationBean.navigationItemAction}"
action="assigne"/>
<af:commandNavigationItem id="componentSkinningTab"
text="Resources Consommées"
shortDesc="Utilisation des ressources utilisées"
selected="false"
actionListener="#{navigationBean.navigationItemAction}"
action="consommation"/>
<af:commandNavigationItem id="ressTab"
text="Resources Prévisionnelles"
shortDesc="Utilisation des ressources prévisionnelles"
selected="false"
actionListener="#{navigationBean.navigationItemAction}"
action="prevision"/>
<af:commandNavigationItem id="fileExplorerTab" text="Aide"
shortDesc="Aide et description du projet"
selected="false" action="fileExplorer"/>
</af:navigationPane>
</f:facet>
<f:facet name="center">
<af:panelGroupLayout layout="scroll" id="pg1">
<f:facet name="separator">
<af:separator id="sep"/>
</f:facet>
<dvt:projectGantt id="mygantt" startTime="2010-01-01"
endTime="2011-12-31" var="task"
value="#{tacheBean.model}" rendered="true"
dataChangeListener="#{tacheBean.handleDataChanged}"
actionListener="#{tacheBean.handleAction}"
showCurrentDate="true" showMenuBar="true"
labelPlacement="inside"
binding="#{tacheBean.gantt}"
taskbarFormatManager="#{tacheBean.taskbarFormatManager}"
backgroundColor="#F5F5F5"
nonWorkingDaysColor="#FFE4B5"
nonWorkingDaysOfWeek="#{tacheBean.nonWorkingDays}"
taskSelectionListener="#{tacheBean.handleTaskSelected}"
doubleClickListener="#{tacheBean.handleDoubleClick}">
<f:facet name="toolbar">
<af:toolbar id="toolbar">
<af:group>
<af:commandToolbarButton partialSubmit="false"
icon="/images/new_ena.png"
id="bt_creer"
actionListener="#{tacheBean.nouveau}"
shortDesc="Créer une Tâche"
disabledIcon="/images/new_ena_002.png">
<af:showPopupBehavior popupId="popupDialog"/>
</af:commandToolbarButton>
<af:panelGroupLayout layout="default" id="pgl1"
theme="dark">
<af:popup id="popupDialog">
<h:inputHidden value="#{tacheBean.init}"/>
<h:inputHidden value="#{typeBean.init}"/>
<af:panelWindow modal="true" title="Ajout Tâche"
id="panelWindow1"
inlineStyle="height:300px; width:400px;">
<af:panelGroupLayout id="pgl2">
<center>
<af:panelBox text="Ajout" id="pb1"
titleHalign="left"
inlineStyle="height:300px; width:400px;"
background="medium"
showDisclosure="false"
showHeader="always"
icon="/images/new_ena.png">
<table id="t1" width="525" border="0"
cellpadding="1" height="233">
<tr>
<td align="left">
<af:outputLabel value="Nom :" id="ol8"
visible="true"
showRequired="true"/>
</td>
<td align="left" width="80">
<af:inputText id="it1" rows="1"
value="#{tacheBean.task.taskName}"
requiredMessageDetail="Champ Obligatoire"
shortDesc="Le Nom de la tâche"
autoSubmit="true"
autoTab="true"/>
</td>
</tr>
<tr>
<td align="left" width="80">
<af:outputLabel value="Label :" id="ol6"
visible="true"
showRequired="true"/>
</td>
<td align="left" width="80">
<af:inputText id="it2"
value="#{tacheBean.task.label}"/>
</td>
</tr>
<tr>
<td align="left" width="80">
<af:outputLabel value="Id Parent :"
id="ol5" visible="true"
showRequired="true"/>
</td>
<td align="left" width="80">
<af:selectOneChoice id="soc1"
inlineStyle="width:80px"
valueChangeListener="#{tacheBean.changeAttributes}">
<f:selectItems id="si1"
value="#{tacheBean.selectItems}"/>
</af:selectOneChoice>
</td>
</tr>
<tr>
<td align="left" width="80">
<af:outputLabel value="Rien :" id="rien"
visible="true"
showRequired="true"/>
</td>
<td align="left" width="80">
<af:inputText id="rien2"
partialTriggers="soc2 si2"/>
</td>
</tr>
<tr>
<td align="left" width="80">
<af:outputLabel value="Type :" id="ol4"
visible="true"
showRequired="true"/>
</td>
<td align="left" width="80">
<af:selectOneChoice id="soc2"
valueChangeListener="#{typeBean.changeAttributes}"
autoSubmit="true"
rendered="true">
<f:selectItems id="si2"
value="#{typeBean.selectItems}"/>
</af:selectOneChoice>
</td>
</tr>
<tr>
<td align="left" width="80">
<af:outputLabel value="Date Début :"
id="ol3" visible="true"
showRequired="true"/>
</td>
<td align="left" width="80">
<af:inputDate id="id1"/>
</td>
</tr>
<tr>
<td align="left" width="80">
<af:outputLabel value="Date Fin :"
id="ol2" visible="true"
showRequired="true"/>
</td>
<td align="left" width="80">
<af:inputDate id="id2"/>
</td>
</tr>
<tr>
<td align="left" width="80">
<af:outputLabel value="Durée :" id="ol1"
visible="true"
showRequired="true"/>
</td>
<td align="left" width="80">
<af:inputText id="it8" rows="1"
requiredMessageDetail="Champ Obligatoire"
shortDesc="Le Nom de la tâche"
autoSubmit="true"
autoTab="true"/>
</td>
</tr>
<tr>
<td> </td>
<td align="center" width="80">
<h:panelGrid columns="2">
<af:commandButton inlineStyle="width:80px"
id="insertion"
text="Ajouter"
actionListener="#{tacheBean.ajoutTache}"
immediate="true"
visible="true"></af:commandButton>
<af:commandButton inlineStyle="width:80px"
id="annuler"
text="Annuler"
immediate="true"
visible="true"></af:commandButton>
</h:panelGrid>
</td>
</tr>
</table>
</af:panelBox>
</center>
</af:panelGroupLayout>
</af:panelWindow>
</af:popup>
</af:panelGroupLayout>
<af:commandToolbarButton partialSubmit="false"
shortDesc="Mettre à jour la Tâche"
disabledIcon="/images/edit_dis.png"
icon="/images/edit16.png"></af:commandToolbarButton>
<af:commandToolbarButton partialSubmit="false"
shortDesc="Supprimer une Tâche"
icon="/images/delete16.png"
disabledIcon="/images/delete_dis.png"/>
<af:separator id="sep1"/>
<af:commandToolbarButton partialSubmit="false"
shortDesc="Impression"
icon="/images/print_ena.png"
disabledIcon="/images/print_ena.png"/>
<af:separator id="sep2"/>
<af:commandToolbarButton partialSubmit="false"
shortDesc="Couper"
icon="/images/cut_ena.png"
disabledIcon="/images/cut_dis.png"/>
<af:commandToolbarButton partialSubmit="false"
shortDesc="Copier"
icon="/images/copy_ena.png"
disabledIcon="/images/copy_dis.png"/>
<af:commandToolbarButton partialSubmit="false"
shortDesc="Coller"
icon="/images/paste_dis.png"
disabledIcon="/images/paste_dis.png"/>
</af:group>
</af:toolbar>
</f:facet>
<f:facet name="menuBar">
<af:menuBar>
<af:menu text="Custom Menu">
<af:commandMenuItem partialSubmit="false" text="Item 1"/>
<af:commandMenuItem partialSubmit="false" text="Item 2"/>
<af:commandMenuItem partialSubmit="false" text="Item 3"/>
</af:menu>
</af:menuBar>
</f:facet>
<f:facet name="major">
<dvt:timeAxis scale="months" id="monthx"/>
</f:facet>
<f:facet name="minor">
<dvt:timeAxis scale="weeks" id="weeks"/>
</f:facet>
<f:facet name="nodeStamp">
<af:column headerText="Id Tâche" id="c2">
<af:outputText value="#{task.taskId}" id="taskId"/>
</af:column>
</f:facet>
<af:column headerText="Nom Tâche" id="nom">
<af:outputText value="#{task.taskName}"/>
</af:column>
<af:column headerText="Date Debut">
<af:outputText value="#{task.startTime}" id="debut"/>
</af:column>
<af:column headerText="Date Fin">
<af:outputText value="#{task.endTime}" id="end"/>
</af:column>
<dvt:ganttLegend keys="#{tacheBean.legendKeys}"
labels="#{tacheBean.legendLabels}"/>
</dvt:projectGantt>
</af:panelGroupLayout>
</f:facet>
</af:pageTemplate>
</af:form>
</af:document>
</f:view>
</jsp:root>

hi,
previously i asked that question about how can i get date with time fallowed by am/pm in table fields for that your post is useful.
now have some of doubt about same thing, as we achieved like in table (date with time by am/pm) i need to get in query panel because in search criteria i not bale to search time filtering I'm able to filter with date only
its not allowing to change to search in design time( we know adf query wont allow design time modification as my knowledge) please suggest how can i change or any other way to create search instead of creating declarative
search modification.
and one more question i have how can i count number of rows displayed in table which displayed in search table if we want display no.of row displayed in table.
Thanks
Shankar

Similar Messages

  • I am having issues with internet explorer showing my slide show ? does any one know how to solve this ?

    I am having issues with Internet Explorer showing my picture slideshow it works perfect in Google Chrome and Mozilla Firefox however there is just a blank white box whenever I go to Internet Explorer I'm using a free domain for testing purposes
    www.wethepeople.site40.net
    Can anyone tell me how to fix this issue

    Could you please try publishing the muse site to test Business catalyst site using publish button and check if you still facing the same issue?  Please share the link to test Business catalyst site you have created.
    Looking forward to your reply.

  • Strange issue with ADF table in chrome browser

    I have ADF table which should display 23 rows, but only 20 rows are visible in chrome browser, but other browsers like IE, firefox displays the 23 rows correctly. I have used default ADF table with Drag&drop behaviour in this table. All the 23 rows exported correctly to Excel with export to Excel behaviour and inspect page source also shows all the rows in Chrome browser, but display in the adf is only problem in chrome browser. We're having a production issue with this, any ideas are appreciated.
    Thanks,
    Surya

    Hi All,
    Is this issue fixed yet? There are a couple of threads reporting this issue and the original thread has been Archived. It is a real issue, and it remains an issue. The Chrome browser cuts off the last row of a table in the display. IE displays the row correctly. I am working with JDev 12.1.2 and I am building an application using ADF Tables. Without exception, on every page that has one, the last row of the table is cut off from display in a very ugly way and you cannot scroll down to display the full row. I have tried wrapping the table in a Panel Collection - same result, I have tried setting the height of the table - same result. I have tried surrounding the table with a PanelGroupLayout component (layout set to scroll) - same result. I have even tried surrounding the table with a PanelHeaderComponent component, Type set to both default and Stretch - yes, you guessed it, same result! I've even put the table in the middle of a PanelStretchLayout component - but the last row is always cut off.
    This should be easy for you to reproduce, just drop a data control on a ADF page and select a table. When you view it in the Chrome browser and you will see what I'm talking about. I'm using Google Chrome version 31.0.1650.63 m.
    I have experimented with AFStretchWidth and AutoHeightRows (as suggested by previous threads), nothing seems to work.
    Here's another suggestion, if the forum would allow you to insert an image, I could actually show you what I'm talking about. Food for thought perhaps?
    Best regards,
    Nigel
    "Life's too short not to use ADF"

  • Sound issues with Apple TV show rentals/"choppy" sound quality

    I have been renting "Lost" episodes from the iTunes store on my new Apple TV. There is something wrong with the sound quality. It's very choppy. Almost like a fan is cutting up the sound. Anyone else experience this problem? What's the fix?

    Hello there, cjb1992.
    The following Knowledge Base articles offer up some great steps for troubleshooting audio issues with Apple TV:
    Apple TV: HDMI audio stops working
    http://support.apple.com/kb/TS2090
    No audio when using Apple TV
    http://support.apple.com/kb/TS3789
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Reporting an audio/video issue with a TV show from a Season Pass? How?

    I would like to report some audio/video issues with the latest The Unit and The Seeker episodes but I can't find them in my Purchase History??? I own a Season Pass for both. Any idea how to do it? I'm lost. Thanks!

    Is this the lack of audio on "Shadow Riders"? I've just got to that episode, and I tried to report the problem, but the whole series of hoops you have to jump through seems to have changed. Rather than get to the page where you add comments for the problems, it merely sends you to an internet link on apple that has no bearing on the problem.
    If you open your account information (store > View my account) you can click your purchase history there. The theory is that you find your program, click the arrow next to it, then click "report a problem" and it should allow you to enter a comment, or the problem... Anyone else having this troubvle?

  • Deployment issue with ADF 11g app.

    Hi,
    I am not able to deploy the ADF 11.1.1.2.0 application on weblogic 10.3.2 (Solaris OS). Initially I got the following exception.
    Caused By: java.lang.ClassNotFoundException: oracle.adf.share.weblogic.listeners.ADFApplicationLifecycleListener
    I have fixed this by removing the listener from weblogic-application.xml. Now I am getting the below exception.
    Caused By: java.lang.ClassNotFoundException: oracle.mds.lcm.weblogic.WLLifecycleListener.
    Can somebody help me how to resolve this issue.
    Thanks.

    Hi,
    I have fixed the above mentioned issue. Its due to the class path in weblogic server.Deployment is successful and it is showing in Active but when I am trying to launch the page.
    I am getting this error message.
    1266623607244> <BEA-101020> <[ServletContext@13835926[app:ESPSApp module:ESPSApp path:/ESPSApp spec-version:2.5 version:V2.0]] Servlet failed with Exception
    java.security.AccessControlException: access denied (oracle.security.jps.service.policystore.PolicyStoreAccessPermission context=APPLICATION,name=ESPSApp#V2.0 getApplicationPolicy)
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
    Can somebody tell me what I suppose to do.
    Thanks.

  • Issue with ADF Application Report Generation

    1) We are developing the web-base ERP application we are using technology as follows
    a) Operating System Red Hat Enterprise Linux4.
    b) Application Server Oracle Application Server 10.1.3
    c) Oracle ADF is the frame work
    d) Jasper reports (iReport 3.0.0) as report generation tool.
    While generating larger reports using iReport3.0.0 Tool i,e., contains more than 20,000 records the query while executed in Sqlplus takes less than a minute, but while the report is run it takes more time leading to time out and the pdf file is not generated. The error shown on the screen is “the web server unable to process the given request”
    The session time-out is 5 minutes. Please help us to tackle this issue since most of the reports are summarized reports and contain large transactional data and is critical reports.
    You may also suggest other web based report tools which help us generate large reports in PDF and/or text formats.
    By
    PRABEETHSOY P
    Edited by: prabeethsoy on Jun 26, 2009 1:13 AM

    PRABEETHSOY,
    some things come to mind.
    While generating larger reports using iReport3.0.0 Tool i,e., contains more than 20,000 records the query while executed in Sqlplus takes less than a minute, but while the report is run it takes more time leading to time out and the pdf file is not generated.Running a query in sqlplus is totally different from running it in an application. Sqlplus only pumps the results to the screen, whereas the application builds some layers around the data, so that you can navigate through the result. This will cost some time.
    You can try to optimize your strategy working with the data, i.e. running the query in forward only mode and/or omit the usaeg of EO where you know you don't need to change data.
    But in the end you may find that you have to use a different approach to generate the reports: do it asynchrony, meaning that you start the generation on the server, let it finish there (putting the result in a file) and send the finished report to the user in a different request. Do do this you can use a poll component, or you ask the user to come back later (giving him a report number to ask for). Other solution are possible.
    Timo

  • Issues with purchases not showing up in Purchased Playlist.

    Over the past week or so i have have noticed that my purchases are not showing up in my Purchased playlist on my iOS devices. They are syncing across devices but only being put under "Songs." I know i can manually add them to my Purchased playlist but that is such a pain. Anyone else having this issue?
    I am currently working on restoring my iPhone 5S to see if this helps but again this is a huge pain.

    Do you have automatic downloads turned on?  I think it's under iTunes menu >> preferences >> store.  Maybe turn on showing purchases in the cloud showing too.
    Could also click iTunes Store >> purchases (under quick links) >> music.  Does the missing music show there with cloud and down arrow?

  • Still having issues with animate composition showing in chrome

    I created a wonderful childrens activity page using animate.  For some reason everything shows up in the local preview, but once put onto a live host for public consumption, the animate portion of the paqe does not show up in Chrome.  It takes a few seconds in Firefox, IE, and Safari due to 4 Audio files but the composition is displayed once they are done loading.  It won't show period in Chrome. 
    When I first starting having the issue I noticed two 404 errors related to min.map files for jquery and edge.  I had a friend tell me that it had something to do with Chrome's unwillingness to work with local jquery hosted libraries.  I changed the publish settings so that the runtime files would refer to CDNs.  Even with this I'm still having issues.
    the 404 still exists for the edge file, but the jquery file is returning a 304 error now.  What is the deal with this and why isn't my work being displayed in Chrome?  Is this a bug? Or is there some kind of workaround for Chrome's inconcsistancy with this?  I really need this page viewable yesterday, so any and all assistance with this will be supererbly appreciated.
    The page in referenece is http://steamcurriculum.com/whatsmissing/index.html  and as you will see, only Chrome does not display the edge composition.

    Have you removed the page as i get redirected to http://steamcurriculum.blogspot.in/p/home.html/whatsmissing/index.html
    I do not see any edge realted content even in the source of this page

  • Resolved: Issue with no products showing up for Illustrator 16.1

    Dear Adobe Exchange Users,
    As mentioned earlier, it had come to our attention that products that have been uploaded to Adobe Exchange don’t show up in in the latest Adobe Illustrator 16.1 version and other later versions of Adobe Creative Suite products.
    This issue has been fixed.
    Users of the Adobe Exchange panel will be prompted to update the panel for this fix to take effect. Once the panel is updated, please restart your point product to start using the panel.The latest version of the panel is 0.9.1.
    Please let us know if there are any issues.
    Thanks
    **Adobe Exchange Team **

    And yes this is not for the MacBook. I am using on dm6446 processor with custom hardware. I could get the AP to work previously with hostapd when i used
    driver=rtl871xdrv
    but then I compiled with the netlink driver (for some reasons)
    driver=nl80211
    and now I get two interfaces instead of one (as was with the previous case) wlan1 and mon.wlan1 but no ssid is associated to any of these. I also checked if it was hidden network or something but nothing like that, the ssid just doent seem to be set up. When I start hostapd with the -dd switch in the logs I do see this:
    Using interface wlan1 with hwaddr 00:21:2f:3a:b8:fe and ssid 'rtwap'
    But iwconfig doesn't give the ssid wiht the interfaces ..

  • Issue With ADF Tree Expand/Collapse

    Hi All,
    I have a customer who is having issues using the af:tree component on a deployed application. When he tries to expand or collapse a node of the tree, the icon just blinks. This is occurring not only on our application, but also the Oracle ADF Rich Client Demo on http://jdevadf.oracle.com/adf-richclient-demo/faces/components/tree.jspx. He is using Internet Explorer v7.0.5730.13. As far as I can tell, our browser settings are identical, but I can use the tree without a problem.
    Any ideas as to what the problem could be?
    Thanks,
    Brad

    Unfortunately, Internet Explorer is the only browser that is authorized to run on his computer.
    Do you know of any specific IE settings that would cause the af:tree not to work?

  • Issue with ADF table range paging and sorting

    Hello,
    We have a requirement to support pagination in ADF tables. For this, we have made use of Range paging access mode in the view object level. The paging works perfectly fine with this. But we have another requirement of letting the user do a sort on the table (Yes!! The paginated table). The sort should be applied on all rows in the db and the control should return to the first row.
    Applying sort as it is provided by the fwk, sorts the records in the obtained range only. So we have over ridden the Sort listener in Managed bean for this and are able to acheive the sorting of all rows through a AM method call. We are seeing a problem after this. If the sort action is applied to the key attribute then the previous and next range navigation works fine. If the same action is applied to non-key field, then some times (yea!! This is not consistent) the next set is not fetched.
    Here is the code snippet that is called on Next navigation:
    Map<String,Object> pfScope = AdfFacesContext.getCurrentInstance().getPageFlowScope();
    Object objPageNumber = pfScope.get("pageNumber");
    int pageNumber = 0;
    if(null != objPageNumber)
    pageNumber = new Integer(objPageNumber.toString()).intValue();
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    JUCtrlRangeBinding view = (JUCtrlRangeBinding)bindings.getControlBinding("GeDmRequestVO");
    int iRange = getTable().getAutoHeightRows();
    int currentPage = view.getIteratorBinding().getNavigatableRowIterator().getRangeStart()/(iRange + 1);
    System.out.println("Before " + view.getIteratorBinding().getNavigatableRowIterator().getRangeStart());
    System.out.println("Current : " + currentPage);
    System.out.println("Page Number : " + pageNumber);
    System.out.println("Range : " + iRange);
    System.out.println("Value : " + iRange*(currentPage + pageNumber));
    view.getIteratorBinding().getNavigatableRowIterator().scrollRange(iRange*pageNumber);
    System.out.println("After " + view.getIteratorBinding().getNavigatableRowIterator().getRangeStart());
    Although, the new values are not refreshed in the table, the SOPs for before and after print the proper range sizes. And as I mentioned above, the above code works perfectly fine if there is no sort applied or when key attribute is sorted.
    Would appreciate your help on this regard with navigation after non-key attribute sort.
    Thanks,
    Chitra.

    Hi Chitra,
    Can you specify some links to implement RangePaging.....We need to implement pagination.If possible can you share the code or specify the steps how you achieved it.
    Thanks

  • Issue with ADF Table bound to a View Object Iterator??

    Can anyone say what would prevent an ADF table bound to a View Object Iterator from displaying all the records retrieved by the View Object Query?
    I ran the query directly from sqlplus and it returned 21 rows, However when i use the same exact query in my view object and display the result in a ADF table, only 10 rows are retrieved and displayed in the table ?
    Help .. Please ???

    The ADF table is actually set to use 'Include Range Navigation' and to display 20 rows each time. However, only a 10 rows are retrieved and displayed and the other 10 rows are displayed as blanks with only the Table selection radio buttons in the Select Column.
    e.g.
    Select Data1 Data 2
    o xxxxxx xxxxxx
    o xxxxxx xxxxxx
    o
    o
    o
    o
    The four 'o' are blanks even though there is data to be displayed.

  • Issue with ADF Tree Table

    Hi,
    I have the following requirement where i need to display a tree table. Here is how the initial implementation is:
    I have created the read only view for : ManagersVO > PoolsVO > MachinesVO. Where 'MachinesVO' is the destination view. And created view links between ManagersVO & PoolsVO using ManagerId and PoolsVO & MachinesVO using PoolId.
    And using this implementation, successfully created tree table on the UI. Now we got an enhancement for this:
    i.e., MachinesVO should return list of machines as per user logs in. i.e., we have 4 different roles. 'Super Admin', 'Sys Admin', 'App Admin', 'End User'. The default query for MachinesVO is for 'Super Admin'. The query for other user roles is different except the SELECT statement.
    The requirement is to dynamically change the query of MachinesVO based on user logs in and display the tree table accordingly. To implement the same i have tried using setQuery() operation on 'MachinesVO' which results with the following error:
    JBO-26016: InvalidOperException
    Cause: You cannot set customer query (calling setQuery()) on a view object if it is the detail view object in a master detail view link.
    Action: Do not call setQuery() if the view object is a detail.
    Can one suggest me a best solution to implement this.
    Thanks & Regards,
    Kiran

    Hi Navaneetha Krishnan,
    Here is how i implemented based on your comments. As i have tree table based 3 different VO's, created the following method at middle view(i.e., PoolsVO).
    1.Tree Model hierarchy
    ManagersVO > PoolsVO > MachinesVO
    I actually want to filter the data at Machines level. Hence wrote a method at PoolsVOImpls and exposed it in the PoolsVO client interface. Here is the code that i have placed in the PoolVOImpl
    public class PoolsVOImpl extends ViewObjectImpl implements PoolsVO{
         * This is the default constructor (do not remove).
        public PoolsVOImpl () {
      public void filterMachinesDataByUserRole(String userRole,String vzId){
        Row row = getCurrentRow();
        String query = "";
        if(row != null){
          RowSet rowSet = (RowSet)row.getAttribute("MachinesVO");
          if(rowSet != null){
            MachinesVOImpl machinesVOImpl = (MachinesVOImpl)rowSet.getViewObject();
            if(userRole.equalsIgnoreCase("SYS ADMIN")){
                    machinesVOImpl .setWhereClause(query related to sysadmin);
             //Similarly for other user roles.
             executeQuery();
    }And this piece of code needs to be executed before the jsff(which has the tree table) renders. Hence, i created a this methodAction as a default activity in the respective taskflow where the jsff is placed. Once this method get executed, the page should render the machines specific to the user.
    Here is the issue: getCurrentRow() method call is returning always NULL.
    Please correct me if i'm doing something wrong. I do tried the above mentioned approach by creating the method at '*ManagersVOImpl*' level too. Still the same issue.
    Thanks & Regards,
    Kiran

  • Issue with bought tv shows

    I bought 2 episodes of lost and heroes, forever ago.
    I never downloaded them becuase it takes to long with my internet speed ( talking around 10 hours for one show)
    I dont need them, it was over a year.
    Every now and then when I open itunes, they try to download, usually hidden in back ground and I dont notice, which slows my internet immensly.
    I dont want to download them.
    The only thing I can find is to pause if I see them.
    Anyone how to clear them so they don't try to download them anymore??
    Thanks

    I think the only option is to contact iTunes Customer Support. I think I read somewhere that if you buy an HD show you can contact them to have the 'SD Version' removed from the download list (for that purchase only, you have to contact them each time) so I'm guessing they'll be able to remove these downloads from your queue as well

Maybe you are looking for

  • LR and Wide Screen Monitors

    Probably a simple question so kindly bear with me on this one. I have the opportunity of picking up a wide screen monitor in the next couple of days at a reasonable price - 19" 1440 x 900. My question, how will LR appear on this size monitor - will i

  • Where can I download InDesign 7.5

    I have to reinstall this and have my license info, but can't find my CD.  All I can find for download are the updates.  Can anyone point me in the right direction? Thanks! Ken

  • BGP snmp trap on XR OS

    We are trying to test the snmp trap on IOS-XR for BGP up down, but ASR didn't send out any traps when we brought down the BGP neighbour. When we tested the OSPF, it worked fine. I also tried to use command 'snmp test' to generate the test trap and I

  • Mac OS not set

    Hi Everyone, I have th eabove error coming on my machine everytime i start it and then it never boots and keep repeating the same procedure over and again. I don't have any OS CD as i think i have lost it and i tried going in safe mode by using ****

  • Imac will not start up

    My Imac froze with the little spin wheel.  So I shut it down; and tried to restart it  It started to boot and went to the main screen; but was still frozen.  I then tried to start it in safe mode.  It would start to go to safe mode then shut itself o