Getting dump when you hire an emp in Development system

Hi,
We are getting an ABAP dump when we hires an emp in development system where as the dump is not coming in Quality system. Kindly suggest any config settings need to changed.
Please find the dump below for reference:
                                                                                Error analysis                                                                               
An exception occurred that is explained in detail below.                                
     The exception, which is assigned to class 'CX_HRPA_INVALID_PARAMETER', was not          
      caught in                                                                               
procedure "RESOLVE_EXCEPTION" "(FORM)", nor was it propagated by a RAISING              
      clause.                                                                               
Since the caller of the procedure could not have anticipated that the                   
     exception would occur, the current program is terminated.                               
     The reason for the exception is:                                                        
     Invalid parameter EXCEPTION, value                                                                               
The occurrence of the exception is closely related to the occurrence of                 
     a previous exception "CX_HRPA_INVALID_INFOTYPE", which was raised in the                
      program "CL_HRPA_INFOTYPE_FACTORY======CP",                                            
     specifically in line 18 of the (include) program                                        
      "CL_HRPA_INFOTYPE_FACTORY======CM004".                                                 
     The cause of the exception was:                                                                               
Infotype 0529 not permitted                                                                               
Rgds
Kumar

Hi,
Maybe specific to your master data maintainance, as it is working inQS1.
Regards
Team Member.

