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.

Similar Messages

  • WHY THE IPHONE GETTING HOT WHEN USING 3G PLUS WITH DATa?, WHY THE IPHONE GETTING HOT WHEN USING 3G PLUS WITH DATA?

    why my iphone 4s getting hot when using 3g plus with data?
    then my phone left side speaker didnt work when i list songs?

    It is normal for the phone to get hot when your using data such as YouTube videos, streaming music etc.. And as for the left speaker not working, the left speaker is a microphone, the right one is for sound. Don't worry, everything your iPhone is doing is normal.

  • Dump when using REUSE_ALV_FIELDCATALOG_MERGE

    Hello friends,
    I am getting the following dump when using REUSE_ALV_FIELDCATALOG_MERGE.
    The occupied line length in the program text must not exceed the width of the internal table.
    The internal table "\FUNCTION=K_KKB_FIELDCAT_MERGE\DATA=L_ABAP_SOURCE[]" is 72
      characters wide. The program line is 75 characters wide.
    Regards,
    K.Sibi

    Hello Ajay ,
    THanks for the reply .
    DATA : BEGIN OF it_data OCCURS 0,
       matnr like RMMG1-MATNR , " Material number
       mbrsh like RMMG1-MBRSH, " Industry sector
       mtart like RMMG1-MTART, " Material type
       meins like MARA-MEINS, " Base unit of measure
       maktx like MAKT-MAKTX, " Material description
       spras like makt-spras , " Language key
       END OF it_data.
    my fm
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
       I_PROGRAM_NAME               = ge_repid
       I_INTERNAL_TABNAME           = 'it_data'
    *   I_STRUCTURE_NAME             = 'it_data'
    *   I_CLIENT_NEVER_DISPLAY       = 'X'
       I_INCLNAME                   = ge_repid
    *   I_BYPASSING_BUFFER           = 'X'
    *   I_BUFFER_ACTIVE              =
      CHANGING
        ct_fieldcat                  = alv_fieldcat
    EXCEPTIONS
       INCONSISTENT_INTERFACE       = 1
       PROGRAM_ERROR                = 2
       OTHERS                       = 3
    Regards,
    K.Sibi
    Edited by: sibi k  kanagaraj on Apr 27, 2009 9:21 PM

  • Getting an error when using adobe photoshop CC, "Could not move the data because of a program error". Any idea on what this means?

    Getting an error when using adobe photoshop CC, "Could not move the data because of a program error". Any idea on what this means?

    Have no idea of what you were even doing in Photoshop my crystal ball is out for repairs so I can not see.  

  • HT201335 I can only get audio when using airplay through sky go on my apple tv on iphone 4

    I cn only get audio when using airplay through sky go on my apple tv on iphone4. Any ideas?

    Sky go is an app that does not support video AirPlay, not all apps do.

  • My iPhone was getting hot when used or charging. Went to Apple in Portland, OR.Phone making random sound. Why??? How do I make it stop????

    My iPhone was getting hot when used or charging. Went to Apple in Portland, OR. I did a reset on the phone. My IPhone is now making a random sound. Why??? How do I make it stop???? I have turned off all notifications. I do not have life360 or Skype. I do have Facebook, WordsFree, ScrabbleFree, Pandora.

    I did the reset. I updated the iPhone to 6.0. The alert sound stopped for a while then started again. I had to go to notifications a few times to turn off some of the alerts and now I have peace, plus I learned more about the notifications. Thanks for your help. I did not need to go to the Apple Store.

  • I pad  get hot when using or charging what's wrong?

    my ipad gets hot when using & charging  - what's wrong/ also, the chrger gets hot enough that i unplug it

    Not normal. Take it to an Apple Store for evaluation.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
     Cheers, Tom

  • Trouble with my ipod getting hot when useing instagram app and also problems with my ipod closeing and returning to home screen unexpectedly?

    when i'm useing my ipod and i'm useing the instagram app. I feel my ipod starting to get really hot. i am also having problems useing app and them all a sudden closing on me and ipod will return to the home screen

    It is not unusual for the to get worm when using some apps.
    For the app problem see:
    iOS: Troubleshooting applications purchased from the App Store

  • Can't get around this error after adding second dataset...A scope is required for all aggregates used outside of a data region unless the report contains exactly one dataset

    I added a dataset to an existing report and broke an aggregation.  In the old (i.e. single dataset) report, this expression below worked fine.  I wanted to get a distinct count of the vst_ext_id field when my educated field was like "VTE1*"
    = CountDistinct(IIF(Fields!educated.Value like "VTE1*", Fields!vst_ext_id.Value, Nothing))
    After adding a new dataset, this no longer works and I get the error " A scope is required for all aggregates used outside of a data region unless the report contains exactly one dataset".  Having done some research online, I found that I
    needed to specify my dataset explicitly and I thought this new expression might work, but still no success...
    = CountDistinct(IIF(Fields!educated.Value,"DataSet1" like "VTE12*", Fields!vst_ext_id.Value,"DataSet1", Nothing))
    Am I missing something?  Based on online responses, this explicit dataset naming convention seems to help most people, but it isn't working for me. 
    Thanks in advance!
    Brian

    I found the answer.  Apparently, my expression syntax was off.  This expression does the trick...
    = CountDistinct(IIF(Fields!educated.Value like "VTE12*", Fields!vst_ext_id.Value,Nothing),"DataSet1")
    I just happened upon this particular syntax searching online.  I was trying to specify the dataset name after each .value, but I never got that to work.   This is the only time I have found this particular syntax online. 

  • Error in SQL Query The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator. for the query

    hi Experts,
    while running SQL Query i am getting an error as
    The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator. for the query
    select  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price ,
    T2.LineText
    from OQUT T0  INNER JOIN QUT1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN
    QUT10 T2 ON T1.DocEntry = T2.DocEntry where T1.DocEntry='590'
    group by  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price
    ,T2.LineText
    how to resolve the issue

    Dear Meghanath,
    Please use the following query, Hope your purpose will serve.
    select  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price ,
    CAST(T2.LineText as nvarchar (MAX))[LineText]
    from OQUT T0  INNER JOIN QUT1 T1 ON T0.DocEntry = T1.DocEntry LEFT OUTER JOIN
    QUT10 T2 ON T1.DocEntry = T2.DocEntry --where T1.DocEntry='590'
    group by  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price
    ,CAST(T2.LineText as nvarchar (MAX))
    Regards,
    Amit

  • When using photoshop elements as editor in iPhoto the pic does not show up when PS opens

    When using photoshop elements as editor in iPhoto the pic does not show up when PS opens

    Ralph9430 offers a good suggestion.  But you may need to do this before taking his advice:
    Check in iPhoto's Preferences (which you can open from the iPhoto menu).  Look in General, and make sure "Connecting Camera Opens" is set to "Image Capture").
    If it is set to "iPhoto", you won't be able to get to Image Capture easily.

  • I get this when try to verify my id on FaceTime: the server rencountered an error processing registration please try again later.

    I get this when try to verify my id on FaceTime: the server rencountered an error processing registration please try again later.

    While we all have MacBooks in this forum not all of us use FaceTime. There's a FaceTime Support Community where everybody uses FaceTime. You should also post this question there to increase your chances of getting an answer. https://discussions.apple.com/community/mac_app_store/facetime_for_mac

  • LTA is getting Double when EE changes Department /Designation in mid of the

    Hi Sapiants,
    LTA amount is getting Double when EE changes Department /Designation in mid of the month. what is the reason behind this problem.
    Regards
    vinmax

    Dear Delik,
    Now double appearance of LTA amount is gone by assigning the spec . to Pr.Cl. - 06 .Your answer helped buddy in this egard. but a new problem is coming. system is populaating some amount with a wagetype. though it is not part of IT 0008.
    Thanx
    Vinmax
    Edited by: kvin kvin on Jul 25, 2008 12:28 PM
    Edited by: kvin kvin on Jul 25, 2008 12:29 PM

  • Hi, i have doubt in alv field cat log

    1)In alv field cat preparation (i dont want to display for one particular field in output screen) can u pls send me the code.
    2)in field cat for a particular field i want to display in different color for that can u send me code.
    3)code for (DOUBLE CLICK) event.
                for the can u send me a code
    Regards,
    Nagesh

    Hi Nagesh,
    I think you have posted your question in the wrong forum, this forum is for education related topics only.  Please review the existing forums and re-post it to the appropriate one.
    Regards,
    Simon

  • My itunes library when using my phone is in Japanese, and the currency is set to yen. I have changed the settings via the flag at the bottom of itunes on windows but its only changed on my windows itunes.

    The currency on my itunes store when using my iPhone is in Japanese yen, the menu is in Japanese too. I have changed the country using the flag at the bottom of itunes for windows, I have synced my iphone and restarted it, but it still has not changed. I also cannot set up a payment method for itunes as it keeps asking for japanese bank details? Help!

    The currency on my itunes store when using my iPhone is in Japanese yen, the menu is in Japanese too. I have changed the country using the flag at the bottom of itunes for windows, I have synced my iphone and restarted it, but it still has not changed. I also cannot set up a payment method for itunes as it keeps asking for japanese bank details? Help!

Maybe you are looking for

  • How can I copy a backup file from one computer to another?

    I want all of my app date, music, videos, ect to be on a new computer. Is it possible to back up my iPod Touch 3g on my old computer and copy the backup file onto the new computer? If so, how?

  • How to add serial number contolled item with serial numbers in sales order.

    Hi OM Functional Experts, I need a help on sales order booking. We have serial controlled items in our inventory. At the time of booking a sales order, we need to call the items with the appropriate serial numbers [ for example, if i book an item for

  • S_ALR_87012177 - Customer Payment History

    Hi, For a particular cusotmer, the payments are recieved in company code currency (CHF - Swiss Franc) and some custmer payments are done in USD, when i am executing the transaction code S_ALR_87012177, the report is shwoing only the transactions of c

  • Can't connect to airport

    I am writing this on a MacBook Pro via our household Airport. Next to me is a PowerBook G4 running 10.4.7. which is not showing any responsiveness across the Internet. On that machine, Internet Connect says "Connected to <name of local airport networ

  • "an error has occured" while downloading OS X Mountain Lion

    I have purchased the OS X Mountain Lion and it downloaded about half way on my macbook then stopped. Now when i go into the app store under purchased it says "an error has occured" and there is no option to resume the download, how can i get it to do