E-Filling: IYMV process: The supplied IR mark is incorrect: Error 2021

hi all,
In E-FILLING In year Movement process were are getting an error from the government gateway HMRC.
The error is "The supplied IR mark is incorrect" Error  2021.
Most of the sapnotes that I found on SDN or marketplace have been implemented by us as we are currently on SAP_HRCGB - SAPK-60432 support pack level but still the error persists.
Can you please explain that are there any configuration entries for In Year Movement process that need to be maintained or the configuration table.
Best regards,
FS

https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3136343833343826Can you please check again. This note is released for all customers and available on service market place.
Thanks
Chetan

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 !

  • TS3694 uploading iOS 7 to iphone 5 and after it downloaded, it was at the end of processing the file when i received  and error (3004) .  what do i do

    was at the end of processing the file when i received  and error (3004) .  what do i do

    http://lmgtfy.com/?q=iPhone+error+code+3004

  • What is the Cause of: Parameter is Incorrect error

    Using XP, RH6, RoboSource Control
    I had posted previously inquiring about the "Parameter is
    Incorrect" error occurring when selecting the Printed Documentation
    option on the Primary Layout list. Clicking OK did not clear the
    error, and had to terminate RH in Task Manager. After reopening the
    project the error still occurred. The resolution posted to that was
    deleting the PSS file from my PC (the file was/is not on the
    RoboSource machine). Which did clear the problem.
    The problem came back after about a month. I'm just trying to
    determine if there is a know reason for this error? Is it a
    workflow issue, or a bug, or ??
    Thanks for any help that can be offered.
    Joe

    The problem I ran into was the following line in the PSS
    file:
    Language=C:\<pathname>\RoboHHRE.lng
    If the pathname didn't match up to reality on my PC, then I'd
    get errors. The reason for the pathname not matching up was that
    the project had been moved from one location to another. There are
    other paths listed in that file, but RH seems to handle those a
    little better.
    Take a look using Notepad and see if the RoboHHRE.lng file is
    indeed located where the PSS file says it is. If not, then go ahead
    and delete the PSS file again. If it is, then you have a different
    issue.
    I suppose I'd classify this as a bug, but at least there's a
    workaround.
    G

  • Consignment fill-up process, the delivery # displays in VF04 t.code

    Hi All,
    We have one partner and when we run the VF04 t code we are getting delivery numbers (consignment fill-up  delivery) but we are not able to create the billing doc for that. my question is how we can prevent the fill-up delivery number should not come to billing due list?
    Suggest me on this.
    Thanks in advance..
    Thanks,
    Kumar

    Hello Kumar
    You can do a few things.
    1) Set a Header Billing Block for the Consignment Fill-up Deliveries and check the box "No Docs with Billing Block'. Now you may set the block manually or using a program,
    2) Using Default Data tab, enter the billing types ( to be included) in the list while leaving out the Billing Type you find in the doc type 'KB' config,  save it as a variant and use that variant in the foreground or background.
    3) Use a copy of KB document type and set it up with no 'delivery related' or 'order related' billing type, Similarly create a copy of Item cat KBN and make it not relevant for billing and assign it to the new doc type.
    Hope this helps

  • DAC processes the return status from Informatica incorrectly

    Hi,
    My Env Info is as below:
    DAC: Build AN 10.1.3.4.1.patch.20110427.0538, Build date: April 27 2011
    Informatica:*9.0.1 HotFix 2 (On OS windows 2003*)
    Now, I am running the Siebel CRM-Loyalt execution Plan in DAC, but enccounter the below issue:
    1)Some task start before its immediate predecessors finished
    for example, <SIL_LoyMemberDimension> depends on <SDE_SBL_LoyMemberDimension> , the <SIL_LoyMemberDimension> starts before <SDE_SBL_LoyMemberDimension> successfully finished.
    when checking the log, found that:
    the time <SIL_LoyMemberDimension> started is just the start time workflow <SDE_SBL_LoyMemberDimension> start its first session in Informatica, and also, in the execution's detail info view, DAC marked the start time workflow <SDE_SBL_LoyMemberDimension> start its first session as the task's finished time.
    This issue leads to many failures in building target table.
    2)The task status in execution for informatica task is usually incorrect
    when some session failed in a workflow, the workflow is failed too, but the DAC's execution will marked the task as successfully completed, which is incorrect and will lead to some future un-predictable issue
    Anyone can help?
    Thanks
    Leon

    I would suggest go for a new patch p13551596_101341_Generic this is latest (i guess)
    If this doesn't help let me know will look into this issue.
    If it is helpful, please mark as correct or helpful

  • Error while processing the dimension

    Multiple Specification of the Name 'HIR' as a Component Name (Component 6)
    this is the error i am geting while processing the dimension

    Hi,
    Do you get this error while processing all the dimension or only in specific dimension?
    Do you have hierarchies in this dimension? Have you added the hierarchy in the property (you should not).

  • The Financial Accounting program cannot process the document.

    THIS PROBLEM IS COMING AFTER THE BILING AND THE ACCOUNTING DATA IS NOT CREATED FOR THIS PROBLEM
    CAN ANY ONE SOLVE THIS PROBLEM
    GURUS PLEASE HELP
    No account is specified in item 0000001005
    Message no. F5670
    Diagnosis
    No account was specified for account type "S" in item "0000001005" of the FI/CO document.
    System Response
    The Financial Accounting program cannot process the document.
    Procedure
    A system error has probably occurred in the application you called up. Check the data transferred to item "0000001005" of the FI/CO document.
    WITH REGARDS
    SUBRAT

    Hi,
    I think this is due to problem in acount  determination.
    Please check VKOA
    Best Regards
    Ashish Jain

  • Purchase Order Response Not able to do by the Supplier from SUS

    Hi Experts,
    During sometimes, the supplier is not in a position to make POR from SUS.
    After selecting the PO from Supplier side, when they are trying to do POR they are not able to either select Confirm (tick mark) or reject (X mark) from their screen which means always those buttons are in greyed mode or no action like Green or Red respectively. What could be the reason ? However, they can see the Send button.
    Please provide me the input to do investigation.
    Thanks
    Rajesh K

    Hi Rajesh,
       If you are not able to respond for PO from SUS then you have to activate the workflow WS14500001.. Here some more workflows you can check for POR
    Workflows
    You can configure the following workflows for the purchase order response:
    ·        (WS14500001)
    Automatic transfer of purchase order response data into the purchase order. The system carries out a comparison during the data transfer (background processing). If the quantity, price, and delivery date variances transmitted by the vendor are within the tolerance limits set in Customizing, and no other variances are transmitted, then the data transfer of the first inbound POR occurs automatically.
    This workflow is relevant for XML receipt or manual entry with subsequent approval.
    ·        (WS14500019)
    If POR data differs from that in the purchase order, you can be informed of this via a work item. As a purchaser, you can decide for each item whether you wish to transfer the data into the purchase order or not.
    ·        (WS14500007)
    If POR data differs from that in the purchase order, you can be informed of this via e-mail (with the number of the purchase order).
    ·        (WS14500017)
    Monitoring receipt of the purchase order response:
    If the flag Purchase order response expected is set in the purchase order, and if by a certain time a purchase order response has not been received for all items in a purchase order, then you can be informed of this via a work item.
    SAP WON'T DELIVER ANY WF TEMPLATE WITH NUMBER RANGE OF '9' BECAUSE 99% CUSTOMER USE NUMBER RANGE 9' FOR CUSTOM WORKFLOW..
    Saravanan

  • Process for supplier registration

    Hi there,
    We want to use supplier registration functionality for us to capture vendor registration process into the system. We are planning to use SRM to capture this process. Our planned system will be SRM 7 EHP 1 with ECC 6 EHP 4.
    Our desired business process is like this:
    1. Vendor will click link in our company website,
    2. Vendor then will fill up the general data, and submit supporting documents,
    3. Purchaser then will evalute the general data and the supporting documents, if okay, then it will be approved,
    4. After that the vendor data will be replicated to ECC
    I wonder whether this can be captured in standard functionality of supplier registration in SRM?
    Best regards,
    Josh

    Hi Nikhil,
    I have read some documentation in this link:
    http://help.sap.com/saphelp_srm701/helpdata/EN/cd/d7114b1df64601b4173fbce6513a31/frameset.htm
    Are you referring to the "Supplier Qualification with Automatic Transfer to SAP ERP" which is described in this link? If yes, I assume that the pre-requisite is using Supplier Registration within SUS, rite? If I dont use SUS can i have this functionality?
    Further reading from this link, I see this statement:
    "The accounts payable clerk checks the IDoc list (we05), completes the missing data in the IDoc and restarts the inbound IDoc, if necessary"
    This is rather confusing for me as SRM supplier data do not cover full data (no financial data), thus if we use this functionality then the message will always stuck in IDOC, and then the AP clerk need to always check the IDOC, is this meant to be like this? And one more thing, is it a good practice to allow user to complete data in IDOC? As far as I know, IDOC is a very technical object, I cannot imagine a non-technical user told to edit the IDOC and restart the data?
    Best regards,
    Josh

  • Fully Automated SMI Process for Suppliers

    Hi There,
    I am currently working on the feasibility of implementing the Fully Automated SMI process for suppliers. I would appreciate any links to information regarding implementing this system.
    I require the following information:
    Technical/Functional requirements on Customer/Supplier side.
    Where this business process currently fits for CPG's
    Appreciate any information on the above.
    Dominic

    Hi Mark,
    I have this issue before.
    When we first add our accout to Outlook, we should better create a new profile manually.
    I suggest removing our accout from Outlook via "Mail" and re-creating new profile.
    Operation details as below:
    1. Start-->Control Panel-->Mail-->E-mail Accounts...-->select your account and Remove it-->Close
    2. Show Profiles...-->Add-->then configure your account again.
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • SRM - questionnaire submission by the supplier

    I need help regarding all the settings required for the supplier self-registration questionnaire submission.
    we are using SRM 5.0.
    On filling the registration form(BSP application ROS_SLF_REG and submit a mail is sent to the mail-id specified , with the questionnaire attached .
    But when supplier clicks the button for submission in the questionnaire nothing happens.
    should the supplier fill the attachment and send it back again as attachment to the file or use the button provided in the form?
    How can the questionnaire be sent back to sap and be processed?
    what is a service mailbox? Does it has anything to do with this questionnaire processing.

    Hi Vani,
    For this feature, we use the Web Survey Framework.
    the questionnaire is sent as an HTML form embedded in a mail.
    At the end of this form, you must find a MAILTO syntax.
    So when submitting the survey from his mail client, the supplier will mail back the HTML form.
    This will send an email to the MAILTO mailbox (like [email protected]).
    Your mail server administrator must define a routing not to store the mail in a real mailbox, but to send it back to the SRM server.
    In the SRM server, you have configured inbound SMTP service, so SRM WAS can process inbound mails.
    In SO50, you can create an entry for this mail address ([email protected]), with exit CL_UWS_FORM_RUNTIME_MAIL.
    This one will process incoming mail and survey, and store the survey result in database, linked as attachment for this prospect/supplier.
    You can find more details on WebSurvey on help.sap.com :
    http://help.sap.com/saphelp_webas630/helpdata/en/50/3ce5f0d61640a38987985272f801a3/content.htm
    Rgds
    Christophe
    PS: please reward poitns for helpful answers

  • I might have messed up my files and now have the big exclamation mark on a lot (but not all of my iphotos) My document folder was full of photos and I tried to organize it by putting it into a separate folder but now I can't see my photos :-( please help?

    Hi there, I have the same problem as I've read on some of the questions posted although the answers hasn't been much help to me with regards to the big exclamation mark on iphotos when I try to open my photos.  For some reason my photo files was stored in my document folder and you can imagine how that must have looked, very unorganized.  When I tried to move the photos from there to another file that is just for my photos.  Now I can't open them in iphotos and although I tried to undo my mistake it still doesn't want to work.. is there any way I can find all the images on my computer and fix my problem by storing them somewhere else without damaging the files?
    Please help me find all my photos as I would be shattered if I were to loose any...
    Thank you.

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Error: var g_objCurrentFormData_Error : There has been an error while processing the form

    Hi,.
    I have a InfoPath 2010 form which was published to SharePoint 2010.  I migrated the content db to SQL Server 2012 and I have converted the Sharepoint 2010 (windows based) to the SharePoint 2013 claims based site. I have not fully upgraded the site to
    2013 version (Version upgrade to SP 2013) is not done..
    In the InfoPath 2010 form, which is available in SP 2013. I have a button and on click of it, i have the below code:
    XPathNavigator domNav = MainDataSource.CreateNavigator();
    XPathNavigator fldUserurl = domNav.SelectSingleNode("/my:myFields/my:TaskUrl", this.NamespaceManager);
    if (!string.IsNullOrEmpty(fldUserurl.Value))
    string urlToDecode = HttpUtility.UrlDecode(fldUserurl .Value);
    HttpContext.Current.Response.Write("<script type='text/javascript'>window.open('" + urlToDecode + "','_self','left=20,top=20,width=500,height=500,toolbar=1,resizable=0');</script>");
    HttpContext.Current.Response.Flush();
    HttpContext.Current.Response.End();
    The above code works fine in SharePoint 2010, however after moving the Site to SP 2013 Claims mode, I am getting the error as
    "var g_objCurrentFormData_Error = [[[12,"There has been an error while processing the form.","","","guid"]],[],0,"","",1033,"","",["0","","","","","",0,0,"",0,false],"","0",false,"",0,"","http:\u002f\u002ftest-t1.com\u002fs\u002fTestApplication","ltr","http:\u002f\u002ftest-t1.com\u002fs\u002fTestApplication",6.35202885373882E+17"
    In the SP Logs, i found the below:
    Unhandled exception processing request for PostbackPage Microsoft.Office.InfoPath.Server.Util.InfoPathFatalException: Exception of type 'Microsoft.Office.InfoPath.Server.Util.InfoPathFatalException' was thrown.   
     at Microsoft.Office.InfoPath.Server.Util.GlobalStorage.get_CurrentFormId()   
     at Microsoft.Office.InfoPath.Server.Util.GlobalStorage.get_CurrentContext()   
    How to fix this?
    Thanks

    Hi Venkatzeus,
    please let us know your sharepoint 2013 latest cumulative update, if possible please make sure it is March 2013 update or above.
    as i know, between 2010 infopath and 2013 there are difference, perhaps if you can debug your form it may help.
    most probably there are environment settings difference between 2010 sharepoint and 2013 sharepoint. such as the data connection size/length, that causing it failed, or the form data is NULL.
    http://infopathdebugger.codeplex.com/
    http://www.infopathdev.com/forums/t/26330.aspx
    http://social.technet.microsoft.com/Forums/en-US/5c9d2fce-0fd8-439c-a636-bf856eb76e15/how-to-retrieve-term-store-management-values?forum=sharepointgeneralprevious
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • An Error Occurred During Report Processing - Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 12019

    When I run the report on production I got the following error message:
    Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the
    request on the server. The status code returned from the server was: 12019
    It hasn’t happen on Dev and Test before.                           
    I googled, The error is described as:
    12019 ERROR_INTERNET_INCORRECT_HANDLE_STATE
    The requested operation cannot be carried out because the
    handle supplied is not in the correct state.
    But I cannot find the solution for that. 
    Has it happend to you before? How to solve that?      

    Same behaviour here, Sharepoint 2013 with SSRS in integrated mode
    Error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status
    code returned from the server was: 12019

Maybe you are looking for

  • How can i view monthly calendar entries in OS7 like in OS6?

    I just purchased an iPhone 5S with OS7;I  had been using a 4S with OS6.  I cannot figure out how to change view of calendar.  On my 4S I could see entries when I looked at the whole month calendar.  On the 5S, I only see a dot for an event; I have to

  • Mountain lion mail crashes

    I installed mountain lion on an iMac Intel core duo, previously running  lion, a couple of days ago and have problems opening both 'mail' and 'preview'. In fact they don't open. All I get is a programme alert. What can I do?

  • Crystal reports for visual studio 2010

    Since Visual studio 2010 came out, Crystal Reports is no longer included. I know that Crystal Reports is a free download for Visual Studio 2010, but it is not clear to me which download to use.  There are Downloads as follows: Complete Click once mer

  • Add to favorites functionality

    Hi, I want to implement "Add to Favorites" functionality. I have an application with several pages, I display "Add to Favorites" NAVIGATION bar entry. I want that whenever user click that link, I store the current page id in my custom table, say user

  • BI installation - ECC Problem

    Hi all, In ECC system in tcode SBIW-Business Content DataSources-Transfer Business Content DataSources menu, I see all my datasources in NODENOTCONNECTED tree. why it is in there and how can i fix it? Thanks