Developdays VM: say what's in it!

The Developdays VM is fantastic and I want everyone to know how grateful I am.
However, there is one thing that drives me crazy: there is no indication on the download page of the date of the latest update, nor of the specific contents.
There was an announcement of a "new" VM, so I downloaded it. Looking inside, I don't see 11.2.0.3, nor SQL Developer 3.2. Everything that interests me is the same as before.
Downloading was a waste of my time and Oracle's computer resources.
Please, please just give a "last updated" date and say exactly what version of everything is included, or exactly what has changed since the previous version.

Stew, do you happen to know the username/password for a valid account on the oracle server on that VM? (I asked in this forum but haven't gotten any responses) Thanks!

Similar Messages

  • Can any one say What are the mandatory parameters in BAPI_GOODSMVT_CREATE

    Hi,
    Can any one say What are the mandatory parameters in
    BAPI_GOODSMVT_CREATE.
    Helpful answer will be rewarded.

    Hi,
    The following is an abap program making used of the BAPI function BAPI_GOODSMVT_CREATE to do Goods Receipts for Purchase Order after importing the data from an external system.
    BAPI TO Upload Inventory Data
    GMCODE Table T158G - 01 - MB01 - Goods Receipts for Purchase Order
                         02 - MB31 - Goods Receipts for Prod Order
                         03 - MB1A - Goods Issue
                         04 - MB1B - Transfer Posting
                         05 - MB1C - Enter Other Goods Receipt
                         06 - MB11
    Domain: KZBEW - Movement Indicator
         Goods movement w/o reference
    B - Goods movement for purchase order
    F - Goods movement for production order
    L - Goods movement for delivery note
    K - Goods movement for kanban requirement (WM - internal only)
    O - Subsequent adjustment of "material-provided" consumption
    W - Subsequent adjustment of proportion/product unit material
    report zbapi_goodsmovement.
    parameters: p-file like rlgrap-filename default
                                     'c:\sapdata\TEST.txt'.
    parameters: e-file like rlgrap-filename default
                                     'c:\sapdata\gdsmvterror.txt'.
    parameters: xpost like sy-datum default sy-datum.
    data: begin of gmhead.
            include structure bapi2017_gm_head_01.
    data: end of gmhead.
    data: begin of gmcode.
            include structure bapi2017_gm_code.
    data: end of gmcode.
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    data: begin of itab occurs 100.
            include structure bapi2017_gm_item_create.
    data: end of itab.
    data: begin of errmsg occurs 10.
            include structure bapiret2.
    data: end of errmsg.
    data: wmenge like iseg-menge,
          errflag.
    data: begin of pcitab occurs 100,
            ext_doc(10),           "External Document Number
            mvt_type(3),           "Movement Type
            doc_date(8),           "Document Date
            post_date(8),          "Posting Date
            plant(4),              "Plant
            material(18),          "Material Number
            qty(13),               "Quantity
            recv_loc(4),           "Receiving Location
            issue_loc(4),          "Issuing Location
            pur_doc(10),           "Purchase Document No
            po_item(3),            "Purchase Document Item No
            del_no(10),            "Delivery Purchase Order Number
            del_item(3),           "Delivery Item
            prod_doc(10),          "Production Document No
            scrap_reason(10),      "Scrap Reason
            upd_sta(1),            "Update Status
          end of pcitab.
    call function 'WS_UPLOAD'
      exporting
        filename                      = p-file
        filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
      tables
        data_tab                      = pcitab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      OTHERS                        = 6
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      exit.
    endif.
    gmhead-pstng_date = sy-datum.
    gmhead-doc_date = sy-datum.
    gmhead-pr_uname = sy-uname.
    gmcode-gm_code = '01'.   "01 - MB01 - Goods Receipts for Purchase Order
    loop at pcitab.
      itab-move_type  = pcitab-mvt_type.
      itab-mvt_ind    = 'B'.
      itab-plant      = pcitab-plant.
      itab-material   = pcitab-material.
      itab-entry_qnt  = pcitab-qty.
      itab-move_stloc = pcitab-recv_loc.
      itab-stge_loc   = pcitab-issue_loc.
      itab-po_number  = pcitab-pur_doc.
      itab-po_item    = pcitab-po_item.
      concatenate pcitab-del_no pcitab-del_item into itab-item_text.
      itab-move_reas  = pcitab-scrap_reason.
      append itab.
    endloop.
    loop at itab.
      write:/ itab-material, itab-plant, itab-stge_loc,
              itab-move_type, itab-entry_qnt, itab-entry_uom,
              itab-entry_uom_iso, itab-po_number, itab-po_item,
                                                  pcitab-ext_doc.
    endloop.
    call function 'BAPI_GOODSMVT_CREATE'
      exporting
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
      TESTRUN                     = ' '
    IMPORTING
        goodsmvt_headret            = mthead
      MATERIALDOCUMENT            =
      MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = itab
      GOODSMVT_SERIALNUMBER       =
        return                      = errmsg
    clear errflag.
    loop at errmsg.
      if errmsg-type eq 'E'.
        write:/'Error in function', errmsg-message.
        errflag = 'X'.
      else.
        write:/ errmsg-message.
      endif.
    endloop.
    if errflag is initial.
      commit work and wait.
      if sy-subrc ne 0.
        write:/ 'Error in updating'.
        exit.
      else.
        write:/ mthead-mat_doc, mthead-doc_year.
        perform upd_sta.
      endif.
    endif.
          FORM UPD_STA                                                  *
    form upd_sta.
      loop at pcitab.
        pcitab-upd_sta = 'X'.
        modify pcitab.
      endloop.
      call function 'WS_DOWNLOAD'
        exporting
          filename                      = p-file
          filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
        tables
          data_tab                      = pcitab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      OTHERS                        = 6
    endform.
    *--- End of Program
    Reward for useful answers.
    Regards,
    Raj.

  • HT201269 When restoring my backup from my old iphone via my computer to my new iphone, it gets all the way through the restore and then at the end it says there was an error and doesn't restore. Doesn't say what error.

    When restoring my backup from my old iphone via my computer to my new iphone, it gets all the way through the restore and then at the end it says there was an error and doesn't restore. Doesn't say what error.

    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    Also... See Here  >  Configure security software

  • How come my powerpoint app only comes to a page that says whats new with powerpoint?

    When I click on my power point app to open it the only thing that comes up is a screen that says "whats new with power point" i do not have any options to open a new template or create a new one. My Word app works just fine, but power point is giving lots of grief.

    You might want to contact MS for support. It sounds like your office install is not working correctly.

  • Creating flat file saying what a BPM did

    Hi all
    Can someone give me some light in how to create a fltat file that says what did a BPM did correct.
    All the system and application exceptions are handled  but I need that if something wrong happens it should  write this on a file.
    Thanks in advanced
    Regards
    Emmanuel

    Hi Emmanuel,
    If you have an exception then in the exception block you can use one more send step and can send a file. Now here if you want you can use the transformation step and write a user defined error which would write an error file. You can use the same mapping with different error based upon your exceptions.
    Regards,
    ---Satish

  • I had to reinstall windows xp on my PC and everytime I try to download itunes a message pops up saying "there is a problem with this windows installer package. A program required for this install to complete could not be run. it does not say what program

    I had to reinstalled windows xp on my PC and everytime I try to download itunes a message pops up saying "there is a problem with this windows installer package. A program required for this install to complete could not be run". But it does not say what program is required. I've had to reinstalled windows xp before and never had a problem.

    Go START/ALL PROGRAMS/APPLE SOFTWARE UPDATE"
    If it offers you a newer version of Apple Software Update, do it but "Deselect" any other software offered at the same time.
    Once done, try another iTunes install

  • When I try to open a bookmark I get a box that says "what should firefox do with this file?" When I try to change the "open with Internet Explorer" I can't find firefox ? Last week this bookmark worked fine.

    When I open a bookmark a box pops up that says "What should firefox do with this file? "open with Internet Explorer? When I browse I can't find firefox to change to. Last week this book mark worked perfectly.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • I am trying to set up iCloud to sync my Outlook Calendar however it keeps failing due to 'an unexpected error' but it doesn't say what the error is! Any suggestions would be gratefully received.

    I am trying to set up iCloud to sync my Outlook Calendar however it keeps failing due to 'an unexpected error' but it doesn't say what the error is! Any suggestions would be gratefully received.

    Create a iTune and App Store account without credit card
    1. Go to App Store and select a free app
    2. Tap INSTALL APP
    3. Create New Apple ID
    4. Confirm Your Country
    5. Agree with Terms and Conditions
    6. Fill in your Apple ID and Password (must be a valid email address)
    7. Create and answer your secret question e.g. What is the name of my dog?
    8. Select NONE for Payment Method
    9. Fill in Billing Address i.e. your address
    10. Submit application for new Apple ID
    11. Wait for verification email
    12. When email arrive, verify your account
    13. Start downloading your free apps

  • When I try to open iPhoto, a message comes up saying "What photo Library do you want iPhoto to use?"  I cannot find my photos anywhere now!!! HELP!!!

    When I try to open iPhoto, a message comes up saying "What photo Library do you want iPhoto to use?"  I cannot find my photos anywhere now!!! HELP!!!

    Hi Thomas,
    I actually just found my photo library in the trash?????  I have no idea how they got there, but I have moved them back to the Picture folder and all is well again. 
    Thanks for replying to my post.
    Cheers,
    Kathryn.

  • When is 10.15, 9.15? - What I want is for me to be in charge of saying what time my appointment is

    when in France I set loads of appointments in my calendar, eg 10.15 passport office. Back in Uk when I set the Timezone back to UK time the appointment now shows as 9.15. Turning time zone support on or off in calendar setting doenst fix, the appointment is set to 9.15 in month view and 10.15 when you click on it and 9.15 in week view.
    What I want is  for me to be in charge of saying what time my appointment is at, not what Apple thinks will be helpful.
    If it were only 1 appointment then no bother however i also put in loads of train and flight times over the next few months which i presume the calendar has mangled.
    Thanks Apple for this completely uselss and unhelpful 'feature' you have turned in my estimation from a space nerd shiny future box to a mad science bumbling iglor assistant.
    I wonder will someone from apple fix all my dates.????

    In iCal Preferences turn on Time Zone support.

  • Hi when I open iPhoto it's says "What photo library do you want to use" Have I lost all my photos? I don't know what to do here can anyone help please?

    Hi when I open iPhoto it's says "What photo library do you want to use" Have I lost all my photos? I don't know what to do here can anyone help please?

    Is there an item named "iPhoto Library.photo library" or similar in your "Pictures" folder, showing with an icon like a fan of pictures?
    Or did you store your iPhoto Library in a different folder, perhaps on an external drive?
    if you cannot find your iPhoto Library search for it with Find Any File, as described  by Old Toad in this post:
    Re: My iphoto library has disappeared. How do I find it?
    Old ToadFeb 4, 2014 9:05 PM
    Re: My iphoto library has disappeared. How do I find it?in response to onpurpose
    Download and use Find Any File to search for a file named "iPhoto6.Library".  It's a file unique to all iPhoto libraries.
    FAF an search areas that Spotlight can't like invisible folders, packages and system files.  If there's another iPhoto library hiding somewhere on your hard drive FAF will find it.
    OT

  • HT1551 The light on the front of the base is flashing rapidly but I cannot get the system to come on. Book says it is having problems but it does not say what type of problems or how to fix it. Any suggestions?

    The light on the front of my apple tv is flashing rapidly and it  won't send a signal to the TV.  The book says it is having trouble but does not say what it is or how to fix it.  My daughter was watching it last night and I think she turned the tv off without putting it to sleep.  Any suggestions?

    Sorry the news here is not good.  If the light just stays flashing then it is not able to succesfully startup the most basic part of the software.  The only option at this point is to find a USB cable that will let you plug ATV into a computer with iTunes and do a full restore of the system firmware.

  • Can you make Siri say your name each time she says "What can I help you with?"

    Can you make Siri say your name each time she says "What can I help you with?" I have done the "call me (my name) and linked her to my contacts but she rarely uses my name unless I ask "who am I?"  Can she say "What can I help you with (my name)"

    So is the only reason for her to know your name to have her know you contacts info?
    Does she ever greet you with your name?

  • My i pad. been shutting down for 4hours now can any say whats wrong with it

    my i pad. been shutting down for 4hours now can any say whats wrong with it

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • HT3231 why do all these pages not tell you where migration assistant is on a mac pro. they all say what to do when you have it however this is of no use if you are unable to find.

    why do all these pages not tell you where migration assistant is on a mac pro.  They all say what to do when it is on however this is of no use if you are unable to find it in the first place.

    In the Utilities folder, which is in Applications. You could also use Spotlight to search for it.
    Matt

Maybe you are looking for

  • Filter in group above report

    Hello Friends, I have made a report in Reports3.0 version. The report uses 2 groups which I will refer as "Top" and "Bottom".I filter the data from "bottom" group using the group filter function. It so happens that when the all "Bottom" group is filt

  • Prvent from the user  deleting specific line in view table

    HI, In our Project we have a View Table which user can maintain , the user can change or delete the line (and fields)  in this table. what i want is for one line for specific combination in the table to prevent from the user to delete this line , so

  • WRT610Nv2 nat moderate on xbox one... HELP

    Cant find any help on setting up my xbox one with my WRT610Nv2 xbox one. most posts ive found are dealing with the xbox 360. the nat is set to moderate whilst the i need an open nat to communicate with my cohorts. tried port forwarding but couldnt fi

  • Pulling/Extracting Data from Multiple SAP Systems - Scripting, ABAP?

    Hello All, I am working as an analyst for a large company that has multiple SAP installations across the world.  What I am trying to do is create some global reporting metrics based on data from all of those systems on an ad-hoc basis without having

  • [SOLVED] nitrogen fails to set the background with openbox

    Hi guys ! I have a strange issue . Yesterady everything was working fine . nitrogen would set my wallpaper at each boot . This morning for some reason nitrogen sets the background for about one second and then it goes back to the default openbox back