Problem using iframe in portal

Hi,
I've used iframe in oracle portal. In a jsp, i gave the link as
<iframe src ="<%=actionURL%>" width="50%"></iframe>
There the actionURL will take the action to another jsp.Its like a jsp having another jsp. But there I need to fetch some values from database. Thats why i gave the url of an action instead of a jsp.
In the jsp, i'm getting the PortletRenderRequest as null. But i need that request there to perform some opertaion. How to avoid this problem.
Any help highly appreciated.
Regards,
Venky.

Venky,
perhaps you would be better off creating a portlet view on your JSP and integrating it as a portlet into Oracle Portal?
Cheers,
Mick.

Similar Messages

  • Synchronisation problem when using iFS as Portal document repository

    Is anyone using 9iFS as the repository for their Portal documents but getting DRG-11602: URL store: access to <file name> requires authentication when synchronising the PORTAL30.WWSBR_URL_CTX_INDX index. This is run under schema CTXSYS, using ctx_schedule.
    We use a URL on the Portal folder to access the iFS document and, if the ACE on the document ACL includes World Read, then the document is indexed correctly but if it has no World Read access then synchronisation fails with the above error. These secure documents are indexed correctly, however, when synchronising IFSSYS.IFS_TEXT.
    When you put the URL for the document in the browser then you are prompted for an iFS username/password and this is obviously the problem when synchronising. Oracle Support say that the Oracle 9i Oracle Text Reference, Chapter 2: Indexing, definition of URL_DATASTORE states :The login:password@ syntax within the URL is not supported. Oracle Support have also suggested that using iFS as the Portal repository is not standard practice and that we should simply add our documents as items on the folder. Doing this means not being able to take advantage of the added functionality of iFS such as versioning and, anyway, I thought that Oracle had plans to fully integrate the two products with iFS being the default repository in a future release of Portal.
    Until then has anyone got any ideas for a workaround because we are unable to index the contents of all secure documents on our Corporate intranet? We cant be the only site using iFS and Portal in this way!

    Hello Raymond,
    I must say that I downloaded the JBoss Portal Binary and not the bundle JBoss AS + JBoss Portal, because I already had a JBoss AS working, so it was the best way to do it (as it is said in the JBossPortalReferenceGuide). I have both things (server and portal) in the same directory, but I don't know if maybe one of them should contain the other (I have seen that in the bundle, the portal directory contains the JBoss application server) When I downloaded the JBoss Portal and tried to deploy it by directing my web browser to http://localhost:8080/portal it did not work, so I decided to copy the jboss-portal.sar directory from the JBoss Portal to the deploy of my server. Maybe this was a mistake.
    But anyway I have seen that JBoss Portal 2.6 comes with the myfaces jars, and as JBoss AS 4.2 uses Sun RI by default, it is going to collapse anyway. Should I just remove these jars from the portal? As I told you before, I tried doing it and I got two errors of not found classes.
    Please, any help would be really appreciated, I am losing a lot of time with this bug, because the server keeps getting out of memory due to it.
    Thanks in advance.

  • Display BEx query in iFrame (non portal)?

    Hi,
    We're currently having trouble displaying a BEx query URL in an iFrame outside of the portal.   Meaning, we have a different application web server that is attempting to point to the URL from the SAP server. 
    When we simply paste the URL in the web browser, it's not a problem; so the URL is ok.   However, when we include the URL in an iFrame, the portal login screen appears, but soon after you log in, the page loops infinitely through the same request and never gets to the intended page.
    Has anyone run into a solution for this situation?
    Thanks

    Hi,
    Check this link....might be useful to ur reqq..
    Access BEx Queries through non-SAP Portal
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/d08b00d73001b4e10000000a11466f/content.htm
    Hope this helps u..
    Best Reards,
    VVenkat..

  • Problem using namespace of XML docs gerenrated by  XMLForm

    Hi community!
    I am facing a problem using namespace within a XSL stylsheet. Let me describe my problem:
    I am using the SAP XMLFormsBuilder within the SAP EnterprisePortal in order to provide a HTML based form for creating and editing specific XML documents. The data in the generated documents is finally presented as HTML using XSL Transformation.
    In the XMLFormsBuilder you define the Schema of the XML document and the HTML GUI of the form. The Schema document looks like below (extract):
    <?xml version="1.0" encoding="utf-8"?>
    <schema targetNamespace="http://www.xmlspy.com/schemas/orgchart"
            xmlns="http://www.w3.org/2001/XMLSchema"
            xmlns:xyz="http://www.xmlspy.com/schemas/orgchart" Version="6.3.0">
      <element name="commodity"
               default=""
               minOccurs="1"
               maxOccurs="1"
               ns="p2p"
               xmlns:p2p="http://www.portal.p2p.com">
        <complexType>
          <sequence>
            <element name="administrative_information"
                     default=""
                     minOccurs="1"
                     maxOccurs="1"
                     ns="p2p">
              <complexType>
                <sequence>
                  <element name="creation_date"
                           default=""
                           minOccurs="1"
                           maxOccurs="1"
                           type="date"
                           ns="p2p"/>
    As far as I understand, each element defined in the Schama belongs to the namespace "p2p" and this is exactly what I want.
    The XML document generated by the form looks like below (extract):
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="show_card.xsl"?>
    <commodity xmlns:xf="http://www.sapportals.com/wcm/app/xmlforms"
               xmlns:xsi="http//www.w3.org/2001/XMLSchema-instance"
               xsi:noNamespaceSchemaLocation="/etc/xmlforms/P2PCategoryCard_TEST/P2PCategoryCard_TEST-Schema.xml">
      <administrative_information>
        <creation_date>2005-07-04</creation_date>
    Consequently, the file "show_card.xsl" is the responsible XSLT stylesheet, which looks like this:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0"
                    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:p2p="http://www.portal.p2p.com">
      <xsl:output method="html"/>
      <xsl:template match="p2p:commodity">
        <html>
        <body>
          <h2>XSLT Test</h2>
          Creation Date: <xsl:value-of select="p2p:administrative_information/p2p:creation_date"/>
        </body>
        </html>
      </xsl:template>
    </xsl:stylesheet>
    The problem in the XSLT stylesheet is, that I want to access the XML document elements using their namespace. And this is exactly what does not work for me. On the other hand, if I remove the reference to the namespace:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0"
                    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:p2p="http://www.portal.p2p.com">
      <xsl:output method="html"/>
      <xsl:template match="commodity">
        <html>
        <body>
          <h2>XSLT Test</h2>
          Creation Date: <xsl:value-of select="administrative_information/creation_date"/>
        </body>
        </html>
      </xsl:template>
    </xsl:stylesheet>
    the stylesheet works fine, but for some technical reasons, which I don't want to explain here, I have to use the namespace when accessing the XML document elements.
    For technical reasons, I cannot change the format of the Schema document and also cannot change the format of the generated XML document. The only file I can change and control is the XSLT stylsheet.
    My question is now, in the case described above, if there is any way to use the namespace in the sytlesheet when accessing the XML elements?
    Any help is appreciated.
    Cheers,
    Adam Kreuschner

    duggal.ashish wrote:
    3. Some XML files contain a "iso-8859-1" character with character code 146 which appears like apostrophes but actually it is : - &#146; and the problem is that words like can&#146;t are shown as can?t by database.http://en.wikipedia.org/wiki/ISO8859-1
    Scroll down in that page and you'll see that the character code 146 -- which would be 92 in hexadecimal -- is in the "unused" area of ISO8859-1. I don't know where you got the idea that it represents some kind of apostrophe-like character but it doesn't.
    Edit: Actually, I do know where you got that idea. You got it from Windows-1252:
    http://en.wikipedia.org/wiki/Windows-1252
    Not the same charset at all.

  • Having problem to install Oracle Portal Forms Reports and Discoverer 11g on Windows Server 2008 64 bit

    Dear All Precious Friends,
    I am having problem while installing Oracle Portal Forms Reports and Discoverer 11g on Windows Server 2008 64 bit,
    I have already installed Oracle Database 11g Release 2 -------
    ----Then i configured JAVA Access bridge
    --------then installed and configured Required Schema using Repository Creation Utility of same version of Database 11g,
    -----------then installed Oracle Business Intelligence 11g version 11.1.1.6.0 which includes Web logic..............I am feeling that i did right at this point...........
    ..............also feeling comfortable after install Oracle Identity and Access Management 11g ..................
    -----------------but don't know how to configure OID to install Oracle Portal Forms Reports and Discoverer 11g...............
    Please help my Oracle Friends
    Your early help will be highly appreciated.
    thanks and regards
    Hassan

    You said, "...+I would like to install Release 2(11.1.1.2.0)+ ...". Be careful. 11.1.1.2.0 is not Release 2. The version for Rel 2 is 11.1.2.0, notice that there is one less "1". Also, there is no way to patch from Release 1 to Release 2.
    In EDelivery, this is what you should find if you search on "Oracle Fusion Middleware" for "Microsoft Windows x64 (64-bit)":
    First look for this link then drill into it:
    Oracle Fusion Middleware 11g Media Pack for Microsoft Windows x64 (64-bit)
    In this section you will find the following:
    This is the full product installation of FMw 11 Release 2 (Forms & Reports)
    Oracle Forms and Reports 11g R2 (11.1.2.0.0) for Microsoft Windows x64 (64-bit) V28761-01
    This is the full product installation of FMw 11 Release 1 (includes Portal, Forms, Reports, and Disco)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 1 of 4) V18785-01
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 2 of 4)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 3 of 4)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 4 of 4)
    This is the FMw 11 Release 1 patch set that will bring the above 11.1.1.2.0 installation to 11.1.1.6.  This is NOT a full product installation - just a patch
    Oracle Portal, Forms, Reports and Discoverer 11g Patch Set 5 (11.1.1.6.0) for Microsoft Windows x86 (64-bit) V29850-01
    There are no patch sets for Release 2 as of yet.

  • Content node name problem during creation on portal 9.2 cm filesystem repo

    Hi all,
    We are developing a portal site using weblogic portal server 9.2.
    We are using the portal built-in content management system of the portal admin app. And We use the filesystem repository (with library service disabled) to store our content data by following the setup on documentatation.
    We use the create_db.cmd script to create the cms tables in a oracle database. The input contents' binary files and metadata are successfully stored in the filesystem directory and database correspondingly.
    However, we encountered some bugs/unexpected behaviour on creating/uploading binary data when using the content creation form.
    The problem is that when we try to create a content with one (required and primary) binary property, the node name of the new content does not always follow the name input by the user. The content node name will changed according to the uploaded file or the binary property name defined in content type, which are unexpected behaviour. In fact, we expect the node name stay as the same (with extension padded) of what user input on creating it and the property's filename should use this name.
    When we use the WYSIWYG editor to create the document of the binary property, after saving the document, the filename of this binary property automatically changed to the content type's property name, after clicking save button on the content, the node name of the content changed to the content type's property name too!
    When we upload file for this binary property, the property 's filename changed to the uploaded file's filename, and changing the node name of that content too!
    We would like to know what would cause this kind of misbehaviour/bug,
    could it be caused by misconfiguration on server? the filesystem repository? the database scheme?
    Any helps or suggestions on it would be greatly appreciated.
    Best Regards,
    Keaton

    Thanks for the reply jalpesh, you answered the filename on file upload method.
    But what about the filename changes due to create document (WYSIWYG editor) method. The content filename changed to the property-name.ext about saving the content, which is quite a strange behaviour. As the user will not be able to add the same type of content on current directory cause the content filename follow the property-name.ext and cause same filename conflicts when saving.
    We are using the weblogic portal server 9.2 MP 2 with oracle database (bea type 4 connection driver).
    Any advices or suggestions?
    Regards,
    Keaton

  • Using ESS with Portal 7.0 and backend ECC 5.0.  Why not?

    Hi,
    I have this landscape:
    server A: Portal 7.0 in WAS 7.0 (2004s) with BP ESS and XSS components
    server B: backend ECC 5.0 with EA-HR SP38.
    But I am having problems to run some ESS webdynpro iViews (specially personnel info);
    According this note: 1007341; this landscape is not supported because is necessary use a separate instance of WAS 6.40 in order to run XSS components.
    Why???  Which is the technical reason that I cannot use the j2ee stack from EP 7.0? SAP information about this is so confusing.
    if this is impossible to realize, I can use this alternative?:
    server A: Portal 7.0 in WAS 7.0 (2004s) with BP ESS
    server B: backend ECC 5.0 with EA-HR SP38 and XSS componentes (dual mode stack abap and java both of them 6.40)
    As per note 1007341, I need use a third server or I am confusing?.  Already having a server which runs E¨P frontend, and other server where it runs the ECC, technically I am not understanding why I need a third server with a older java version than I have in frontend.
    This is not supported by a specifically problem? Or can I do if I have a problem and I can fix it with some patch?
    Anybody has experiencie using this scheme: Portal 7.0 agains ECC 5.0 for use BP ESS/MSS?
    any suggestion will be welcome,
    thanks in advance,
    regards,
    Leandro.

    Ok, its true.
    My intention is to confirm if is possible install a Java instance in the same server that ECC is running with Abap instance.
    My confusion is because note 1007341, in "deviations" part, says:
    ECC 5.0 (ERP 2004 back-end system),
    XSS 500 on a separate J2EE 6.40, EP NW04s
    with business packages ESS and MSS (SAP ERP 2004).
    The SAP system only supports this system landscape
    if you have installed XSS 500 on a separate J2EE 6.40.
    Then, would I install abap stack, and java stack as separate instances (not add-in!) ? and this landscape is supported acordding this note?
    (in the example, A and C are in the same server)
    thanks in advance!
    regards,
    Edited by: Leandro  Balboni on Aug 12, 2008 5:28 PM

  • Problems in Permissions of Portal

    Hi All,
    I am facing a problem on my Portal. Currently I am using SAP Enterprise Portal 6.0. After all the required permissions have been assigned to the Roles, Worksets and IViews, the application doesn't open on the Portal. After I check the permission for the IViews, I find that the assigned permissions are reset and the entire process of assignment has to be done again, Please let me know why does this happen and also the solution for the same,
    Also the role Super_admin is assigned automatically when a new portal object is created. Please let me know the reason for it and also the use of the group "everyone"
    Regards,
    Poojith MV

    Hi,
    Assign everyone role permission to parent folder "Portal Content".
    Right Click "Portal Content" folder and goto Open-> Permissions -> Search for Everyone Roles and assign.
    we cant assign the super admin role to all users as it exposes portal administration to all users.so we assign general everyone permission to the parent folder which will be inheritated in all the subfolders and assign this everyone permission to users, then only that specific applications will be shown for the user.
    With Regards,
    Laksh.

  • Hi I am using Iframe with src="abc.mht" file. i want to view the mht file content in same window.please help.. Thanks in Advance

    Hi I am using Iframe with src="abc.mht" file. i want to view the mht file content in same window.please help..
    Thanks in Advance

    This is not a Java problem, this is a WEBBOT problem.
    I suggest that you research the topic in your FrontPage help files.
    Yes, we do know how to solve this problem using ordinary HTML and JSP. The sample code that you've posted implies that you are looking for an extremely different solution. To put it another way, it looks like you're logging onto the Federal Aviation Administration's forums and asking them how to go from Chicago to New York by train.
    But in any case, if you can't find the information in FrontPage, I'm 100% certain that if you went to www.microsoft.com and searched for FrontPage and downloads, and skipped the results that actually want you to download FrontPage, you'll get some sample code.

  • Integration problem: BW-BPS and portal reporting (ports)

    Hi,
    I have a question regarding to the integration of BW-BPS with the new portal. We have a BPS application with several planning interfaces (BSP) for the input of planning data. For reporting we are using the new portal functionality (BEx WAD templates). The BSP pages (ABAP) and the portal (JAVA) are working on different ports. We have integrated relative links into our BSP pages (/irj/servlet/prt/portal …) for the “link” between reporting and planning.
    This was working fine until yesterday when we implemented the new support package 13 for BI. Before, it was possible to execute the portal reports with the BSP port. Now, this does not work anymore. --> Error “the page cannot be displayed”
    The problem is that we are using a lot of these relative links within our BSP pages and they are all obsolete now.
    We can not use absolute paths because we have a “3 stage architecture” (with 3 different machines and 6 different ports).
    Does anybody know how we could solve this problem on the server side (port mapping, etc.)?
    Any help would be appreciated.
    Thanks and regards,
    Markus

    Hi,
    I thought this was a portal or IE browser issue, because I CANNOT see graphics but everybody else CAN!
    Regards,
    SS

  • Web Applet Problem OnDemandRdrtLogin Iframe

    Hi,
    we have multiple Web Applets attached to one object.
    The Administrator has no problem. We see all the Web Applet with the correct results.
    But if we login into the system with the standard user the first time we see the following link in each web applet.
    https://secure-ausomxdsa.crmondemand.com/OnDemand/user/analytics/saw.dll?OnDemandRdrtLogin
    After refreshing the window it does work normal and the correct web applets are shown.
    We are using iframes in the web applets.
    Has someone a solution or workaround for this issue. Did not found anything about the OnDemandRdrtLogin.
    Seems like the user hast o login in to the reporting the first time. I am a bit confused that it works with Admin user and with the standarduser it does not work.
    Kind Regards,

    Well I'm sure it must be something I'm doing, but what?
    I'm able to load another jnilib using a wrapper jar with no problem. I don't have the source to this jar and jnilib so I don't know how it is being done.
    I've created a simple jnilib and wrapper pair using the apple's Xcode template, but get the following error.
    Here is the stack trace:
    java.lang.ExceptionInInitializerError
         at CaMIDIappletTest.init(CaMIDIappletTest.java:86)
         at sun.applet.AppletPanel.run(AppletPanel.java:378)
         at jep.AppletFramePanel.run(AppletFramePanel.java:176)
         at java.lang.Thread.run(Thread.java:613)
    Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.caMIDI)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         at java.lang.SecurityManager.checkLink(SecurityManager.java:818)
         at java.lang.Runtime.loadLibrary0(Runtime.java:816)
         at java.lang.System.loadLibrary(System.java:992)
         at JNIWrapper.<clinit>(JNIWrapper.java:14)
    So, why can my applet work with one wrapper jar and jnilib pair, and not my pair?

  • Cross-sites App parts using iFrames

    I have a wiki page library inside site collection A, now I can add an app part which display the latest modified items , as follow:-
    Now the problem is that I cannot do the same steps if I am inside site collection B , as the app parts are not available cross-sites. I read about the content search and content quesry web parts for cross-site references, but these two web parts lack the
    view settings where I can define setting such as:-
    So the approach I am thinking of:-
    To add the app part inside site A.
    Then inside site B using Iframe inside a code snippet, to reference the app part at site A.
    I tried doing so but this resulted in showing the whole page inside the iframe , what I need is to only display the app part’s related HTML inside the iframe.
    Can anyone advice about this please?
    Thanks

    App Parts are only available where the Apps are installed.  You need to install the App on Site Collection B in order to add the App part to the page.  In Site Collection B go to Site Contents and use the Company App catalog to add the
    app to the site.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.
    Sorry but i did not get your point, now i created a new test team site collection. but inside the site collection contents i can not find an App catalog . here is how Site Content and app contains:-

  • Problem using File sharing  in a small office network

    I have a problem using File sharing on an Imac and Macbook Pro.
    My office has a small network running Windows Small office file server 2003. I have one Windows 2000 PC connected to it and 3 Macs, an 2.4 gHz Intel iMac running Leopard 10.5.6 , a MBP running the same and a Mac Mini running 10.5.
    From the Finder Shared window of the Mac Mini, I can see all the computers on the network. It also used to be the case for the iMac, but the MBP could never see the Windows PC’s, not the server or the Win2000. This wasn’t a big problem as I was communicating between the Macs and using the shared printer on the iMac.
    On Monday Jan 19 the iMac was suddenly unavailable to the other 2 Macs. It was working normally on the Friday. The iMac can access the Mac Mini and copy files to it. The Mac Mini can see the iMac but cannot access it. Even trying to connect as, ends in a failed connection. I have tried rebooting, turning File sharing off and then on again to no avail.
    The iMac now also cannot see the Windows PC’s which it previously could.
    To get files from the MBP for printing, I now copy it to the Mac Mini and acces the folder from the iMac, a very tedious procedure. I don’t know why this happened and am scared that the Mac Mini is going to do the same thing.
    All three computers are also running VMware 2.0 with Windows XP pro, and from VMware the server is visible on all the computers.
    Any help will be much appreciated, I live in a small town in South Africa and the local computer suppliers have no knowledge of the Macs.
    I think that the problem with the iMac may have started after a software upgrade to 10.5.6 but I am not entirely sure.
    Thank you
    ajdk

    Well, you're current method sounds pretty good. But if you want to user a file server, hey go ahead.
    What you want to do when you centralize project files is to keep track of which one is the newest and becareful not to overwrite files with the same name. So you either have to set up individual spaces on the server (separate AFP/FTP folders maybe), or you'll need to run a file checkout service.
    The individual space is cheaper, but it's not much of a difference from backing up to the network drive. Since you have Gigabit connections, you might even opt to save ALL the user files on the server instead of just the project files.
    If you want to run a file checkout service, there's two approaches. You can run a service that can host any kind of file, or you can run a version control system for each kind of application (Photoshop, Word, etc.). Please notice, that as you read further and further along, the methods become more and more expensive and complicated. Once you get to this point, it will be necessary to purchase or build software in addition to the Mac OS X Server package.

  • Huge problem using apple mail while sending email to a group...

    Hey - I am quite confused... apple mail has huge problems using groups with about 150 addresses when writing and sending an email... the writing of emails is nearly impossible. Once the group name is inserted in the addressline (address book in iCloud!), apple mail uses nearly 100% CPU and further writing is nearly impossible. When sending such an email, all addresses are suddenly visible - though the box is NOT checked and the addresses should be hidden... what can I do? I use this feature (sending mails to groups) on a daily basis and cannot accept visible addresses...
    Greetings and sorry for inconvenient english...
    Christof

    How about next time you send to the group, cc yourself, or include yourself in the group. Then receive the email on the iphone, you can "reply all" in order to send to the group. If you use an imap account, you can make a new folder, call it something like "groups", and save different group emails there for the next time you need to "reply all".

  • Hi. I am just about to move from the UK to Kuwait. Will I have any problems using my iPhone 4 and able to join a local carrier using this device please?

    Hi. I am just about to move from the UK to Kuwait. Will I have any problems using my iPhone 4 and able to join a local carrier using this device please?

    If your phone is locked to a particular carrier, you must contact them to request they unlock it. Once they've taken care of that and you've followed the instructions to complete the unlock process, you will be able to use the phone elsewhere.
    ~Lyssa

