Step attribusts= page name dropdown is not showing up

Hey All,
I have a page, inside a component and that component is inside a menu. i have registered that component and every thing is working fine with page online.
i want to create a workflow for that component. so i am trying to create an activity.
i added a step into the activity and on the step attributes i have selected my menu, i have selected the bar name and the item name. but when i click the page name drop down it is not showing any thing.
did i miss any setting any where?
please help me.
Thank you.

The crawler could not communicate with the server.Check that the server is available and that the firewall access is configured correctly.
Hi,
Firstly, please make sure default content access account has proper permission:
https://technet.microsoft.com/en-in/library/cc678863(v=office.15).aspx#Section3
Then use this account to log into the web application which your page resides.
Check if the page has custom web part:
http://geekswithblogs.net/claraoscura/archive/2011/02/07/143849.aspx
http://sharepointroot.com/2012/03/16/sharepoint-search-the-crawler-could-not-communicate-with-the-server/
Regards,
Rebecca Tu
TechNet Community Support

Similar Messages

  • How to make preflight profile witch find out if exist in document spot color with name "CutContour", if not show allert,  I try many combinations but nothing works

    How to make preflight profile witch find out if exist in document spot color with name "CutContour", if not show allert,  I try many combinations but nothing works

    Thanks very much for your help, but I'm still overlooking something. I double checked to make sure that I did not have a hidden .txt file extention. I then decided to abandon the lock on preferences idea until I get it working. I converted my mozilla.cfg file back to plain text. I made sure I do not have an extra blank line at the end of each file. The syntax looks good, as far as I can tell. I'll copy and paste what I have so far. Did I have the file locations correct posted above? Also, if you feel i can delete some lines of text in my mozilla.cfg file I'll be happy to do so.
    mozilla.cfg
    <pre><nowiki>//
    pref("privacy.sanitize.sanitizeOnShutdown", true);
    pref("privacy.sanitize.promptOnSanitize", false);
    pref("browser.rights.override", true);
    pref(“app.update.auto”, false);
    pref(“extensions.blocklist.enabled”, false);
    pref(“extensions.shownselectionUI”, true);
    pref(“browser.shell.checkDefaultBrowser”, false);
    pref(“toolkit.telemetry.enabled”, false);
    pref(“toolkit.telemetry.prompted”, 2);
    pref(“toolkit.telemetry.rejected”, true);
    pref(“app.update.auto”, false);
    pref(“browser.download.useDownloadDir”, true);
    pref(“browser.search.update”, false);
    pref(“signon.autofillForms”, false);
    pref(“signon.rememberSignons”, false);
    pref(“browser.download.manager.scanWhenDone”, true);
    pref(“browser.formfill.enable”, false);
    pref(“xpinstall.enabled”, true);</nowiki></pre>
    channel-prefs.js
    pref("app.update.channel", "release");
    override.ini
    [XRE]
    EnableProfileMigrator=false
    all-lmc.js
    pref("general.config.filename", "mozilla.cfg");
    defaultPref("browser.startup.homepage", "data:text/plain,browser.startup.homepage=http://bbc.co.uk");
    Again, thank you very much for your time. Do I create my own browserconfig.properties, and firefox.js? Also, I forgot to mention I'm running Windows 8.

  • I have went through all the steps and my ipod will stil not show in itunes

    I have went through all the steps and my ipod will still not show in itunes it was before

    You must not have done ALL the steps. What version of iTunes are you using?
    iPad not appearing in iTunes
    http://www.apple.com/support/ipad/assistant/itunes/
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    IOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Apple - Support - iPad - Syncing
    http://www.apple.com/support/ipad/syncing/
     Cheers, Tom

  • Search Page by date field not showing up results

    Hi,
    I am using Jdev 11g and new to adf.
    My applciation needs a search page based on a date field.
    I created a viewcriteria for the object which expects a date field from the user.( the bind variable is of type Date)
    After this i dragged the viewcriteria as af:query (panel with table) on the jspx page.
    Now when i run the application, that is when i enter the date (calendar autogenerated by query component),
    it does not show up any results.
    My date field in the database has a timestamp attached to it, somewhere i read that the timestamp may be causing the problem.
    But i have not found any solution for this one.
    This looks very basic to me, i am sure i am missing soemthing important.
    Besides i even tried the approach of programmaticlly populating the Viewobject(by not using the any query component),
    i can see the Viewobject being populated in the logs( the row count) but on the display page, no rows are shown.
    I am sure i am doing something wrong for this one.
          AppModuleImpl am = this.getAm();
           ViewObject submittalVO = am.findViewObject("AcrSubmittallogView1");
           System.out.println("after getting VO");
           String subDate = this.getSubDate().getValue().toString();
           String query = " to_char(SubmitDtTm,'mm/dd/yyyy') = '"+subDate+"'";
           submittalVO.setWhereClause(query);
           System.out.println("QUERY>>>> "+submittalVO.getQuery());
           submittalVO.executeQuery();
          System.out.println("after executing query "+submittalVO.getRowCount());
           this.setRenderLogTable(true);But i actually want to use the built in query component instead of programmatically doing it.
    Can someone please guide me further.
    Any help will be grt.
    Thanks in advance
    ash
    Edited by: user1175461 on Jul 15, 2010 1:18 PM

    Still not working for me either, here's exactly what I'm doing.
    My query is as follows:
    SELECT
    RO.repair_line_id,
    RO.repair_number,
    SR.customer_po_number, segment1,
    trunc(RO.creation_date) as creation_date,
    I've created a Bind Variable for the creation_date as follows:
    <Variable
    Name="createDate"
    Kind="viewcriteria"
    Type="oracle.jbo.domain.Date"/>
    Which is linked to a view criteria:
    <ViewCriteria
    Name="RepairSearchVVOCriteria"
    ViewObjectName="com.services.cs.vvo.RepairSearchVVO"
    Conjunction="AND">
    <Properties>
    <CustomProperties>
    <Property
    Name="displayOperators"
    Value="InAdvancedMode"/>
    <Property
    Name="autoExecute"
    Value="false"/>
    <Property
    Name="allowConjunctionOverride"
    Value="true"/>
    <Property
    Name="showInList"
    Value="true"/>
    <Property
    Name="mode"
    Value="Basic"/>
    </CustomProperties>
    </Properties>
    <ViewCriteriaRow
    Name="vcrow1"
    UpperColumns="1">
    <ViewCriteriaItem
    Name="CreationDate"
    ViewAttribute="CreationDate"
    Operator="="
    Conjunction="AND"
    Value=":createDate"
    IsBindVarValue="true"
    Required="Optional"/>
    </ViewCriteriaRow>
    </ViewCriteria>
    I then dragged the criteria into the page. When running it I get the following:
    AND SR.customer_id =:psCustomerId) QRSLT WHERE ( ( (CREATION_DATE = :createDate ) ) )
    <ViewObjectImpl><bindParametersForCollection> [3510] Bind params for ViewObject: [com.xxx.services.cs.vvo.RepairSearchVVO]RepairSearchAM.RepairSearchVVO1
    <OracleSQLBuilderImpl><bindParamValue> [3511] Binding param "psCustomerId": 34758
    <OracleSQLBuilderImpl><bindParamValue> [3512] Binding param "createDate": 2010-02-18
    Which never brings back any data. My date's look as follows in the database:
    '18-FEB-10'
    I never get any results for the date. I've also tried using the to_char to format the date as the same format, but that always gives a variety of errors. This is driving me batty =0 Any ideas on why it never pulls back data?
    Thanks, Graeme.

  • Designer 2013 - Design Manager: Page layout created is not showing up in Designer

    Hello everyone,
    I greatly need assistance. I have wasted over 1/2 a day trying to fix this issue.
    I have a site with a subsite. I'm customizing the subsite using the Design Manager. I've been through all of the steps and now I've created a Page Layout (step 6). I created the html and it generated the aspx. I have a drive mapped to the master page
    gallery. The files are showing up in the mapped drive. However, when I go into Designer 2013 and click Master Pages, the files aren't there. This happened to me last week and then suddenly, almost magically if you will, the files were there. This was after
    refreshing several times, closing Designer and opening it up. All the little tricks you have to use with Designer every now and then. So today I was repeating the process and the files aren't showing up again. I've been refreshing for 4 hours, closed Designer,
    even rebooted. To no avail. I disconnected the mapped drive and reconnected. Nothing.
    I have the correct permissions. I'm not only the site collection administrator but I'm also the SP Admin.
    Assistance would be greatly appreciated.
    Thanks,
    Lisa

    you have a subsite in a site collection •the publishing feature is activated in the subsite, but not in the site collection •you want to edit/add page layouts on the site collection level, to be used within your subsite •when you open the
    site collection in SharePoint Designer, you can't see Page Layouts in the Site Objects panel You now have 2 options: you can either activate the publishing feature in the site collection (and the Page Layouts link comes back), or you can use the All Files
    link and browse to the master pages and page layouts library (_catalogs > masterpage.) Either option will do, unless you really don't want the publishing feature in the site collection
    http://stackoverflow.com/questions/13303764/page-layouts-not-available-in-sharepoint-designer
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/864184b1-d8d0-448f-8d3b-667cb48fb75c/sharepoint-designer-not-showing-master-pages-or-page-layouts-in-site-objects?forum=sharepointadminprevious
    or
    go to Site Actions -> Site
    Settings in the upper left corner.
    Under "Site Collection Administration" click on "Site
    Collection Features".
    Look for "SharePoint Server Publishing Infrastructure" and
    activate it. It might take a moment to load.
    Next return to "Site Settings" and click on "Manage
    Site Features"
    Look for "SharePoint Server Publishing" and activate
    it. It might take a moment to load.
    http://stackoverflow.com/questions/12226856/im-missing-page-layout-button-on-sharepoint-2010-ribbon

  • File Names and Ratings not showing in browser or viewer

    I seem to have a bug where Aperture sometimes fails to show the file names or their rating.
    This happens in both Browser & viewer modes. Just the blank background.
    I can see the name in the Metadata tab, but not underneath the files.
    Any ideas

    I'm having a similar problem. The U key is active and the photo name (referenced from Finder) shows up. But I can't get the ratings to show up. From what the instruction manual says, I should see the stars in the lower LH corner, but I don't see anything. I've looked to see if there is a way to make them show or hide, but haven't found it.
    Any suggestions?
    Thanks, Sue

  • Nice Page Expired Popup is not showing up

    Hello,
    I am using JDev 11.1.1.4 and created a new ADF Fusion Application.
    Then I adjusted the web.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5"
             xmlns="http://java.sun.com/xml/ns/javaee">
      <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>server</param-value>
      </context-param>
      <context-param>
        <param-name>oracle.adf.view.rich.sessionHandling.WARNING_BEFORE_TIMEOUT</param-name>
        <param-value>120</param-value>
      </context-param>
      <context-param>
        <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
        <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
        <param-value>false</param-value>
      </context-param>
      <context-param>
        <description>Whether the 'Generated by...' comment at the bottom of ADF Faces HTML pages should contain version number information.</description>
        <param-name>oracle.adf.view.rich.versionString.HIDDEN</param-name>
        <param-value>false</param-value>
      </context-param>
      <filter>
        <filter-name>trinidad</filter-name>
        <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
      </filter>
      <filter>
        <filter-name>ServletADFFilter</filter-name>
        <filter-class>oracle.adf.share.http.ServletADFFilter</filter-class>
      </filter>
      <filter-mapping>
        <filter-name>trinidad</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <filter-mapping>
        <filter-name>ServletADFFilter</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet>
        <servlet-name>resources</servlet-name>
        <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>BIGRAPHSERVLET</servlet-name>
        <servlet-class>oracle.adfinternal.view.faces.bi.renderkit.graph.GraphServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>BIGAUGESERVLET</servlet-name>
        <servlet-class>oracle.adfinternal.view.faces.bi.renderkit.gauge.GaugeServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>MapProxyServlet</servlet-name>
        <servlet-class>oracle.adfinternal.view.faces.bi.renderkit.geoMap.servlet.MapProxyServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>GatewayServlet</servlet-name>
        <servlet-class>oracle.adfinternal.view.faces.bi.renderkit.graph.FlashBridgeServlet</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/adf/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/afr/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>BIGRAPHSERVLET</servlet-name>
        <url-pattern>/servlet/GraphServlet/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>BIGAUGESERVLET</servlet-name>
        <url-pattern>/servlet/GaugeServlet/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>MapProxyServlet</servlet-name>
        <url-pattern>/mapproxy/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/bi/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>GatewayServlet</servlet-name>
        <url-pattern>/flashbridge/*</url-pattern>
      </servlet-mapping>
      <session-config>
        <session-timeout>3</session-timeout>
      </session-config>
      <mime-mapping>
        <extension>swf</extension>
        <mime-type>application/x-shockwave-flash</mime-type>
      </mime-mapping>
    </web-app>I changed this
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>server</param-value>
      </context-param>
      <context-param>
        <param-name>oracle.adf.view.rich.sessionHandling.WARNING_BEFORE_TIMEOUT</param-name>
        <param-value>120</param-value>
      </context-param>
      <session-config>
        <session-timeout>3</session-timeout>
      </session-config>My problem is that the "Expiration Warning" and "Page expired" popups are not appearing. The session is timing out after 3 minutes.
    Here you can find the popups I am looking for http://codeplay.net/2011/05/20/adf-session-expire-warning-and-prevent-links-browser-context-menu-in-web-xml/
    Does anyone has an idea what with my web.xml might be wrong.
    Again, I didn't do any other changes to the application.
    Greetings
    Tobias

    Is this feature will work only with jdev 11.1.1.4.0?
    i am using jdev 11.1.1.3.0 i did the same way but i am not getting popup.
    This is a new feature that is available in jdev 11.1.1.4.0 and is NOT available in jdev 11.1.1.3.0.
    For details check this:
    https://blogs.oracle.com/jdevotnharvest/entry/how-to_enable_user_session_time_out_warning_jdev_11114
    Thanks,
    Navaneeth

  • Outlook 2010 name and company not showing in outlook emails

    When someone emails me my name is not showing up at the top of the email - only my email address. Also in the same email some of the cc'd people's names are showing along with their email addresses, for some people you see their name and company and some
    people you see only their email address. How do I get our names and company name to show up at the top of emails?
    Example:
    Cc: Kevin Kxxxx ([email protected]); [email protected]; Rxxx, Pxxx ([email protected]); George H (S.Pxxxx Hxxxx) <[email protected]>

    That's controlled by the sending copy of Outlook, and depends whether Outlook is aware of the name associated with the email address. For instance, if you send an email using a contact that includes the recipients name that Outlook will add that detail to
    the message being sent, but if you manually enter the email address (and Outlook doesn't have the address and name in its autocomplete cache) then just the email address will be displayed.
    Most likely, if you receive a message that only has the email address then it would indicate that the sender hasn't received an email from that address previously, and as such Outlook is unable to determine what the name is.
    The crucial thing is that there's nothing you can do as the recipient to affect this, it's purely down to the senders Outlook. As the recipient you simply receive the email containing the information that their email client included when it was sent.

  • 6.1 NPD - Project Name and Status not showing in the Project Header

    I have this issue in 6.1 NPD - The NPD Project Name and Status is not showing in the Project header when opening a project. Any ideas? Thank you.

    Is this happening for NPD Projects that are newly created, prior to clicking Save? Or for already existing NPD projects?

  • Breadcrumbs Home Page Name option is not working

    I'm using RoboHelp 9 and Microsoft HTML Help is set as my Primary Layout. In the Properties dialog box for this layout, I select the "Add Breadcrumbs Links" check box. I do not have breadcrumbs in any of my master pages. I then open the Breadcrumbs Options dialog box and select "Top" from the Home Page Name drop-down list. The breadcrumbs appear correctly in the Preview window (Top > Topic1). I click OK, and then save and generate my layout. It compiles correctly, and the breadcrumbs are placed correctly and working, but instead of using "Top" as the Home Page Name that I selected, they use "Home" (Home > Topic1). What am I doing wrong? Thanks!

    I believe this is a previously identified bug.
    The more people who report a bug or request a feature, the more likely it is to be actioned. Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Dropdown menus not showing in IE6 or 7

    Hi everyone, I'm hoping you wizards can help me out here!
    For some reason the main horizontal javascript navigation bar in my company's website (created with DW) does not show up in IE6 or IE7. It is fine in IE8, Firefox and Google Chrome. The web address is www.sayersb.co.uk. Perhaps you'd be kind enough to take a look and let me know what you think. I can let you have the CSS file details if you need. Additionally, the menu in the left column extends way too far across the page in IE6 and I'm not quite sure how to fix that bug. I'd be really grateful for some pointers so I can finish off the site.
    Many thanks.

    Hi,
    to: "the menu in the left column extends way too far across the page".
    Did you already search in your really large "mainNav.css" for the attributes of your <div id="leftCol"> and <div id="navcontainer">.
    The other possibility is, of course, to ask the people of MMMenu.
    Hans-G.

  • Full Name(USR_FULL_NAME) is not showing up in User Defn of  "OID Process"

    I have made the "Full Name" (USR_FULL_NAME) field visible under section "Basic User Information" by going to OIM-UI -> Advanced -> User Configuration -> User Attribute. Note that this 'Full Name' field is not same as out of box 'Common Name' or 'Display-Name'. This is not based on First-Name & Last-Name combination, but a user editable field.
    When I configure pre-pop adapter or "OID User" process, I do not see this field in "User Definition" drop-down list. I see all the corresponding fields of USR except this one field. What could be going wrong here ?
    Thanks!
    Kabi

    Thank you all.
    Note that, I can see the "Full Name" in create user screen and able to enter data for this field. However, I do not see this field in 'User Definition' drop down list when I try to map it in a pre-pop (or oidMODIFYUSER) adapter.
    I checked the attribute lists of all OOB 'Authorization Policy' involving "search user" permission and found the 'Full Name' is already selected. What else I should be looking for ?
    Thanks!
    Kabi

  • When I try to bookmark a page the dropdown menu only shows 4 of my many bookmark folders.

    I have a heck of a lot of bookmark folders. These show up in the dropdown menu when I click on Bookmarks in the toolbar. However just today when I try to bookmark a web page, I only am given offered four folders in which to file the bookmark. Clicking on "choose" doesn't show any folders at all that I've created. Same thing when I open MF in safe mode with addons not enabled.
    If I click on "Bookmarks menu" in the bookmark window then click on the arrow to chose a file, I see an odd assortment of random bookmarks and files.
    To complicate matters, perhaps: This morning Firefox went crazy. Details don't matter now. I followed instructions in MF support and saved critical files. Then uninstalled and reinstalled a new copy of MF. Created a new profile and moved critical files into it.
    Am I missing a file? Is something corrupted? (How would I find it?) Why would MF not see my folders when asked to file a bookmark?
    Thanks

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    This can also be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Trouble with one page...photos not showing

    Hi, I love iweb! Just found it and immediately put it to use. Much better/faster than trying to put this site together in Dreamweaver!
    The site I put together at http://www.stonecreekstudios.com/111508 works well on my macs. However, the third page of photos shows blank on my Dell laptop (and on other family laptops).
    I pulled album from iphoto for the third photo page, just like for the other 2. Then I published to folder. Loaded folder to my website on earthlink using Fetch. Looking at directory, it looks like all photos for that page are there...they just don't display!
    Any help would be appreciated! Going crazy trying to figure this out!
    thanks
    c
    Message was edited by: cschapin
    Sorry: URL is http://www.stonecreekstudios.com/nyc111508

    No its not. When I first started I used MMe and forwarded my domain name there. I then decided that my site was not loading fast enough and then it actually went down for a few days during the transition from .Mac to MobileMe. As my site is for work, I could not afford to have it down for long periods, so uploaded directly and have never looked back.
    I think you might need to use another ftp client though. Download Cyberduck for free. I started out using Fetch and had lots of problems, with thinking files were uploaded, but in fact were not. Once I started using Cyberduck my problems ended.

  • In FIM datasource creation,model name dropdown menu not getting populated

    Hi
    When we try to create a new datasource in FIM it asks for a default model name. The default model name drop down menu is not getting populated by the model name. Please suggest what could be the possible solution for the same.
    Regards

    Hello,
    There are 3 other things to check if the PCM schema is on a Oracle database :
    From FIM server :
    1.a. Locate the "ojdbc6.jar" file located in the \jdbc\lib subfolder of your Oracle client installation folder and copy it.
    1.b.  Paste the copied file in C:\Program Files\Business Objects\Tomcat6\webapps\fim\WEB-INF\lib folder.
    Note: This procedure is mandatory for an Oracle repository. Adding the path to the classpath variable is not
    sufficient.
    2. From the Tomcat Management Console properties, you need to add the path to the location where the tnsnames.ora file is hosted. You add this information on the Java page of the Apache Tomcat Properties dialog box under "Java options", for example, -Doracle.net.tns_admin=C:\oracle\product\10.2.0\client_1\NETWORK\ADMIN
    3. From the parameter "Net service name" filed for PCM datastore in FIM, make sure that the name matches exactly (case-sensitive) with the name of the service set into the Tnsnames.ORA file
    Hope these additionnal findings would help you.
    Thi Anh Antunes

Maybe you are looking for

  • Cartesian Product in Select

        Hi all! I need help. I have this function that launches a Select. My Oracle Grid tells me, when I tune the Select of this function, that there is a Cartesian Product. I understand what a Cartesian Product is, but I fail to find it. Can you help m

  • Panels not showing in CS5 from configurator 2.0

    OK, I didn't have a problem doing this in CS4.... Installed configurator 2.0 on my new Win 7 64 bit machine.  Built a simple panel, exported it, double checked in extension manager - it's there.. Went to Photoshop CS5 (64bit) and did the "windows, ex

  • Security in Oracle9i lite

    Hi We're developing an app wich needs a lightweight database using VB6. So we started working with Oracle9i lite, and right at this point we're worriying about security : - We have to use an ODBC driver, and it's seems easy to see DB user/password us

  • Oracle WCI - How to make Contact page in a tabular form in WCI

    Hii All, Im using Oracle WebCenter Interaction . As you all know that in websites we have a section called Contact-Us under whcih we can provide few contact details. Im using a portal which has been made by using WCI so i just wanted to make a table

  • Want to upgrade to Tiger OS X 10.4 but only have a CD drive

    From my understanding, the Tiger install requires a DVD drive - is this correct and is there a simple, economical way around this? I believe I need to upgrade to Tiger so I can use iTunes and eliminate some other compatibility problems - is this true