Employees with Recently Separated Vet Status and Discharge Date beyond 3 ye

Hi folks!
A customer has a need to find employees that are categorized as Recently Separated Vet, but have a discharge date that has passed beyond 3 years. Does somebody know any solution to it? Maybe using an Ad Hoc query can solve it. Have anyone another idea?
Thanks for your contributions!
Regards,
Felipe

Hello JimCass,
From the information, we have one corrupted transaction logs which make the soft recovery(eseutil /r) failed, thus we try to hard repair the database EDB file, however it also report error message as the below:
=============================================
Command we use:
eseutil /p
/t c:\tempdb /g "G:\Restore\program files\microsoft\exchange server\v14\mailbox\ahp mailbox database\ahp mailbox database.edb"
Error message:
Operation terminated with error -1032 (JET_errFileAccessDenied, Cannot access file, the file is locked or in use) after 30.62 seconds.
=============================================
From the command we use, I noticed that we want to set the temp database location, right? If so, the command is incorrect. Please use this command instead:
eseutil /p
/t “c:\tempdb\tempdb.edb” /g "G:\Restore\program files\microsoft\exchange server\v14\mailbox\ahp mailbox database\ahp mailbox database.edb"
How to Run Eseutil /P (Repair) in Different Scenarios
http://technet.microsoft.com/en-us/library/aa997215(v=exchg.65).aspx
Note: When we specify the temp database location, it should contains
the full location of the temp EDB file. And the folder “c:\tempdb” should exist otherwise error message like “invalid path” will occur.
In light of above, please refer to above command to repair the database EDB file. But please aware of that database repair could cause data loss since we have transaction logs can’t be replayed to the EDB file.
Meanwhile, to merge the differential backup data to the mailboxes, we can first restore the full backup data(250GB), then we can got the mailbox data on 8/1, take the mailbox to production.
After that, for the differential backup data, also use the same method to get the EDB file to clean shutdown, use your method to restore the data to PST, then import the PST data to the mailbox which have been production. Or we also can use Recovery Database
to restore the data to a production mailbox.
Regards, Eric Zou

