Replacement of $a_report in APEX4

Hello,
$a_report is not supported by APEX4 as far as I understood.
I have tried to implement a workaround, using dynamic actions, as it was offered in the following post:
Re: Apex 4 row highlight after $a_report but it did not work.
Our case is a bit different - we have two reports in different regions of the page:
http://apex.oracle.com/pls/apex/f?p=17029:4:132233174532296:::::
login: test
pass: testcase
The idea is - When you select a radio button in a first report, let's say for the project with priority 2, then, only projects with priority 2 should be displayed in a second report.
I have created a test case:
http://apex.oracle.com/pls/apex/f?p=4550:1:1456160338053653
workspase: csdb
login: test
pass: testcase
It is a first application in the list - "Project Tracking", page 4 - "Dynamic Action"
Could you please have a look and see why the second region does not refresh after you select a radio button?
It seems like I fail to assign a value to a proper page item (P4_PROJECT_PRIORITY)
Thank you!

Hi Sloger,
Interesting case. For an approach using dynamic actions please see the following.
I hope you don't mind, but I went in and copied your page 4 to page 5 and made a few changes on page 5 to get this working. I also removed anything on page 5 which I deemed unnecessary to get this working, to make it easier to understand.
The basic approach is as follows:
<ol>
<li>The master 'Report 1' where the user selects the priority contained the apex_item.radiogroup API call to generate the radio. I've simplified this call to just do the following:
apex_item.radiogroup(1, project_priority)So will render a radio input. The '1' means APEX will generate all the radiogroup elements in this column with a 'name' value of 'f01', and the 'project_priority' is the value of the element. That's all we need, no inline JS here as it was in page 4, the dynamic action takes care of that.</li>
<li>The 'P5_PROJECT_PRIORITY' hidden item will store the project_priority value selected in report 1.</li>
<li>The dynamic action contains the following attributes:
<ul>
<li>Event 'Change' - So that the dynamic action fires whenever the radio groups change value.</li>
<li>Selection Type 'jQuery Selector' - We need to use some jQuery here, to select all the radio elements in the project_priority column in report 1. (You cannot currently select a 'Column' which would be the most intuitive way of defining this. We want to include this capability in a future release of APEX.)</li>
<li>jQuery Selector '[name=f01]' - This is just a snippet of jQuery, that states "select all the elements on the page, with a name value of 'f01'", eg all the project_priority radios.</li>
<li>Event Scope 'Live' - As the radio inputs can be updated via PPR within report 1, via column sorting and pagination, we need to specify the 'live' event scope (only available post creation in the edit page for the dynamic action). Otherwise, if 'bind' were used, the dynamic action would not fire once the report 1 has been sorted or paginated.</li>
<li>True Action 1 'Set Value' - This sets the page value of the hidden page item 'P5_PROJECT_PRIORITY' with the selected value from the project_priority column in report 1. This uses a 'Set Type' of 'JavaScript Expression' with a value of '$v(this.triggeringElement)'. This snippet just gets the value of the element that triggered the change event (eg the specific project_priority radio).</li>
<li>True Action 2 'Execute PL/SQL Code' - This sets the 'P5_PROJECT_PRIORITY' value in session state. Note: If you were using an interactive report for the report 2, you would not need this step, as you can define the 'Page Items to Submit' in the 'Advanced' attributes of the 'Report Attributes' which means that when the report is refreshed, the items specified will be saved in session state. For details on how to do this, please see step 4 in this blog <a target="_blank" href="http://anthonyrayner.blogspot.com/2010/07/report-filtering-with-apex-40-dynamic.html">post</a>.</li>
<li>True Action 3 'Refresh' - This refreshes the report, as you had defined already.</li>
</ul></li>
</ol>
This approach does have the consequence that 2 Ajax calls are made to achieve this, one in 'True Action 2' to set the value in session state, then another in 'True Action 3' to refresh the report. As stated, if you were using interactive reports for report 2, you could avoid making 2 calls by specifying the 'Page Items to Submit' value as described. We are also looking to add the 'Page Items to Submit' attribute to classic report regions (and others) in the future, to avoid this type of additional call.
I don't think I've missed anything, let me know if you have any further questions.
Regards,
Anthony.

