BPC Excel VBA Code to change Current View ios broken, please help

Hi,
I inherited a macro set to cycle through a list of paramenters, change current view accordingly and print the reports. It was working fine in the prior version of BPC, but stopped when we transferred to BPC 7. The code stops when it's trying to make the Current View visible (in the prior version it was an option, in BPC 7 it's always visible). I also think it does not recognize the "OutlookSoft CPM CurrentView" name. I am not a VBA expert. Woudl appreciate any ideas. The place where the code stops is in bold below.
Thank you!
Sub cmdRun_Click()
Dim strColHead As String, strRowHead As String, strDataRange As String
Dim I As Integer, j As Integer, k As Integer
Dim blnOldStatusBar As Boolean, blnOSBarStartVis As Integer, intOSBarStartPosit As Integer
Dim strPL As String, strTabName As String
Dim intTotalPrintingPages As Integer, intPageCountStart As Integer
Dim dteStartTime As Date, dteEndTime As Date, intRunTimeSeconds As Integer, intRunTimeMinutes As Integer
'Record the start time
dteStartTime = Time
'Get the current status bar setting.  Then, make sure the bar is visible
blnOldStatusBar = Application.DisplayStatusBar
Application.DisplayStatusBar = True
If Test_Ranges = False Then
    Exit Sub
End If
strColHead = refColHeader.Value
strRowHead = refRowHeader.Value
strDataRange = refDataRange.Value
'Find and store the starting position for the OutlookSoft Currentview toolbar
'Then, make the entire OutlookSoft CurrentView toolbar visible
Application.StatusBar = "Storing CurrentView toolbar data"
blnOSBarStartVis = Application.CommandBars("OutlookSoft CPM CurrentView").Visible
Application.CommandBars("OutlookSoft CPM CurrentView").Visible = True
intOSBarStartPosit = Application.CommandBars("OutlookSoft CPM CurrentView").Position
Application.CommandBars("OutlookSoft CPM CurrentView").Position = 4
'Hide the form
frmParameters.Hide
'Cycle through the combinations of P&Ls and tab names
For I = 1 To Range(strRowHead).Rows.Count
    'Change the currentview P&L
    Application.StatusBar = "Changing the CurrentView..."
    strPL = Range(strRowHead).Rows(I).Columns(1).Value
    ChangeCurrentView "P_L", strPL
    'Refresh and Expand
    'Application.Calculation = xlCalculationManual                      'temporarily turn off Excel's automatic calculation
    Application.Run "MNU_eTOOLS_EXPAND"
    'Application.Calculation = xlCalculationAutomatic                   'turn the automatic calculation back on
    Application.Run "MNU_eTOOLS_REFRESH"
    Application.CalculateFullRebuild
    'Get the total number of pages to be printed for the selected P&L
    Application.StatusBar = "Counting pages to be printed for this P&L..."
    intTotalPrintingPages = 0
    For j = 1 To Range(strColHead).Columns.Count
        If Range(strDataRange).Rows(I).Columns(j).Value = "x" Then
            strTabName = Range(strColHead).Rows(1).Columns(j).Value
            For Each pb In Sheets(strTabName).HPageBreaks
                If pb.Extent = xlPageBreakPartial Then
                    intTotalPrintingPages = intTotalPrintingPages + 1  'add one sheet to the count for each page break
                End If
            Next
            intTotalPrintingPages = intTotalPrintingPages + 1          'each sheet will print 1 more page than there are page breaks
        End If
    Next j
    Application.StatusBar = intTotalPrintingPages & " total pages for " & strRowHead
    'Cycle through each of the tabs (only if it is marked with an 'x')
    intPageStartCount = 0
    For j = 1 To Range(strColHead).Columns.Count
        If Range(strDataRange).Rows(I).Columns(j).Value = "x" Then
            strTabName = Range(strColHead).Rows(1).Columns(j).Value
            'Set the footer
            Application.StatusBar = "Building the page footer for " & strTabName & "..."
            Sheets(strTabName).PageSetup.CenterFooter = " Page &P+" & intPageStartCount & " of " & intTotalPrintingPages
            'Print the current sheet
            Application.StatusBar = "Printing " & strTabName & " for " & strRowHead & "..."
            Sheets(strTabName).PrintOut Copies:=1, Collate:=True
            'Bump up the start value for page numbering
            For Each pb In Sheets(strTabName).HPageBreaks
                If pb.Extent = xlPageBreakPartial Then
                    intPageStartCount = intPageStartCount + 1          'add one sheet to the count for each page break
                End If
            Next
            intPageStartCount = intPageStartCount + 1                  'each sheet will print 1 more page than there are page breaks
        End If
    Next j