Similar Messages

  • Activity search by Completed status and End Date

    Hi All,
    When i try searching for an activity based on the date on which the status was set to Completed, the system does not show any results. 'Criteria used are Activity Type, Status = Completed, End Date.'
    If i choose an End date = Date on which the status on the Activity was set to Completed, the system does not show correct results. The system only shows those activities where the Activity Status was Open and Completed on the same day. For activities where Open and Completed Status was set on different dates, there are no search results.
    However, with the same criteria set, if i change the End Date = Date when Activity Status was Open, i get the results.
    Is it not possible to search for activities based on Status and End date combination?
    Pls. suggest

    Hi Kansal,
    There is a possibility that the status profile you maintained for the activities has some issues.Please check the Business transaction (which maps system status) that you have mapped with your completed and open staus.It might be that the user staus is set to be open but in the status profile it is accidently mapped to the completed or finished.
    Hope this helps.
    Regards
    Priyanka

  • I recently upgraded to iso5 and lost data associated to an app, how do i get the info back

    I recently upgraded to iso5 and lost data associated to an app which I have been entering for over a year.  I have the app but no data, how do i get it back.

    did you made an icloud backup before updating? you can recover if this is done.

  • To QM people - status and cancelling date of cancelled inspection lots

    In what table/fields do I know that an inspection lot is cancelled and the cancelling date?
    Transaction QA33 shows an LTCA system status.
    JEST table shows only the status (I believe that it registers all the status the lot passed by), but not the cancelling date.
    Thanks
    César Menezes

    Thanks Alfred
    I posted the below message on these two threads.
    Anyway,  I'll appreciate if you can help.
    César
    I need to know not only that the inspection lot is cancelled (I get this on JEST table), but also when it was cancelled. For ex. on monday night I loaded from QM to BW an inspection lot that was registered during the day. This lot was cancelled for ex. on thursday. At the night load I have to identify it and load the lot to BW, to maintain is as cancelled also in BW.
    What I discovered until now:
    - The OBJNR on QALS is the constant "QL" plus the lot number (prueflos).
    - On JEST table I have all my lots (from QALS), with the correct status. The cancelled lots have STAT = I0224. But the table doesn't have the cancelling date.
    - JCDS table seems to be a good chance, it has status and date fields. But my lots (from QALS) are not there. And, curious, I didn't find any I0224 status.
    Everything on the project is OK, this is the only unsolved question, so I'll appreciate any quick answer.
    César

  • HT1766 i recently lost my iphone and had data erased,then i found it. how do i get my data back?

    i recently lost my iphone4 and erased all my data, then i found it... how do i get my data back

    Your data should be on your computer.

  • Here's how to do ALV (OO) with dynamic fcat, int table and editable data

    Hi everybody
    Here's a more useful approach to ALV grid with OO using dynamic table, data NOT from DDIC, dynamic FCAT and how to get changed lines from the grid when ENTER key is pressed.
    It's really not too dificult but I think this is more useful than the ever present SFLIGHT methods from the demos.
    This also defines a subclass of cl_gui_alv_grid so you can access the protected attributes / methods of that class.
    You don't need to add the class via SE24 -- done fron this ABAP.
    When you run it click Edit for the first time.
    After editing data press ENTER and the break point should bring you into the relevant method.
    Code developed on NW2004S trial version but also works on rel 6.40 on a "Real" system.
    The code should work without any changes on any system >=6.40.
    All you need to do is to create a blank screen 100 via SE51  with a custom container on it called CCONTAINER1.
    The rest of the code can just be uploaded into your system using the SE38 upload facility.
    When running the program click on the EDIT button to enable the edit functionality of the grid.
    Change your data and when you press ENTER you should get the break-point where you can see the original table and changed rows.
    This program is actually quite general as it covers Dynamic tables, building a dynamic fcat where your table fields are NOT in the DDIC, intercepting the ENTER key via using an event, and accessing the protected attributes of the cl_gui_alv_grid by defining a subclass of this class in the abap.
    I've seen various questions relating to all these functions but none in my view ever answers the questions in a simple manner. I hope this simple program will answer all these and show how using OO ALV is actually quite easy and people shouldn't be scared of using OO.
    Have fun and award points if useful.
    Cheers
    Jimbo.
    <b>PROGRAM zdynfieldcat.
    Simple test of dynamic ITAB with user defined (not ddic) fields
    Build dynamic fcat
    use ALV grid to display and edit.
    *When edit mode set to 1 toolbar gives possibility of adding and
    *deleting rows.
    *Define subclass of cl_gui_alv_grid so we can use protected attributes
    *and methods.
    Add event handler to intercept user entering data and pressing the
    *ENTER key.
    When enter key is pressed get actual value of NEW table (all rows)
    rather than just the changed data.
    *use new RTTI functionality to retrieve internal table structure
    *details.
    Create a blank screen 100  with a custom container called CCONTAINER1.
    James Hawthorne
    include <icon>.
    define  any old internal structure  NOT in DDIC
    types: begin of s_elements,
           anyfield1(20) type c,
           anyfield2(20) type c,
           anyfield3(20) type c,
           anyfield4(20) type c,
           anyfield5(11) type n,
           end of s_elements.
    types:  lt_rows  type lvc_t_roid.
    Note new RTTI functionality allows field detail retrieval
    at runtime for dynamic tables.
    data:   wa_element type s_elements ,
            wa_data type s_elements,
            c_index type sy-index,
            c_dec2 type s_elements-anyfield5,
            wa_it_fldcat type lvc_s_fcat,
            it_fldcat type lvc_t_fcat,
            lr_rtti_struc TYPE REF TO cl_abap_structdescr,    "RTTI
            lt_comp TYPE cl_abap_structdescr=>component_table,"RTTI
            ls_comp LIKE LINE OF lt_comp,                     "RTTI
            zog  like line of lr_rtti_struc->components,      "RTTI
            struct_grid_lset type lvc_s_layo,
            l_valid  type c,
            new_table type ref to data.
    field-symbols: <dyn_table> type standard table,
                   <actual_tab> type standard table,
                   <fs1> type ANY,
                   <FS2> TYPE TABLE.
    data: grid_container1 type ref to cl_gui_custom_container.
    class lcl_grid_event_receiver definition deferred.
    data: g_event_receiver type ref to lcl_grid_event_receiver.
    data: ls_modcell type LVC_S_MODI,
          stab type ref to data,
          sdog type  s_elements.      .
    class lcl_grid_event_receiver definition.
      public section.
        methods:
        handle_data_changed
             for event data_changed of cl_gui_alv_grid
                 importing er_data_changed,
           toolbar for event toolbar of cl_gui_alv_grid
                     importing e_object
                               e_interactive,
          user_command for event user_command of cl_gui_alv_grid
                     importing e_ucomm.
    endclass.
    *implementation of Grid event-handler class
    class lcl_grid_event_receiver implementation.
    method handle_data_changed.
    code whatever required after data entry.
    various possibilites here as you can get back Cell(s) changed
    columns or the entire updated table.
    Data validation is also possible here.
    perform check_data using er_data_changed.
    endmethod.
    Method for handling all creation/modification calls to the toolbar
      method toolbar.
        data : ls_toolbar type stb_button.
    Define Custom Button in the toolbar
        clear ls_toolbar.
        move 0 to ls_toolbar-butn_type.
        move 'EDIT' to ls_toolbar-function.
        move space to ls_toolbar-disabled.
        move 'Edit' to ls_toolbar-text.
        move icon_change_text to ls_toolbar-icon.
        move 'Click2Edit' to ls_toolbar-quickinfo.
        append ls_toolbar to e_object->mt_toolbar.
        clear ls_toolbar.
        move 0 to ls_toolbar-butn_type.
        move 'UPDA' to ls_toolbar-function.
        move space to ls_toolbar-disabled.
        move 'Update' to ls_toolbar-text.
        move icon_system_save to ls_toolbar-icon.
        move 'Click2Update' to ls_toolbar-quickinfo.
        append ls_toolbar to e_object->mt_toolbar.
        clear ls_toolbar.
        move 0 to ls_toolbar-butn_type.
        move 'EXIT' to ls_toolbar-function.
        move space to ls_toolbar-disabled.
        move 'Exit' to ls_toolbar-text.
        move icon_system_end to ls_toolbar-icon.
        move 'Click2Exit' to ls_toolbar-quickinfo.
        append ls_toolbar to e_object->mt_toolbar.
      endmethod.
      method user_command.
        case e_ucomm .
          when 'EDIT'.          "From Tool bar
            perform set_input.
             perform init_grid.
          when 'UPDA'.          "From Tool bar
            perform refresh_disp.
            perform update_table.
          when 'EXIT'.          "From Tool bar
            leave program.
        endcase.
      endmethod.
    endclass.
    class zcltest definition inheriting from  cl_gui_alv_grid.
    define this as a subclass so we can access the protected attributes
    of the superclass cl_gui_alv_grid
    public section.
    methods: constructor, disp_tab.
    endclass.
    need this now to instantiate object
    as we are using subclass rather than the main cl_gui_alv_grid.
    class zcltest implementation.
    METHOD constructor.
    CALL METHOD super->constructor
            exporting i_appl_events = 'X'
               i_parent = grid_container1.
    endmethod.
    method disp_tab.
    FIELD-SYMBOLS: <outtab> TYPE STANDARD TABLE.
    break-point 1.
    mt_outtab is the data table held as a protected attribute
    in class cl_gui_alv_grid.
    ASSIGN me->mt_outtab->* TO <outtab>.  "Original data
    do whatever you want with <outtab>
    contains data BEFORE changes each time.
    Note that NEW (Changed) table has been obtained already by
    call to form check_data USING P_ER_DATA_CHANGED
             TYPE REF TO CL_ALV_CHANGED_DATA_PROTOCOL.
    Entered data is in table defined by <fs2>
    In this method you can compare original and changed data.
    Easier than messing around with individual cells.
    do what you want with data in <fs2>  validate / update / merge etc
    endmethod.
    endclass.
    data :
        ok_code like sy-ucomm,
        save_ok like sy-ucomm,
        i4 type int4,
    Container Object [grid_container]
    now created via method constructor
    in the subclass zcltest.
    Control Object [grid]
    grid1 type ref to zcltest,
    Event-Handler Object [grid_handler]
    grid_handler type ref to lcl_grid_event_receiver.
    start-of-selection.
    call screen 100.
    module status_0100 output.
    now display it as grid
    if grid_container1 is initial.
        create object grid_container1
            exporting
              container_name = 'CCONTAINER1'.
        create object grid1.
         break-point 1.
        create object grid_handler.
        set handler:
           grid_handler->user_command for grid1,
           grid_handler->toolbar for grid1,
           grid_handler->handle_data_changed for grid1.
    perform create_dynamic_fcat.
    perform create_dynamic_itab.
    perform populate_dynamic_itab.
    perform init_grid.
    perform register_enter_event.
    set off ready for input initially
    i4 = 0.
      call method grid1->set_ready_for_input
             exporting
               i_ready_for_input = i4.
    endif.
    endmodule.
    module user_command_0100 input.
    *PAI not needed in OO ALV anymore as User Commands are handled as events
    *in method user_command.
    *we can also get control if the Data entered and the ENTER is pressed by
    *raising an event.
    Control then returns to method handle_data_changed.
    endmodule.
    form create_dynamic_fcat.
    get structure of our user table for building field catalog
    Use the RTTI functionality
    lr_rtti_struc ?= cl_abap_structdescr=>describe_by_data( wa_data ).
    Build field catalog just use basic data here
    colour specific columns as well
    loop at lr_rtti_struc->components into zog.
    c_index = c_index + 1.
    clear wa_it_fldcat.
      wa_it_fldcat-fieldname = zog-name .
      wa_it_fldcat-datatype =  zog-type_kind.
      wa_it_fldcat-inttype =   zog-type_kind.
      wa_it_fldcat-intlen =    zog-length.
      wa_it_fldcat-decimals =  zog-decimals.
      wa_it_fldcat-lowercase = 'X'.
      if c_index eq 2.
      wa_it_fldcat-emphasize = 'C411'.
         endif.
        if c_index eq 3.
      wa_it_fldcat-emphasize = 'C511'.
       endif.
      append wa_it_fldcat to it_fldcat .
    endloop.
    endform.
    form create_dynamic_itab.
    Create dynamic internal table and assign to field sysmbol.
    Use dynamic field catalog just built.
    call method cl_alv_table_create=>create_dynamic_table
                 exporting
                    it_fieldcatalog = it_fldcat
                 importing
                    ep_table        = new_table.
    assign new_table->* to <dyn_table>.
    endform.
    form populate_dynamic_itab.
    load up a line of the dynamic table
    c_dec2 = c_dec2 + 11.
    wa_element-anyfield1 = 'Tabbies'.
    wa_element-anyfield2 = 'ger.shepards'.
    wa_element-anyfield3  = 'White mice'.
    wa_element-anyfield4 =  'Any old text'.
    wa_element-anyfield5 =  c_dec2.
    append  wa_element to <dyn_table>.
    endform.
    form check_data USING P_ER_DATA_CHANGED
               TYPE REF TO CL_ALV_CHANGED_DATA_PROTOCOL.
    Get altered data back
      ASSIGN   p_er_data_changed->mp_mod_rows TO <FS1>.
    stab =       p_er_data_changed->mp_mod_rows.
    ASSIGN STAB->* TO <FS2>.
    LOOP AT <FS2> INTO sdog.
    ALV grid display with altered data is now in <fs2>.
    do any extra processing you want here
    endloop.
    now display new table
    call method grid1->disp_tab.
    endform.
    form exit_program.
      call method grid_container1->free.
      call method cl_gui_cfw=>flush.
      leave program.
    endform.
    form refresh_disp.
      call method grid1->refresh_table_display.
    endform.
    form update_table.
    The dynamic table here is the changed table read from the grid
    after user has changed it
    Data can be saved to DB or whatever.
    loop at <dyn_table> into wa_element.
    do what you want with the data here
    endloop.
    switch off edit mode again for next function
    i4 = 0.
      call method grid1->set_ready_for_input
          exporting
              i_ready_for_input = i4.
    endform.
    form set_input.
    i4 = 1.
      call method grid1->set_ready_for_input
         exporting
           i_ready_for_input = i4.
    endform.
    form switch_input.
    if i4 = 1.
    i4 = 0.
    else.
    i4 = 1.
    endif.
      call method grid1->set_ready_for_input
         exporting
           i_ready_for_input = i4.
    endform.
    form init_grid.
    Enabling the grid to edit mode,
         struct_grid_lset-edit = 'X'. "To enable editing in ALV
         struct_grid_lset-grid_title  = 'Jimbos Test'.
         call method grid1->set_table_for_first_display
           exporting
             is_layout           = struct_grid_lset
           changing
             it_outtab             =  <dyn_table>
             it_fieldcatalog       =  it_fldcat.
    endform.
    form register_enter_event.
    call method grid1->register_edit_event
                   exporting
                      i_event_id = cl_gui_alv_grid=>mc_evt_enter.
    Instantiate the event or it won't work.
    create object g_event_receiver.
    set handler g_event_receiver->handle_data_changed for grid1.
    endform.</b>

    Hi there
    IE7 doesn't give me the add new page option and I get 404 error when trying to access the "How to contribute" section.
    I'll load up Firefox later (this browser usually works when IE7 doesn't always work properly).
    I'll copy the stuff to the wiki when I've got the browser sorted out.
    Cheers
    jimbp

  • How to correct employee hire,Effective dt from People and Asg date as well

    Dear
    I have some problem while termination of employee,at the time of migration some of cases date was not corrected,so my client has rectified of tht cases & now i need to correct hired date,effective date from per_all_peopel_f & as well as to change assignemnt effective date,
    can you please guide me ,is it possiable and which api need to use.
    Thanks

    if your purpose is to change the start date (hire date) of an employee, the API you are looking for is 'HR_CHANGE_START_DATE_API' .
    Just go through the procedures in this API and you can easily figure out how to call it to change the hire date of an existing employee.
    Please note that changing the hire date in per_all_people_f change all child dates (ie assignment start dates etc).
    Let us know how did it work out.

  • No connection with Firewire but will connect and discharge with USB2.0

    My 3rd generation 40gb iPod no longer appears on my desktop or iTunes window when connected via firewire. While connected, to 3 different Macs so far, it behaves as if its plugged into the AC adaper- the charging icon appears after a few minutes but will not mount.
    However, when connecting with USB 2.0 the iPod mounts fine but it receives NO power, the battery discharges within 5 minutes and shuts off.
    I've known about the USB 2.0 problem but never worried about it until, suddenly ( and apparently others are having this problem ) I am no longer able to mount the iPod via firewire.
    I've tried resetting in all its various forms including toggeling the hold button and plugging into the AC adapter and I have thoroughly read the trouble shooting pages.
    Has Apple "orphaned" firewire? Is the 3rd generation iPod doomed to 5 minute or less connection times? Is this just a glitch that an update will fix?
    Thanks in advance for any advice!
    Mirror Doors G4   Mac OS X (10.4.1)  

    Its not the cable. I have cables and other Macs all over. I've tried the other Macs and different cables plus different cables and diferent dock connectors.
    Sorry, I should have mentioned that I already eliminated that possibility.
    The firewire problem just started Sep 1, 2006. I'm wondering if the last iPod update that occured the last time I was mounted via firewire initiated the problem. This seems more likely than it might have becuase of other posts complaining of firewire connection problems.
    Thanks for responding though!

  • Two problems with recent kernels - KMS resolution and fan speed

    Two issues have arisen since kernel26-2.6.32-6.  One is that that the boot process and all consoles only use approx. two-thirds of the screen, with the correct console font - as if the resolution is being detected as 800x600 rather than 1440x900.  The other, which may or may not be connected but also cropped up in that upgrade, is that my main laptop fan jumps to 100% speed near the start of booting, and stays there.  Downgrading to 2.6.32-5 solves both problems, which persist through to 2.6.32-9.  (That I normally boot into a custom kernel which I haven't bothered upgrading is why I've not tried to pin down the problem(s) until now.)  Any ideas of what might be going on?  I've got an Aspire 7730 with an Intel Mobile 4 chipset, using i915.

    Returning after another gap, still relying on a now-fairly-old kernel...
    eldragon wrote:
    chech if the svideo or tvout is being enabled.
    if there are more than one display enabled, the console will take the space of the smallest..
    This seems plausible - unfortunately, I don't have access to any external device to check directly what's happening - where should I look in logs or the file system to see what's happening?
    under i915, you have to pass to the kernel: video=VGA-1:off
    or whatever the display is.
    This, and VGA-0 or 2, make no difference.
    about the fan thing, if you can bisect that and report the commit that actually breaks your fan, they will probably fix it for future versions
    I've tried and failed, and so have resorted to posting a rather unhelpful bug report - http://bugs.archlinux.org/task/19017

  • Problem with recent 2014.1 release and SVG rendering. This happens on Safari and Chrome

    This issue didn't happened on previous versions since I tested the same project but with an older version developed with edge animate CC 2014.0

    Can you attach a sample composition so that we can check out the issue.

  • Problem with recent Acrobat Standard subscription and opening up PDF's

    After doing a 1-month trial for Adobe XI Pro, I completed online purchase yesterday (11/8/14) for annual subscription for Adobe Standard.
    And now I can no longer open or read any PDFs on my computer. A prompt comes up that trial period has ended and I need to subscribe (which I have done). I did not expect this and am very frustrated. Is there a lag time for processing the subscription, or is this something related to updates of  older version Adobe? I have Windows Vista.

    Hi create shortcut,
    Acrobat XI isn't supported on Windows Vista, so that could be what the problem is (see Tech specs | Adobe Acrobat XI Pro). Although, it sounds like you were using Acrobat Pro XI on Vista, is that correct?
    Your subscription is indeed, active. So, you should be able to simply sign in and use Acrobat Standard (but know that Adobe can't support any technical issues that might arise when using it on an unsupported OS).
    Best,
    Sara

  • Issues with MacBook Pro mid 2012 and SSD data 3

    I installed a Samsung SSD in my macbook pro model A1278, it work very well since yesterday; maverick 10.9.2 run very very slow and it have a lot of lag. And so ai provide to reinstall the native HDD and it run very well. I decided to buy another SSD of  OCZ, the previous was Samsung 830, and the system didn't recognise the ssd, but if i  link it with usb it work. Anyone have the same problem?

    Thank you for your reply :),
    I verified multiple times to ensure that the MBP-R and the ATV2 were connected to the same wifi. That's all that would be required with my network set up since there are no configured sub-networks. All of the devices connected can see each-other. I also verified this by checking in the router. Sure enough, the ATV2 is listed with all of the other devices.
    There were other problems related to Internet content with the ATV2 when I shipped it in for repairs under warranty. It was constantly disconnecting and reconnecting, and no matter what, it wouldn't remember any settings. I noticed these defects after I asked this question. I suspect that, because there has been some horrible weather and lots of power surges here,  that it became damaged from a surge. This was not plugged into a surge protector like everything else, so I brought that on upon myself unfortunately.

  • Sales order with Compl.deliv., Lead time and Shipping date problems

    Hello, SAP gurus!
    We have some concerns with sales orders that won't start processing, and I'm wondering if there's anyone here who have had experience with this problem.
    If not, hopefully you understand this scenario.
    Scenario:
    * A salesorder with three lines, of which two lines are not in stock (itemcategory YBAB), one line in stock (itemcat TAN)
    * Requested delivery date is asap, ie 19/03-2014
    * Marked with Complete delivery
    * In the Shipping tab, it seems all dates are copied from lead time of the YBAB-lines, 11/06-2014.
    * We just received the two YBAB-lines on PO, but the date still shows 11/06-2014, almost a month from now.
    Is it possible to make SAP automatically change the shipping date to the date we actually receive the items and are ready to process the order?
    What we have now is a salesorder made 2 months ago, ready to be packed and shipped today, but SAP seems to hold on to the "expected" date a month from now. It's frustrating!
    Hope to hear from you

    Hello,
    You will need to trigger a av. check again to factor the impact of receipt of YBAB items.
    You could evaluate backorder processing to automate this as a daily run to work on the sales order relevant for re-ATP based on new availability situation.
       Thanks,
    Sudhir

  • Help with installing new hard drive and transferring data?

    I have a MacBook Pro 13-inch mid 2009 that is running OS X version 10.6.8. The hard drive is full and I have a new one I'd like to install, but I am awfly intimidated. I'm hoping that someone could shed some light on kindergarten-style step-by-step instructions on how to make the switch. I'm mostly concerned about the data transfer part. I've found a handy video about physically installing the drive, so I think I'll be ok there.
    Here are the items I have in preperation for the switch:
    • 1.0 TB Hitachi Travelstar 7200RPM Hard Drive
    • Portable bus-powered USB 3.0 storage solution (to turn my old hard drive into an external hard drive)
    • Tools including a small phillips screwdriver and some Torx Screwdrivers
    • Time Machine Extermal Hard Drive with all of my backups
    Here are some things I have read that I find to be confusing
    • Some suggest I should transfer my data from the old hard drive to new new one BEFORE I install the new one. (I'm not sure how that works.)
    • Some suggest upgrading to the latest OS X before transferring any data. (Would that be Mavericks? I haven't upgraded to that yet. Is that necissary?)
    • Some suggest that I will need the MacBook Pro's installation disk to make the switch. (I don't know where that disk is. Do I really need it?)
    If anyone can clarify any of the above issues that I've listed as confusing, that would be great. Also, if anyone can help me figure out what steps to do first, second, third, etc., that would be great.
    Thanks!

    Also,
    Will I need the install disks for the Adobe Creative Suite and Microsoft office when I put in the new hard drive?

  • JPSX with a number of buttons and resetting data

    Any help on the following would be appreciated:
    I have a simple JSPX file in an ADF Faces project.
    There are a number of input text items as well as a af:selectOneListbox which has a f:selectitems tag. Next to this item I have a button which on pressing populates an ArrayList which is then rendered through the f:selectItems. This works fine!
    However on pressing buttons below the selectOneListBox item on the page it empties the list box of the data entries. How do I prevent this from happening.
    What I want to happen is once the List box has been populated I do not want to empty the data from the box unless I press the button adjacent to the box. All other buttons should have a null effect.
    Thanks
    Chris

    Hi,
    seems to be related to
    Re: ADF Faces issue
    Frank

Maybe you are looking for