Unable to process leave request due to WORKFLOW Status in ERROR in ESS Portal.

Dear Experts,
I'm facing an issue with the leave request of an user. The user has applied leave a week ago but still it has not got auto approved.While analyzing the database of leave request in PTARQ, it has been found that the WORKFLOW STATUS is in ERROR and the DOCUMENT STATUS is in SENT condition.
Kindly help me in this case.
Please refer the screenshot below.
Thanks & Regards,
Surendhar

Hi surendha,
That particular leave request might have gone into error because of worklfow issue at the point of time.
You can simply check with workflow if any issue with workflow was there in that tenure , leave request was being raised,
Now solution is to delete the leave request from PTARQ which is in SENT status and workflow is errored out.
Also take that work item id and get it deleted by workflow consultant (T code SWI5).
Once that leave request/work item got deleted , ask user to again apply leave and it would go to manager for approval.
Once leave request is approved, leave request would be in Posted status and will get updated in IT 2001.
Hope it helps you,
Thanks.
Priya

Similar Messages

  • The server was unable to process the request due to an internal error.

             
    Properties set in my project are below
    namespace EmployeeService
            public class Employee
                private int _Id;
                private string _Name;
                private string _Gender;
                private DateTime _DateofBirth;
                public int Id
                    get { return _Id; }
                    set { _Id = value; }
                public string Name
                    set { _Name = value; }
                    get { return _Name; }
                public string Gender
                    set { _Gender = value; }
                    get { return _Gender; }
                public DateTime DateofBirth
                    set { _DateofBirth = value; }
                    get { return _DateofBirth; }
    This is the service i have developed in my project 
    namespace EmployeeService
        // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in both code and config file together.
        public class EmployeeService : IEmployeeService
            public Employee GetEmployee(int Id)
                Employee objemp = new Employee();
                string cs = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
                using (SqlConnection con = new SqlConnection(cs))
                    SqlCommand cmd = new SqlCommand("spGettblEmployeewcf", con);
                    cmd.CommandType = CommandType.StoredProcedure;
                    SqlParameter Idparameter = new SqlParameter();
                    Idparameter.ParameterName = "@Id";
                    Idparameter.Value = Id;
                    cmd.Parameters.Add(Idparameter);
                    con.Open();
                    SqlDataReader dr = cmd.ExecuteReader();
                    while (dr.Read())
                        objemp.Id = Convert.ToInt32(dr["Id"]);
                        objemp.Name = dr["Name"].ToString();
                        objemp.Gender = dr["Gender"].ToString();
                        objemp.DateofBirth = Convert.ToDateTime(dr["DateofBirth"]);
                return objemp;
            public void SaveEmployee(Employee objemp)
                string cs = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
                using (SqlConnection con = new SqlConnection(cs))
                    SqlCommand cmd = new SqlCommand("spInsertEmployeewcf", con);
                    cmd.CommandType = CommandType.StoredProcedure;
                    SqlParameter ParameterId = new SqlParameter()
                        Value = objemp.Id,
                        ParameterName = "@Id"
                    cmd.Parameters.Add(ParameterId);
                    SqlParameter ParameterName = new SqlParameter()
                        Value = objemp.Name,
                        ParameterName = "@Name"
                    cmd.Parameters.Add(ParameterName);
                    SqlParameter ParameterGender = new SqlParameter()
                        Value = objemp.Gender,
                        ParameterName = "@Gender"
                    cmd.Parameters.Add(ParameterGender);
                    SqlParameter ParameterDateofBirth = new SqlParameter()
                        Value = objemp.DateofBirth,
                        ParameterName = "@DateofBirth"
                    cmd.Parameters.Add(ParameterDateofBirth);
                    con.Open();
                    cmd.ExecuteNonQuery();
    The Service Contract  code is
    namespace EmployeeService
        // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.
        [ServiceContract]
        public interface IEmployeeService
            [OperationContract]
            Employee GetEmployee(int Id);
            [OperationContract]
            void SaveEmployee(Employee objemp); 
            // TODO: Add your service operations here
        // Use a data contract as illustrated in the sample below to add composite types to service operations
    and i deployed the EmployeeService in iis and consuming the service in my web application the code is below
     protected void btnsave_Click(object sender, EventArgs e)
                EmployeeService.EmployeeServiceClient client = new EmployeeService.EmployeeServiceClient("basicHttpBinding");
                EmployeeService.Employee employee = new EmployeeService.Employee();
                employee.Id = Convert.ToInt32(txtid.Text);
                employee.Name = txtname.Text;
                employee.Gender = txtgender.Text;
                employee.DateofBirth = Convert.ToDateTime(txtdob.Text);
                client.SaveEmployee(employee);
            protected void btnget_Click(object sender, EventArgs e)
                EmployeeService.EmployeeServiceClient client = new EmployeeService.EmployeeServiceClient("basicHttpBinding");
                EmployeeService.Employee employee = client.GetEmployee(Convert.ToInt32(txtid.Text));
                txtname.Text = employee.Name;
                txtgender.Text = employee.Gender;
                txtdob.Text = employee.DateofBirth.ToShortDateString();
    and  when i am entering the details of employee Id,Name,Gender,DateofBirth and clicking save button iam getting the following error 
    The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior)
    on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.
    Code in web.config file in Webapplication(Client) is the following
    <?xml version="1.0"?>
    <!--
      For more information on how to configure your ASP.NET application, please visit
      http://go.microsoft.com/fwlink/?LinkId=169433
      -->
    <configuration>
        <system.diagnostics>
            <sources>
                <source name="System.ServiceModel.MessageLogging" switchValue="Warning, ActivityTracing">
                    <listeners>
                        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
                            <filter type="" />
                        </add>
                        <add name="ServiceModelMessageLoggingListener">
                            <filter type="" />
                        </add>
                    </listeners>
                </source>
                <source name="System.ServiceModel" switchValue="Warning, ActivityTracing"
                    propagateActivity="true">
                    <listeners>
                        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
                            <filter type="" />
                        </add>
                        <add name="ServiceModelTraceListener">
                            <filter type="" />
                        </add>
                    </listeners>
                </source>
            </sources>
            <sharedListeners>
                <add initializeData="C:\Users\HEMANTH\Desktop\Client\Client\Web_messages.svclog"
                    type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                    name="ServiceModelMessageLoggingListener" traceOutputOptions="Timestamp">
                    <filter type="" />
                </add>
                <add initializeData="C:\Users\HEMANTH\Desktop\Client\Client\Web_tracelog.svclog"
                    type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                    name="ServiceModelTraceListener" traceOutputOptions="Timestamp">
                    <filter type="" />
                </add>
            </sharedListeners>
            <trace autoflush="true" />
        </system.diagnostics>
        <system.web>
            <compilation debug="true" targetFramework="4.0" />
        </system.web>
        <system.serviceModel>
            <diagnostics>
                <messageLogging logEntireMessage="true" logMalformedMessages="true"
                    logMessagesAtTransportLevel="true" />
            </diagnostics>
            <bindings>
                <basicHttpBinding>
                    <binding name="basicHttpBinding" />
                </basicHttpBinding>
                <wsHttpBinding>
                    <binding name="mexHttpBinding">
                        <security mode="None" />
                    </binding>
                </wsHttpBinding>
            </bindings>
            <client>
                <endpoint address="http://localhost/EmployeeWebServices/EmployeeService.svc/basic"
                    binding="basicHttpBinding" bindingConfiguration="basicHttpBinding"
                    contract="EmployeeService.IEmployeeService" name="basicHttpBinding" />
                <endpoint address="http://localhost/EmployeeWebServices/EmployeeService.svc/mex"
                    binding="wsHttpBinding" bindingConfiguration="mexHttpBinding"
                    contract="EmployeeService.IEmployeeService" name="mexHttpBinding" />
            </client>
        </system.serviceModel>
    </configuration>
    Things i have tried till now are 
    1)changed the name of the name of the endpoint address basicHttpBinding to  basicHttpBinding_IEmployeeService but still get the save error.
    2)Opened the Message Log Trace. Got the error as follows
    <MessageLogTraceRecord>
    <HttpResponse xmlns="http://schemas.microsoft.com/2004/06/ServiceModel/Management/MessageTrace">
    <StatusCode>InternalServerError</StatusCode>
    <StatusDescription>Internal Server Error</StatusDescription>
    <WebHeaders>
    <Content-Length>730</Content-Length>
    <Cache-Control>private</Cache-Control>
    <Content-Type>text/xml; charset=utf-8</Content-Type>
    <Date>Sat, 03 Jan 2015 12:12:24 GMT</Date>
    <Server>Microsoft-IIS/7.5</Server>
    <X-AspNet-Version>4.0.30319</X-AspNet-Version>
    <X-Powered-By>ASP.NET</X-Powered-By>
    </WebHeaders>
    </HttpResponse>
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Header></s:Header>
    <s:Body>
    <s:Fault>
    <faultcode xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher" xmlns="">a:InternalServiceFault</faultcode>
    <faultstring xml:lang="en-US" xmlns="">The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute
    or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.</faultstring>
    </s:Fault>
    </s:Body>
    </s:Envelope>
    </MessageLogTraceRecord>
    Try to understand but could not understand because i'am new to wcf services. Please help me to find the error details.
    Thanks in advance
    Regards
    rax227 
                           

    Hi Mohan,
    I didn't use Fiddler before, I just download and use it but how to see the request message from this software?
    I have logged the request to event log before send to web service and copy this request from event log to testing with soapUI, so I don't think have between the actual messages being sent to your client via orchestration and soapui. In the log Response shape
    I see the fault response in event log.
    You can see
    this link to know how to use fiddler. As I suggested above the error you need to check is at the server side who is hosting the service( your party ) because you are getting fault response properly from them. The webservice you are calling seems to look
    like WCF service too. Your life would have been so easier if you could ask them to have firewall open from your dev box to their dev server so that you can use use "Add Service Reference" wizard, that even they have .NET wcf service too. 
    Did you by any chance manage to talk to them what they are getting or if they can increase the exception details in the fault message for you?
    If this answers your question please mark it as Answer and if this post is helpful, please vote as helpful. Thanks !

  • The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error. Event 1121

    Hello all,
    We migrated our Exchange server from 2003 to 2010. After the mailbox move requests were finished we had one that was stuck. We basically skipped it as we had a lot of other things to finish over the weekend. Here we are a year later, the old exchange server
    is gone and so is an old DC. I am receiving an error every four minutes in event viewer.
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error.
    Request GUID: '3e46b7cb-2ac0-42c1-98e8-57517a19ee40' 
    Database GUID: '5c6c573b-4f45-4ce3-b296-11cf69c2e2b6'
    Error: Unable to find 'OLD Domain Controller' computer information in domain controller 'OLD Domain Controller' to perform the suitability check. Verify the fully qualified domain name..
    I have checked in EMC for move requests. None are listed. I have checked the DCs listed in EMC properties. Old DC is not listed.
    I also ran these commands in shell to attempt to cancel the stuck request.
    Get-MoveRequest -MoveStatus Completed;Pending;InProgress;Failed;CompletedWithWarning;Suspended;Queued;CompletionWithProgress : Remove-MoveRequest
    NO changes. Still throwing error. Any suggestions? I also tried using the guid and shell to look at the move request. Systems replies no such request.

    Hello,
    Please try to restart iis services to check the result.
    If the issue persists, I recommend you ping you DC server on your exchange server to check if your exchange server can communicate with your DC server.
    If there are other DCs, please try to use set-adserversettings cmdlet to specify a DC for your exchange server.
    Set-AdServerSettings
    http://technet.microsoft.com/en-us/library/dd298063(v=exchg.150).aspx
    Besides, please install the lasted rollup to check the result.
    Cara Chen
    TechNet Community Support

  • The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error. : Error: An Active Directory Constraint Violation error occurred

    Hello,
    We have a multi domain parent child AD domain infrastructure and now we upgraded our exchange from Exchange 2007 to Exchange 2013. Since last few days, we see the below error on the mailbox server event viewer.
    EVENT ID : 1121
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error. 
    Request GUID: '93a7d1ca-68a1-4cd9-9edb-a4ce2f7bb4cd' 
    Database GUID: '83d028ec-439d-4904-a0e4-1d3bc0f58809' 
    Error: An Active Directory Constraint Violation error occurred on <domain controller FQDN>. Additional information: The name reference is invalid. 
    This may be caused by replication latency between Active Directory domain controllers. 
    Active directory response: 000020B5: AtrErr: DSID-0315286E, #1:
    Our Exchange setup is in parent domain, but we keep on getting this error for various domain controllers in each child domain in the same site. We then configured one of the parent domain domain controller on Exchange. Still we are getting this error for
    the configured parent domain DC.
    Verified the AD replication and there is no latency or pending stuffs.
    Any support  to resolve this issue will be highly appreciated. Thank you in advance.
    Regards,
    Jnana R Dash

    Hi,
    In addition to Ed's suggestion, I would like to clarify the following things for troubleshooting:
    1. Please restart IIS at first.
    2. If the issue persists, please ping your DC on your Exchange server to check if Exchange can communicate with DC.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error

    Since demoting a child domain a few days ago, Exchange 2013 is still trying to contact it and as a result generating errors in the application event logs.  I had a similar problem which I solved by removing some old migration batches, now I have a problem
    with the Microsoft Exchange Mailbox Replication service.
    The event logged is:
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error.
    Request GUID: '0b6c0f5a-0563-48e2-8b97-e0781c6cc69a' 
    Database GUID: '23258311-ad29-41c2-a842-522f48baa267'
    Error: Unable to read from Active Directory. --> The call to Microsoft Exchange Active Directory Topology service on server 'TopologyClientTcpEndpoint (localhost)' returned an error. Error details Unable to find a suitable directory server for
    domain 'admin.riddlesdown.local'.. --> Unable to find a suitable directory server for domain 'admin.riddlesdown.local'..
    Process Microsoft.Exchange.Directory.TopologyService.exe (PID=2280). Exchange Active Directory Provider could not find an available domain controller in domain admin.riddlesdown.local. This event may be caused by network connectivity issues or
    configured incorrectly DNS server.
    The domain doesn't exist in AD Sites and Services, I have removed all traces from DNS but this is still occurring.  When I run Get-ADServerSettings | fl it reports no trace of the domain or a DC that was previously in it.
    How can I stop these events occurring and is it likely to be causing something else not to work correctly.
    We are running Exchange 2013 CU1

    No, that didn't work.  Here are more details:
    Source: MSExchange ADAccess (EventID: 2130)
    Process Microsoft.Exchange.Directory.TopologyService.exe (PID=2280). Exchange Active Directory Provider could not find an available domain controller in domain admin.riddlesdown.local. This event may be caused by network connectivity issues or configured
    incorrectly DNS server.
    Source: MSExchange ADAccess (EventID: 2119)
    Process Microsoft.Exchange.Directory.TopologyService.exe (PID=2280). Error DNS_ERROR_RCODE_NAME_ERROR (0x8007232B) occurred when DNS was queried for the service location (SRV) resource record used to locate a domain controller for domain admin.riddlesdown.local
     The query was for the SRV record for _ldap._tcp.dc._msdcs.admin.riddlesdown.local
     Common causes of this error include the following:
     - The DNS SRV records required to locate a domain controller for the domain are not registered in DNS. These records are registered with a DNS server automatically when a domain controller is added to a domain. They are updated by the domain controller
    at set intervals. This computer is configured to use DNS servers with following IP addresses:
    10.59.100.7
    10.59.100.8
    fec0:0:0:ffff::1Microsoft.Exchange.Directory.TopologyService.exe
    fec0:0:0:ffff::2Microsoft.Exchange.Directory.TopologyService.exe
    fec0:0:0:ffff::3Microsoft.Exchange.Directory.TopologyService.exe
     - One or more of the following zones do not include delegation to its child zone:
    admin.riddlesdown.local
    riddlesdown.local
    local
    . (the root zone)
    Source: MSExchange Mailbox Replication Service (EventID: 1121)
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error.
    Request GUID: '87f4b926-0621-43d3-afeb-fe475ee6d850' 
    Database GUID: '23258311-ad29-41c2-a842-522f48baa267'
    Error: Unable to read from Active Directory. --> The call to Microsoft Exchange Active Directory Topology service on server 'TopologyClientTcpEndpoint (localhost)' returned an error. Error details Unable to find a suitable directory server for domain 'admin.riddlesdown.local'..
    --> Unable to find a suitable directory server for domain 'admin.riddlesdown.local'..
    Something is cause the Exchange server to go looking for our old domain, but what and why?

  • When I view email on my iPad, I get an error message saying "unable to process your request" . How do I correct this?

    When I access my iPad email, I get an error message saying "unable to process your request"  How do I correct this?

    Start with the basics. Force close mail and reset your iPad.
    In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Next, reset 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.
    If that doesn't help, you might want to consider resetting your router by unplugging it from power for about 30 seconds. That can help at times even if all of your other devices are connecting to the Internet. I suggest this, because the message that you are getting may be due to a bad connection to the Internet.

  • Unable to process your request in FIM 2010 R2.

    Hi,
    Unable to process your request in FIM 2010 R2 sp1 when we hit the URL https://Machinename/Identitymanagerment/default.aspx.
    This was working when we installed fresh FIM Synchronization service and FIM 2010 r2 sp1 Portal but now it is not working for me.i have uninstalled FIM 2010 Portal and delete FIMService database and again installed still gives the same message
    Unable to process your request .
    NOTE:I am implementing FIM 2010 R2 SSPR and gives all reuired cofiguration for this as per Microsoft documents.
    Regards
    Anil Kumar  

    I make the changes in the  web.config file at location
     C:\inetpub\wwwroot\wss\VirtualDirectories\80  on FIM server and added  the
    requireKerberos=”true”  as per the FIM installation
    document. Restarted the IIS and reboot the server. After that unable to login on the FIM Portal, However, SharePoint  URL is working fine.
    Please help me to resolve the issue.
    Anil

  • Safari Developer Program License Agreement: We are unable to process your request

    Hi all,
    I'm trying to sign up for the free Safari Developer Program.  Everything proceeds as normal until the step Agree to License[1] after which point I receive the message "We are unable to process your request."  I have tried to logout of the Member Center and cleared all apple.com cookies.  I've tried to start the process again from the beginning too.  I've verified all my contact details.  I get the same result each time.
    1. https://developer.apple.com/ios/enroll/listAgreement.action
    I have had an Apple ID with this email address for several years, but this is my first time trying to join the Developer Program.  Can anyone offer some advice?  Thanks.
    Lucas

    OK, I'm answering my own question. I've filled-in the support ticket. The lady from Apple support just called me and helped me deal with the issue as there was no other option to solve it by myself.
    That's where I have filled in my support case (very bottom of the page):
    https://developer.apple.com/support/safari/enrollment.html

  • Editing Site Settings Gives "Unable to process your request"

    Hi,
     I get "unable to process your request" when trying to edit the FIM portal site settings. I'm using my domain admin account I installed FIM under, which is also a SharePoint administrator. I'm trying to edit some basic UI details.
    I've installed FIM 2010 R2 SP1 on SharePoint Foundation 2010 with SQL 2008 R2. I tried logging into the FIM portal with the fim service account, but this still gives the same error when editing site settings. I'm using separate servers for the fim portal,
    fim service DB and fim sync server (all have their firewalls turned off).
    Advice on how to resolve this is much appreciated.
    Thanks

    Thanks Tomek,
    Managed to get this working - I missed out the alternate access mappings on SharePoint 80. Simply adding the internal and internet URLs worked :-)
    http://myitforum.com/cs2/blogs/forefrontsecurity/archive/2011/04/13/fim-2010-service-not-available.aspx
    Thanks

  • Trying to enroll for the $99 developer account. Getting the message 'We are unable to process your request' What is wrong here?

    Have tried so many times now to enroll for the developer program and getting stuck in the third screen with the message
    We are unable to process your request.
    I need enrollment fast to put my app in the app store
    What's wrong here?

    Thanks for the detail.
    I believe you are doing your best, in the right place.  How long have you tried ?
    May be the sistem in your area is really busy. Can you wait few hours or contact them with a Message ?
    Or try a Service provider http://support.apple.com/kb/HT1434

  • We are unable to process your request - account activation

    Hi
    I keep getting this error
    We are unable to process your request.
    Please go back to the previous page, or quit your browser and try your request again.
    I keep clicking on the activation link and then Activate and i keep going around in circles. How can i fix this ? Is there a problem with my account or is it a server issue ?
    I contacted the help using the link but no reply in 40 hours at time of writing.
    Thanks
    Hanson

    Change the "cookies setting" of browser as open at third parties.
    I had same situation, when get into the following URL for previous Xcode.
    (https://developer.apple.com/downloads/index.action?q=xcode)
    But 5 minutes ago, I was able to escape from this bored conditions.
    I surely registered on Apple dev-center, that the problem was on browsing,
    please alter security level temporarily!!
    <my Englis somewhat clash,....please overlook or point gradly>

  • I get unable to process your request when trying to download new episode of a tv show.  Any ideas what is going on?

    Got my email saying my new episode was avaiable for download.
    I clicked on it.
    I got "unable to process your request. try later"
    What's going on?

    The plot thicktens!
    I was able to go to Purchased page, click on cloud and am downloading episode: that's good.  I've had to do this in the past once or twice, too.
    Here's what NOT to do:  DON'T go to the iTunes page of the TV show you have a season pass for to download the episode from there.  I think that's what I did several months ago for an episode of a different show I'd subscribed to.  I found when I got to the page for the show there was no indication there that I had purchased the season.  None of the "purchase" tabs on the right side of the screen said "Downloaded."  Well, I really wanted the episode and didn't want to wait (can't remember if I'd tried my purchased page or not).  Once I downloaded the episode ~ which I was charged for, even though I'd purchased a season pass ~ I ended up with two locations in my iTunes TV shows page.  So, I have two thumbnails for the same show: one says "Season 4" and the other says "Season 2~4."  I asked apple support about fixing it and they sent me a (for me) long, tedius list of instructions to follow which I never did.
    Last night, my episode wasn't in my Purchased page (i.e. I couldn't download it from the cloud) so I went to the iTunes store page for the TV show.  I have, contradictorily, been able to download from there, too, in the past, when my email link hasn't worked... even though, as advised above, sometimes it doesn't work.  Last night, I got the same indication that iTunes had NO idea that I had purchased a season of the show.  Under the large pic in the upper left corner of the page it still says "buy season pass" and none of the payment tabs on the right of each episode indicate that I've purchased any.  However, I have 18 purchased episodes of the season in my library and I downloaded them by receiving an email from iTunes alerting me that a new episode was ready for download. 
    Downloading from the cloud is the way to do it, if you can.  

  • [JS] Erreur  "unable to process the request because a modal dialog or alert is active"

    Hello,
    Is it possible bypassed the error message "unable to process the request because a modal dialog or alert is active."
    I want to apply the following command from a window,
    "leTableau.label leNomDuTableau = / / label of the table
    Thank you for your idea
    Bonjour,
    Est-il possible de contourné le message d'erreur "impossible de traiter la requête, car une boîte de dialogue modale ou une alert est active."
    je veux applique la commande suivent d'une fenêtre,
    "leTableau.label = leNomDuTableau; // label du tableau
    Merci pour vos idée

    I have to rebuild my dialogue, he spends all attravaire!
    Je dois reconstruire mon dialogue, il passe attravaire tous!!

  • I get the message "unable to process your request" when I try to login to a secure site

    I am trying to log in to a secure banking site. I have visited the site almost daily and now I am getting the message "unable to process your request try again later" so I wait and I continue to get the message. I have contacted the site to make sure is is up and running. It is so the problem must be with me. What can I try?

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"<br />
    "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"<br />
    <br />
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).<br />
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • We are unable to process your request at this time......​.

    After logging in , i get the following message when trying to access anything other than email via "My Verizon"
    "We are unable to process your request at this time.
    Please try again later. We apologize for any inconvenience."
    the strange thing is my last login shows September 11, 2014, even though i have logged in today and previous days after this date.

    Your login procedure sounds different from mine.
    Try this link:
    https://www.verizon.com/foryourhome/myaccount/ngen​/upr/nlogin.aspx
    If you put your userid in the box provided, then select My Services on the pull down, then click on Sign In, and then enter your password to continue, does the problem still occur?

Maybe you are looking for

  • Page setup changes for different users

    We had recently experienced page formatting changes all of a sudden. These reports were not modified nor changed but all of a sudden when users run the reports or if a developer open it in design the page setup was changed from landscape to portrait.

  • Messages and Yahoo IM Video Chats not working!

    I have a 2011 Macbook Pro running the latest version of mountain Lion. I have tried to video call my friend through yahoo but it wont work at all. Does someone have a solution to this issue? I am really frustrated. I don't want to have to call her on

  • Downloading an older version of Facebook for Iphone

    I have an iPhone 3g and I would like to download the facebook that is compatible with it

  • L2TP vpn - broken since 10.4.11

    Hi, i just want to start the thread concering the vpn problem again. Yesterday we updated OS X Server vom 10.4.10 to 10.4.11 and suddenly only connections via PPTP are available from outside. (leopard clients) This issue was also mentioned here befor

  • Webservices: Error trying to run web services.

    Hi All, I am trying to run a webservice that has been created with jdeveloper, this is what i did, -Create my WS Class -Right click over that class and choose the option "Create Web Service". -Click next in all displays(Default Options). All compile