Similar Messages

  • Problem in Identifying user on a Table Trigger refered over db link

    We have two databases running on different machines.
    Both databases referring some objects of otherdatabse over dblink.
    One table on DB1 has a trigger as mentined below to log which user made the modification on the table.
    CREATE OR REPLACE TRIGGER "A_REPORTS"
    AFTER UPDATE ON AVM_REPORTS
    REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW
    declare
    BEGIN
    INSERT INTO AUDIT_TRAIL_REPORT (USER_NAME, AUDIT_DATE,
    APPLICATION, TABLE_NAME,
    DML_TYPE,OLD_VALUE, NEW_VALUE)
    VALUES(USER,SYSDATE,'SUS','A_REPORTS','UPDATE',
    :old.REPORT_PARAMETERS,:new.REPORT_PARAMETERS);
    END;
    When a user make insert on this table from DB2.
    The user name is logged as the user specified in the dblink not the actual user who made the transaction.
    why this happens, how can solve the problem?

    If you specify a user name & passord in the database link definition, all connections that use that database link will use that single user account and password. As far as the target database is concerned, everything happens as that single user.
    If all the users in DB1 exist in DB2, you can create a database link specifying that the local database credentials are used to connect to the remote database.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Intermittent Bug - htmldb_Get clobbers DOM body element - Apex4

    Hello,
    We recently started the process of upgrading to Apex4 and have had an issue with a call to htmldb_Get clobbering the DOM such that the body tag is emptied and thus nothing is rendered in the browser. But before jumping in too deep let me say this problem has been extremely hard to debug because 1) it is intermittent 2) it only happens in Firefox (3.5.X - 3.6.X) on Windows Vista and 3) turning on some debugging tools (like Fiddler) make the problem go away all together.
    How to reproduce:
    Go here:
    http://qa.surveyorhealth.com/meds/f?p=102:1:0
    On this page you will find a link to page 2
    On page2 you will find a link to page 1
    With enough patience, if you click on the two links (jumping back and forth between the pages) you will eventually reach a blank page. I've had to do it upward of 10 minutes before. Please note this does not only happen on MY Vista machine, but three other machines in separate locations, so I'm sure it's not just my browser. Once you get the blank screen if you view source you will see that indeed there is content between the body tags. And, if you have firebug installed, if you view the firebug console you will see that two ajax calls were successfully made (these are calls to htmldb_Get) and if you look at the DOM firebug will report that there is no content in the body tags.
    If you view source you will see two on demand application processes are called. One gets an application item's value and the other is used to set an application item's value (this code I believe was lifted from Carl here in the forums). They are defined like thus:
    returnItem:
    begin
    htp.prn(v(v('RETURNITEM')));
    end;
    returnNothing
    begin
    htp.prn(1);
    end;
    There is a third application process defined at "on load before header". It simply does this:
    :AI_PAGE_REQUESTED := 'YES';
    There are no other application items, application processes, page processes, page items or pages defined in this application. The javascript that calls htmldb_Get can all be seen if you do a view source on either page, they have the same javascript on them.
    This is the most stripped down app I could make that exhibits the problem. It does seem that the stripped down version results in a blank page less often than our actual application. So, in case you run out of patience clicking on those links, let me also give you a link to our application that does it more often, but still intermittent.
    http://qa.surveyorhealth.com/meds/f?p=500:4003:0::NO::::
    Once you visit that link about half way down the page you'll see a few links, one of them will say "Heath Ledger". Click on that link.
    You will now see some accordion type tabs. What you want to do is click the one that says "Example - Celebrity Drug Cocktail" then once that page loads click back to "Side Effects Risk Map". If you jump between these two tabs enough times you'll hit the blank page. Of course the page and application have many more processes, html and javascript in it but it shares the three application processes discussed above with the simplified application.
    Again this only shows up on Vista Firefox 3.5.X-3.6.X so please don't waste your time trying to replicate on a different environment. Also this code never has this problem in our environment that runs on Apex 3.2.0.00.27
    Let me know if you think there is any other information I could provide that would help in debugging. I could also email/ftp an export of the simplified application if it would help.

    Hi Patrick,
    Thanks for the feedback. I replaced page number 0 with $v('pFlowStepId') in both functions but that hasn't fixed the issue. I was missing an application item which was why you were seeing that error about RETURNITEM not in application 102. I've added the item and now the ajax queries are returning correctly (which actually seems to cause the blank page to show up more frequently).
    As for window.location = window.location. I can explain what it does, but for simplicity I just removed it and replaced it with an alert to show that it is not the root of the problem.
    Generally what I'm trying to do is force a page refresh if a user has used the back button. How do I know if they used the back button? If the back button is used then the page is not re-fetched from apex, instead it is pulled out of the browser's cache. I check for this situation by having every page run a pre header processes that sets AI_PAGE_REQUESTED := 'YES'. So the first thing the javascript does on the page is check what the value of that item is. If it is 'YES' then we know the page is being processed with a new request to apex and we're getting the latest content. If it is 'NO' then we know that the page has been pulled from the browser cache and we force the browser to refresh with window.location = window.location. You'll also see in the javascript code if AI_PAGE_REQUESTED != 'YES' then we set its value to NO (again using ajax). In summary it's just a way to force page refreshes when a page was not loaded with a fresh call to apex. And like I said, it worked fine in apex 3.X and works fine in 4.X outside of Firefox 3.6-3.8 in vista... I'm open to alternative implementations if it gets me away from these blank screens.
    I've included a screen shot of the blank screen and the results of the two ajax calls:
    http://qa.surveyorhealth.com/i/screens/blank-screen.gif
    Thanks again for your help Patrick.
    Edited by: Shawn Kessler on Sep 8, 2010 10:21 AM

  • Replacing hyphen with line break

    Hi,
    In my application I want to replace the hyphen with line break
    . I am using APEX4.0
    I am using the following javascript code:
    <html>
    <script type="text/javascript">
    function test()
    var visitorName = "<br/>";
    var myOldString = "&P2_SI.";
    var myNewString = myOldString.replace(/-/g, visitorName);
    </script>
    </html>
    I have no clue how to get it executed and make the javascript work.... can someone help?

    My application is a online test.. One of the question in Page 3 is to re-arrange the sentence that is in the form of bullets. In the text area, as there are no formatting the candidate just gives hyphen - and enters all the sentences.. so in the DB the values are saved in the single line and when we evaluate the paper, it looks odd. So we want to replace the hyphen with the line break
    , so that when evaluating the paper, the format looks good, enter of one sentence there will be a line break.
    After the candidate is done with the Page 3, clickig next button, saves the values to the DB, and the page (branching) goes to Page 4 and clicking the Previous button takes the candidate to Page 2 (branching).
    The Dynamic Action is created in the following order
    -Advanced
    -action name
    -Event ->Change
    Selection Type->Item(s)
    Item(s)->P3_S2I
    Condition-> No condition
    -Action->Execute Javscriot code
    Disabled Fire on Page Load (as the code should execure only after the candidate type something in P3_S2I text area or after the Next button is clicked.
    Code:
    <script type="text/javascript">
    var special = "<br/>";
    var myOldString = "&P3_S2I.";
    var myNewString = myOldString.replace(/-/g, special);
    document.write("<br /> " + myNewString);
    </script>
    -Selection Type -> Item(s)
    Item - P3_S2I
    -Click Create
    This time I was taken to the next page.... but at the DB level hyphen is not replaced by the line break

  • Error while creating a Characteristic Variable with Replacement Path

    Hi all,
        I am trying to create the Characteristic Variable ZVLOWDT (Low Date') with Replacement Path on characteristic ZSTARTDT (Start Date) and it gives the error 'Source to replace 'Low Date' is not defined.
       I have created a User Entry Variable VAR_DATE (Start Date) with interval like '01/01/2009 - 01/15/2009'  and  Customer Exit variable ZVCPDAY (does some calculation based on the input of VAR_DATE) on the same ZSTARTDT characteristic. I want to get the 01/01/2009 (lower range date of the selection) into this Characteristic Variable ZVLOWDT. We are in BI 7.0 and the following are it's properties:
    General Tab:
    Description: Low Date
    Technical Name: ZVLOWDT
    Type of Variable: Characteristic Value
    Processing by: Replacement Path
    Reference Characteristic: ZSTARTDT Start Date
    Details Tab:
    Variable Represents : Single value
    Variable is: Mandatory
    Variable is Ready for Input : unchecked
    Replacement Path Tab: Replacement Rule
    Replace Variable with : Variable
    Variable : VAR_DATE
    Replace with : KEY
    Why I am getting this error, PLEASE ?
    Thanks,
    Venkat.

    Hi Khaja,
       We could derive a Variable value from another Variable with out Customer Exit. There is a white paper.
    First have the User Entry Variable (ZV_X) and it accepts the date range like '01/01/2009 - 01/31/2009'. Next create the Characteristic variable (ZV_Y) of Replacement Path for which source variable will be ZV_X and we could get the 'FROM Date' (01/01/2009) from the selection (ZV_X) into it (ZV_Y).
    While creating the Characteristic variable (ZV_Y) of Replacement Path, I didn't find my newly created ZV_X variable in the list of available variables under 'Variable' header in 'Replacement Path' tab and it is causing the error  'Source to replace variable ZV_Y is not defined'. How could I create the Characteristic variable of Replacement Path, PLEASE ?
    Thanks,
    Venkat.

  • HT1423 I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

  • Time machine won't back up since I have restored from time machine following hard drive replacement.  I am being told there is not enough space, however the back up is less than the hard drive size

    We recently had the hard drive replaced on our Mac as part of Apple's replacement programme.  Prior to sending it off for repair we did a final Time Machine back up, which was completed successfully.  SInce getting the computer back we restored everything from the backup disk using Time Machine, which all worked fine, however now we are having problems with it completing regular backups.  We receive a message each time telling up that the backup disk doesn't have enough space on it.  It is telling us that it needs in the region of 370gb and only has around 30gb available.  The computer hard drive is in the region of 350gb and the hard drive is a 400gb one.  It is almost as if it is not recognising that the data already on the disk is the back up of this computer and is trying to complete a completely separate back up as opposed to just updating the backup already on the disk.
    Has anyone else got any experience of this and therefore could give me some hints on what to do.  I am reluctant to wipe the backup drive and start again, however I would prefer not to have to buy another hard drive if I can avoid it as this one is technically big enough
    I look forward to getting some responses

    Hi, I never use TM myself.
    Have you looked through Pondini's extensive TM help site?
    http://Pondini.org/TM/FAQ.html
    http://pondini.org/TM/Troubleshooting.html
    Can't imaging something not being covered there.
    PS. It's generally recommended a TM drive be at least twice the size of your main drive.

  • I had an Intel-iMac fried by lightening. UPS, surge protectors but it happened as I was reaching to unplug.  Cold now.  Could it just be the power supply?  Can I replace that myself?

    This is the full question since I couldn't get it all in the box. 
    I have some complex questions regarding an iMac, a Time-Machine backup, and iTunes on an iPod.
    I live about halfway up an extinct volcano about 12 miles north of San Jose Costa Rica.  Some months ago, we had a thunderstorm and as I reached to unplug my computers lightening struck about 50 meters from my house.  I had an iMac with a 3-Tb external backup drive, a PC laptop and a laser printer on the same power strip.  There was a definite surge and the light brighten and then power was lost for a few minutes.
    When power was restored, the PC and the laser printer seemed to work fine but the iMac was cold.
    First questions:  Is is possible that the power supply was fried and not other essential parts?  Would it be worthwhile to replace the power supply?  Can I, with limited experience and tools do it or need I take it to a technician?  My concern is that if the hard-drive is good, there is personal information on it that I don't want to risk.
    Next question:  Do I need to replace the hard-drive before taking it for service?  How hard is that, can I do it? I have seen videos of the drive replacement on-line.
    Those are my iMac questions, now the questions about backup restoration.
    If there is a saving grace with this it is that the Time-Machine backup seems fine although I have only accessed the data through Finder.  I replaced the iMac with a Macbook Air with significantly less mass storage and I can't just move files to the Macbook.  My problem is that I have an iTunes library of some 10,000 songs on the backup and until recently on a 160 Gb iPod which was old and it crashed.  I have replaced the iPod but have not tried to restore the iTunes library to it because of my confusion about how to do that.  Can anyone tell me how I might do that or give me any insight into the process?
    Thanks for any help you can give.

    Is is possible that the power supply was fried and not other essential parts?  Would it be worthwhile to replace the power supply?  Can I, with limited experience and tools do it or need I take it to a technician?  My concern is that if the hard-drive is good, there is personal information on it that I don't want to risk
    Quite possible, but working on iMacs is not easy, & PSU might be prohibitive.
    Hopefully the Drive might have info on it, but even pulling that out can be a chore.
    If you don't know the model, find the Serial# & use it on one of these sites, but don't post the Serial# here...
    http://www.chipmunk.nl/klantenservice/applemodel.html
    http://www.appleserialnumberinfo.com/Desktop/index.php
    How to find the serial number of your Apple hardware product...
    http://support.apple.com/kb/HT1349
    I have replaced the iPod but have not tried to restore the iTunes library to it because of my confusion about how to do that.  Can anyone tell me how I might do that or give me any insight into the process?
    I'd get an external drive & restore the whole works to it, then boot from the External drive.

  • I am going to get a replacement for my iphone 5C, for data connection issues. Can I get an 5S, instead of antother 5C as a replacement?

    Hello, I have been having issues with my iPhone 5C for about a month now. I have unlimited everything, including data, & so randomly, starting about 2 weeks ago, my data basically does not work for any apps, besides like iMessage & Safari. So like if I have full LTE signal, I can try to open the Instagram app, and it will tell me "no internet connection", & it tells me that with ANY app, besides iMessage & Safari. Which is super frustrating, especially when I try to use like Maps or something & it jut does not load, & tells me that "there is not an internet connection", so I have to use apps & stuff only on wifi, in order for them to work. I went to the Sprint store, and had them try and update the data profile, reset data network, soft reset, etc (they basically did everything that I did), & they could NOT figure out what was wrong with my phone. So, they looked into my warranty information, and told me to take my phone to the Apple Store, and just get a replacement & that it would cost me only $50, since it is still covered under warranty. I am not up for an upgrade until April of 2016, & as far as I know, when it comes to replacements, Apple will either give me a new/refurbished iPhone 5C as a replacement. I don't really mind having to pay a little extra if I have to, in order to get a 5S , & I also don't care if the 5S would be either new or refurbished. So, my question is, could I maybe get a 5S as a replacement, instead of another 5C?
    Green iPhone 5C 8GB Sprint
    Message was edited by: jalyn_taylor
    Message was edited by: jalyn_taylor

    No.
    As provided,  you will get the exact same model, storage, color, etc

  • BW 3.5 - Issue with formula variable with replacement path

    Dear experts,
    I'm facing an issue with formula variable with replacement path.
    Just to clarify, I know replacement paths is raising a lot of questions but I've been using this functionnality extensively in the past, both in 7.0 and 3.5, so I'm not looking for basic information about how to use it.
    I'm trying to setup a simple report that would show total values per plant of Purchase Order < 100 €
    To do so I've setup a calculated key figure as follow:
    VAR1 * ("PO value" < 100 ) * "PO value"
    VAR1 is a formula variable with replacement path on 'purchase order' and value attribute 'constant =1'.
    (The report has to show values summarized by plant but should not show the detail PO by PO, so I'm not looking at a solution based on condition)
    The report as characteristic "plant" in rows and my CKF in columns.
    Now let's take an example. I have 3 POs in Plant 1:
    PO1 -> 150€
    PO2 -> 90€
    PO3 -> 80€
    Because of the variable with replacement path, the result in my query should be:
    plant1 = 170 (even though characteristic "purchase order" is not in my rows, system should evaluate PO one by one and return values only for those two that are below 100).
    But the result coming is 320, which is wrong.
    I've done the same report on many other 3.5 systems and it worked perfectly, and I am not able to get proper support from SAP OSS who keep saying that this functionnality is not ready in 3.5 (although I've provided screenshot of this working on another 3.5 system!!! how frustrating...)
    They have also pointed to problems of Before and After aggregation but that has absolutely no impact. Once again, the scenario is working perfectly on other 3.5 systems with the same query design, so i'm sure it has nothing to do with Query Designer options.
    Would anyone have ever come to an equivalenet problem? I'm wondering whether the DB itself could not play a role in the variable with ref  characteristic 'constant =1' ...
    Any though is welcome!
    thanks

    Hi,
    The text variable is replaced when the exact date is clear for this key figure column according to the restriction.
    To achive this, please make sure that either the variable is directly restricted in the key figure selection, or that the date characteristic is in drilldown.
    Regards,
    Patricia

  • Find and replace smart quotes with straight quotes?

    I understand I can turn off smart quotes so that I can type straight quotes, but I need to replace hundreds of curly smart quotes with straight quotes, is there a feature that will let me do this? I am using FM8.
    Thanx,
    Willian

    I am using FM9....so I don't know if the same shortcuts apply, but this is what I found out last week.
    Use the Find and Replace tool:
    With smart quotes turned off and the Num Lock key turned on:
    Alt0147 will give you beginning quotation marks
    Alt0148 will give you ending quotation marks
    In the Find box use ALT0147 or ALT0148 for the beginning or ending quotes. When you click in the box and type
    one of the shortcuts the correct quote will be shown in the box.
    In the replace box type the regular straight quotes on your keyboard.
    I was thrilled that it would work!...course you do have to do them separately and be careful not to replace the curly quotes
    that you want to leave in your document.
    Hope this helps using FM8....
    ls

  • Use VBA and Excel to open Dreamweaver HTML (CS5), find and replace text, save and close

    I wish to use VBA and Excel to programmatically open numbered Dreamweaver HTML (CS5) and find and replace text in the code view of these files, save and close them.
    I have  5000 associations between Find: x0001 and Replace: y0001 in an Excel sheet.
    I have the VBA written but do not know how to open, close and save the code view of the ####.html files. Please ... and thank you...
    [email protected]

    This is actually the code view of file ####.html that I wish to find and replace programmatically where #### is a four digit number cataloguing each painting.... In 1995 I thought this was clever... maybe not so clever now :>)) Thank you for whatever you can do Rob!
    !####.jpg!
    h2. "Name####"
    Oils on acrylic foundation commercial canvas - . xx X xx (inches) Started
    Back of the Painting In Progress </p> </body> </html>
    Warmest regards,
    Phil the Forecaster, http://philtheforecaster.blogspot.ca/ and http://phils-market.blogspot.ca/

  • How to get a macbook pro replacement under warranty?

    I bought my Macbook pro 6 months ago, and it's still under warranty right now. I used some laptops of SONY VAIO & Microsoft before, and I did not experience any problems with them in the first 2 years. This year, I decided to give Macbook pro a try because I have heard many compliments about this laptop from my friends and advertisements. When I opened the box and used it in the 1st time, I noticed that the button CAPS LOCK wasn't good, and I had to press it 2-3 times to make it work. It has happened for 6 months, until now. I felt a little bit disappointed, but I still use it because I am an easy customer. But recently, whenever I turn on the SLEEP MODE for my laptop and work with my laptop later on, my laptop often experiences the PAUSE or freezing. I don't know how to describe it, but there is a round circle with rainbow colors appear on the screen and pause everything/programs is running. My laptop has never been felt out or scratch. It's just 6 months since the day I purchased the laptop. I should not experience this trouble with my laptop because I think the Macpro is better than the SONY VAIO or other laptops. I feel like I was sold a refurbished Mac, and I am really disappointed. My friend told me to bring my Mac to be fixed in Apple store, but I don't want to continue using a fixed, refurbished Mac. Can I get a replacement? If I bought it in Bestbuy, could I got replacement in Apple Store or Bestbuy store?

    Can I get a replacement?
    No - see below
    whenever I turn on the SLEEP MODE for my laptop and work with my laptop later on, my laptop often experiences the PAUSE or freezing.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    but there is a round circle with rainbow colors appear on the screen and pause everything/programs is running.
    Troubleshoot the spinning beach ball
    When I opened the box and used it in the 1st time, I noticed that the button CAPS LOCK wasn't good, and I had to press it 2-3 times to make it work. It has happened for 6 months
    You are still under warranty.  Call Apple Care. Make sure you get a case number as all repairs have an additional 90 days of warranty. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - You have the standard one year Apple warranty.
    #4 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.   You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired.

  • I have three different ipods with music on them and have had to replace our computer as it was in a fire. How can we combine the ipods into one ipod.

    We had to replace our computer due to a fire and lost many of the fiels which were on them. Many were music files for the ipods, we have thre. Also, do not have ID's and passwords to the iTunes store.
    How can we combine the information so that they are all in each one or at least compbine everything into one ipod?

    Just so you know the method suggested by Nelsonleee will cost your $29.95 USD, Yamipod is free.

  • How do I replace someone else's Mac ID with my own? Bought iPhone second hand. Previous owner re-set the phone but his ICloud account stayed on now my phone. He uses his macID on his new iPhone now?? Any ideas, as this issue is blocking my access to iTune

    How do I replace someone else's Mac ID with my own?
    Bought iPhone second hand on TradeMe.
    Previous owner re-set the phone but his ICloud account stayed on now my phone. He uses his AppleID on his new iPhone now and, understandably, does not want to give me his password. Any ideas?? Please.
    This issue is blocking my access to iTunes and any other file from my home computer. It keeps on telling me that I have to autorise my computer to pass on files, yet, it seems, for all this to happen, I need to get logged in through the phone's Apple ID. This of course is different to my one on my computer - and I have no password for it.
    This phone is not stolen!! I payed still a fair bit for it. Am still in contact with the previous owner. He doesn't know how to fix the problem either.
    Would appreciate any suggestion ????
    Thanks
    SamSings

    Settings>general>resets>erase all content and settings.
    That will put it back to its out of the box state. Set it up with your own apple Id.

Maybe you are looking for