SUNWi1cs, SUNWi15cs are missing in oracle solaris for VM

Hello,
i'm installing oracle 10r2 on Solaris10_8-11 for testing purposes. i have download Solaris from VM section of oracle
http://www.oracle.com/technetwork/server-storage/solaris10/solaris-vm-405695.html.
Two package are missing both are required for oracle installation. i got following error
ERROR: information for "SUNWi1cs" was not found
ERROR: information for "SUNWi15cs" was not found
when i google this issue i got a OTN thread which deal almost same problem and purposed solution was to download cd1 which contain both pkgs. Now my questions are
would i need to download compete dvd for just two pkgs? (SIZE 3GB)
is there any link to download CD1 only
or any other work around?

thanks for reply,
i'm confuse why oracle did not add theses pkg in vm solution. The purpose of this VM machine to make life easy for those guys who don't have sound experience on solaris box (like me) or they have no concern with OS installations. it mean, if i wanted to install oracle on solaris using VM machine then i have to download both file separately which is equal to 7GB (too large) plz let me know if there is any way to downlaod cd1 instead of full dvd?
here is my complete snapshot of the output
bash-3.2# pkginfo -i SUNWlibms SUNWtoo SUNWi1cs SUNWi15cs SUNWxwfnt SUNWxwplt SUNWmfrun SUNWxwplr SUNWxwdv SUNWgcc SUNWbtool SUNWi1of SUNWhea SUNWlibm SUNWsprot SUNWuiu8
system      SUNWbtool CCS tools bundled with SunOS
system      SUNWgcc   gcc - The GNU C compiler
system      SUNWhea   SunOS Header Files
system      SUNWi1of  ISO-8859-1 (Latin-1) Optional Fonts
system      SUNWlibm  Math & Microtasking Library Headers & Lint Files (Usr)
system      SUNWlibms Math & Microtasking Libraries (Usr)
system      SUNWmfrun Motif RunTime Kit
system      SUNWsprot Solaris Bundled tools
system      SUNWtoo   Programming Tools
system      SUNWuiu8  Iconv modules for UTF-8 Locale
system      SUNWxwdv  X Windows System Window Drivers
system      SUNWxwfnt X Window System platform required fonts
system      SUNWxwplr X Window System platform software configuration
system      SUNWxwplt X Window System platform software
ERROR: information for "SUNWi1cs" was not found
ERROR: information for "SUNWi15cs" was not found