Next I
'Put the OutlookSoft CurrentView toolbar back to where the user had it.
Application.StatusBar = "Resetting the CurrentView toolbar"
Application.CommandBars("OutlookSoft CPM CurrentView").Position = intOSBarStartPosit
Application.CommandBars("OutlookSoft CPM CurrentView").Visible = blnOSBarStartVis
'Alert the user that the process is complete
Application.StatusBar = "Processing complete...notifing user"
dteEndTime = Time
intRunTimeSeconds = DateDiff("s", dteStartTime, dteEndTime)
intRunTimeMinutes = intRunTimeSeconds \ 60
If intRunTimeMinutes > 0 Then
    intRunTimeSeconds = intRunTimeSeconds Mod (intRunTimeMinutes * 60)
End If
For k = 1 To 3
    Beep
Next k
Application.DisplayStatusBar = blnOldStatusBar
MsgBox "The report generation process is complete." & Chr(10) & _
    "Total retreival and printing time:" & Chr(10) & _
    "    Minutes: " & intRunTimeMinutes & Chr(10) & _
    "    Seconds: " & intRunTimeSeconds, vbOKOnly + vbInformation, "Process Complete"
End Sub

Sub cmdRun_Click()
Dim strColHead As String, strRowHead As String, strDataRange As String
Dim I As Integer, j As Integer, k As Integer
Dim blnOldStatusBar As Boolean, blnOSBarStartVis As Integer, intOSBarStartPosit As Integer
Dim strPL As String, strTabName As String
Dim intTotalPrintingPages As Integer, intPageCountStart As Integer
Dim dteStartTime As Date, dteEndTime As Date, intRunTimeSeconds As Integer, intRunTimeMinutes As Integer 'Record the start time
For I = 1 To Range(strRowHead).Rows.Count 'Change the currentview P&L
    Application.StatusBar = "Changing the CurrentView..."
    strPL = Range(strRowHead).Rows(I).Columns(1).Value
    ChangeCurrentView "P_L", strPL 'Refresh and Expand
    'Application.Calculation = xlCalculationManual 'temporarily turn off Excel's automatic calculation
    Application.Run "MNU_eTOOLS_EXPAND"
    'Application.Calculation = xlCalculationAutomatic 'turn the automatic calculation back on
    Application.Run "MNU_eTOOLS_REFRESH"
    Application.CalculateFullRebuild 'Get the total number of pages to be printed for the selected P&L
    Application.StatusBar = "Counting pages to be printed for this P&L..."
    intTotalPrintingPages = 0
    For j = 1 To Range(strColHead).Columns.Count
        If Range(strDataRange).Rows(I).Columns(j).Value = "x" Then strTabName = Range(strColHead).Rows(1).Columns(j).Value
            For Each pb In Sheets(strTabName).HPageBreaks
                If pb.Extent = xlPageBreakPartial Then intTotalPrintingPages = intTotalPrintingPages + 1 'add one sheet to the count for each page break
                End If
            Next
        intTotalPrintingPages = intTotalPrintingPages + 1 'each sheet will print 1 more page than there are page breaks
        End If
    Next j
    Application.StatusBar = intTotalPrintingPages & " total pages for " & strRowHead 'Cycle through each of the tabs (only if it is marked with an 'x')
    intPageStartCount = 0
-> Displays the line as programming code is not workin!
Edited by: Sam Patel on Aug 27, 2009 12:45 PM
Edited by: Sam Patel on Aug 27, 2009 12:45 PM
Edited by: Sam Patel on Aug 27, 2009 12:46 PM
Edited by: Sam Patel on Aug 27, 2009 12:47 PM
Edited by: Sam Patel on Aug 27, 2009 12:47 PM
Edited by: Sam Patel on Aug 27, 2009 12:49 PM
Edited by: Sam Patel on Aug 27, 2009 12:49 PM
Edited by: Sam Patel on Aug 27, 2009 12:50 PM

