WCEM:clicking on custom button(Excel Downlaod) giving message "An error occurred; please try again. If the error persists, please contact technical support."

Hi Expert,
I need help.
I created a custom button to download data to an excel sheet. after clicking the button I am getting message
"An error occurred; please try again. If the error persists, please contact technical support.".
I tried debugging WCEM, but it is not even reaching that point.
Your help will be highly appreciated.
here is the code.
BitContentview.XHTML
<wec:commandButton  id="bdtexcel" immediate="true" actionListener="#{cc.vch.DownloadBITData}" type="submit" value="#{i18n['invoices.ui.openitems.printSelected']}"/>
UI-repository.xml
  <ViewComponent name="BITContentView"  componentHandlerClassName="com.cpr.cprwec.app.comm.module.ebpp.ui.handler.impl.BITDetailViewVCHandler"/>
BITDetailViewVCHnadler.java
package com.cpr.cprwec.app.comm.module.ebpp.ui.handler.impl;
import com.cpr.cprwec.app.comm.module.ebpp.backendobject.interf.EbppBackend;
import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import javax.faces.context.FacesContext;
import javax.faces.context.FacesContext;
import javax.faces.event.ActionEvent;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import com.cpr.cprwec.app.comm.module.ebpp.modulemgmt.impl.EbppModuleAccessImpl;
import com.cpr.cprwec.app.comm.module.ebpp.modulemgmt.interf.EbppModuleAccess;
import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.impl.DisputeDataDTOImpl;
import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.impl.OpenItemDTOImpl;
import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.interf.DisputeDataDTO;
import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.interf.OpenItemDTO;
import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.impl.BITDataDTOImpl;
import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.interf.BITDataDTO;
import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.impl.BITDetailDTOImpl;
import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.interf.BITDetailDTO;
import com.sap.wec.app.common.module.common.attachment.businessobject.interf.Attachment;
import com.sap.wec.tc.core.backend.sp.jco.JCoConnection;
import com.sap.wec.tc.core.businessobject.BusinessObjectException;
import com.sap.wec.tc.core.common.exceptions.ApplicationBaseRuntimeException;
import com.sap.wec.tc.core.common.logging.WCFLocation;
import com.sap.wec.tc.core.common.searching.businessobject.impl.GenericSearch;
import com.sap.wec.tc.core.common.searching.businessobject.interf.GenericSearchReturnResultData;
import com.sap.wec.tc.core.common.util.GenericFactory;
import com.sap.wec.tc.core.common.util.Message;
import com.sap.wec.tc.core.common.util.MessageList;
import com.sap.wec.tc.core.common.util.table.Table;
import com.sap.wec.tc.core.common.util.table.TableRow;
import com.sap.wec.tc.core.modulemgmt.ForeignModuleAccess;
import com.sap.wec.tc.core.modulemgmt.ModuleAccess;
import com.sap.wec.tc.core.modulemgmt.exceptions.ModuleInactiveException;
import com.sap.wec.tc.core.modulemgmt.exceptions.ModuleLifecycleException;
import com.sap.wec.tc.core.runtime.WecFrameworkRuntime;
import com.sap.wec.tc.core.runtime.WecSession;
import com.sap.wec.tc.core.runtime.jsf.WecFrameworkRuntimeJSF;
import com.sap.wec.tc.core.runtime.jsf.composition.PageManagerBean;
import com.sap.wec.tc.core.runtime.navigation.NavigationCondition;
import com.sap.wec.tc.core.ui.composition.menu.MenuManager;
import com.sap.wec.tc.core.ui.composition.menu.MenuMetadataException;
import com.sap.wec.tc.core.ui.vc.BuildTime;
import com.sap.wec.tc.core.ui.vc.NavigationParameterBinding;
import com.sap.wec.tc.core.ui.vc.RequestParameterBinding;
import com.sap.wec.tc.core.ui.vc.impl.ViewComponentHandlerBaseImpl;
import com.cpr.cprwec.app.comm.module.ebpp.businessobject.interf.BIT;
import com.cpr.cprwec.app.comm.module.ebpp.businessobject.impl.BITImpl;
public class BITDetailViewVCHandler extends
        ViewComponentHandlerBaseImpl<EbppModuleAccess> {
    protected static final WCFLocation LOCATION = WCFLocation
            .getInstance(BITDetailViewVCHandler.class.getName());
    public BITDataDTO bitDataDTO;
    public BITDetailDTO bitDetailDTO;
    public List<BITDataDTO> BITDataDTOList;
    public List<BITDetailDTO> BITDetailDTOList;
    public boolean noBITData;
    public boolean noBITDetail;
    public boolean renderPanel = true;
    public boolean isDownloadBITData;
    public boolean isDownloadBITDetail;
    public boolean downloadStarted=false;
    public boolean BITFound =false;
    public boolean isBITFound() {
        return BITFound;
    public void setDownloadStarted( boolean downloadStarted ){
        this.downloadStarted = downloadStarted;
    public boolean getDownloadStarted(){
        return this.downloadStarted;
    public void setBITFound(boolean BITFound) {
        this.BITFound = BITFound;
    public String getObjectID() {
        return objectID;
    public void setObjectID(String objectID) {
        this.objectID = objectID;
    public List<BITDataDTO> getBITDataDTOList() {
        return BITDataDTOList;
    public List<BITDetailDTO> getBITDetailDTOList() {
        return BITDetailDTOList;
    public Boolean getNoBITData() {
        return noBITData;
    public Boolean getNoBITDetail() {
        return noBITDetail;
    public Boolean getRenderPanel() {
        return renderPanel;
    private static final int DEFAULT_BUFFER_SIZE = 1024000;
    public Attachment attachmentData;
    public Attachment getAttachmentData() {
        return attachmentData;
    @RequestParameterBinding(maxLength = 1024)
    protected String objectID;
    @BuildTime
    public String processBuildTime() throws BusinessObjectException {
        BIT BIT = null;
        noBITData = noBITDetail = false;
        renderPanel = true;
        if (isLoggedIn()) {
            if ( isDownloadBITData == true ){
                this.downloadBITDataExcel();
            else {
            this.getModuleAccess().getBITBO().clearMessages();
            BIT = this.moduleAccess.getBITBO().getBITFromBackend(objectID);
            BITDataDTOList = BIT.getBITDataDTOList();
            BITDetailDTOList = BIT.getBITDetailDTOList();
            MessageList objectData = this.getModuleAccess().getBITBO()
                    .getMessageList();
            if (objectData.size() > 0) {
                noBITData = noBITDetail = true;
                renderPanel = false;
                this.addMessageList(objectData);
        return checkLoginCondition();
    private boolean isLoggedIn() {
        return checkLoginCondition() == null;
    private String checkLoginCondition() {
        NavigationCondition navCondition = getNavigationCondition("login");
        if (!navCondition.isFullfiled()) {
            navCondition.addToNavigationStack();
            return navCondition.getOutcome();
        return null;
    public String downloadBITData(){
        downloadStarted = true;
        isDownloadBITData = true;
        downloadBITDataExcel();
        return checkLoginCondition();
    public void downloadBITDataExcel() {
    //    dummyDebug("downloadBITDataExcel", BITDataDTOList.size(), "", "" );
        if (BITDataDTOList.size() > 0) {
            try {
                attachmentData = this.getModuleAccess().getDownloadBO()
                        .getBITDataExcel(BITDataDTOList);
                if (attachmentData != null) {
                    FacesContext faces = FacesContext.getCurrentInstance();
                    HttpServletResponse response = (HttpServletResponse) faces
                            .getExternalContext().getResponse();
                    response.reset();
                    response.setContentType(attachmentData
                            .getAttachmentMimeType());
                    response.setContentLength(attachmentData
                            .getAttachmentContent().length);
                    response.setHeader("Content-disposition",
                            "attachment;filename="
                                    + attachmentData.getAttachmentName());
                    response.setBufferSize(DEFAULT_BUFFER_SIZE);
                    ServletOutputStream out;
                    try {
                        out = response.getOutputStream();
                        out.write(attachmentData.getAttachmentContent());
                        out.flush();
                        faces.responseComplete();
                    } catch (IOException e) {
                        throw new ApplicationBaseRuntimeException(
                                "Problem opening file", e);
                    } finally {
                        attachmentData = null;
            } catch (BusinessObjectException e) {
                e.printStackTrace();
        isDownloadBITData = false;

Thanks Hamendra for checking the issue.
I am setting up breakpoints in WCEM, tab JAVA EE then from menu RUN->Toggle brekpoints and then debug configuration.
the breakpoints are in several places in  handler class BITDetailviewVCHandler class including method  downloadBITData.
this method I am calling from BitContentview.XHTML
<wec:commandButton  id="bdtexcel" immediate="true" actionListener="#{cc.vch.DownloadBITData}" type="submit" value="#{i18n['invoices.ui.openitems.printSelected']}"/>
When the BIT page is loading the control stops at the breakpoint.
but it is not stopping there  when i click the 'Excel Download' button.
How do I get the log file. I am very new to WCEM, please guide me.
I tried to debug the UI using Google chrome. it is giving me the following error.
POST https://<>/<>/<>/<>HomePage.jsf?wec-appid=<>MAINAPP6&wec-locale=en_US 500 (Internal Server Error)
when I expand the node
c.event.trigger:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:54
c.event.trigger:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:54
c.event.trigger:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:66
(anonymous function):<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:30
c.extend.each:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:24 c.fn.c.each:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:66 c.fn.extend.trigger:<>/<>/javax.faces.resource/<>dev/comp.theme/templates/jquery/js/commandButton.js.jsf:31
com.sap.wec.commandButton.submitForm:<>/<>/main/<>HomePage.jsf?wec-appid=<>MAINAPP6&objectID=500000233&page=D61CFFF8E75D48A1B348F315D209EFF9&wec-locale=en_US:48 onclick
Navigated to https://wsapdjd803.<>.ca:<>/<>/main/<>HomePage.jsf?wec-appid=<>MAINAPP6&wec-locale=en_US
Seems to be it is failing somewhere commandButton-related JavaScript functions
Thanks
Subassish

Similar Messages

  • Purchased LR6 upgrade, when entering SN for LR4, message " The serial number you entered is invalid. please try again. if the problem persists, contact Customer support. ".  SN entered for existing product has been checked and is correct.

    I retrieved the LR4 serial number from my Adobe account.  The installer for an upgrade to LR6 will not accept the LR4 serial number.

    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Make sure you are logged in to the Adobe site, have cookies enabled, clear your cookie cache.  If it fails to connect try using a different browser.
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • HT201209 I have itunes vouchers and each time i click redeem , I get error "we could not complete your itunes store request,  an unknown error occured 1202, try again later. I have tried this for 4 days running and get same error.

    have itunes vouchers and each time i click redeem , I get error "we could not complete your itunes store request,  an unknown error occured 1202, try again later. I have tried this for 4 days running and get same error.

    I have this same problem. It's like it is not Authorizing this Mac.
    What happens when you try to listen to a preview on the Music Store?
    Mine asks me to authorize again and gives me the error exactly as you said above.
    What happens when you try to view your account information (in Music Store, click on your account name in the top right corner)?
    Mine lets me authorize sucessfully and shows me my account information.
    I have emailed iTunes support about this and they replied with a generic answer about Deauthorizing and re-authorizing the computer.
    I even tried, to no avail, the tips here...
    http://discussions.apple.com/thread.jspa?threadID=471237&tstart=30
    If anybody reads all this and has any new info for us, please take the time to post it here!
    PowerMac G4   Mac OS X (10.4.6)  

  • I try to activate my iphone 3gs and getting this message activate request couldn't be complete .if the problem persist .please contact customer service. 3474438471

    3474438471

    All GSM iPhones require a sim card in order to activate the phone. There is no way around this fact. If you want to activate your phone, you need to get a compatible sim card from the carrier your phone is locked to if your phone is carrier locked. If not carrier locked, you can use any sim you want.

  • I'm new to iPad mini and uv I'm trying to get a movie I purchased to where I can watch it offline but when I click the option to download and watch offline it keeps giving me and error with download try again later I have a good wifi connection ??

    I'm new to iPad mini and uv I'm trying to get a movie I purchased to where I can watch it offline but when I click the option to download and watch offline it keeps giving me and error with download try again later I have a good wifi connection ??

    You have a "good WiFi connection". What does that mean exactly? Can you send and receive email and are other internet related activities working OK for you? Have you tried restarting or rebooting your iPad? Sometimes that helps. If nothing else, it's a good place to start.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Tried purchasing iTunes music. Put in my apple id and password then i was directed to a 'Terms and Conditions' page. I checked the box then clicked the 'accept' button next page read 'your Session has timed out '  try again  with a Done button to click on

    Tried purchasing music from the iTunes Store. When the window popped up I put in my apple id and password. Then I was directed to a 'Terms and Conditions' page. I checked the box next to the 'Yes I agree to these terms and conditions' - then clicked the 'accept' button next page read 'Your Session has timed out. Try again.'  with a 'Done' button to click on. Oh the same thing happens when i try to download  free iTunes. Yes I have tried & tried it again I even logged off and singed back in-- no joy 
    After accessing my iTunes account I was not able to change anything like my credit card number when I tried and was sent right to the 'Your session has timed out. Try again.'
    The last time I purchased any anything was on September 25th 2011 and the 'terms & conditions' page was last updated on October 12, 2011
    Does anyone have an idea to what is going on with my iTunes version 9.2.1 (5) and I can not upgrade to a higher version my iMac does not have the intel processor chip.Thank you for your time and help with this matter. You are greatly appreciated 

    I am having the same problem also! I posted on here about it, but no one has responded with ideas. I called technical support and e-mailed them, the only suggestions they gave was for the to turn off my firewall. But I didn't change anything, so it shouldn't suddenly stop working. Maybe this is just an iTunes issue? But it doesn't even recognize my account anymore, and I cannot log in now.
    If you happen to get an answer, will you please let me know what works for you?
    Thanks!

  • Excel file save error: Someone else is working in file right now. Please try again later.

    When trying to save a modified Excel file, which has been opened from a network share, our users are receiving the following message:
    Someone else is working in "\\domain.com\users\username\Document.xls" right now. Please try again later.
    The clients that have been affected are Windows 7 clients, and the DFS share is being served from a Windows 2012 server. I have already confirmed that DFS replication has not been enabled, so it isn't trying to lock files for replication. I have also disabled
    any real-time scanning that is occurring on the client to make sure that the AV software wasn't locking the files. I did notice when viewing the list of Open Files from the server's Computer Management console that when a users experiences this issue the file
    appears to be opened 4 times. Three times it shows that it was opened in Read mode and the 4th instance shows an Open Mode of Write. Typically, a file which is working correctly should just show one instance with the Open Mode of Read+Write. None of these
    open instances are temporary files preceded with a ~.
    Any thoughts?

    Hi,
    Does the issue occur in other operation system? Which Office version are you using? Have you ever tried to test with word document, PPT file or txt file?
    Based on your description, the issue may be caused by the same file open multiple time in computer management on SQL server. The user probably has User Access Control (UAC) enabled on the machine and it is not letting him overwrite the existing
    copy of the file because she does not have it open in administrator mode. UAC will block overwriting (saving) the existing file without Administrative privileges and it will automatically open the save as dialog so you can save with a different name and
    if you click save without changing the name at the point, it tries to save as a new file over the existing file and it can't because the file is open.
    I recommend you check the user's permission (Which showed in Computer Management console) and end the Excel file instance in the task manager of the user's client.
    Also, we may try the workaround: Save it to local drive(like drive c:) and then copy it to DFS.
    Thanks
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Hey, I recently purchased the creative cloud and installed photoshop but now when I go to open the application it tells me theres a configuration error. It suggests restarting or contacting customer support but I thought I'd try this first. the error code

    I recently purchased the creative cloud and installed photoshop but now when I go to open the application it tells me theres a configuration error. It suggests restarting or contacting customer support but I thought I'd try this first. the error code is error: 213:19. Does anyone seeing this please have any advice on what to do?

    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Each time I go to click sign in, OR create account, it keeps telling me "an error has occured, please try again later". Can someone give me a step-by-step on how to fix this problem. Trying to redeem a $15 gift card!

    Each time I click on "sign in" , OR EVEN "create a new account", it keeps giving me a message to some effect of, "An error has occured, please try again later." It also includes some four or five digit number in parenthesis. I've tried to fix this but have no clue how to remove the error message and proceed. Can someone please give me a break-down of how to fix it? I need to redeem a gift card, and also obviously want to have access to purchase other items. Thanks.

    For what it's worth, you posted this in 2011, and here in 2014 I am still having this same issue. Over the last two days, I have had to unlock my apple account 8 times. I didn't get any new devices. I haven't initiated a password reset. I didn't forget my password. I set up two factor authentication and have been able to do the unlocking with the key and using a code sent to one of my devices. 
    That all works.
    It's this having to unlock my account every time I go to use any of my devices. And I have many: iMac, iPad, iPad2, iPad mini, iPhone 5s, iPod touch (daughter), and my old iPhone 4 being used as an ipod touch now.  They are all synced, and all was working just fine.
    I have initiated an incident with Apple (again) but I know they are just going to suggest I change my Apple ID. It's a simple one, and one that I am sure others think is theirs. I don't want to change it. I shouldn't have to. Apple should be able to tell me who is trying to use it, or at least from where.
    Thanks for listening,
    Melissa

  • TS3989 I keep getting this error when I click on the link inviting me to join a Photo Stream: "An error occurred while joining the Photo Stream. Please try again later. "

    I keep getting this error when I click on the link inviting me to join a Photo Stream: "An error occurred while joining the Photo Stream. Please try again later."
    I was the one who set up the Photo Stream and sent the link to myself. I called Apple and they said I did everything right and the server must be temporarily down, but it has been the same for the better part of a day.

    None of the fixes above worked for me.  Continued getting the "try again" error message. 
    Tryed a bunch of things, such as going directly to icloud on Safari to open the mail message, no luck.
    Tryed the following;
    Went to iCloud and logged in via Safari, clicked on my account name in top right corner, selected "Advanced" on drop down menu, and selected "Reset Photo Stream".
    Turned off Photo Stream on all devices and iPhoto.
    Turned on Shared Photo Stream option on Mac iCloud preferences.
    Tried the "Join This Photo Stream" button in my Mac Mail app .me account again.
    Still got the error message.
    Forwarded the original mail message to a yahoo account, selected "Join this Photo Stream" in the yahoo account mail (still in my Mac Mail app), and lo and behold, iPhoto opened and displayed the photos. 
    Could be this would have worked right from the start.
    Oh yea, still get the "try again" message if I click on the Photo Stream button in my .me account.

  • An error occurred while uploading one of your files. Please check your network connection and click Retry to resend your file

    Just for the record:
    I had received the error message "An error occurred while uploading one of your files. Please check your network connection and click Retry to resend your file" after all data apparently had been uploaded.
    After trying everything recommended on the internet, I finally found the culprit: Glimmerblocker, an ad blocker!
    (GlimmerBlocker version 1.4.16, Mac OS X 10.7.2 Lion)
    Actually, the credit goes to the very patient German Apple support: they had finally asked me: "what software have you installed lately" ... a big applause to the guys there!
    Best,
    Gabriel.

         In our case, it was not third party software, but a problem with our router not accepting pings.  If you are using a router be sure to set-up Enable WAN Ping Respond,  in the advanced settings.  I reviewed my wireless router's logs and found that it was blocking ICMP Type 3 packets from Apple's server.  As a result, it would give the message, "An error occurred while uploading one of your files.  Please check your network connection and click Retry to resend your file."  You can find the blocked packets in your log based on the time you clicked the buy button for your iPhoto purchase (in my case about a dozen times).  If your packets are blocked, then that is your problem.
         I should have suspected it was the connection since the message plainly said, "...check your network connection...".  However, I discounted this along with so many others based on the forums, since I could connect to the internet.  If there only was a way the message could have gave a little more saying, "Enable your WAN Ping Respond now, or else!"
    Good fortune on your road to Macenlightenment!

  • Unable to play some movie from Netflix on my iPad. When I click on a movie an error message comes up which says "cannot play movie. Please try again". Can anyone assist me? I just upgraded to iOS 7.1. Netflix not able to find problem.

    Unable to play some movies from Netflix on my iPad. When I click on a movie an error message comes up "Cannot play movie. Please try again later." I contacted Netflix but have not been able the help so I am wondering if it's my iPad. I didn't have a problem before but I have recently upgraded to iOS 7.1. Also is a certain amount of storage needed to play a movie? About how much is that?

    Hello all,
    I have an iPad 2 16GB with iOS 7.0.3 and Netflix version 5.0.2. I cannot watch netflix on an External LCD monitor that I have through VGA out. I use bluetooth speakers, so the AirPlay is going to that for Audio. Before this update, this combo worked without an issue.
    So as of Friday Nov. 8/2013, I contacted Netflix support, and they said they fixed the problem on their end, and the fix is on the Apple side of things, and to contact Apple support.
    So, I contacted Apple support, and the first person I spoke to said I would have to agree to pay a $35 fee for 30 days of support to this problem since my unit is out of warranty. I said this isn't a hardware issue, it's a software issue, and I'm not willing to pay to fix a problem you created. So I got a Senior Level advisor on the line, and she was helpful, and she's looking into the issue for me and said she'll contact me sometime on Tuesday or Wednesday (Nov. 12 or 13) to let me know of the issue.
    Here's the thing: this is a combination of Netflix and iOS not working correctly with any of the Apple Authorized Dongles. This is truly a code error that some hot shot programmer had major oversight on, and their management didn't catch it either. There was no reason for Netflix to rush to get this Netflix update going until Apple sorted out the bugs in iOS 7.
    Anyway, if I hear anything from Donna (the advisor), I'll post it and let you guys know. In the mean time, good luck!

  • When trying to update my CC apps, the update fails. I get this error: Update Failed. There was an error installing this update. Please try again later or connect customer support. This is currently happening for InDesign, Photoshop and Bridge. I had this

    When trying to update my CC apps, the update fails. I get this error: Update Failed. There was an error installing this update. Please try again later or connect customer support. This is currently happening for InDesign, Photoshop and Bridge. I had this problem previous and was able to fix by doing a complete wipe of my computer and reinstalling CC. However, I should not have to wipe my computer clean everytime I need to do a CC update. HELP!

    Hi,
    Please download the updates directly from the link below:
    WIN: All Adobe CC 2014 Updates: The Direct Download Links for Windows | ProDesignTools
    MAC: All Adobe CC 2014 Updates: The Direct Download Links for Mac OS | ProDesignTools
    Regards,
    Sheena

  • I recently got an iPhone 4 out of nowhere it has decided to go to connect to iTunes screen/emergency calls only when I plug into iTunes it states we are unable to continue with your activation at this time please try again later, or contact customer care

    I have recently got an iPhone 4 out of no where it has decided to think that my headphones are in and they are not but does work with headphones in.
    Then later on within the same day it after turning my phone on and putting it on charge it comes to the screen stating to connect to iTunes/emergency calls only/no service so I connect it iTunes and it says we are unavailable to continue with your activation at this time. Please try again later, or contact customer care.
    HELP!

    the same problem but i used it already for 3 years my iphone 4, when i update to ios 6.1.3 version, now is failure like said.
    we are unable to continue with your activation at this time please try again later, or contact customer care
    any help please. i am here in saudi arabia city of jeddah.
    thank you very much in advance
    pabs

  • I reset and erased my iphone 4 and now I can`t reinstall it! After I choose a language, region. and wifi, it says Please, try again later or contact customer care

    I reset and erased my iphone 4 and now I can`t reinstall it! After I choose a language, region. and wifi, it says Please, try again later or contact customer care. I tried to do with iTunes, and iTunes even sees this iphone, but it`s like blank, there is nothing I can do in iTunes. It uploaded last software for this iPhone 4, but when it tries to do the reserve copy of iphone first, it shows a mistake. And ask to disconnect and connect the device again, which, obviously, doesn`t help.

    This usually happens if the phone has been Hacked / Jailbroken / Modified...
    Is this the case...?
    If so...
    Then... Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    You will need to look elsewhere.
    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743

Maybe you are looking for

  • How do I change the iCloud ID on my iPhone

    Hi everyone, Please let me explain my situation first. I was using email1 for my iCloud backup on my iPhone4. Then I had a problem with that email and had to change that email to email2 via the web browser. I then changed my iCloud ID on my iPhone to

  • How and when does a dimension table gets generated

    Hi Gurus,                  I am new into BI and I will be put into a project within 2 months. I have learned that dimension table contains the sid's of all the charateristics in the dimension table. My conclusions are like 1. Dimension table contains

  • Importing hierarchy in STS (automation)?

    Is it possible to somehow automate the import of updated hierarchies in STS for a particular subplan? in STS: General Settings, step "Determine Hierarchy for a Subplan." Thank you

  • How to update exchange account password

    I just changed my exchange email account and my ipad won't allow me to change the password?

  • Can I boost Airport's power?

    Apologies if this is a silly question. We have two i-macs at home. We have just bought Time Capsule which we are connecting to our ISP's Motorola cable modem. Up until now we ran a Netscape wireless router off the same modem. We have connected one of