JDBC 2.0 Sample Files dead links

Hi,
The following page contains dead links, some .jar files and sources. http://www.oracle.com/technology/sample_code/tech/java/sqlj_jdbc/files/jdbc20/jdbc20.html
Please correct this error.
Gergely Bekecs

These links have been repaired; thanks for the heads-up.
Regards, OTN

Similar Messages

  • Sample file link not working

    Hello - on this page: http://www.adobekb.com/working_with_master_pages.html, the link under "Deconstructing Site Layouts" - the link for "Download Sample Files" brings up an error. Can someone tell me where to get those files?

    Thanks. I was just previewing the doc since we already had
    the sample up for a while:
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html
    but i will push the new version of the sample since we fixed
    the IE6 offset issue.
    Thanks for noticing.
    Don

  • Link to download Oracle Reports Tutorial Sample Files

    Hi,
    I tried to download Oracle Reports Tutorial Sample Files from the following page:
    http://www.oracle.com/technology/products/reports/htdocs/getstart/gettingstarted/index/index.html?cat=DEV&col=EXA&submit=Search
    The files don't seem to be at the expected place.
    Is there another way to get these files?
    Thanks,
    Aard-Jan Kram

    I would recommend posting this on the Reports forum.
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • Flex 3 downloads are dead links

    Hi,
    i noticed that Flex 3 sample download links are all dead links (both local and remote zip files are missing)
    some examples :
    localDownloadPath="NumericStepper/Sample-Adobe-NumericStepper.zip" downloadPath="http://www.adobe.com/devnet/flex/tourdeflex/sample/samples/NumericStepper/Sample-Adobe-Num ericStepper.zip"
    localDownloadPath="Text/Sample-Adobe-Text.zip" downloadPath="http://www.adobe.com/devnet/flex/tourdeflex/sample/samples/Text/Sample-Adobe-Text.zip"
    and so on ...

    Sorry for the inconvenience, we're working to solve this issue.
    Vera

  • Upload file and link to sales order in SAP via rfc (C#)

    Hello all,
    In my company we have the possibility to attach files to sales orders, e.g. pdf files with the printing details.
    These files are added by the GUI user, this works fine.
    Now we have an extra order creation stream in which a pdf file has to be added to the SO without user interaction.
    In a previous question I had a little question about the linking, that has been solved, I will post the test program later.
    I now can link front end files (pdf's in this case) to the sales orders and it works fine.
    Now we are developing a frontend in C# (build by a third party) which creates a sales order via a RFC. We also want that RFC to include the PDF file and link it to the created order.
    In the interface of the RFC I included a table with 255 char lines. That is the same as in the example program. the problem is that our partner is yet unable to fill the interface in exact the same way as the example program does, so the linked pdf file is corrupted.
    Does anyone have hints how C# should fill the interface table, or how I can change the interface?
    code snippid table declaration for pdf table:
    IT_PDF     LIKE     ZETEX_TAB_PDF
    and
    structure ZETEX_TAB_PDF consists of
    LINE     CHAR255
    the sample program (see other topic on where I got it)
    REPORT  zzfb_brc LINE-SIZE 260.
    * Report  Z_RMTIWARI_ATTACH_DOC_TO_BO
    * Written By : Ram Manohar Tiwari
    * Function   : We need to maintain links between Business Object and
    *              the attachment.Attachment document is basiclally a
    *              business object of type 'MESSAGE'.In order to maintain
    *              links, first the attachment will be crated as Business
    *              Object of type 'MESSAGE' using Message.Create method.
    *              Need to check if we can also use FM
    *              'SO_DOC_INSERT_WITH_ORIG_API1' or SO_OBJECT_INSERT rather
    *              than using Message.Create method.
    * I took this program and removed all the parts for adding URL's and
    * notes.
    * Include for BO macros
    INCLUDE : <cntn01>.
    * Load class.
    CLASS cl_binary_relation DEFINITION LOAD.
    CLASS cl_obl_object      DEFINITION LOAD.
    PARAMETERS:
    *  Object_a
       p_botype LIKE obl_s_pbor-typeid DEFAULT 'BUS2032',    "SO
       p_bo_id  LIKE obl_s_pbor-instid DEFAULT '0000757830', "example number
    *  Object_b
       p_docty  LIKE obl_s_pbor-typeid DEFAULT 'MESSAGE' NO-DISPLAY,
       p_msgtyp LIKE sofm-doctp        DEFAULT 'EXT'     NO-DISPLAY,
    *  Relationship
       p_reltyp  LIKE mdoblrel-reltype DEFAULT 'ATTA'.
    TYPES: BEGIN OF ty_message_key,
            foltp     TYPE so_fol_tp,
            folyr     TYPE so_fol_yr,
            folno     TYPE so_fol_no,
            doctp     TYPE so_doc_tp,
            docyr     TYPE so_doc_yr,
            docno     TYPE so_doc_no,
            fortp     TYPE so_for_tp,
            foryr     TYPE so_for_yr,
            forno     TYPE so_for_no,
           END OF ty_message_key.
    DATA : lv_message_key TYPE ty_message_key.
    DATA : lo_message TYPE swc_object.
    DATA : lt_doc_content TYPE STANDARD TABLE OF soli-line,
           ls_doc_content TYPE soli-line.
    * Create an initial instance of BO 'MESSAGE' - to call the
    * instance-independent method 'Create'.
    swc_create_object lo_message 'MESSAGE' lv_message_key.
    * Upload the pdf file, for now from the frontend, in the future from
    * the server.
    DATA:
    *  dsn(40) TYPE C VALUE '/usr/sap/trans/convert/1.pdf', "server location
    l_lines TYPE i. "filelenght
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename   = 'c:tsimple.pdf'
        filetype   = 'BIN'
      IMPORTING
        filelength = l_lines
      TABLES
        data_tab   = lt_doc_content.
    * no exceptions, the file is there in this example
    clear l_lines.
    loop at lt_doc_content into ls_doc_content.
    l_lines = l_lines + 255.
    endloop.
    compute l_lines =   l_lines
                      + STRLEN( ls_doc_content ).
    ** the coding for the server input, for later
    *OPEN DATASET dsn FOR INPUT IN BINARY MODE.
    *IF sy-subrc <> 0.
    *  EXIT.
    *ENDIF.
    *READ DATASET dsn INTO ls_doc_content.
    *WHILE sy-subrc EQ 0.
    *  APPEND ls_doc_content TO lt_doc_content.
    *  READ DATASET dsn INTO ls_doc_content.
    *ENDWHILE.
    *CLEAR ls_doc_content.
    *CLOSE DATASET dsn.
    * define container to pass the parameter values to the method call
    * in next step.
    swc_container lt_message_container.
    * Populate container with parameters for method
    swc_set_element lt_message_container 'DOCUMENTTITLE' 'Some title'.
    swc_set_element lt_message_container 'DOCUMENTLANGU' 'E'.
    swc_set_element lt_message_container 'NO_DIALOG'     'X'.
    swc_set_element lt_message_container 'DOCUMENTNAME' p_docty.
    swc_set_element lt_message_container 'DOCUMENTTYPE' 'PDF'.
    swc_set_element lt_message_container 'DocumentSize'    l_lines.
    swc_set_element lt_message_container 'DocumentContent' lt_doc_content.
    swc_call_method lo_message 'CREATE' lt_message_container.
    * Refresh to get the reference of create 'MESSAGE' object for attachment
    swc_refresh_object lo_message.
    * Get Key of new object
    swc_get_object_key lo_message lv_message_key.
    * Now we have attachment as a business object instance. We can now
    * attach it to our main business object instance.
    * Create main BO object_a
    DATA: lo_is_object_a TYPE sibflporb.
    lo_is_object_a-instid = p_bo_id.
    lo_is_object_a-typeid = p_botype.
    lo_is_object_a-catid  = 'BO'.
    * Create attachment BO object_b
    DATA: lo_is_object_b TYPE sibflporb.
    lo_is_object_b-instid = lv_message_key.
    lo_is_object_b-typeid = p_docty.
    lo_is_object_b-catid  = 'BO'.
    *TRY.
    CALL METHOD cl_binary_relation=>create_link
      EXPORTING
        is_object_a = lo_is_object_a
        is_object_b = lo_is_object_b
        ip_reltype  = p_reltyp.
    * Check if everything OK...who cares!!
    COMMIT WORK.

    I woudl suggest you check ORDERS05 IDOC type (ORDCHG message type).
    FM - idoc_input_ordchg

  • How to delete dead links

    Hello
    I would like to delete dead links in a PDF document. I use Visual C++ to create my code and generate an API plug-in for Acrobat 8. Can you give me a sample code to do it.
    Thanks
    David

    You are going to need to examine the Cos object for each link and see
    whether it meets your requirements of "dead" (which you've really just
    moved to "invalid destination" - when is a destination invalid?)
    The PDF Reference describes the types of PDF actions. There are more
    than you think, and some (JavaScript) virtually defy analysis. In
    broad terms the plug-in would call PDDocGetPage / PDPageRelease for
    each page in turn, then iterate through the Annots objects. There is a
    PDAnnot API, but going to the Cos API is likely to be needed in the
    end.
    Be sure to use an error handler so you never miss PDPageRelease, even
    if there is an error in the PDF: this is very important.
    Aandi Inston

  • How do you get iTunes to list JUST broken or dead links?

    I would like to know how to get iTunes to show just broken links (aka Dead Links) much like how you can select it to show just duplicate songs/links
    My Internal Harddrive (HD) had a glitch afew weeks ago and I had to reformat and reinstall. Before any of that happened tho I had made a complete backup copy of the "My Music" folder (Which included the iTunes folder with its database and everything else) to a external HD.
    After getting the interal HD back up and running, I just copied everything within the "My Music" folder off the external and into the "My Music" folder on my Internal C Drive. During the copy process is when I found out that whatever glitch had happened had also affeced some of the MP3 files I had backed up on the external. Windows was able to copy all of the iTunes folder with its database and half of the MP3's The other half it couldn't tho.
    Now when I open iTunes being that the database was copied over and all songs that were recovered are exactly where they were before they show up I have no problems there. But the songs that were not recovered are listed in the iTunes Library, just has broken links tho since they do not exist anymore.
    It would make things ALOT easier if I could just get iTunes to show only the broken links. This would make a PERFECT list of all the songs I have missing. I could then know exactly which songs I need to rip again using iTunes or download so I can point these dead links to files and finish updating my iPod.
      Windows XP  

    OK I have finally got this question somewhat answered, I went and used the Javascript at http://ottodestruct.com/itunes/FindDeadTracks.txt the first time, followed the rules of using "Save as" and changing the .txt at the end to .js and got errors running it.
    The Second time tho, instead of just using "save as" I realized the first lines of this text are not code but just directions. Someone might know of a shorter way of doing this but I Highlighted only the code itsself and saved that (Example Below):
    /* Rename me to FindDeadTracks.js
    Double Click in Explorer to run
    Script by Otto - http://ottodestruct.com */
    var ITTrackKindFile = 1;
    var iTunesApp = WScript.CreateObject("iTunes.Application");
    var deletedTracks = 0;
    I just skipped the "Rename me to ........" Highlighted "var ITTrackKindFile " And everything below it. After saving this and running it, The script opened iTunes poped up how many dead tracks it found in a pop up window and (Without saying) had made a Text File of all the songs that were dead tracks in the "My Documents" Folder.

  • Not Yet Documented ADF Sample Applications download link not working

    Steve Muench Not Yet Documented ADF Sample Applications located at http://blogs.oracle.com/smuenchadf/examples/
    The download link for the samples does not work. It directs us to Oracle JDeveloper Products Page instead.
    Clicking on the title of any sample application used to enable the download of the sample file. Now it points to http://www.oracle.com/technetwork/developer-tools/jdev/overview/index.html
    Is there an alternative way to download the sample applications?
    Thanks in advance for your help.
    Mitesh

    Unfortunately the link https://smuenchadf.samplecode.oracle.com/samples does not work. It gives message URL is not valid.
    Your samples are a very important source of reference for us. Hopefully all the samples can be migrated to the new site soon.
    I am using JDev 11.1.1.2. I am using editable checkboxes is a table with RowSelection = Single. When I click on a selectBooleanCheckbox on a different row other than the current table row, the checkbox value changes at first but immediately reverts back to the previous state. It works fine so long as I remain on current row of the table. If I turn RowSelection off then I don't face this issue.
    For information, I wanted to take a look at your sample 145. Using a CheckBox in an Editable Table with Boolean/Button Binding.
    Thank you for your help.
    Mitesh.

  • Accessing OID in OBIEE VM Samples Files

    I'm trying to set up access to the expanded OBIEE 11.1.1.5 Sample files, by loading the VM application. I've successfully set up the Virtual Machine and loaded the Sample App image and I'm trying to work thru the instructions to get all of the components in place. This is the document I am using to guide me:
    [url http://www.oracle.com/technetwork/middleware/bi/downloads/sampleapp107-vbimage-deployguide-453583.pdf]http://www.oracle.com/technetwork/middleware/bi/downloads/sampleapp107-vbimage-deployguide-453583.pdf.
    Right now I'm at Section 4.5 of the guide in the section called 'ACCESSING IOD'. It reads:
    +'You can connect to the OID directory using the configuration in the image attached. From there, you can create or edit more OID specific users or attributes.'+
    It then shows a screen print of a dialog box.
    The instructions give me no clue as to how I would connect to OID using the configuration. My question: How do I connect to OID and make this connection?
    I looked for a link to OID in the VM app but don't see anything. Honestly I'm not clear on what I will use OID for, but I imagine that it is necessary to take full advantage of the sample files. Note that I'm not interested in diving deeply into learning all about OID today. Rather, I just want to make the connection as per the instructions and move on to the next step in setting up the VM Sample App. Thanks for any help on this.

    I'm trying to set up access to the expanded OBIEE 11.1.1.5 Sample files, by loading the VM application. I've successfully set up the Virtual Machine and loaded the Sample App image and I'm trying to work thru the instructions to get all of the components in place. This is the document I am using to guide me:
    [url http://www.oracle.com/technetwork/middleware/bi/downloads/sampleapp107-vbimage-deployguide-453583.pdf]http://www.oracle.com/technetwork/middleware/bi/downloads/sampleapp107-vbimage-deployguide-453583.pdf.
    Right now I'm at Section 4.5 of the guide in the section called 'ACCESSING IOD'. It reads:
    +'You can connect to the OID directory using the configuration in the image attached. From there, you can create or edit more OID specific users or attributes.'+
    It then shows a screen print of a dialog box.
    The instructions give me no clue as to how I would connect to OID using the configuration. My question: How do I connect to OID and make this connection?
    I looked for a link to OID in the VM app but don't see anything. Honestly I'm not clear on what I will use OID for, but I imagine that it is necessary to take full advantage of the sample files. Note that I'm not interested in diving deeply into learning all about OID today. Rather, I just want to make the connection as per the instructions and move on to the next step in setting up the VM Sample App. Thanks for any help on this.

  • Dead links....can't remove them?!?

    I created a site a few months ago with iweb. I then published it. A few months went by and I decided it was time to update it. I removed a couple of old movies using iweb. I then republished the site.
    I just went to visit it (a few weeks later) and those links are still at the top of the page (although they go to the "We're sorry but we can't find the iweb page.......")
    These links are NOT in the iweb site I have created... So why are they on the published site?
    How can I get ride of these "dead" links on the published site??? Thanks..

    Open your iDisk
    Open the 'Web' folder
    Open the 'Sites' folder
    Open the 'iWeb' folder
    Open the folder with the name of the site that is having problems
    You should now have a list of folders and files, many of which will have names matching the names of pages in your site.Look for any files ending in '.html' (apart from 'index.html') that have names of pages that you deleted and delete them.
    When you update your site with a new page, or by deleting a page in iWeb, the navbar should hopefully be fixed. If it's not, then there's something strange going on! If you still have problems, post the address of your site.
    You might want to empty the cache in your browser before you check, to make sure that you're actually looking at the most recent page. To be extra sure, I'd empty the cache, quit, reload, open the site, then reload the site to make absolutely certain that the most recent update is being viewed.

  • Exporting list of missing or dead links from iTunes

    If you have more than 500 songs in iTunes, sooner or later, you will end up with missing, broken or dead links.
    Unlike some who address this issue, I genuinely have missing songs, so wish to export a list so I can then re-import them.
    Itunes dupes barrier will create a list of “dead” tracks, but I cannot export it.
    I don’t want to remove the broken links until I have decided if I still want the songs or not.
    Any ideas?

    Timothy Holt wrote:
    If you have more than 500 songs in iTunes, sooner or later, you will end up with missing, broken or dead links.
    Nearly 10,000 tracks in my iTunes library and I have NEVER had that issue. Perhaps your statement should be something like, if you start messing around with your folders and files and moving them around, renaming them, etc. outside of iTunes without knowing what you are doing, then you will end up with dead links and missing files. That would probably be more accurate.
    Itunes dupes barrier will create a list of “dead” tracks, but I cannot export it.
    "Itunes dupes barrier" ??? I assume you mean the Show Duplicates function? If so, then when you get that list, all you have to do is a Select All then open your favorite spreadsheet and paste the list in. Everything will line up in nice columns and rows. You can paste into a word processor or text edited as well, but it may be a bit jumbled in the formatting.
    Cheers,
    Patrick

  • Sample files?

    The game window says I can "Use sample files" the text is underlined like a link, but nothing downloads. I can't find anything here either. Anybody know where they are?

    Mira, this morning after reboot, the links in the LevelUp window work. I'm on Mac OS 10.7.4 with PSD CS5.1  Possibly important is the fact that I dragged the LevelUp folder from my Desktop to the harddrive folder before clicking the .zxp. Now that I have the name of one file, I was able to see them all in Users/myAccount/Documents/LevelUp.
    Thanks!

  • Dreamweaver CS6 Sample file

    Dreamweaver CS6 Sample file,
    jQueryMobileLocalMultiPage Original Source file (img, xml, html...)
    Where is this?

    Can you provide us with more context for your question - a link to the document that you are looking at or a screenshot of what is being displayed on your computer?
    Thanks,
    Preran    

  • Finding dead links

    Hi.
    I've got a bit of a snafu with regards to my music library.  I was using itunes to move my library to an external hard drive.  During said process, the hard drive crashed a few times which threw itunes into a tailspin and it crashed and thus crashed my computer.  Needless to say problems arose.  I was able to sort out most of the problems manually and with some scripts found. 
    I had about 1500 or so dead links.  I used FindTracks to sift through all the dead links.  The script found about half of them.  It didn't give an error it just said files weren't updated and are still missing.  The files are indeed in the proper location, it's just the name is wrong.  Itunes added a 1 or 2 to the end of each file.  FindTracks does not work when trying to fix these files.  Am I using the script properly or am I missing something.  Any help would be appreciated.
    My itunes library file is located in ' z:\itunes ' and my music is in a subfolder ' music '.  Drive is a NAS.
    Below is an example of what the script says about the file that is there but not there.

    Diane,
    The portal related business packages can be found from this location.
    service.sap.com->Download->Entry by application group->Support Packages and Patches->SAP Application Components-> SAP ERP->SAP ERP 6.0->Entry by Component-> Portal Content
    This is the list you would find there for portal content.
    BP COMPENSATION SPECIAL. 60.2
    BP CREDIT MANAGEMENT 60.1
    BP DMS CONNECTOR KM 1.0
    BP ENV. HEALTH & SAFETY 50.1
    BP ERP05 BUS UN ANALYST 20 1.0
    BP ERP05 BUYER 1.0
    BP ERP05 COMMON PARTS 1.0
    BP ERP05 DEV COLLABORATION 1.0
    BP ERP05 ESS 1.0
    BP ERP05 HR ADMINISTRATOR 1.0
    BP ERP05 INT SALES REP 1.0
    BP ERP05 INVOICING CLERK 1.0
    BP ERP05 LEARNING 1.0
    BP ERP05 MAINTENANCE TECH 1.0
    BP ERP05 MSS 1.0
    BP ERP05 PLANT MNG 20 1.0
    BP ERP05 PROD SUPERVISOR 1.0
    BP ERP05 PROJ SELF-SERV 1.0
    BP ERP05 QUALITY INSPECTOR 1.0
    BP ERP05 SELF-SERV ADMIN 1.0
    BP ERP05 SUPPLIER 1.0
    BP HIGHER EDUCATION & RES 1.0
    BP PROJ., PORT. & DCOL. 4.0
    BP RETAIL 1.0
    Hope this helps.
    Cheers!
    Sandeep Tudumu

  • Missing Oracle Reports tutorial sample files

    The Oracle reports tutorial version 10.1.2, which I just downloaded along with Oracle reports, specifies where the sample files can be found in the prerequisites section. It says,
    You can download these files from the Oracle Technology Network (OTN) Oracle Reports 10g page (http://www.oracle.com/technology/products/reports/index.html): click Getting Started with Oracle Reports. Navigate to the index, then click Examples. On the Examples page, you will see a link to Oracle Reports Tutorial.
    There is no "Getting Started with Oracle Reports" on that web page. I've looked around for the sample files for this turorial and I can't find them. Does anyone know where they are located?

    I found the sample code for the Oracle Reports tutorial. It's at:
    http://www.oracle.com/technology/products/reports/htdocs/search.html?cat=ALP&col=EXA&submit=Search

Maybe you are looking for

  • Response not coming from bapi

    hi all,             I am sending a request from XI to bapi and it is going but the response is not coming from the BAPI.Below is the structure of the response bapi which is required <i><?xml version="1.0" encoding="UTF-8" ?><ns0:ZLS_BAPI_SAMPLE_DUE_D

  • How to make Clsuter aware EJB

              Platform: Weblogic 6.0sp2 in WINNT           Hai,           I have made IP loadbalancing ( The DNS Host entry swaps IP in intervals) as per           the documentation. By Using the clsuter IP i have created a cluster entey in the          

  • Mail 2.1 Locked?

    Started trying to delete a group in my addressbook. Couldn't. Then I clicked on my mail and it was locked on a Mailbox. That particular mail box was highlited. Tried to create a new user account but only got the rolling curser. Nothing would open. Ju

  • My Shortcut Keys are not Working

    Hi everybody. I was working on a project for the past couple of days. All of a sudden my "JKL" keys are not working. My "spacebar" will start and stop a clip, but the JKL keys have no effect. Also, none of my other shortcut keys will work. The keys w

  • Blurry 3D

    Hello! It's been a while since I've used Motion for a project but now that Flash is less popular because of the iPhone and iPad, I have a new Motion project! Yea! So I'm doing a software product demo in Motion 5 and I've taken lossless screengrabs of