Similar Messages

  • House bank ID and acct ID are missing in mast.record for acct...

    Dear SAP Gurus,
    Please help out in the error that I am having here in FBWD for clearing accounts.
    I made payment with F110 for Bill of Exchange and Now I want to clear the amounts.
    1,

    Dear SAP Gurus,
    Please help out in the error that I am having here in FBWD for clearing accounts.
    I made payment with F110 for Bill of Exchange and Now I want to clear the amounts.
    1, How can I clear these amounts after payment with F110.
    2, what are the other ways to clear the amounts apart from FBWD.
    3, Error (1), the error that I am getting while trying to visualize the values with the account which is assigned to the house bank "House bank ID and acct ID are missing in mast.record for acct 11301246" Message no. FW024.
                                               though the house bank and ID exists in the system and accounts are assigned in the area OBVCU (FBZP) at "Bank Accounts" area. except the account the DISCOUNT ACCOUNT (G/L A/C is assigned)  in the FI12 at Bank accounts area.
    4, Error (2),  Retd bills exch. acct missing for house bank acct BBVA1 BBVAC (house bank &ID) and pyt method.
                       system response is : Bills of exchange is imported but excluded for further processing.
    thanks in advance,
    Yella Reddy

  • Some segments are missing in the idocs for master data zdebmas

    hi guru's,
    can any one hlep me here we facing the probelumm
    some segments are missing in the idocs for master data zdebmas
    , there is some issue on the generation of the Site Master IDoc (Message type: ZDEBMAS, Basic type: DEBMAS06).
    This is using the SAP standard program (RBDMIDOC) which reads the Site master change pointers.
    There is  some segments below is missing in the IDoc:
    how to chcek this probelumm...

    hi
    i got the function module. it is  triggerig whne i do changepointer running.
    what ever changes i made only that segments are onlycomming in to the idoc. but remaing segments are not comming.
    my req is to show all segments  even if i do changes in one segmet fields  dont change theay have send to the interfece all athe segments.i ahve to do some enhancemetns for that
    can u plse help me the login  or any function module which will fill the alla the segmetns .

  • Column headings are missing in the output for ALV?

    Hi all,
    i have coded a small report in ALV mode. i am getting the data but the column headings are missing.
    iam not getting the column headings in the output. it is coming as blank. Could you all please help me out in this?
    below is the code of my program:
                     Includes                                            *
    *---Standard header and footer routines
    INCLUDE zsrepthd.
    *--- ALV Routines
    INCLUDE zvsdi_alv_routines_ver3.
    *--- Authorization Check
    INCLUDE z_selection_auth_check.
                     Types Declarations                                  *
    tables : ekpo.
                     Types Declarations                                  *
    TYPES: BEGIN OF ty_ekpo,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_ekpo.
    *-Output field name
    TYPES: BEGIN OF ty_output,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_output.
    *-Output field name
    TYPES: BEGIN OF ty_fields,
            fname(60) TYPE c,
           END OF ty_fields.
                     Internal Table Declarations                         *
    DATA:it_ekpo TYPE STANDARD TABLE OF ty_ekpo,
    *--- Alv parameters
        it_out_alvp TYPE typ_alv_form_params, "for alv parameters
    *-Field catalog  for ALV display
        it_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
    *-Field names for Excel column headings
    it_ekpo_fields TYPE STANDARD TABLE OF ty_fields WITH HEADER LINE.
    **--To store output for Principial Pegging data
    DATA: BEGIN OF it_output occurs 0,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF it_output.
    **--To store output for 2nd
    DATA: BEGIN OF it_output1 occurs 0,
            text(2000),
           END OF it_output1.
                     Data Declarations                                   *
    data: v_ebeln TYPE ekpo-ebeln,
          v_ebelp TYPE ekpo-ebelp,
          v_matnr TYPE ekpo-matnr,
          v_werks TYPE ekpo-werks.
                     Constants Declarations                              *
    CONSTANTS:
         c_0    TYPE i     VALUE  0,
         c_x    TYPE char1 VALUE  'X',
         c_i    TYPE char1 VALUE  'I',
         c_eq   TYPE char2 VALUE  'EQ',
         c_ekpo  TYPE char4 VALUE 'EKPO',
         c_hyfn  TYPE char1 VALUE '-'.
                     Work Area Declarations                              *
    DATA: x_output_ekpo type ty_output,
          x_ekpo type ty_ekpo.
                     Selection Screen                                    *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-f01.
    SELECT-OPTIONS:
          s_ebeln FOR v_ebeln OBLIGATORY,
          s_ebelp FOR v_ebelp,
          s_matnr FOR v_matnr,
          s_werks FOR v_werks.
    SELECTION-SCREEN END OF BLOCK b1.
                     At Selection Screen                                 *
    AT SELECTION-SCREEN.
                     Start-of-Selection                                  *
    START-OF-SELECTION.
    *--- Check Authorizations for Selection-screen
      PERFORM  z_selection_auth_check.
    *--- Fetch Purchasing Document Item data
      PERFORM  fetch_status_pp.
                     End-of-Selection                                    *
    END-OF-SELECTION.
    **-- Download data to final internal table.
      PERFORM data_output.
      IF NOT it_output[] IS INITIAL.
    *--- Fill the structure for calling the ALV form
        PERFORM initialize_alv_params.
    **-- Display ALV Report
        PERFORM setup_and_display_alv_ver2
           USING
         it_out_alvp        "Parameter structure
         it_output[]        "Internal Data table(header table)
         it_output[].       "Dummy table for Hierarchical ALV!!(item table)
        ENDIF.
      IF it_output[] IS INITIAL.
        MESSAGE i999(zi) WITH 'No data found for selection'(i02).
      ENDIF.
    *&      Form  FETCH_STATUS_PP
    Get data from ekpo table
    FORM FETCH_STATUS_PP .
    *-Fetch PP Data from ekpo table
      REFRESH it_ekpo.
      SELECT EBELN
             EBELP
             MATNR
             WERKS
             FROM ekpo
             INTO TABLE it_ekpo
             WHERE ebeln IN s_ebeln
               AND ebelp IN s_ebelp.
      IF sy-subrc = c_0.
        SORT it_ekpo BY ebeln ebelp.
      ENDIF.
    ENDFORM.                    " FETCH_STATUS_PP
    *&      Form  f_top_of_page
    *This is to write the top of page
    FORM top_of_page.
      DATA:  lt_list TYPE slis_t_listheader,
             lx_list TYPE slis_listheader.
    *--- Title name
      CLEAR lx_list.
      lx_list-typ  = 'S'.
      lx_list-key  = 'Title name'(t13).
      lx_list-info = sy-title.
      APPEND lx_list TO lt_list.
      IF NOT lt_list IS INITIAL.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            it_list_commentary = lt_list.
      ENDIF.
    ENDFORM.                    "top_of_page
    *&      Form  init_page_head
    Description : This subroutine initializes the fields in table BHDGD  *
                  for printing the report heading.                       *
    FORM init_page_head.
      bhdgd-line1  = 'SLA Status Report'(h04).
      bhdgd-line2  = sy-title.
      bhdgd-lines  = sy-linsz.
      bhdgd-fcpyrt = sy-uline.
      bhdgd-inifl  = '0'.
    ENDFORM.                    "init_page_head
    *&      Form  initialize_alv_params
    Description : Form to initialize ALV Params
    FORM initialize_alv_params.
      CONSTANTS: lc_alv_grid  TYPE char1 VALUE 'G',  "Grid
                 lc_u         TYPE char1 VALUE 'U'.
      MOVE 'IT_OUTPUT' TO   it_out_alvp-tablname.   "final table
      MOVE sy-repid    TO   it_out_alvp-repid.
      MOVE lc_alv_grid TO   it_out_alvp-alvtype.
      MOVE c_x         TO   it_out_alvp-bringdefaultvar.
      MOVE lc_u        TO   it_out_alvp-variantsavetype.
    ENDFORM.                    " initialize_alv_params
          FORM it_out_init_events                                       *
    -->this is form is to modify the events
    FORM it_out_init_events
          CHANGING
           alevnts TYPE slis_t_event.
      FIELD-SYMBOLS <alevnt> TYPE slis_alv_event.
      LOOP AT alevnts ASSIGNING <alevnt>.
        CASE <alevnt>-name.
          WHEN  slis_ev_top_of_page.
            MOVE 'TOP_OF_PAGE'  TO <alevnt>-form.
        ENDCASE.
      ENDLOOP.
    ENDFORM.                    "it_out_init_events
    *&      Form  DATA_OUTPUT
    Download data to final internal table
    FORM DATA_OUTPUT .
      loop at it_ekpo into x_ekpo.
        x_output_ekpo-ebeln = x_ekpo-ebeln.
        x_output_ekpo-ebelp = x_ekpo-ebelp.
        x_output_ekpo-matnr = x_ekpo-matnr.
        x_output_ekpo-werks = x_ekpo-werks.
        append x_output_ekpo to it_output.
      endloop.
    ENDFORM.                    " DATA_OUTPUT
          FORM it_out_alv_fieldcat_before                               *
    -->  PT_FCAT                                                       *
    -->  ALVP                                                          *
    FORM it_out_alv_fieldcat_before  CHANGING
        pt_fcat TYPE slis_t_fieldcat_alv
        alvp TYPE typ_alv_form_params.
      DATA: lx_fcat TYPE slis_fieldcat_alv.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELN'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_m      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_s      = 'Purchasing Doc No'(018).
      lx_fcat-reptext_ddic   = 'Purchasing Doc No'(018).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELP'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_m      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_s      = 'Item No Purchasing Doc'(020).
      lx_fcat-reptext_ddic   = 'Item No Purchasing Doc'(020).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'MATNR'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Material'(010).
      lx_fcat-seltext_m      = 'Material'(010).
      lx_fcat-seltext_s      = 'Material'(010).
      lx_fcat-reptext_ddic   = 'Material'(010).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'WERKS'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Supply plant'(013).
      lx_fcat-seltext_m      = 'Supply plant'(013).
      lx_fcat-seltext_s      = 'Supply plant'(013).
      lx_fcat-reptext_ddic   = 'Supply plant'(013).
      APPEND lx_fcat TO pt_fcat.
    ENDFORM.                    " it_out_alv_fieldcat_before.
    Regards,
    Shalini
    Edited by: shalini reddy on Oct 7, 2008 5:08 PM

    Hi,
    The heading are in the table pt_fcat - you don't seem to be passing that in form....
    PERFORM setup_and_display_alv_ver2
    USING
    it_out_alvp "Parameter structure
    it_output[] "Internal Data table(header table)
    it_output[]. "Dummy table for Hierarchical ALV!!(item table)
    which I guessing in in one of the includes?
    Saying that the extract pof code does not show where you are calling form it_out_alv_fieldcat_before ...which populates the headings...
    Regards
    Stu

  • When using fFire Fox with eBay a number of tabs are missing EG. respond tab for email Drop down buttons for active listings etc.. Parts of dropdowns are missing eg. rigt side of messages.

    I guess I should have used the word buttons. The buttons for drop down boxes are missing. The respond button is missing in email. The button for active listings options is missing. The accept offer buttons is missing for offers I receive. Some drop down boxes are only half shown (right side missing) I have cleared my cache, removed cookies, done something with online storage. I have uninstalled and reinstalled Fire Fox. This all seems to have started around the time I upgraded to 4.0. How can I correct this problem. I love Fire Fox. Right now I have gone to Internet Explorer and everything works fine there. HELP PLEASE

    See:
    * http://kb.mozillazine.org/Website_colors_are_wrong
    * http://kb.mozillazine.org/Websites_look_wrong
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]

  • Flashback Recovery area Full in Oracle 10g

    Before the flashback recovery area is full our
    Archive destination is USE_DB_RECOVERY_FILE_DEST
    Our DB_RECOVERY_FILE_DEST =/S01/app/oracle/flash_recovery_area/
    We got the Error:- ORA-00257
    Inorder to resolve the error we changed the log_archive_dest_1='/S01/app/oracle/db/archive'
    now the archive destination is changed to /S01/app/oracle/db/archive
    Archive logs getting generated in the above directory from now onwards.
    In the mean time i moved all the files from /S01/app/oracle/flash_recovery_area/
    to diff directory.
    But the below query gives still the space used is 3935.27 MB, where physically there are no files in /S01/app/oracle/flash_recovery_area/
    When will these values in the query update. Is there anything i have to do to reclaim the space 3935.27 MB (in the query below). Now after reclaiming the space, i want to use the Flash Back Recovery area (/S01/app/oracle/flash_recovery_area/) for the archive logs, like a switchback to where we are initially. How to reclaim the space ? How to switch back archive logs to Flash Back Recovery Area (/S01/app/oracle/flash_recovery_area/).
    Please the below report for the above conversation.
    Sat May 20 page 1
    Flash Recovery Area Status
    Space Space Reclm
    Limit Used Space
    File Name (MB) (MB) (MB) Files
    /S01/app/oracle/flash_recovery_a 4000.00 3935.27 3935.27 90
    rea
    Experts share your experience. Appreciate your reply in this regard..........
    Thanks

    In UNIX style environments you often don't see reclaimed space until the database is restarted. Backup the database and archivelogs and the flashback area shoudl take care of itself in future. If not, you can always delete obsolete archivelogs manually by using the DELETE command in RMAN.
    To cleanup now, first you must tell RMAN that the files you've moved are no longer available:
    crosscheck archivelog all;
    You can then delete the obsolete archivelogs using the following RMAN command:
    delete obsolete;
    I'm assuming you use RMAN for all your backups :)
    Cheers
    Tim...

  • Please help!! Downloaded songs are missing!

    The iTunes was closed in some reason while I'm downloading songs.
    I've reboot it afterwards and clicked "Check for Available Downloads",
    It says "All purchases has been downloaded from this account."
    I've been looking through for hundred times,
    but i just cant find the songs in the iTunes.
    What can i do about it?
    thanks for your attention

    Normally a purchase is only removed from the download queue when it has been successfully downloaded and installed in your library. Unsuccessful transfers should resume next time you start iTunes and/or remain availible with *Store > Check for Available Downloads*.
    It might be work checking the Downloads folder in your iTunes Media folder as well as the folder with the rest of the album tracks in case the files completed downloading but were not added to the library. You could also view your library sorted in Date Added order in case some weird aspect of the tags is making the tracks appear in a different place from the rest of the album.
    If you still can't find them use the "Report a problem" link in your account history and explain the issue clearly & politely detailing exactly which tracks you are missing. Normal turnaround for a response is about 48 hours and I would assume they will requeue the missing items.
    tt2

  • Oracle Streams for Archiving Data

    We are considering using Oracle Streams for Archiving the Data that is older than six months, is this the right option? Has anybody done archiving with Oracle Streams? or would you recommend any other option?
    Edited by: vs**** on Feb 8, 2011 2:58 AM

    The tasks are
    1. Oracle checks everyday at a scheduled time in the required tables for "created_date" of records is 180 days old i.e (sysdate - created_date > 180).
    2. The results matching the criteria should then be sent to the Archive database or created as Files

  • Play and pause button and control bar are missing below xfinity player

    when I want to watch a video noticed play and pause button and control bar are missing below xfinity player.

    For the two soundchannel sounds you have, you will need to keep track if and which one is playing so that you can use some logic to stop the sound right after you mark where the sound was (position)  so that you can resume playing it again when the play button is selected.
    So if the stroke sound is started, you could assign a boolean variable named something like 'strokeplaying' to be true (setting the other sounds similar boolean false).  Then, in your pause function you would test to see if strokeplaying is true and if it is, store the position property and stop the channel playing. 
    When play is selected, similarly, you test if that sound is true and if so you restart it using the position value you stored as the starting point.  You do the same for the other sound... remembering that it is possible neither is playing when pause it clicked.

  • Oracle Adapter for SAP that supports Integration with SAP 6.0??

    Hi,
    I am working currently with Oracle Adapter for SAP with SAP 4.6.
    But my company is looking for upgrading the Enterprise SAP system to 6.0.
    Do we have Oracle Adapter for SAP that supports SAP 6.0? Please let me know if anyone has already worked on this?
    Thanks,
    Sasi Bhushan

    Sasi,
    There is a new MySAP adapter with 10.13.1 and above to support ECC 6.0. Please see the following section in the 10.1.3.1 adapter release notes:
    12.4.1 MySAP ERP Versions and APIs
    The following MySAP ERP platforms are supported by OracleAS Adapter for MySAP
    ERP:
    ■ SAP R/3 Enterprise 47x100
    ■ SAP R/3 Enterprise 47x200
    ■ MySAP ERP Central Component (ECC) 5.0, deployed on SAP NetWeaver 2004
    ■ MySAP ERP Central Component (ECC) 6.0, deployed on SAP NetWeaver 2004s
    ■ SAP Java Connector (SAP JCo) Version 2.18.
    For the current release status of the SAP Java Connector, refer to SAP Note #549268
    in the SAP Service Marketplace.
    Release versions may vary by product component. In addition, SAP functions may
    vary by SAP product version and support package.
    Note: The OracleAS Adapter for MySAP ERP supports only the versions listed above.
    It is not recommended to use the OracleAS Adapter for MySAP ERP with older
    versions of SAP R/3. If you plan to use the adapter with older versions of SAP R/3 for
    example SAP R/3 4.6C, prior approval from iWay Software Product Management is
    required.

  • Oracle Solutions for development of enterprise application

    Can anyone tell me what my options are in the Oracle world for developing an enterprise application, and what would be needed for deployment?

    It appears to me that for a Forms application you HAVE to purchase the Enterprise Edition of the Application server because it is the only edition that has the Forms (and Reports) services, which is needed for a Forms application. This is priced at 30,000 per processor.
    Whereas, all you need for a J2EE application is the Java Edition of Oracle's Application Server which is 5,000 per processor.
    Is my assessment correct?

  • Oracle Provider for OLE  DB is missing

    Hello everyone,
    I am a newbie and I am trying to install the SAP IDM 7.2 on windows server 2008 x64 and Oracle 11.2.0.4. The JVM and the oracle client are 64bit. All components are installed on the same server.
    In the first step "adding an identity store", the oracle provider for OLE is missing from the list. I have been through many discussions regarding the 32/64-bit oracle client issue with the Identity store. Is there any hope to solve this issue without installing a 32-bit oracle client version?
    Thank you
    Basel

    Hi Basel,
    Did you add the file to the OS Classpath or the IDM Classpath?
    Also you might need to install the client separately.  I think that's what I did.  It's been a while since I worked on an Oracle instance.
    Regards,
    Matt

  • What are required Oracle products for moving data from IBM IMS/DB(mainframe) to Oracle environment?

    I am z/OS system programmer, our company is using IMS as its main OLTP database. We are investigating moving data off the mainframe for data warehousing and online fraud detection. One option is using IBM InfoSphere CDC and DB2, another option is using IMS connect and writing our own program, I am wondering what is the oracle solution for this kind of issue?
    I am not oracle technician but I googled and find out Oracle has some product like Oracle Legacy Adapters, OracleAS CDC Adapter and Oracle Connect on z/OS, however I didn't find them in Oracle site(https://edelivery.oracle.com/), I don't know whether these products are deprecated or not?!
    I would very much appreciate any help or guidance you are able to give me

    Thank you for responding.
    I've considered dumping the data into a flat file and using SQL*Loader to import as you suggest but this would require some scripting on a per-table basis. Again: all I want to do is to copy the contents of a table from one database to another. I do not think I should have to resort to creating my own dump and load scripts in order to do that. However I agree with you that this type of solution may be my final solution.
    I've tried the db link solution. It was just a slow as the 'imp' solution for some reason. Don't know why. The tables are rather large (3 tables of a few Gb each) and therefore require intermediate commits when loaded. Otherwise the rollback segment will run out of space. So the 'db link solution' is really a PL/SQL script with a commit for each x records.
    I think Oracle is making it a bit difficult for me to copy the contents of a table from one database to another and to do it efficiently. Perhaps I'm missing something here?

  • Pre-built Oracle Solaris 11 VM - Invalid md4 checksum for part04

    Hi,
    Following the instructions and links available at:
    Pre-built Oracle Solaris 11 Express Developer Virtual Machine with Oracle Solaris Studio and GNU development tools
    http://www.oracle.com/technetwork/articles/servers-storage-dev/vms11expstudio-howto-401051.html
    I downloaded all 4 parts for this VM and the md5 checksums for the first three are fine, however part04 is invalid. I downloaded the part04 file twice with the same results. Judging from the small filesize (only 70MB) it appears to be truncated.
    Can someone investigate this part04 file and verify?

    I have encountered the same problem.
    My workaround was to download the full larger file using a download manager.
    I used DownThemAll for Firefox.

  • Tool generated files missing after upgrade to Oracle Workshop for Weblogic

    Hi,
    I'm trying to migrate a beehive/netui web-application from Bea Workspace Studio 1.1 to Oracle Workshop for WebLogic 10R3. The application builds successfully, but when I access the application, I get a "Missing Struts Module Configuration" error.
    I checked the build folder, and discovered that several tool-generated files where missing. Entire _pageflow folder is missing and all of the controls related files are missing.
    Anyone have an idea of what is going on here?
    Rune

    Rune,
    Could you provide details on the migration process you followed ?
    Also are you trying to develop and deploy against WLS 10.3 ?
    -Raj

Maybe you are looking for