Similar Messages

  • How to set task type of a task in MS Project using excel vba code.

    Hello Gurus,
    I am generating MS Project files(.mpp) files form excel data. An excel macro in the excel file will read the excel data and will generate the .mpp file. It is working fine. now i want to set the task type of all the tasks to "Fixed work" from excel
    vba code.
    How to use the property PjTaskFixedType in setting the task type??
    refer below links
    http://msdn.microsoft.com/en-us/library/office/ff861713.aspx
    http://msdn.microsoft.com/en-us/library/office/ff864157.aspx
    Can someone help me in setting task type property from excel vba.
    I have attached my sample code used to generate the mpp file. It is not the complete code but you will get an idea from it.
    Set pjApp = CreateObject("MSProject.Application")
    pjApp.FileNew
    Set newproj = pjApp.ActiveProject
    newproj.Tasks.Add (task_name)
    newproj.Tasks(mpp_row_number).Start = task_start_date
    newproj.Tasks(mpp_row_number).Finish = task_end_date
    newproj.Tasks(mpp_row_number).ResourceNames = resource_name
    pjApp.FileSaveAs mpp_file_save_path & mpp_file_name & ".mpp"
    pjApp.FileClose
    pjApp.Quit
    Any help is appreciated.

    Hi Syamku,
    A simple example that sets the task type:
    ActiveProject.Tasks(2).Type = pjFixedDuration
    ActiveProject.Tasks(3).Type = pjFixedUnits
    ActiveProject.Tasks(4).Type = pjFixedWork
    http://msdn.microsoft.com/en-us/library/office/ff860469(v=office.15).aspx
    Hope this helps

  • My iPod touch is permanently disabled and it says to connect my iPod to my iTunes yet when I do that, it tells me to type in pass code even though it's still disabled. i cant go to DFU mode cause my home button is broken PLEASE HELP ME GOD I MISS MY IPOD

    My iPod touch is permanently disabled and it says to connect my iPod to my iTunes yet when I do that, it tells me to type in pass code even though it's still disabled. i cant go to DFU mode cause my home button is broken PLEASE HELP ME GOD I MISS MY IPOD TOUCH PLEASE :'((

    i cant do that sir ,my ipod touch 4g keeps rebooting and rebooting all over again until the battery is empty HELP GUYS PLEASE

  • Adobe Content Viewer problem. Please Help me...

    Hi after updating online. Folio, I tried to update the trial version of the publication on my iPad but I get this message: "the issue isavailable for dowload, but new signing for an application version. Update the application from the App Store. "I went to the AppStore and was not any update of the Content Viewer ... I deleted the version on my iPad I downloaded again ... but without success gives me the same problem ... Please help me ... how can I do??
    thanks

    Hello Bob and thank you for responding so quickly ... Would you be kind enough to send me the link where I can download older versions of Folio Builder and Folio Producers Panel tools for InDesign 5.5. I'm looking for them but I can not find them.
    Thank you for your patience.
    Il giorno 21/gen/2012, alle ore 16:18, Bob Levine ha scritto:
    Re: Adobe Content Viewer problem. Please Help me...
    created by Bob Levine in Digital Publishing Suite - View the full discussion
    As discussed in numerous threads already, the new viewer has not been approved by Apple yet.
    If you’re a pro or enterprise customer you can create your own viewer app. If not, you’ll have to wait or roll back to the older tools.
    Bob
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4155907#4155907
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4155907#4155907. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Have bought service below to convert pdf files into word excel, Have followed instructions but cannot convert file. Please help.  AD003225761BR Produtos pedidos: Qtd. produto 1 Adobe ExportPDF, Annual (Outro,Todos os idiomas disponíveis) My email: toledo-

    Have bought service below to convert pdf files into word excel, Have followed instructions but cannot convert file. Please help.
    AD003225761BR Produtos pedidos: Qtd. produto 1 Adobe ExportPDF, Annual (Outro,Todos os idiomas disponíveis) My email: [email protected]

    Hi Jwalter,
    Thank you for posting on the Adobe forums,Please let us know what is the exact issue.
    Also, if you want help on how to use the service, kindly try the link below.
    Adobe ExportPDF FAQ
    http://tv.adobe.com/watch/insights-on-acrobat-solutions/introduction-to-adobe-exportpdf/
    Thanks,
    Vikrantt Singh

  • I have photoshop elements 11 installed on my desktop pc, I want to install it on my laptop as well, I read that it can be installed on two systems, but I get a message taht the redemption code has been used by another ID, please help

    I have photoshop elements 11 installed on my desktop pc, I want to install it on my laptop as well, I read that it can be installed on two systems, but I get a message taht the redemption code has been used by another ID, please help

    A redemption code can only be redeemed once.  It is used to acquire a serial number. The serial number is what you need to activate the installed software.  If you did not keep the serial number when you first installed, you might still be able to find it in your Adobe account online if you registered the software.

  • HT5631 i want to change my visa card number please help me

    i want to change my visa card number please help me
    please please
    Thank you
    Nawaz
    00971555917014

    The following link gives instructions for changing your iTunes payment method: http://support.apple.com/kb/ht1918

  • Hi as iam changing the ical message allert date to daybefore automatically it is changing to on the date please help me, hi as iam changing the ical message allert date to daybefore automatically it is changing to on the date please help me

    hi,
    As iam changing the ical message allert date to "daybefore" automatically it is changing to "on the date"   
    please help me,

    You could simplify the decode(... into to_char(sysdate + 1,'d')
    select sysdate + level input_date,
           TRIM(TO_CHAR(SYSDATE + level,'DAY')) the_day,
           DECODE(TRIM(TO_CHAR(SYSDATE + level,'DAY')),
                  'SATURDAY',1,
                  'SUNDAY',2,
                  'MONDAY',3,
                  'TUESDAY',4,
                  'WEDNESDAY',5,
                  'THURSDAY',6,
                  'FRIDAY',7
                 ) daynumber,
           to_char(sysdate + level + 1,'d') alternative
      from dual
    INPUT_DATE
    THE_DAY
    DAYNUMBER
    ALTERNATIVE
    10/14/2013
    MONDAY
    3
    3
    10/15/2013
    TUESDAY
    4
    4
    10/16/2013
    WEDNESDAY
    5
    5
    10/17/2013
    THURSDAY
    6
    6
    10/18/2013
    FRIDAY
    7
    7
    10/19/2013
    SATURDAY
    1
    1
    10/20/2013
    SUNDAY
    2
    2
    10/21/2013
    MONDAY
    3
    3
    10/22/2013
    TUESDAY
    4
    4
    10/23/2013
    WEDNESDAY
    5
    5
    10/24/2013
    THURSDAY
    6
    6
    10/25/2013
    FRIDAY
    7
    7
    10/26/2013
    SATURDAY
    1
    1
    10/27/2013
    SUNDAY
    2
    2
    10/28/2013
    MONDAY
    3
    3
    Regards
    Etbin

  • VBA Macro to Set Current View

    Does anybody know what command I could use in VBA to change the Current View in Excel for BPC 7M?
    Edited to add:
    I'm aware of the MNU_eTOOLS_MEMBERSELECTOR_x macro.  What I'm looking for is code to change the current view systematically without going through the member selector.
    Edited by: Will Leonard on Feb 22, 2010 1:26 PM

    Hi,
    Whenever I would like to change the current view via VBA, I use the methods which are released by opening a custom menu. However in most of the cases you dont want your end user to open a custom menu, but you would like to have the methods. Therefore I always do the following to simulate a custom menu (steps 1 to 4 can also be performed by opening a custom menu template and delete the unnessecary data).
    1) Create a new workbook and add the three new sheets
    2) Name the sheets, EV__RESULT,EV__MENUSTYLE and EV__DEFAULT
    3) In the sheet EV__DEFAULT type %DEFAULT% in range("A3")
    4) In the same sheet enter on row 4 the following items accross the columns:
    -%MenuItem%
    - Level
    - Action
    - P1
    - P2
    - P3
    - P4
    - CVOverride
    - NomalScreen
    5) Open the VBA editor and under thisworkbook module enter the following code:
    Private Sub Workbook_Open()
    Application.Run "MNU_ETOOLS_PSMANAGER_COMPILE"
    End Sub
    This code will compile the custom menu and will release all methods within it
    6) To change the current view enter the following code
    Sub Change_CV
    Application.Run "EVMACROCALL", "EVGOTOHOMESHEET", "", "", "", "", "<Your dimension>=<Your ID>", ""
    End sub
    Replace <Your dimension> with the dimension for which you would like to change the current view
    Replace <Your ID> with the member id code
    7) Hide the three sheet (EV__XXX).
    8) Close the file.
    9) Re-open the file and run the macro Change_CV and see if the CV has changed.
    You will now be able to change the current view via VBA. Only downside is that whenever the document is closed the methods will not be available anymore.
    BTW you can call any MNU command (e.g MNU_ETOOLS_REFRESH) and Custom menu function. For more information on the custom menu function see the help function and search for "Using custom menu functions". Refer to the CVoverride for an example on how to change the Current view between applications etc.
    HTH,
    Peter
    Edited by: d. G. PETER on Jun 4, 2010 4:23 PM

  • Running Excel VBA code developed in Office 2010 under office 2013

    I have developed a large application successfully under Excel 2010 and I have a 30 day trial of office 2013. My applications will not run. However if I take a piece of code from the application and open a new spreadsheet under 2013 and place it in a sub
    and then run it ...works fine. So code that runs perfectly in an office 2010 environment will not run in the 2013 environment. I have changed the macro security settings to the most liberal and set the "trust VBA object model" option...still won't
    work. I know its not the code because I can insert it in a new sheet and run it. PLEASE HELP 

    Hello Roderick,
    It is not clear whether the code is working or not...+
    > However if I take a piece of code from the application and open a new spreadsheet under 2013 and place it in a sub and then run it ...works fine. So code that runs perfectly in an office 2010 environment will not run in the 2013 environment.
    I see the following statements:
    > and then run it ...works fine
    and then you wrote the opposite:
    > will not run in the 2013 environment
    Can you run the code under the debugger? Does it work in Office 2013?
    It looks like some of your event handlers are not fired. Am I right?

  • Download Data From Excel - VBA Code to SAP Using BDC

    Hi ,
    I am Sudhir Dure, working with Satyam Computers.
    I need help on the below query:
    I have an excel file which download data from Excel to SAP using RFC function & with the help of VBA interface.
    In this VBA code I have used BDC recording of SAP Transaction KE21N to post data into SAP.
    Now I am facing problem to find sub screen (tab page screen ) in SAP from VBA code .
    How to pass BDC Subscreen details from VBA code to SAP using below code?
    BDCTABLE.Rows.Add
    BDCTABLE.Cell(J, "PROGRAM") = PROGRAMNAME
    BDCTABLE.Cell(J, "DYNPRO") = "0200"
    BDCTABLE.Cell(J, "DYNBEGIN") = "X"
    BDCTABLE.Cell(J, "FNAM") = "BDC_OKCODE"
    BDCTABLE.Cell(J, "FVAL") = "=NEXT"
    Thanks,
    Sudhir Dure
    9972097464

    can anyone tell me how to get the PurchaseOrder number and item quantity from the Salesorder...? what are the fields here as given below..??
    For Each oItem In oSalesOrder.items
    wsTemplate.Range(cols(3) & Indexv).Value = oItem.material.material
    'wsTemplate.Range(cols(4) & Indexv).Value = ' I need item quantity here ????
    wsTemplate.Range(cols(1) & Indexv).Value = sapSoNumber
    wsTemplate.Range(cols(2) & Indexv).Value = ' I need purchase order number here>???
    Indexv = (Indexv + 1)
    Next
    reply fast. please .. thanks

  • Error Handling when excel vba code does not find the file

    Hi Below is my code:
    file1 = Dir("Q:\Budget\Historical Budgets\" & new_dept_folder & "\*.xls*")
    col = 2
    col_new = 3
    Application.DisplayAlerts = False
    While (file1 <> "")
            filename = Left$(file1, 6)
            ' Open the newly selected workbook
            Set wb = Workbooks.Open("Q:\Budget\Historical Budgets\" & new_dept_folder & "\" & file1)
            udds = filename & " - " & wb.Sheets("Budget").Range("J1").Value
            ThisWorkbook.Sheets(1).Cells(1, col).Value = udds
            For x = LBound(data_new) To UBound(data_new)
                wb.Sheets("Budget").Select
                Range(data_new(x)).Select
                Selection.Copy
                ThisWorkbook.Sheets(1).Cells(x + 5, col_new).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
            Next x
             ' Close the current workbook
            wb.Close SaveChanges:=False
            On Error GoTo Errhandler
            Set wb_old = Workbooks.Open("Q:\Budget\Historical Budgets\" & old_dept_folder & "\" & file1)  
    <--- Need Error handling on this line (i.e. if I get error here)
            For x = LBound(data) To UBound(data)
                wb_old.Sheets("Budget").Select
                Range(data(x)).Select
                Selection.Copy
                ThisWorkbook.Sheets(1).Cells(x + 5, col).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,   SkipBlanks:=False, Transpose:=False
            Next x
            Application.CutCopyMode = False
            ' Close the current workbook
            On Error Resume Next
            wb_old.Close SaveChanges:=False
    Errhandler:
            For x = LBound(data) To UBound(data)
            ThisWorkbook.Sheets(1).Cells(x + 5, col).Value = 0
            Next x
            ' Select the next file in the dir array
            file1 = Dir
            col = col + 5
            col_new = col_new + 5
    Wend
    Everytime I run the code the errhandler which I don't need. Could you please help me on this.
    Regards, Hitesh

    Hi,
    You could check whether the file is exist, then open it.
    If Dir(path)<>”” Then
    There are three On Error Statements, On Error GoTo <line>, On Error Resume Next and On Error GoTo 0.
    More information, please refer to:
    # How to Use "On Error" to Handle Errors in a Macro
    https://support.microsoft.com/en-us/kb/141571?wa=wsignin1.0
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Excel vba code help

    hello guys,
    I am new in writing vba codes. Each of the rows in range"N:Q" Should cut and pated in empty space of range "A:D"whenever it was being selected. My boss asked me define a key . So instead of cutting and pasting each row every time, just
    by pushing one key ,it can get done.
    N                                      O                             P      
                                         Q
    21-JUL-14                       0.00                        $ 61                      
                    $ 0.00
    21-JUL-14                         0.00                       $42                      
                     $ 0.00
    this data should get cut and paste as needed to available empty space in :
    A B C D
    21-JUL-14                       0.00                        $ 61                      
                    $ 0.00
    Here is my code but it does not work :(
    Sub MACRO1()
    Sheets("OPERATING").Select
    Range("A5:C5").Select
    Selection.Copy
    Sheets("OPERATING").Select
    ActiveSheet.Paste
    ANY HELP IS APPRECIATED!
    Thanks

    Hi,
    You are selecting the target instead of the source. Try this:
    Sub MACRO1()
    Sheets("OPERATING").Select
    Range("N5:Q5").Select
    Selection.Copy
    Range("A1").Select
    ActiveSheet.Paste
    Application.CutCopyMode = False
    End Sub
    You don't have to select the range where the selection has to be copied to. Because the target range is the same as the source range selecting "A1" is sufficient. The last line disables the copy selection so it doesn't have the dotted line around
    after it anymore when done pasting.
    Maurice
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer. Thank You

  • For some reason my app store email is incorrect on my ipad 1 how do i change the email address? please help me as this is most frustrating. i want to use the same email address i use on my Iphone and I mac

    Please help.
    for some odd reason my app store email address on my Ipad 1 is incorrect. How do i change it?
    i would like to use the same email address i use on my I Phone and I Mac
    Please help as i find this situation most frustrating.
    many thanks
    Joao

    Do you perhaps have more than one Apple ID?  If your response is "No," are you absolutely positive?

  • I didnt konw how to make a new account for my iTues card so i did it with a diffrent email but that email doesnt exist and when i tried to make it on a real email i just sai invalid code check the code and try again and can u please help me

    please help me it is a card of 25 dollars and i dont want it to go to waist i by mistake thought you used a frake email so i made one up i thought i was going to have a new one but then it said it was going to send a verifaction to my email so then i tried to use a real email and put in the code but it just kept on saying invalid code. check the code and try again. and i dont know what to do can u please please help me it was a gift and i really dont want it to go to waist please i need help

    for #1
    Frequently asked questions about Apple ID - Apple Support
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    If you are wondering how using multiple Apple IDs relate to iCloud, see Apple IDs and iCloud.
    for #2
    Apple does not accept unsolicited ideas see Apple - Legal - Unsolicited Idea Submission Policy

Maybe you are looking for

  • New IPad resets itself in mid-call using FaceTime???

    Using my New IPad, 16gb, wi-fi  only this morning, doing FaceTime, in the middle of the call, the screen went blank, and the iPad appeared to completely reset itself; that is, the screen went completely blank and after a few seconds, the apple logo c

  • Number of registers in the document number

    Hi people! Could you tell me if there some standard transaction that give us the number of register that there are in the document number. Based on some documents, we need to know the quantity of the registers in the document, document by document. T

  • MSI GF615M-P33:Front Panel Jack headphone issues.

    When plugged in front panel can't hear people talking in videos(no matter what software I use) nor mp3 files but I can hear music alright. At the rear sound panel it works well. I got the newest Realtek HD Audio Manager driver....

  • Always backing up....

    every time I plug my touch into itunes 7.7, it does this long back up thing every time. I have the 2.0 firmware and it just seems like a real drag to have to back up everything every time. What gives? Am I doing something wrong?

  • Adobe flash player download page wont load

    i have the latest adobe flash player instaled. but when i am on facebook and try to play a game it says that i need to download the latest version but when i click on it it takes me to a blank screen. HELP