Similar Messages

  • Getting dump when using do_sum in alv field cat in the output of the report

    Dear Freinds,
                 Iam getting the alv report when i click on the segma field (Sum) on my salary
    field iam getting dump. and also if i try to print my alv output iam getting dump , only
    happening to my custom report.
    i have used the following code pleae correct me .
    This perform is used for Layout settings
      perform st_layout_build  using gs_layout.
    form st_layout_build  using  st_ls_layout type slis_layout_alv.
       st_ls_layout-no_input          = 'X'.
      st_ls_layout-colwidth_optimize = 'X'.
    st_ls_layout-zebra             = 'X'.
    st_ls_layout-detail_popup      = 'X'.
    endform.                    " st_layout_build
    Field Catalog details
    perform st_fieldcat_init changing gt_fieldcat.
    form st_fieldcat_init  changing  fp_i_fieldcat type slis_t_fieldcat_alv.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 1.
      ls_fieldcat-fieldname    = 'ORGUNIT'.
      ls_fieldcat-seltext_l    = 'Orgunit'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 2.
      ls_fieldcat-fieldname    = 'ORGTEXT'.
      ls_fieldcat-seltext_l    = 'Orgdesc'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'SALARY'.
      ls_fieldcat-seltext_l    = 'Salary'.
      ls_fieldcat-col_pos      = 3.
      ls_fieldcat-outputlen   = 15.
      ls_fieldcat-do_sum       = 'X'.
      ls_fieldcat-datatype     = 'CURR'.    "CURR
      append ls_fieldcat to fp_i_fieldcat.
    endform.
    Variant
      perform st_variant_init  using gs_variant g_repid.
    form st_variant_init   using  st_gs_variant type disvariant
                                 st_repid      like sy-repid.
      clear st_gs_variant.
      st_gs_variant-report = st_repid.
    endform.                    " st_variant_init
      g_repid = sy-repid.
      perform st_comment_build  using gt_list_top_of_page[].
    form st_comment_build  using   st_lt_top_of_page type slis_t_listheader.
      data: ls_line type slis_listheader.
    Listenüberschrift: Typ H
      clear ls_line.
      ls_line-typ  = 'H'.
    LS_LINE-KEY:  not used for this type
      ls_line-info = text-000.
      append ls_line to st_lt_top_of_page.
    endform.                    " st_comment_build
         call function 'REUSE_ALV_GRID_DISPLAY'
          exporting
             i_buffer_active        = 'X'
            i_callback_top_of_page = 'TOP_OF_PAGE'
            i_callback_program     = g_repid
            is_layout              = gs_layout
            it_fieldcat            = gt_fieldcat[]
           i_structure_name       = 'i_final'   "c_i_final "'objec'
           i_save                 = g_save
            is_variant             = gs_variant
          tables
            t_outtab               = fp_i_pyrol_final
          exceptions
            program_error          = 1
            others                 = 2.
        if sy-subrc ne 0.
          message e018. " Displaying the ALV GRID has failed
        endif.
    Please could any  one let me know why iam getting dump when iam clicking for total
    on my salary field.
    Regards
    latha

    Dear Chandu,
    my code iam giving in details
    types : begin of ty_output_data,
            staffno     type pernr_d,
            staffname   type emnam,
            grade       type stell,
            orgunit     type orgeh,
            orgtext     type hr_mcstext,
            psgroup     type trfgr,      " Pay Scale Group
            salary      type maxbt,       "PAD_AMT7S,
            rrefunded   type pad_amt7s,
            leavepay    type pad_amt7s,
            mshortfal   type pad_amt7s,   " Medical Shortfall
            echkshfal   type pad_amt7s,   " Execute checkup shortfall
            ofindeduc   type pad_amt7s,   " Other Finance Deduction
            mtyprem     type pad_amt7s,   " maternity premium
            vpbonus     type pad_amt7s,   " VP/Bonus
            gratuity    type pad_amt7s,   " Gratuity
            vpay        type pad_amt7s,   " Variable pay
            mallowance  type pad_amt7s,   " Meal Allowance
            overtime    type pad_amt7s,   " overtime
            other       type  pad_amt7s,  "  OTHER
            pfundeecon  type pad_amt7s,   " PFund Employee's Contribution
            banktrnsfer type pad_amt7s,   " Bank Transfer
            count       type i,
            end of ty_output_data.
    data : i_final         type standard table of ty_output_data.
    iam getting all my data in the internal table  I_FINAL.
    perform get_final_alv  using  i_final.
    form get_final_alv  using   fp_i_pyrol_final type ty_t_output_data.
    *local variable declarations
      data : l_v_idx      type sy-tabix.
    *local work areas
      data : l_wa_final type ty_output_data.
      g_save = 'A'.
    This perform is used for Layout settings
      perform st_layout_build  using gs_layout.
    Field Catalog details
      perform st_fieldcat_init changing gt_fieldcat.
    Variant
      perform st_variant_init  using gs_variant g_repid.
      g_repid = sy-repid.
      perform st_comment_build  using gt_list_top_of_page[].
      if not fp_i_pyrol_final is initial.
        delete adjacent duplicates from fp_i_pyrol_final comparing all fields.
        call function 'REUSE_ALV_GRID_DISPLAY'
          exporting
             i_buffer_active        = 'X'
            i_callback_top_of_page = 'TOP_OF_PAGE'
            i_callback_program     = g_repid
            is_layout              = gs_layout
            it_fieldcat            = gt_fieldcat[]
           i_structure_name       = 'i_final'   "c_i_final "'objec'
           i_save                 = g_save
            is_variant             = gs_variant
          tables
            t_outtab               = fp_i_pyrol_final
          exceptions
            program_error          = 1
            others                 = 2.
        if sy-subrc ne 0.
          message e018. " Displaying the ALV GRID has failed
        endif.
      endif.
    endform.                    " get_final_alv
    form st_layout_build  using  st_ls_layout type slis_layout_alv.
       st_ls_layout-no_input          = 'X'.
      st_ls_layout-colwidth_optimize = 'X'.
    st_ls_layout-zebra             = 'X'.
    st_ls_layout-detail_popup      = 'X'.
    endform.                    " st_layout_build
    form st_fieldcat_init  changing  fp_i_fieldcat type slis_t_fieldcat_alv.
      data: ls_fieldcat type slis_fieldcat_alv.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 1.
      ls_fieldcat-fieldname    = 'ORGUNIT'.
      ls_fieldcat-seltext_l    = 'Orgunit'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 2.
      ls_fieldcat-fieldname    = 'ORGTEXT'.
      ls_fieldcat-seltext_l    = 'Orgdesc'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 5.
      ls_fieldcat-fieldname    = 'STAFFNAME'.
    ls_fieldcat-no_out       = 'X'.
      ls_fieldcat-seltext_l    = 'StaffName'.
      append ls_fieldcat to fp_i_fieldcat.
       clear ls_fieldcat.
      ls_fieldcat-col_pos      = 4.
      ls_fieldcat-fieldname    = 'STAFFNO'.
    ls_fieldcat-no_out       = 'X'.
      ls_fieldcat-seltext_l    = 'StaffNo.'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 6.
      ls_fieldcat-fieldname    = 'GRADE'.
      ls_fieldcat-seltext_l    = 'Grade'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 3.
      ls_fieldcat-fieldname    = 'COUNT'.
      ls_fieldcat-seltext_l    = 'Headcount'.
      append ls_fieldcat to fp_i_fieldcat.
    if the field name is 'Salary' then do a sum on this field.
    IF  fp_fname = c_betrg.
        l_wa_fieldcat-do_sum    = c_x.
    ENDIF.
    NOTE : IAM GETTING PROBLEM IN THE BELOW SALARY.
    IAM JUST CHECKING ITSELF NOT ALLOWING ME TO EXECUTE
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'SALARY'.
      ls_fieldcat-seltext_l    = 'Salary'.
      ls_fieldcat-col_pos      = 7.
      ls_fieldcat-outputlen   = 20.
      ls_fieldcat-do_sum       = 'X'.
      ls_fieldcat-datatype     = 'CURR'.    "CURR
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 9.
      ls_fieldcat-fieldname    = 'LEAVEPAY'.
      ls_fieldcat-seltext_l    = 'Leave Pay'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 10.
      ls_fieldcat-fieldname    = 'MSHORTFAL'.
      ls_fieldcat-seltext_l    = 'Med.Sfall'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 11.
      ls_fieldcat-fieldname    = 'ECHKSHFAL'.
      ls_fieldcat-seltext_l    = 'EX.Chckup.Sfall'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 12.
      ls_fieldcat-fieldname    = 'OFINDEDUC'.
      ls_fieldcat-seltext_l    = 'Oth.Fin.Deduction'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 13.
      ls_fieldcat-fieldname    = 'MTYPREM'.
      ls_fieldcat-seltext_l    = 'Mat.Premium'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 14.
      ls_fieldcat-fieldname    = 'VPBONUS'.
      ls_fieldcat-seltext_l    = 'VP/Bonus'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 15.
      ls_fieldcat-fieldname    = 'GRATUITY'.
      ls_fieldcat-seltext_l    = 'Gratuity'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 16.
      ls_fieldcat-fieldname    = 'VPAY'.
      ls_fieldcat-seltext_l    = 'Variable Pay'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 17.
      ls_fieldcat-fieldname    = 'MALLOWANCE'.
      ls_fieldcat-seltext_l    = 'Meal.Allowance'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 18.
      ls_fieldcat-fieldname    = 'OVERTIME'.
      ls_fieldcat-seltext_l    = 'Overtime'.
      append ls_fieldcat to fp_i_fieldcat.
        clear ls_fieldcat.
      ls_fieldcat-col_pos      = 19.
      ls_fieldcat-fieldname    = 'OTHER'.
      ls_fieldcat-seltext_l    = 'Other'.
      append ls_fieldcat to fp_i_fieldcat.
    pfundeecon
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 20.
      ls_fieldcat-fieldname    = 'P FUND EMPLOYEES CONTRIBUTION'.
      ls_fieldcat-seltext_l    = 'P.Fund.Emp.Contrib'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 21.
      ls_fieldcat-fieldname    = 'BANKTRNSFER'.
      ls_fieldcat-seltext_l    = 'Payment'.
      append ls_fieldcat to fp_i_fieldcat.
    endform.                    " st_fieldcat_init
    form st_variant_init   using  st_gs_variant type disvariant
                                 st_repid      like sy-repid.
      clear st_gs_variant.
      st_gs_variant-report = st_repid.
    endform.                    " st_variant_init
    form st_comment_build  using   st_lt_top_of_page type slis_t_listheader.
      data: ls_line type slis_listheader.
    Listenüberschrift: Typ H
      clear ls_line.
      ls_line-typ  = 'H'.
    LS_LINE-KEY:  not used for this type
      ls_line-info = text-000.
      append ls_line to st_lt_top_of_page.
    endform.                    " st_comment_build
          FORM TOP_OF_PAGE                                              *
    form top_of_page.
      data: l_i_detailheader type slis_t_listheader.
    To get the header for ALV
      perform detail_header changing l_i_detailheader.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = l_i_detailheader.
    endform.                    "top_of_page
    form detail_header  changing fp_i_detailheader type slis_t_listheader.
      data: l_wa_header       type slis_listheader,
            l_v_time         type slis_edit_mask,
            l_v_date         type slis_edit_mask,
            l_v_abkrs        type char5,
            l_v_pabrj        type char8,
            l_v_pagno        type char10.
    Local Constants
      constants: l_c_h type char1 value 'H',
                 l_c_1  type i     value '1',
                 l_c_edit type char10 value '__.__.____',
                 l_c_slash  type c value '/'. " constant for slash
    To display the report Header
      l_wa_header-typ = l_c_h.
    WRITE sy-repid TO l_wa_header-info LEFT-JUSTIFIED.
      write text-014  to l_wa_header-info left-justified.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
    To display the Page no
      l_v_pagno =   sy-pagno + l_c_1.
      l_wa_header-typ = c_s.
      l_wa_header-key = text-008. " Page No:
      l_wa_header-info =  l_v_pagno.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
    To Display the User ID
      l_wa_header-typ = c_s.
      l_wa_header-key = text-009. " User ID
      l_wa_header-info = sy-uname.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
    To Display the Date/Time
      l_wa_header-typ = c_s.
      l_wa_header-key = text-010. " Date/Time:
      l_v_time = sy-uzeit.
      l_v_date = sy-datum.
      write: sy-uzeit to l_v_time.
      write sy-datum to l_v_date using edit mask l_c_edit.
      concatenate l_v_date
                  l_c_slash
                  l_v_time into l_wa_header-info+0(25) separated by space.
      append l_wa_header to fp_i_detailheader.
      clear: l_wa_header, l_v_date.
    To Display the Report Description
      l_wa_header-typ = c_s.
      l_wa_header-key = text-011.                " Report Description
      l_wa_header-info = text-012.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
      append l_wa_header to fp_i_detailheader.
    endform.                    " detail_header
    I will be greatful if any one can please help me in removing me the dump.
    REGARDS
    LATHA.

  • HT5262 where does the information get stored when you back up your i-phone? It just reports its done but I have no idea where to find it if I need it again!

    Where does the information get stored when you sync/back up your i-phone. I have no idea where to look if I need it again!
    Thanks

    You can chhose the backup when you would reset your device. In this case you would get the option, during the set up process, to choose your backup and restore your device from it.
    (You can find a few information e.g. size and date of your backup in "Settings > iCloud > Storage & Backup > Manage Storage")

  • What gets copied when you copy a warehouse?

    Hi
            We are debating whether to copy one of our existing warehouses or the SAP standard for our new warehouse setup.
    Does someone know what are the things that get copied when you copy a warehouse ?  (eg storage types , Storage locations etc.... ) Would any customized transactions that we have in our existing warehouse be copied ( eg: customized RF transactions etc)
    Please advise.
    Thanks

    Hi,
      It copies only standard warehouse structure. It will not copy customized ones.
    Thanks,
    DV

  • "get info" when you upload a CD - what does it mean "part of a compilation"?

    "get info" when  you upload a CD - what does it mean "part of a compilation"?

    If you have an album with tracks by different artists, for instance "Now That's What I Call Running", that's a Compilation of songs by different artists. (Presumably, they ran out of numbers )
    So in iTunes, each track should be marked as Part of a compilation. When you see that box on a CD loaded in your CD drive, ready for importing, look at the Get Info for the complete album (by highlighting the album title on the left under Devices) and on there you will see a tick-box named Compilation CD which - if ticked - marks all the tracks as Part of a compilation. This becomes useful when the iPod and iTunes sort the album.
    However - iTunes obtains the album information from a third-party database called Gracenote, which is compiled by the record label personel, artists and fans. Quiet often, you will find that an album of "Greatest Hits of <a band>" will be marked as a compilation. I don't think it is, and neither does iTunes. So if you are importing a "Greatest Hits of xxx artist" album, make sure that the Compilation box is off (no tick-in-the-box). Likewise, an album by "an artist", but with a guest artist on one or two tracks is not a compilation.
    One final point; if you import a true Compilation album, with each track by a different artist, then once it is imported, make sure that the Album Artist field says "Various Artists". You do this by highlighting the complete album in your library and selecting File/Get Info/Info>Album Artist which is the box immediately below the Artist box and typing in "Various Artists". This will help you when sorting and searching albums on your iPod.

  • Getting error when trying to create Exchange Connector in System Center Service Manager 2012

    Getting error when trying to create Exchange Connector in System Center Service Manager 2012
    The connection to the server was unsuccessful. Please check the server name and/or credentials entered.
    Additional Information: The server URL is not accessible or the user does not have permission to access it (message: The request failed. The remote server returned an error: (401) Unauthorized.
    Warm Regards, Pramod Kumar Singh Manager-IT

    Someone sorted out this issue by installing API 1.2 and copying the dll files to the service manager server ,service folder and replacing it with API 2.0 dll files.
    Also, your question is related to SCSM, please post at SCSM forum if you have further question.
    Juke Chou
    TechNet Community Support

  • I bought the iPhone 4 user and when you are upgrading to the new system  ios7 I have a problem activation lock note that I do not know what is the ID Apple and The password because the phone used?

    I bought the iPhone 4 user and when you are upgrading to the new system  ios7 I have a problem activation lock note that I do not know what is the ID Apple and The password because the phone used?
    please help my what can i do?
    IMEI : 012658006380001

    Welcome to the Apple community Kobra.
    Unfortunately, you cannot do very much with your phone unless you get assistance from the previous owner, they should either provide you with the password to unlock it or remove their account from the phone entirely remotely through iCloud.com > Find My Phone.

  • How to stop preview window from automatically getting focus when you move up/down the message list.

    Since updating (my TB was a few versions old) to 31.2, the preview window automatically gets focus when I move up/down the message list. I'm assuming this is a new "feature". Is there a way to shut this off and leave the focus on the message list so I can navigate up/down like before?

    You are referring to the 'Message Pane' which displays selected opened emails below the list of emails. It is not a 'preview'.
    When you select an email by either using mouse to click on an email in the list or using the arrow keys to select emails up and down the list, you are selecting an email to open and read. That is why it is being opened in the Message Pane so that you can read it.
    If you select an email in the list and then cllck anywhere else including in the Message Pane, then you will have moved focus away from the list and the strong highlight on email in list is reduced to paler highlight.
    When you click on an email in the list, the email becomes highlighted, at this point you can use eg: arrow keys to move up and down the list.
    If you are performing single left click on email in list and then do nothing else and the strong highlight auto changes to paler highlight.
    Check you do not have a conflict with an addon by starting Thunderbird in Safe Mode.
    Help > select 'Restart with addons disabled'

  • Does an object get cloned when you put it in a Map?

    When you call the put method on a Map, does it clone the object you're "putting" in the Map, or does the Map just hold a reference?
    Thanks for any help!

    Everything is a reference (except the primatives like int, obviously). Java never does any of the nastiness of C++ where it will sometimes copy an object, and sometimes this and sometimes that. Everything except the primatives is a reference, and all method parameters are passed by value. Period.

  • HT1535 What all gets erased when you choose to manually manage your music?

    I got a new laptop not long ago and I currently have the newest version of iTunes installed on it. I also just got the iPhone 5 so I wanted to put more (new) music on it that did not upload with iCloud. Except I want to manually manage my music as opposed to automatically syncing. When I choose the option to manually manage, it says that everything will be erased from my iPhone. Can someone just clarify what exactly will be erased, is it just my music and apps or is it basically everything on my phone as if its gettign restored to its factory settings?
    Thanks

    Hi, welcome to Apple Discussions.
    Unlike most of Apple's iPod devices, the iPhone is resticted to holding content from a single library, even when manually managing that content. If a particular file isn't in the local iTunes library when you update the device (e.g. add or remove a single track) it will be deleted. This makes any potential benefit of manual management pointless. Since this restiction is imposed by iTunes you may prefer to look at 3rd party tools to manage media content on your iPhone. Alternatively stick your library on an extenal drive so that you can manage it from any computer avaiable to you.
    tt2

  • Adobe Premiere Elements 11 Editor: how to get support when you purchase at Apple Store?

    [Moving to Premiere Elements... JTS]
    I purchased Adobe Premiere Elements 11 Editor software at Apple Store in May/11/2013.
    I could use the product no more than 2 times because it started to have problems to open, since then I could not use anymore. In December, when I was trying to use the software again, I couldn't and started to call Apple and Adobe to try to solve my problems.
    Apple Support advise me to uninstall my Operational System (@Mavericks) and to install back the older version @Mac_OS_X_Lion_10.7. I did that and Adobe didn't work again. IT downloaded to my computer, but it couldn't be opened. As you can see the print screens below.
    After many tries going back and force to Adobe and Apple and now that the software is no longer available in Apple Store I am not sure why, I did not even had chance to try to reinstall and Apple said that they can't do anything. Also Adobe says that I can't get any help besides these forums because I have no Serial Number to provide (Apple never provided me this number).
    Anyone had a similar situation like mine? I would appreciate to have some help on this.

    Hi ATR,
    Thank you very much for your contact. This is the first person from both companies so far who tries to really help me.
    As follows are your answers, I would appreciate if I could get some help with that matter.
    SERIAL NUMBER FOR MY PRODUCT: The only document I have is the Invoice from Apple/iTunes Store (image below) for my Adobe Premiere Elements 11 Editor purchase, which I believe makes Apple responsible for my product as well. However, last time I talked to Apple, the advisor who spoke to me said that Apple could not do anything else, since the product was no longer available in their Store. Neversthless, Apple never provided me the serial number for the product, which I bought from Apple Store and downloaded directly to my computer. On the other side, all the times I called Adobe, the representatives could not attend me because I don't have the serial number to provide to it.
    What is the present situation
    a. Do you have Premiere Elements 11 Editor installation files saved to your computer?
    Ans: It disappeared from Apple Store in my computer and from iTunes Store as well. However, the software was in my computer before as can be seen in the images below:
    b. Is Premiere Elements 11 Editor currently installed on your computer?
    Ans: It was installed in my computer when I bought it, and I did use it in 2 occasions. However, after I started to face the problem trying to open the software and use it, Apple advised me to change my Operational System from Mavericks to Mac OS X Lion 10.7 to be able to work with Adobe Premiere Elements 11, since it could be facing problems with Mavericks. After have installed Mac OS X Lion, I tried to install Adobe Premiere again, but now it is not even possible to do from the Apple Store.
    c. If you went to http://www.adobe.com, signed in there with your Adobe ID and Password, and went to My Products, do you see your Adobe Premiere Elements 11 Editor listed there and does it include the serial number?
    Ans: My Adobe ID doesn't show Adobe Premiere, so that's one more reason why I don't have the serial number for my product. The only document I have for it is the Apple Store invoice and through it I can't have other number besides the order # or invoice # from Apple.
    d. Miscellaneous...Did you ever have QuickTime installed on your computer with the Adobe Premiere Elements 11 Editor?...Are your computer preferences and privileges OK?...What is your current computer operating system?
    Ans: I used to have my Quick Time when I used Adobe Premiere in my computer. Since came back to Mac OS X Lion 10.7, many softwares were lost when the Operating System was changed.
    I hope I have provided enough information, but please let me know if you have any questions.
    Best,
    AnnelenaPorto

  • Hello. I wonder if it is possible to get virus when you download a torrent on mac ( I use vuze ) ? thanks for helping.

    Is it possible that my mac will get a lot of virus, when i use vuze to download torrents. I have no virus program.
    thanks for helping

    Depends.
    You do open yourself up in part by broadcasting your IP for all to see and harvest so except to have DDoS hitting your router.
    You'll find more about OS X Networking in this forum
    Networking Mac OS

  • Named tracks get renamed when you change settings

    This is annoying: you carefully name all your tracks so you know what's what when mixing; but if you decide you want a different setting, and choose that for a track, that track gets renamed with the new setting's name. And with BG 09, it isn't as easy to change a region's name, as it used to be.
    Any help with these issues would be greatly appreciated!

    if you decide you want a different setting, and choose that for a track, that track gets renamed
    that is, unfortunately, the way GB has always worked.
    my only suggestion would be to copy the track name before using a preset, then ypu can paste it back in.

  • Does the sound of your caller get reduced when you speak at the same time?

    Hi everyone,
    I'm noticing some strange behaviour of my iPhone 3G's audio on the O2 network here in the UK. Both O2 & the iPhone are new to me so I don't know which is the cause, but was wondering if anyone else has experienced this 'problem'? What happens is this:
    When I'm on a call with my ear to the iPhone's earpiece (or using headphones) & I speak whilst the caller is speaking (or let's say I'm chatting to my wife in the same room as me whilst I'm listening to 'hold music'), I've noticed that *the volume & call-quality of the incoming line is often reduced*.
    Initally this might not seem a problem, BUT, there have definitely been a view times when I've been in a noisy environment (such as street traffic, or my kids shouting & playing in the background) where I've missed things that the caller told me. In both these situations, I've noticed that the caller's voice has got quieter, sounded 'grainy' or even sometimes gone totally quiet until the sound from me (or my environment) has stopped. The 'problem' seems to right itself a minute or so of the call, but that's little consolation to the first 60 seconds of the call!
    It's most noticeable on headphones by the way; As a test, I plugged in regular headphones to my iPhone (i.e. not the iPhone IEMs with the mic), called a landline phone-line with a pre-recorded message, then spoke into the iPhone's built-in microphone. Every time I did this, the incoming audio signal was 'turned down' &/or sounded gritty, then returns to normal when I (or my background noise) went quiet.
    I don't think this is a fault with my phone. but more either an iPhone 3G hardware 'characteristic', v2 software bug, or network issue. (O2 said they've never heard of this before of course...)
    If anyone else has the time to try this out please, I'd appreciate it
    Thanks,
    Jason

    Hi Quickdraw,
    Thanks for your reply.
    I don't know this for sure, but I think it has EVERYTHING to do with bandwidth.
    Yes, that makes a lot of sense... I was making calls on 2G/Edge at the time of my 'tests' rather than 3G, partly due to battery-saving but also that 2G still has much better coverage over here (just as you guys in the States seem to be experiencing).
    I've done some more tryouts today, & noticed that if the 2G signal is really strong, OR if I switch to 3G & have a reasonable-to-good reception, the 'incoming-signal-dropping-out-when-I-talk' doesn't happen much at all...
    So, the bandwidth thing does make sense, but it's interesting/annoying that it manifests itself as "one good-quality voice OR the other", rather than "full-duplex-but-not-so-great-for-both-voices" sound...
    If anyone in the UK can feed back their experience with O2, I'd appreciate it please. (I never had this issue in the 10 years I was with Orange..)
    Cheers,
    Jason

  • HT5278 Does your games and apps get wiped when you upgrade your iPad to the IOS 5.1.1

    Hi I would like to know that if you upgrade your IPAD 2 to IOS 5.1.1 will all the stuff you have on your IPAD get wiped

    For the sake of updating, it doesn't matter too much - but you can find it on the iPad through Settings -> About - Version. If your current version is 4.x or older, you'll have to do it through iTunes... but even if you have a newer version, if you want to be extra sure that you'll keep your data then do it through iTunes (http://support.apple.com/kb/HT4623) and make sure to let iTunes fully back-up your iPad before you start the update.

Maybe you are looking for