Maybe you are looking for

  • Error while creating jar from source folder

    Hi, i have source folder and i added log4j.properties i try to build for creating jar (sourcecode.jar) by ant build (build.xml) it is throwing error and saying that "package org.apache.log4j does not exist" i spend more time to resolve this error , b

  • Mandatory fields for creation of FB60(vendor invoice),and FK01(cost center)

    Hi all, can u plz send me the mandatory fields(along with discription) for creation of FB60(vendor invoice),and FK01(cost center). thank u, Srinivas Reddy.

  • To recover DBA password of Oracle 9.2.0.1 on Windows 2000

    Hi, I have forgot the the passwords of DBA Id's ( sys & system ) .Do you know anyway to recover this password . I am logging in with the id with which I installed oracle and all.. with thanks and regards Ranjeesh K R

  • Most user friendly way to browse document libraries for saving documents

    We are trying to figure out the most user friendly way to save office documents to different site collection document libraries.  The locations appear fine when we click "save as" for recent folders.  We can even click browse and use the up arrow for

  • ITunes coverflow on wrong space

    My iTunes coverflow is acting weird, it sometimes turns op on a space that I'm working on that not contains iTunes (because iTunes is locked to space 3). It does it when it changes songs, seemingly randomly (sometimes it won't do it for days, sometim