DOCUMENTATION BUG: Broken link in APEX 4.0 API Reference

In the See also section of the <tt>apex_util.remove_preference</tt> method, the *"Managing Session State and User Preferences"* link is dead:
olink:AEADM110|Managing%20Session%20State%20and%20User%20Preferences

The broken lin in APEX 4.0 API Reference has been corrected. The latest updated version of this document is now available on the Oracle Technical Network (OTN).
Thanks for reporting the bug,
Drue Swadener
Principal Technical Writer

Similar Messages

  • Broken link to Oracle Backup Express Documentation

    The link to the Oracle Backup Express Documentation is broken on the site. The following link is on the Oracle Backup Express download page:
    http://www.oracle.com/technology/documentation/ses1016.html
    The link takes you to the Oracle Secure Enterprise Search 10g Release 1 (10.1.6) Documentation page instead of the Oracle Secure Backup Express v10.1.0.0.0 Documentation page.

    Jan,
    Thanks for reporting this broken link. The "Oracle Web Services Manager - Feature Overview" link has been updated and is now available from: http://www.oracle.com/technology/products/webservices_manager/index.html
    Regards,
    ...Lawrence/OTN

  • CR2008 and VS2008, broken links in documentation

    Hi !
    I'm using VS2008 which is delivered with CR2008. I'm looking at the provided online documentation and find there are broken links. For example, on the page http://msdn.microsoft.com/fr-fr/library/aa288402(VS.71).aspx there is a link http://www.crystaldecisions.com/products/dev_zone/net_walkthroughs.asp for CR documentation. That link is now broken.
    Where can I find documentation, tutorials and sample programs suitable for CR2008 version delivered with VS2008 ?
    Thanks.
    FPiette

    Hello,
    As you've discovered, the Developer Zone (Dev Zone) has been retired.  Most of the content from that site was moved to the SAP Community Network (SCN) and the SAP Developer Network (SDN) that is part of SCN.  There is an [SAP Business Objects Community|https://www.sdn.sap.com/irj/boc] on the SCN/SDN site.
    You'll see a link to Crystal Reports for .NET in the vertical menu on the left. This is where you want to start. You'll also see a horizontal menu with links to Support, the SDK Library, and Code and Samples.  These links will take you to additional information about Crystal Reports and BusinessObjects products.
    I'd like to also clarify your understanding of the version of Crystal Reports that comes with Visual Studios 2008.  VS2008 ships with a bundled version of Crystal Reports.  It is called Crystal Reports Basic, and it's version number is 10.5.  It is not Crystal Reports 2008.  Crystal Reports 2008 is the current version of our stand alone report designer and is v12.x.  CR2008 can be integrated into VS2008, but it is not the version you are using at this time.
    When you're ready to deploy your application you can visit the [Crystal Reports for Visual Studio .NET Runtime Distribution - Versions 9.1 to 12.0|https://www.sdn.sap.com/irj/scn/wiki?path=/display/bobj/crystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0] wiki for deployment information.
    Sincerely,
    Dan Kelleher

  • A LOT of iTunes broken links/tracks after Music folder move...

    So yeah, I'm getting a TON of broken links / dead track links in iTunes after having to do two things to my iTunes install recently and I'm at wits end trying to fix it.
    I keep my iTunes Music Folder on an external and share the iTunes library between my work Macbook Pro and my home Macbook. Every Friday I drag my iTunes folder and all contents from my MBP onto an external and replace the iTunes folder on the 'weekend' MB, then do the same back on Monday. I keep my iTunes music 'View' as 'Date Added' so that I can always be listening to whatever is newest. It's how I roll.
    Well, this week I had some data problems during the transfer and had to use a previous week's iTunes Music Folder, which was fine as I hadn't added much this week.
    I also got a new external because the old one was getting a little shady, so after doing the iTunes Music Folder replacement I moved my music all over to a new external drive, told iTunes where it all was at. iTunes did it's thing, 'organized' my stuff and all seemed good - until I got back deeper into the catalogue of music and started getting a LOT of broken tracks. The songs are still there, in the correct folders and all, but for some reason iTunes isn't finding them.
    When I say a LOT, I mean so far it's hundreds of my 13,000 songs.
    Now I COULD use the 'Super Remove Dead Tracks' script from Doug's to find all the broken files then re-add the whole library, but it will add all the old songs out of order because they will get a new 'Added' date.
    I could also manually move thru my whole library holding down the arrow key for 'Next' to find all the broken links then go thru, select them, and use the 'iTunes Track CPR' script from Doug's to re-add them to the library with ratings intact, but still they will be out of order time-wise.
    I cannot find a script that will parse my library, find broken links, and re-associate them with their tracks, nor can I figure out why this happened and any other way to fix it. Repairing permissions hasn't helped. Any other ideas?

    Just to follow up with a more comprehensive example of looping through a Library to detect & repair "missing" file-tracks:
    <pre>
    property kErrAENoSuchObject:(-1728)
    on run
    tell (application "iTunes")
    set theLibraryPlaylist to (first library playlist)
    tell theLibraryPlaylist
    set theNumCandidateFileTracks to (count (every file track))
    repeat with i from 1 to theNumCandidateFileTracks by 1
    -- Get a reference to this file-track
    set thisFileTrackRef to (file track i)
    -- Get this file-track's info (useful for debugging, etc.)
    set thisArtist to (artist of thisFileTrackRef)
    set thisAlbum to (album of thisFileTrackRef)
    set thisName to (name of thisFileTrackRef)
    set thisFileTrackInfo to (thisArtist & " > " & thisAlbum & " > " & thisName)
    -- Display a diagnostic message every 500th file-track
    if ((i mod 500) = 0) then
    tell me
    display dialog ("Checking file-track #" & i & ": " & ¬
    return & return & thisFileTrackInfo) ¬
    buttons {"Cancel", "•"} giving up after 2.5
    end tell -- me
    end if
    -- Retrieve this file-track's target file (an AS 'alias' object), if any
    -- {!!! NOTE: Due to a bug in iTunes 7.x+ (esp. when downloading), AS might
    -- be unable to access the 'location' field of some file-tracks !!!}
    try
    set thisFileTrackTargetFile to (location of thisFileTrackRef)
    on error errMsg2 number errNum2
    -- Check whether it's that bizarre error: (-1728) "Can't get location of …"
    if (errNum2 = (kErrAENoSuchObject of me)) then
    -- Set up to just skip this track (assume it's being downloaded)
    set thisFileTrackTargetFile to (anything) -- (Other than 'missing value')
    else (* Re-signal all other errors *)
    error errMsg2 number errNum2
    end if
    end try
    -- Check whether this file-track is "missing" its target file
    if (thisFileTrackTargetFile = (missing value))
    -- Inform the user
    tell me
    display dialog ("Repairing this missing file-track: " & ¬
    return & return & thisFileTrackInfo) ¬
    buttons {"Cancel", "•"} giving up after 2.5
    end tell -- me
    -- Set up this target file's new pathname (e.g., via explicit user input, or
    -- better yet automatically reconstructed from this file-track's tags such
    -- as Artist, Album, Name, Kind, etc.)
    -- ... Translate this file-track's kind into a filename-extension
    set thisKind to (kind of thisFileTrackRef)
    set thisNameExt to "m4a" -- ... Default
    if ({thisKind} is in {("Protected AAC audio file")}) then -- Older DRM'd file
    set thisNameExt to "m4p"
    else if ({thisKind} is in {("MPEG audio file")}) then -- MP3
    set thisNameExt to "mp3"
    else if (thisKind contains "movie file") then -- E.g., interactive booklet
    set thisNameExt to "mov"
    end -- (thisKind = "MPEG audio file") ... else if ... else ...
    -- ... Auto-build this target file's new pathname
    set thisTargetFileNewPathname to ("New Disk:New Path:" & ¬
    thisArtist & ":" & thisAlbum & ":" & thisName & "." & thisNameExt)
    -- Assign this new target file (as an AS 'alias' object) to this file-track
    -- (This is the crucial step that was impossible in older versions of iTunes!)
    set (location of thisFileTrackRef) to (alias thisTargetFileNewPathname)
    end if -- (thisFileTrackTargetFile = (missing value))
    end repeat -- with i from 1 to theNumCandidateFileTracks by 1
    end tell -- theLibraryPlaylist
    end tell -- (application "iTunes")
    end run
    </pre>
    Regards,
    --P

  • Broken link to Presenter 8 Trial download

    Broken link to trial: 
    https://www.adobe.com/cfusion/tdrc/index.cfm?product=presenter
    How about "Request Information", maybe some one can send me a good link?
    https://www.adobe.com/cfusion/mmform/index.cfm?name=contact_us&sa=elearning
    Another Broken Link.  Hmm.  This is getting complicated.
    OK, diferent approach.  Google "adobe presenter 8 trial".  Ahh, this looks good:
    https://www.adobe.com/go/trypresenter
    Broken Link
    Back to Google.  Second link:
    http://www.adobe.com/support/downloads/product.jsp?product=153&platform=Windows
    Jackpot!  Finally a good link. 
    Download latest full install 7.0.7.  Error during installation: "Error - Unable to detect Microsoft Powerpoint", which is odd, since I have PP installed.
    Google errormessage, and discover 7.0.7 doesn't support 64-bit PP 2010.  Sigh.
    8.0.2 does, apparently, but the only file for that is an upgrade - not an installer.
    Guess I should report those broken links, right?  Maybe if they get those fixed, I'll be able to get the Presenter 8 install?
    So, took the "Broken Link" link from error page I get when accesing first link above, and it takes me to http://www.adobe.com/aboutadobe/contact.html
    No obvious place to report a broken link.  Feedback? OK, I'll try that.
    Report a bug?  Closest thing I see:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Broken Link!
    So I can't download a trial that I can install, even though I have a supported product installed, I can't report thebroken Link, and, of course, it being a weekend, I can't contact Adobe Support.
    Frustrating.  If this is the quality of the web site, what does that say about the quality of the products?
    Anyway, I still want to try the trial, but in the meantime, I guess I'll try Authorpoint.

    delete your adobe.com cookie and retry https://www.adobe.com/cfusion/tdrc/index.cfm?product=presenter

  • Reporting broken links

    Is there a quick and easy mechanism to report broken links? A documentation link form help.sap.com doesn't work:
    http://help.sap.com/businessobject/product_guides/PftPF/en/pf_usersguide_780c.pdf
    Maybe I'm blind, but I just can't seem to find a "report a dead link" type of thing.

    Hello Mark,
    That website doesn't have any feedback mechanism I am aware of. Just a thought, but if you post this in the forum category most related to that topic, someone from Product Management in SAP might see it as they read the forums here and the documents posted on the help.sap.com portal are written by people in the Product Management org.
    Best Regards,
    David

  • [svn:fx-trunk] 10866: Fix broken links in ASDoc comments for TLFTextInput. as and TextArea.as, and add OverrideBase.as to ASDoc output

    Revision: 10866
    Author:   [email protected]
    Date:     2009-10-05 08:56:44 -0700 (Mon, 05 Oct 2009)
    Log Message:
    Fix broken links in ASDoc comments for TLFTextInput.as and TextArea.as, and add OverrideBase.as to ASDoc output
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: -
    Tests run: - checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/OverrideBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/mx/controls/TLFTextInput.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/TextArea.as

    Sorry about that. I am not exactly sure where the problem is, but I know it takes place after I put the <nav> in (in the html portion). If I understand what I am learning, the CSS at the top will structure my html code so I would have thought the CSS tageting my nav would be the focus. Maybe it is a different section though.
    CSS part:
    nav p {
    font-size: 90%;
    color: #FFC;
    text-align: right;
    font-weight: bold;
    background-color: #090;
    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 5px;
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: #060;
    HTML part: (bold italic is the part I added)
    <body>
    <div class="container">
      <div id="apDiv1"><img src="Lessons/images/butterfly-ovr.png" width="170" height="158" alt="GreenStart Logo"></div>
      <header></header>
      <nav>
        <p>Home | About Us | Contact Us</p>
      </nav>
      <div class="sidebar1">
        <ul class="nav">
          <li><a href="#">Green News</a></li>
          <li><a href="#">Green Products</a></li>
          <li><a href="#">Green Events</a></li>
          <li><a href="#">Green Travel</a></li>
          <li><a href="#">Green Tips</a></li>
        </ul>

  • Broken links - 404 errors

    There are a number of broken links leading to 404 errors in the documentation section of OTN. The viewable library for the 9.2 release is one good example.

    oops! Thankfully many universities and other sites host the docs online for the public as well.

  • RH8 fixing broken links

    In RH8, I'm trying to fix broken links. I find the topics, then they move from the Broken Links folder to the correct folder but then the topic still looks like it has a broken link! Can anyone advise? here's a pic

    Hello again
    Unfortunately you are totally misunderstanding things. Please allow me to try and explain better.
    ANY folder in your project is going to have an FPJ file inside it. This is a "behind the scenes" file that RoboHelp uses to keep track of the files that are part of the project.
    In the image you provided, there are two folders in the project location with similar names:
    Ranger_Help
    Ranger_Help_
    Only the Ranger_Help_ appears to actually be part of the project because the other folder Ranger_Help isn't appearing in the image capture showing the project inside RoboHelp. So unless something screwy happened, you should not find an FPJ file inside that folder. Then again, you may find one. It all depends on what happened.
    Personally, I'd look inside the Ranger_Help folder and see if the files representing the broken links are inside. They may well be. And if so, I'd copy them to the Ranger_Help_ folder and see if that resolves things.
    This project is beginning to resemble a bowl of spaghetti!
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Relinking broken links with JSX

    Okay,
    Say I have a series of folders and I have linked art and the files they are linked to all mixed up in these folders. My file structure is as such;
    myFiles\HH01000-01999\HH01000-HH01099\HH001001.PDF
    and now I need to change the file structure to this;
    myFiles\HH\HH01000-01999\HH01000-HH01099\HH001001.PDF
    adding the folder HH breaks the links.
    What is the best way to identify the broken link and change its path with JSX? Anybody got any ideas?

    Thanks Carlos,
    this is how i ended up getting it done.
    function changeLinkedArt () {
        linkedPath = app.activeDocument.placedItems;
        outcome = 0;
    for(i=0; i < linkedPath.length; i++) {
        linkedPathArray = linkedPath[i].file.path.split("/");
        for(j=0; j < linkedPathArray.length; j++) {
            if(linkedPathArray[j] === "HH") {
                outcome = 1;
        if (outcome === 0) {
            fileName = linkedPath[i].file.toString();
            linkedFileArray = fileName.split("/");
            for(k=0; k < linkedFileArray.length; k++) {
                if(linkedFileArray[k] === "illustrations") {
                    linkedFileArray[k] = linkedFileArray[k] + "/HH";
                    NewIndexLine = linkedFileArray.join("/");
                    //alert(NewIndexLine);
                    linkedPath[i].file=File(NewIndexLine);
        outcome = 0;
    modified an adobe script to open all files in a folder and run the script on all of them.
    wanted to build some arrays to change all files in multiple folders but i could not get the ".getFiles( fileType );" to take a path instead of the Folder.selectDialog.
    thats the only thing that bugs me.

  • Broken link to Oracle9i Database Globalization Support Guide Release 2 (9.2

    http://otn.oracle.com/documentation/oracle9i.html
    broken link to Oracle9i Database Globalization Support Guide Release 2 (9.2)
    http://download.oracle.com/docs/html/A96529_01/toc.htm
    only appear 404 error message.

    Hi Hannuri,
    I am not encountering this issue. Perhaps is has been resolved. Please confirm if you are still having this problem.
    Thanks and regards,
    Les

  • 8.1.7 broken links

    I seem to be getting 404's trying to look at admin guides here: Oracle8i Release 8.1.7 Documentation

    The broken links on that page and some related Release 8 pages should be fixed now, thanks to the efforts of the documentation production team and the internal OTN support group.
    The original problems seemed to occur only with specific PDF links on those release-specific pages. The HTML links worked, as did various "View Library" links (and PDF and HTML links within those libraries). From a check of random PDF links, all the links seem to work fine now.

  • Lots of broken links on Sun Website.

    Hi All,
    I am exploring java API and came across that there are lots of broken link on sun website . when ever i wanted to she the details about the class through google search the first link itself is broken for most of the class.I also tried to goto the sun website and navigate to the API documentation I was shocked to see that they all are broken.Sorry to post this here as there is no webmaster on sun website .Below are few of the links for your referance.
    http://java.sun.com/reference/docs/
    http://java.sun.com/reference/api/index.html

    Hi I just downloader firefox , This is what I gpt when I tried to view those links.
    The server at java.sun.com is taking too long to respond.
        *   The site could be temporarily unavailable or too busy. Try again in a few
              moments.
        *   If you are unable to load any pages, check your computer's network
              connection.
        *   If your computer or network is protected by a firewall or proxy, make sure
              that Firefox is permitted to access the Web.I think now there is no fault of IE& it is cool,I also find it strange how Mr.Djaunl can view those page .

  • OracleWorld broken links - Tips,Tricks,Techniques

    I get a broken-link error when attempting to retrieve either of these files:
    OracleWorld 2003: Top 10 Most Popular Sessions
    4. Oracle Database: Tips, Tricks, and Techniques
    40118_sgeorge_Tips and tricks for DBA V2.ppt
    40118 - sgeorge Tips and tricks whitepaper 2003.doc

    Hi Ronald,
    Apologies for the delay in responding to you.
    The Documentation Feedback forum is for issues relating only to the OTN Documentation pages at:
    http://otn.oracle.com/documentation/index.html
    Perhaps you could try the Member Feedback forum instead at: Community Feedback (No Product Questions)
    Regards,
    Les

  • Adobe Media Server, PluginAPI, Broken Link To Docs

    Hi I Am Trying To Get The Documentation For Plugin API On Media Server v5 , However The Link On The Site Is Broken, And Not Seeing Any Hard Docs In Install Directory.
    Link I Have Is This:
    http://help.adobe.com/en_US/adobemediaserver/plugin_apiref/index.html
    Can Someone Send Me These Docs, Or Fix The Site So Does Not Report 404 There ?>
    Thanks In Advance
    Zippen

    That Still Gives 404 For PluginAPI Documentation... The Link I Put Above
    To Reproduce I Goto Your Link.. And I Click On AMS 5.0.7 Developers Guide, That Gives This Page: Adobe Media Server 5.0.7 * Adobe Media Server 5.0.7 Developer’s Guide
    Then From There I CLICK Plug-in API Reference And I Get The 404
    Everything Else Works, ONLY The PluginAPI Docs...
    Thanks
    Zippen

Maybe you are looking for