I can't to download xml example application PRODUCT CATALOG

Hi, i'm a registered user, but i can't to download sample product catalog, http://www.oracle.com/technology/tech/xml/xdk_sample/ProductCatalogSample.html
Please, give me advise - how to download it!
Thanks

Thank YOU!!!!!!!!!!!
Can you also give links to next examples:
* customer managment application sample and employee managment information using xsql and building product orders
*Employee Information Management using the XSQL page publishing framework
*Building Product Orders with New Oracle9i Database XML Features and the Oracle9i XDK
http://www.oracle.com/technology/sample_code/tech/xml/index.html

Similar Messages

  • If I upgrade my computer can I remove downloaded Creative Cloud applications and re-install them?

    I plan to upgrade by primary computer later this year.  If I download Creative Cloud applications now can I later remove them and re-install them on the new computer?

    Sounds like we have to deactivate:
    1. one application at a time [in CS5.5 I can uninstall & deactivate multiple applications, which is much more convenient]
    2. deactivation must be done on the physical computer which hosts the application instance.
    Is this true?
    Feature Request: remote deactivation of applications by informing adobe to deactivate while logged in on adobe account.  This cleanly solves two problems:
    1. forgetting to deactivate s/w prior to scrubbing a computer which is leaving service
    2. needing to run on a third computer w/o violating the adobe license. [several people have posted queries about this because they have a desk computer and two laptops or are temporarily using someone else's computer]

  • Can we have a b2b webshop without Product catalog in it

    Hi Gurus,
    I have a scenario where I dont want to Product catalog on the webshop. Customers log in and just want to see the order history.
    How can I set this up.
    Please explain if this is possoble.
    Thank You

    Hi Ram,
    yes, you will have to create a catalog without products. This is because the catalog is a required field when creating a new shop in the shopadmin. Only when you use the webshop with an R/3 or ERP backend, no catalog is required at all.
    Best regards,
    Martin

  • Can't display downloads from applications

    Can't display downloads in the application folder but can open them from dock. I have a Mac mini & have upgraded the operating system to OSX10.6.3 so I could use tubrotax. Any solutions?

    If you can't find the application in the Finder but it's in the Dock, you can:
    1- Right-click/Control-click on the Dock icon, mouse over OPTIONS, and select SHOW IN FINDER.
    2- Use a Spotlight search to find the application.

  • Downloading file from application server to presentation server

    Hi,
          We have a requirment to download file from application server to presentation server.  The problem is while down loading, some of the filds showing some junk values. Instead of that junk values we have some Russian texts there.  These Russian texts only coming as junk all other data is correct.  The file in the appplication server is in .dbf format. We are downloading using WS_DOWNLOAD. file type is BIN and code page we didn't specified.
    Thanks in Advance
    Jijeesh.P.G
    Message was edited by: Jijeesh.P.G
            Jijeesh P G

    hi jijeesh,
       Welcome to SDN.
    u can use to download file from application server to presentation server using the t/c CG3Y. in that it will ask the source file path and the target file path.
    if u want to find the source file path in the application server, u can use the transaction AL11 to find that one.
    Regards....
    Arun.
    Reward points if useful.

  • Download XML structure to Application server

    Hi all.
    I am generating an XML structure based on some data that I select from HR e-Recruiting, and I need to save the generated XML file on the application server, not the presentation server (local computer). Most of the code I have found on SDN (contributed by Robert Eijpe) and I must admit that I do not understand everything the code does.
    I have attached the source code and the resulting XML structure:
    REPORT  zhr_test2_tk.
    TYPE-POOLS: ixml.
    TYPES: BEGIN OF xml_line,
            data(256) TYPE x,
           END OF xml_line.
    DATA: l_ixml            TYPE REF TO if_ixml,
          l_streamfactory   TYPE REF TO if_ixml_stream_factory,
          l_ostream         TYPE REF TO if_ixml_ostream,
          l_renderer        TYPE REF TO if_ixml_renderer,
          l_document        TYPE REF TO if_ixml_document.
    DATA: l_element_position TYPE REF TO if_ixml_element,
          l_element_title    TYPE REF TO if_ixml_element,
    *        l_element_flight  TYPE REF TO if_ixml_element,
    *        l_element_from    TYPE REF TO if_ixml_element,
    *        l_element_to      TYPE REF TO if_ixml_element,
            l_element_dummy   TYPE REF TO if_ixml_element,
             l_value           TYPE string.
    DATA: l_xml_table       TYPE TABLE OF xml_line,
          l_xml_size        TYPE i,
          l_rc              TYPE i.
    DATA: lt_erec TYPE TABLE OF hrp5126,
          l_erec TYPE hrp5126.
    DATA: date(10),
          time(4),
          filepath TYPE string.
    CONSTANTS: filedir TYPE string VALUE 'C:tmp',
               filename TYPE string VALUE 'ZHR_test'.
    START-OF-SELECTION.
    * fill internal table
      SELECT * FROM hrp5126 INTO TABLE lt_erec.
    * Start filling xml DOM object from internal table lt_erec.
      LOOP AT lt_erec INTO l_erec.
    *Create the root node 'position'
        IF sy-tabix EQ 1.
    *     create an ixml factory
          l_ixml = cl_ixml=>create( ).
    *     create Document Object Model
          l_document = l_ixml->create_document( ).
    *    Fill root node with value 'position'
          l_element_position = l_document->create_simple_element(
                         name   = 'position'
                         parent = l_document ).
        ENDIF.
        IF sy-tabix GT 1.
    *     create element jobtitle as child of position
          l_value = l_erec-jobtitle.
          l_element_title = l_document->create_simple_element(
                             name   = 'job_title'
                             parent = l_element_position
                             value  = l_value ).
          l_value = l_erec-empl_start_date.
          l_element_dummy = l_document->create_simple_element(
                             name   = 'StartDate'
                             parent = l_element_title
                             value  = l_value ).
          l_value = l_erec-empl_end_date.
          l_element_dummy = l_document->create_simple_element(
                             name   = 'EndDate'
                             parent = l_element_title
                             value  = l_value ).
        ENDIF.
      ENDLOOP.
      IF sy-subrc NE 0.
        WRITE: 'No data in table hrp5125'.
      ENDIF.
    * create a stream factory
      l_streamfactory = l_ixml->create_stream_factory( ).
    * connect internal XML table to streamfactory
      l_ostream = l_streamfactory->create_ostream_itable(
                      table = l_xml_table ).
    * render the document
      l_renderer = l_ixml->create_renderer( ostream  = l_ostream
                                            document = l_document ).
      l_rc = l_renderer->render( ).
    * Get time and date
      WRITE sy-uzeit+2(2) TO time+2(2).
      WRITE sy-uzeit+0(2) TO time+0(2).
      WRITE sy-datum+4(2) TO date+0(2).
      WRITE sy-datum+6(2) TO date+2(2).
      WRITE sy-datum+0(4) TO date+4(4).
    *Build filename with date and time reference
    CONCATENATE filedir filename date time '.xml' INTO filepath.
    <i>* This is the code I hope to modify in order to save the xml structure on the application server, with a specified filepath.</i>
    <b>  OPEN DATASET filepath FOR OUTPUT IN BINARY MODE.
      LOOP AT lt_erec into l_erec.
        TRANSFER  l_erec TO filepath.
      ENDLOOP.
      CLOSE DATASET filepath.</b>
    * save XML document
      l_xml_size = l_ostream->get_num_written_raw( ).
    *This is the code for download to local computer
    *  CALL METHOD cl_gui_frontend_services=>gui_download
    *    EXPORTING
    *      bin_filesize            = l_xml_size
    *      filename                = filepath
    *      filetype                = 'BIN'
    *    CHANGING
    *      data_tab                = l_xml_table
    *    EXCEPTIONS
    *      file_write_error        = 1
    *      no_batch                = 2
    *      gui_refuse_filetransfer = 3
    *      invalid_type            = 4
    *      no_authority            = 5
    *      unknown_error           = 6
    *      header_not_allowed      = 7
    *      separator_not_allowed   = 8
    *      filesize_not_allowed    = 9
    *      header_too_long         = 10
    *      dp_error_create         = 11
    *      dp_error_send           = 12
    *      dp_error_write          = 13
    *      unknown_dp_error        = 14
    *      access_denied           = 15
    *      dp_out_of_memory        = 16
    *      disk_full               = 17
    *      dp_timeout              = 18
    *      file_not_found          = 19
    *      dataprovider_exception  = 20
    *      control_flush_error     = 21
    *      OTHERS                  = 22.
    *  IF sy-subrc <> 0.
    *    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    <b>XML result:</b>
    <?xml version="1.0" ?>
    <position>
       <job_title>Test Process Template</job_title>
       <job_title>jjjj</job_title>
       <job_title>Test Job Req. 20092005</job_title>
       <job_title>Created 22.09</job_title>
       <job_title>title 07.12</job_title>
       <job_title>Test fra portal</job_title>
       <job_title>Test med 100328</job_title>
       <job_title>Test restricted recruiter</job_title>
       <job_title>Test restricted recruiter</job_title>
       <job_title>Workshop requisition job title</job_title>
    </position>
    Any help is greatly appreciated.
    Best Regards,
    Thomas Kjelsrud

    Hi Guillaume,
    The thing is that the code I presented to you is incorrect. I am asking the question of how to download / save an XML (not an internal table) to the application server. Using the gui_download will not satisfy me need, as it only downloads to the presentation server (local machine that I run my SAP session on), when I need it to download to the application server. The Open Dataset and Transfer statements are (as far as I know) only used for downloading internal tables to the application server.
    So I guess my question should be like this instead:
    "How can I save the XML structure that is created in the above program to the file system in the application server?"
    It is a bit hard to explain this, so please ask me more questions if required.
    Thank you for helping.
    Best regards,
    Thomas

  • Hello sorry but im having a problem with my apple id it appears that i cant download nothing i dont know why but when im going to download something example facebook it appears de app that is charging and then desapere how can i fix that?

    Hello sorry but im having a problem with my apple id it appears that i cant download nothing i dont know why but when im going to download something example facebook it appears de app that is charging and then desapere how can i fix that?

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    -Griff W.

  • I am trying to download iTunes to my Sony PC,  but "This installation package could not be opened.  Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer Package."

    mI am trying to download iTunes to my Sony PC, but I keep getting the following error after initial download attempt:
    "This installation package could not be opened.  Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer Package."
    I have Windows 7 Home Premium, Service Pack 1.
    Any help is greatly appreciated.

    Hi gump68,
    Thanks for visiting Apple Support Communities.
    You may find the steps in this article helpful if iTunes is not installing on your PC:
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    All the best,
    Jeremy

  • I-tunes won't download onto Windows XP.  Error message 'this application package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this a a valid window Installation package'.

    How do you download i-tunes onto Windows XP when error message occurs, 'This application pack could not be opened. Verify that hte package exists and that you can access it, or contact the application vendor to verify that this is a valid window installation package'.

    I wish I knew because i'm having the same problem. As soon as I find the answer I will post.

  • Can't download itunes. keep getting message. message"this instillation package could not be opened. verify that the package exists and that you can access it or contact the application vendor to verify that this is a valid windows installed package".

    Ever time I try to download itune on my new packard bell I get the message "this instillation package could not be opened. verify that the package existsmand that you can access it or contact the application vendor to verify that this is a valid windows installed package" PLEEEEASE someone help me as I've lost all of my music!

    tried downloading the quicktime installer, I get the same message with it too

  • Since i updated my iphone to ios7, i can no longer download applications and also cannot update my apps. what happened? there is an alert popping and it tells that i should switch to Philippine store.

    since i updated my iphone to ios7, i can no longer download applications and also cannot update my apps. what happened? there is an alert popping and it tells that i should switch to Philippine store.

    Hi, sallymaesmag. 
    Thank you for visiting Apple Support Communities.
    If you are in the Philippines, check to see if the country is changed in the iTunes Store settings on the iOS device.  These steps will show you how to change the preference.
    Change your iTunes Store country
    Sign in to the account for the iTunes Store region you'd like to use. TapSettings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region.
    Follow the onscreen process to change your region, agree to the terms and conditions for the region if necessary, and then change your billing information.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    Once you make the change attempt to download applications again.
    Jason H.

  • My computer is Win8.1 64bit. Where can i download Adobe acrobat DC 64 bit? The application manager always download 32 bits application for me.

    My computer is Win8.1 64bit. Where can i download Adobe acrobat DC 64 bit? The application manager always download 32 bits application for me!
    (I tryed PS and AI just now. the application manager installed 64bits PS and AI. Why it can't find a 64bit acrobat for me?!) 

    Acrobat runs as a 64-bit application on Mac. Acrobat on Windows is a 32-bit application that can run and has been tested on 64-bit versions of Microsoft Windows 7 and 8, and Windows Server 2008 and 2012.
    FAQ | Adobe Acrobat DC

  • Where can I get the example application FuzzyEx Car Backward Parking.vi from LabView?

    Where can I get the example application FuzzyEx Car Backward Parking.vi from LabView? I've got the LabView 2009 and I don't find it.

    First verify if you have the PID and Fuzzy Logic Toolkit installed. To do that, you can just look at the "Control Design and Simulation" palette and you should see PID Palette and Fuzzy Logic Palette available. If you do not see, you need to install this toolkit.
    Second, in 2009 you have two options to access the example: you can directly open the example by using this address:
    C:\Program Files\National Instruments\LabVIEW 2009\examples\control\fuzzy\Car Parking\FuzzyEx Car Backward Parking.vi
    Or you can use the example finder and browse examples by going to: "Menu Help>>Find Examples" and "Toolkits and Modules>>PID and Fuzzy Logic Control>>Fuzzy Logic". yoiu should see "FuzzyEx Car Backward Parking".
    Hope this helps.
    Message Edited by Barp on 05-29-2010 12:59 PM
    Barp - Control and Simulation Group - LabVIEW R&D - National Instruments

  • There is a thing on my tray that said "Downloading the latest applications" , but i don't know what it's downloading n can't cancel it

    the tray is blue in the back
    n i have upgrade my firefox already
    ps i m using window 7
    == This happened ==
    Every time Firefox opened
    == three days ago

    The "Downloading the latest applications" problem can be caused by the MSN® Toolbar (Tools > Add-ons > Plugins)
    See [[Troubleshooting plugins]]

  • Where can i download the oracle applications software for DBA

    Hi,
    I want to know few things regarding oracle applications.
    1) What exactly is oracle applications
    2) Where can i download the oracle applications software
    3) I am currently working as oracle DBA, so i want to enhance the dba skills to oracle application, so where can i find further help,documentation related to oracle applications and dba related to that.

    Oracle Applications is an integrated ERP solution, with Finance, Manufacturing and CRM modules. Please visit appsnet for further information.
    Unlike other Oracle products, Oracle doesnot give free software downloads for Oracle Applications. They were once giving trial versions for about 40 USD. Now I am not sure, please check up Oracle website www.oracle.com. Look for link on "e-business suite" under the 'products' directory.
    If you can get hold of documentation on 11i, you can check out System Administration and Application Object Library (AOL) modules, these fall in your area. You can find this on oracle website or metalink.
    Be aware that general Oracle DBA on 8i or 9i is a different ballgame than managing 11i. Lot of websites are available for these harried people, and for more information, you can visit the websites www.appsdba.com, www.oncalldba.com or do a general google search.
    If you can get hold of a book "OCP for Oracle Financials 11.0" by Christopher Allen and Vivian Chow, this has good documentation on above two modules. But this is in 11.0, not 11i.
    Hope this helps.

Maybe you are looking for