Location entered does not match warehouse location of item

Hello Experts,
I am creating delivery through object.but I am facing this error 'Location entered does not match warehouse location of item'
This is my code .
   SAPbobsCOM.Documents oDelivery;
                                    oDelivery = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDeliveryNotes);
                                    ldna_Rec = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
                                    string saleordernumber = oMat.Columns.Item("V2").Cells.Item(i).Specific.Value;
                                    string[] ret = GetBinCode.Split('-');
                                    string whs = ret[0];
                                    oDelivery.Lines.BaseEntry = Convert.ToInt16(saleordernumber);
                                    oDelivery.Lines.BaseType = 17;
                                    oDelivery.Lines.ItemCode = oMat.Columns.Item("V7").Cells.Item(i).Specific.Value;
                                    oDelivery.Lines.ItemDescription = oMat.Columns.Item("V6").Cells.Item(i).Specific.Value;
                                    oDelivery.Lines.BaseLine = lineno;
                                    oDelivery.Lines.Quantity = qty;
                                    oDelivery.Lines.WarehouseCode = whs;                                 
                                    oDelivery.Lines.UserFields.Fields.Item("U_TotBird").Value = totalbird;
                                  // code for batch
                                    SAPbobsCOM.Items oItemD;
                                    oItemD = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems);
                                    string it = oMat.Columns.Item("V7").Cells.Item(i).Specific.Value;
                                    oItemD.GetByKey(it);
                                    if (oItemD.ManageBatchNumbers == SAPbobsCOM.BoYesNoEnum.tYES)
                                        ldna_Rec = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
                                        string si = oMat.Columns.Item("V7").Cells.Item(i).Specific.Value;
                                        string strBatch = "select DistNumber from OBTN where ItemCode ='" + it + "' ";
                                        ldna_Rec.DoQuery(strBatch);
                                        while (!ldna_Rec.EoF)
                                            string BatchNo = ldna_Rec.Fields.Item("DistNumber").Value;
                                            if ( BatchNo == mainbatch)
                                               oDelivery.Lines.BinAllocations.SerialAndBatchNumbersBaseLine = 0;
                                                oDelivery.Lines.BatchNumbers.BatchNumber = mainbatch;
                                                oDelivery.Lines.BatchNumbers.Quantity = totalbird;
                                                oDelivery.Lines.BatchNumbers.Add();
                                            ldna_Rec.MoveNext();
                                    //code for bin allocation
                                    ldna_Rec = clsAddOn.LDNA_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
                                    string strQuerybinD = "select AbsEntry from OBIN where BinCode='" + GetBinCode + "'";
                                    ldna_Rec.DoQuery(strQuerybinD);
                                    int binAbsD = ldna_Rec.Fields.Item("AbsEntry").Value;
                                    oDelivery.Lines.BinAllocations.BinAbsEntry = binAbsD;
                                    SAPbobsCOM.DocumentLinesBinAllocations binD = oDelivery.Lines.BinAllocations;
                                    binD.SerialAndBatchNumbersBaseLine =0;
                                    binD.BinAbsEntry = binAbsD;
                                    binD.Quantity = totalbird;
                                    if (oDelivery.Add() == 0)
                                        clsAddOn.LDNA_Application.StatusBar.SetText("Delivery challan created Sucessfully.", SAPbouiCOM.BoMessageTime.bmt_Medium, SAPbouiCOM.BoStatusBarMessageType.smt_Success);
                                    else
                                        BubbleEvent = false;
                                        clsAddOn.LDNA_Application.StatusBar.SetText(clsAddOn.LDNA_Company.GetLastErrorDescription(), SAPbouiCOM.BoMessageTime.bmt_Medium, SAPbouiCOM.BoStatusBarMessageType.smt_Error);
                                        return;
Please help me
Regards,
Pritam

Hi George,
I have another question for you.  I have a column that is titled "City"  Intitally I wanted to be able to enter in the name of the city into one field and it auto populate the other fields with the same name.  Since I'm new to PDF forms I thought I would just copy and paste the same field multiple times so once I enter in the name in the first field it would fill in the rest of the fields with the same name.  This works, but in some cases I need one or two of the fields to be different and allow me to edit the name.  As you can expect every time I edit one field it changes the name for all the fields.  So my question is; Is there a way to have the column auto populate the same name that enter in the first field, but allow me to change the fields below if I need to? 
Here is a rough idea of what I'm trying to do
City
CityRow1
CityRow2
CityRow3
CityRow4
This is what I had
City
CityRow1 - Kansas City
CityRow1 - Kansas City
CityRow1 - Kansas City
CityRow1 - Kansas City
I would like the form to initially auto populate the city to save time, but if I have an instance where its in a different city I need to be able to change the value of only that particular field.
City
CityRow1 - Kansas City
CityRow2 - Kansas City
CityRow3 - Lawrence
CityRow4 - Kansas City
Again I appreciate all you help thus for. Thanks again!

Similar Messages

  • Error Message - Value Entered Does Not Match Format of Field

    I keep getting an error message in Adobe Pro X: "The value entered does not match the format of the field [JF13]".
    I have JF13 programmed as follows:
    On Calculate tab:
    if(Number(this.getField("ck4").value) > 0) this.getField("JF13").value = Number(this.getField("FL019").value); else this.getField("JF13").value = " ";
    It is programmed this way so if the user checks the check box before the field, only then will JF13 populate a value, which pulls from FL019. I also have the settings set to "number" because the data needs to display as a dollar amount $xxx.xx.
    FL019 is a hidden field on the form which pulls a dollar amount from a Mainframe, and its settings are also set to "Number" :
    I get four pop up windows with the above mentioned error message, and the only way to make the message stop is to remove the "number" format from the fields. However, when this is done, if any number which ends in a zero is entered, it cuts off the zero. This is not acceptable either.
    Is there some sort of script I could add or some other way to prevent both the error message and the cutting off of the zero on JF13?
    I am not very proficient with javascript, so any assistance would be appreciated!

    Thank you so much for your response!!
    Forgive me for my lack of knowledge - but where exactly would I add that in the script?
    I tried it like this:
    if(Number(this.getField("ck4").value) > 0) this.getField("JF13").value = Number(this.getField("FL019").value); else this.getField("JF13").value = ""(empty string);
    And I got an error saying I was missing a parenthesis. Should it go somewhere else or am I completely off?

  • HT3702 When trying to purchase an app an error message comes up saying the info I entered does not match my banking info. The odd thing is, the $1.00 hold is shown immediately on my credit card acct. , so I obviously did enter it correctly. Tried 5 times.

    When trying to purchase an app an error message comes up saying the info I entered does not match my banking info. The odd thing is, the $1.00 hold is shown immediately on my credit card acct. , so I obviously did enter it correctly. Tried 5 times. Any suggestions

    When trying to purchase an app an error message comes up saying the info I entered does not match my banking info. The odd thing is, the $1.00 hold is shown immediately on my credit card acct. , so I obviously did enter it correctly. Tried 5 times. Any suggestions

  • CS4 Upgrade, the serial number you have entered does not match the product you have selected

    I have a valid CS2 premium license and have installed CS4 upgrade to a new machine but get the dreaded error "the serial number you have entered does not match the product you have selected" Now I got this error when I originally installed in 2009, back then I could call customer service and get the problem resolved but now when I phone I get an automated message saying phone support is not available for CS4? Does anyone know of a work around or a UK number where I can get this resolved? Any help would be appreciated.

    Please see: http://www.hp.com/country/us/en/mda/windows7/upgrade/index_ww.html to select your correct country or region.
    Carey Frisch
    Microsoft MVP
    Windows Expert - Consumer

  • Says "Password entered does not match the credential chosen" - but it does!

    Hi all
    I hesitate to post this question, because it seems so stupid, but I'm really stumped.
    I downloaded the latest ReaderRights credential 0004517_Exp20080430.pfx to the correct /sapmnt/N4S/global/AdobeDocumentServices/TrustManagerService/trust/credentials directory and attempted to apply it to the Visual Administrator service "Document Services Configuration".
    "The password entered does not match the credential chosen. Please enter the password for the chosen credential".
    Stopped/started J2EE server, made sure it was typed correctly, always the same. I can only imagine that the credential is not designed to be applied a second time, which is a bit a problem for a preview system.
    Any ideas appreciated.
    Thanks
    Phil

    Hi Kay-Arne
    No, no solution yet. I've waited until the next short-term credential (end of April) but that doesn't work either. (insert very sad emoticon)
    If you're not using a preview version, have you raised an OSS and could you let me what they say? I may have a name at SAP to ask, but wanted to try absolutely every else I could think of first.
    Thanks
    Phil

  • The product key entered does not match any of the Windows images available for installation. Enter a different product key.

    how do you manage to install windows 7 when the message on the screen is "The product key entered does not match any of the Windows images available for installation. Enter a different product key. "

    That's a really helpful answer and not smug at all, thanks Carey.
    I just downloaded a DVD image from my university's MSDN Academic Alliance program, named "Microsoft
    Windows 7 with Service Pack 1 Debug/Checked Build 64-bit (English)", which I wanted to use to install over an existing 32-bit version. I thought the install screen was giving this weird unskippable error described in the OP before I even entered
    a key because the 32-bit key I had used on the HDD was somehow interpreted to be used in an upgrade, but no. Even after I wiped the hard drive, this error persisted.
    Guess I'll go Google some more on how to install my legit copy of Windows, because this self-serving shit sure isn't helping.
    edit: IF YOU GOOGLED THIS AND ARE STILL LOOKING FOR YOUR ANSWER, CHECK HERE:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-windows_install/the-product-key-entered-does-not-match-any-of-the/47e6f575-5792-404b-9b7f-2065bdb91011

  • I had windows 8.1 but want to go back to windows 8 with clean install"the product key entered does not match any of the windows image available"

    I had windows 8.1 and wanted to revert to windows 8 so i by mistake formatted the c:/ drive containing os and now when i try to install windows 8 i get the error "The product key entered..."
    And i dont even have recovery image in my pc. I am using a dell laptop and i have windows 8 dvd given by dell which reads" windows 8 recovery media for windows product"
    Please guide me asap.

    OEM keys are embedded on hardware, you might not need to enter the key in your case. I would suggest you to call Dell support here. 
    Arnav Sharma | http://arnavsharma.net/ 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.

  • The value entered does not match the format of the field

    I am trying to do a simple division of profit by sales to find the profit %. Here is the script I am using and it doesn't work.
    var v1 = +getField("Profit%").value;
    var v2 = +getField("Contract1").value;
    event.value = v2 !== 0 ? v1 / v2 : "";
    I continue to get the error The value entered doesnot match the format of the field
    I have attached the file. Can someone help

    Are you very sure?
    Using
    var v1 = 0.05; // "Profit%"
    var v2 = 100000; // "Contract1"
    v1 / v2; // result of division;
    5e-7
    That is 5 * 10 exponent -7 or 0.00000005
    Set the format to "None"
    Also so please post the values you are using.

  • Sales Order Net Price does not match full value of items

    Hi,
    In many cases and for some materials, our system does a funny thing.
    When creating the sales order from VA01, you'll enter 2 items.
    1 is priced $2000
    2 is priced $5000
    Net price should be $7000 (no discounts or fees).
    However, in many cases the net price will be shown as something else (like $6000 or $4000), until you hit save or re-price or go the conditions tab (which shows the correct net price) and back.
    We have a lot of pricing customization in our system, so this is definitely due to that.
    I am a developer, so where would be a good place to look?
    Thanks,
    Shaun

    Thanks.
    I'll have to discuss VTAA pricing types with the Business Analyst, since there are many records and I'm not sure what I'm looking at.
    In regards to your second point, it's not in calculation. It'll stay at that number until you save, check the conditions tab in the header or reprice the document.
    What's interesting is that it doesn't do this for all materials.
    For example:
    Material 1 - priced $25
    Material 2 - priced $25
    Net price would be $50, which is correct.
    But say we use Material 3 - priced $25 as well. For this one, the total net price could show up as $30.
    Can pricing types be specific to materials or material groups? What is the pricing type exactly and why 'A'?

  • Windows 8 error "product key does not match any of the Windows images available for installation"

    Hi Experts
    My HP Pavilion laptop came with window 8. I made the USB recovery for windows 8 using hp recovery manager. My windows was corrupted, while I was trying to install windows 7 in dual boot.
    I used above USB recovery to restore factory default. But every time it is giving me error "HP Recovery Manager Failed error code = 0xefffff08"
    Then I downloaded the OEM ISO mage for windows 8 and tried to do the clean install but now installation process is giving me error "The product key entered does not match any of the Windows images available for installation. Enter a different product key" 
    Please help me. To whom I have to contact?

    Hi ghost-rider,
    Thank you for your query, I will do my best to assist you.
    I understand you tried to do a recovery and you received this error  "oxefffff08".
    First I would suggest you run a hardware diagnostics. Testing for Hardware Failures (Windows 8)
    If no hardware failures are located, you have ruled that possibility out.
    Here is a link to Troubleshooting HP System Recovery Problems (Windows 8) that may help.
    If you are still having an issue doing a recovery, I suggest contacting HP support and explain the issue you are having with doing a recovery. They may have another option available for you.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region  Technical Support Sitemap
    The clean install from an OEM image is looking for the product code as it does not match the one that came with the computer, You would need a new code.
    I hope this has helped.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Can not view cellular data account any more (email address does not match)

    On iPad, was originally able to go into Settings > Cellular Data > View Account and view the account info. Now cannot. If try using correct email address and password, get message that account or password are incorrect. If try entering just the email address and clicking "forgot password", get "the email address you entered does not match the email address on file for this device".
    But the 3G cellular is still working.
    Don't know if related, but this problem began after the reports of the 100,000 iPads/users hack. Leads me to wonder if I got hacked.... or more likely if the system/database that "View Account" normally accesses is offline or being reworked by AT&T.
    Any suggestions? Best AT&T contact via Internet? By phone #? By local AT&T store? Via Apple? Use iTunes to reset to factory defaults and start over (risk loss of unlimited plan?)?.
    Thanks.

    Thanks for the replies, I just had the same problem yesterday and it was a misspelled e-mail address, BUT, it did take me three calls to AT&T and more than two and a half hours. The first person didn't even know what I was talking about and gave me a number for iPad support which turned out to be Apple's, so... no help. The second person told me they were there only to solve iPhone problems until I read her your posts, then she tried and tried until the call was cut off (this is AT&T after all). But the third person finally understood, even though it took her almost an hour to get to their iPad support department (she told me it was busy all the time) not before trying with their "technical department" also. I just can't believe that Apple sells millions of these things and AT&T can't supply a direct phone number for this department, or doesn't even train their personnel.

  • Method 'publishCatalog' does not match any of the valid signatures for mess

    When I run my client, I get "Method 'publishCatalog' does not match any of the valid signatures for message-style service methods" I know that it means that my web service method should conform to one of those 4 methods (http://ws.apache.org/axis/java/user-guide.html#ServiceStylesRPCDocumentWrappedAndMessage), and I made it conform, yet I still get that error.
    Here's my Service and Client code:
    import org.w3c.dom.Element;
    import org.apache.axis.client.Service;
    import org.apache.axis.client.Call;
    import org.apache.axis.message.SOAPBodyElement;
    import org.apache.axis.utils.XMLUtils;
    import java.io.File;
    import java.io.FileInputStream;
    import java.net.URL;
    import java.util.Vector;
    public class CatalogPublisherServiceClient {
         public static void main(String[] args) throws Exception{
              String endpointURL="http://localhost:8080/axis/services/CatalogPublisherService";
              org.apache.axis.client.Service service = new Service();
              Call call = (Call)service.createCall();
              call.setTargetEndpointAddress(new URL(endpointURL));
              SOAPBodyElement[] reqSOAPBodyElements = new SOAPBodyElement[1];
              File catalogFile = new File("catalog.xml");
              FileInputStream fis = new FileInputStream(catalogFile);
              reqSOAPBodyElements[0] = new SOAPBodyElement(XMLUtils.newDocument(fis).getDocumentElement());
              SOAPBodyElement[] resSOAPBodyElements = (SOAPBodyElement[]) call.invoke(reqSOAPBodyElements);
              SOAPBodyElement resSOAPBodyElement = null;
              for(int i=0; i<resSOAPBodyElements.length; i++){
                   resSOAPBodyElement = (SOAPBodyElement)resSOAPBodyElements;
                   System.out.println(XMLUtils.ElementToString(resSOAPBodyElement.getAsDOM()));
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.soap.MessageFactory;
    import javax.xml.soap.SOAPMessage;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.Node;
    import org.w3c.dom.Text;
    import java.util.Vector;
    import java.util.Date;
    import java.text.SimpleDateFormat;
    import org.apache.axis.MessageContext;
    import org.apache.axis.utils.XMLUtils;
    import org.apache.axis.message.SOAPBodyElement;
    public class CatalogPublisherService {
         public SOAPBodyElement[] publishCatalog (SOAPBodyElement[] soapBodyElements) throws Exception {
              Element soapBody = (Element)soapBodyElements[0];
              NodeList productList = soapBody.getElementsByTagName ("PRODUCT");
         int productCount = productList.getLength();
         DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
         factory.setNamespaceAware(true);
         DocumentBuilder builder = factory.newDocumentBuilder();
         Document responseDoc = builder.newDocument();
         Element resRoot = responseDoc.createElementNS("http://www.axis03.ws", "CATALOGUPDATE");
         resRoot.setPrefix("CU");
         Element itemCount = responseDoc.createElement("ITEMCOUNT");
         Text itemCountText = responseDoc.createTextNode (String.valueOf(productCount));
         Element dateReceived = responseDoc.createElement("DATERECEIVED");
         SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
         String date = sdf.format(new Date());
         Text dateReceivedText = responseDoc.createTextNode(date);
         //Append the child elements appropriately
         resRoot.appendChild(itemCount);
         itemCount.appendChild(itemCountText);
         resRoot.appendChild(dateReceived);
         dateReceived.appendChild(dateReceivedText);
         SOAPMessage message=null;
         MessageFactory msgFactory = MessageFactory.newInstance();
         message = msgFactory.createMessage();
         SOAPBodyElement[] result = new SOAPBodyElement[1];
         result[0] = new SOAPBodyElement(resRoot);
         return(result);

    That's a really helpful answer and not smug at all, thanks Carey.
    I just downloaded a DVD image from my university's MSDN Academic Alliance program, named "Microsoft
    Windows 7 with Service Pack 1 Debug/Checked Build 64-bit (English)", which I wanted to use to install over an existing 32-bit version. I thought the install screen was giving this weird unskippable error described in the OP before I even entered
    a key because the 32-bit key I had used on the HDD was somehow interpreted to be used in an upgrade, but no. Even after I wiped the hard drive, this error persisted.
    Guess I'll go Google some more on how to install my legit copy of Windows, because this self-serving shit sure isn't helping.
    edit: IF YOU GOOGLED THIS AND ARE STILL LOOKING FOR YOUR ANSWER, CHECK HERE:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-windows_install/the-product-key-entered-does-not-match-any-of-the/47e6f575-5792-404b-9b7f-2065bdb91011

  • Sequence does not match type document()

    Hi all,
    I am having a problem with building a query - maybe one of you can point out my mistake!
    First of all I have a sequence of nodes in the variable '$__mpqfEngineVar_13' which are built in a FLWOR using the following construct:
    <engine:document ID='{'NoID'}' recordNumber='{0.0}' Rank='{0.0}' Score='{$__mpqfEngineVar_8}'>{$__mpqfEngineVar_1}</engine:document>
    I am trying to filter out those which have a specific value in a descendant node (actually present inside the tree $__mpqfEngineVar_1 from above):
    $__mpqfEngineVar_15 := ($__mpqfEngineVar_13[/mpeg7:FamilyName = $__mpqfEngineVar_14])
    However I get the following error message:
    Sequence does not match type document() - found item of type element({urn:dimis:mpqfQueryEngine:schema:2009}document, {http://www.w3.org/2001/XMLSchema}untyped)
    If I use the following relative path instead (which is not an option since the path is user define) it actually works (notice the '*')....
    *//mpeg7:FamilyName
    Any ideas what I am doing wrong? Honestly I can't really see the semantic difference..
    Thanks for your help,
    Alex

    Hi Alex,
    The expression "//mpeg7:FamilyName" is an abbreviated XQuery step that expands to this:
    root() treat as document-node()/descendant-or-self::node()/mpeg7:FamilyNameThis shows you why you're getting an error about the root node not being a document node.
    I expect that the expression you really want is ".//mpeg7:FamilyName" - the "." prefix makes it a relative path rather than an absolute path.
    John

  • Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040

    Please assist I am on a Windows 7 64 bit machine I have VS 2010 and have been fighting with this new program that I was brought on to help with - Issue is that I am unable to get rid of this issue. There is so many solutions but none have worked. If someone can give me some help with what has worked for you.
    The error is Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
    This is with CR installed on 64 bit.
    Thank you very much for any assistance with this problem,
    Kris

    Hi Vittorio
    Please enter the search string 'log4net crystal net' into the search box in the top right corner. When the results come up, click on the Support Notes link. That will filter for the KBAs that you want to have a look at.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • The located assemblys manifest defination does not match the assembly reference.

    Hi,
    I have imported organization in new environment using .bak file. After completed deployment i am exploring the system but unfortunitly getting issues related to plugins on opportunity records. can you please anyone help me on this. Below i shared the log
    file and error screen.
    Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: Could not load file or assembly 'Microsoft.Xrm.Client, Version=5.0.9690.2165,
    Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)Detail: 
    <OrganizationServiceFault xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/xrm/2011/Contracts">
      <ErrorCode>-2147220891</ErrorCode>
      <ErrorDetails xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
        <KeyValuePairOfstringanyType>
          <d2p1:key>OperationStatus</d2p1:key>
          <d2p1:value xmlns:d4p1="http://www.w3.org/2001/XMLSchema" i:type="d4p1:string">0</d2p1:value>
        </KeyValuePairOfstringanyType>
      </ErrorDetails>
      <Message>Could not load file or assembly 'Microsoft.Xrm.Client, Version=5.0.9690.2165, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference.
    (Exception from HRESULT: 0x80131040)</Message>
      <Timestamp>2015-04-14T07:08:43.8293096Z</Timestamp>
      <InnerFault i:nil="true" />
      <TraceText>
    [OpportunityPlugins.Plugins: OpportunityPlugins.Plugins.PostOpportunityUpdateEstCloseDt]
    [2d74942a-9799-e411-a3d6-00155d012d28: PostOpportunityUpdateEstCloseDt]
    Entered OpportunityPlugins.Plugins.PostOpportunityUpdateEstCloseDt.Execute(), Correlation Id: a8fdba7f-8b53-48e3-a237-6fe6388ac1f5, Initiating User: 81e71657-a917-e111-af73-00155d011f08
    OpportunityPlugins.Plugins.PostOpportunityUpdateEstCloseDt is firing for Entity: opportunity, Message: Update, Correlation Id: a8fdba7f-8b53-48e3-a237-6fe6388ac1f5, Initiating User: 81e71657-a917-e111-af73-00155d011f08
    Exiting OpportunityPlugins.Plugins.PostOpportunityUpdateEstCloseDt.Execute(), Correlation Id: a8fdba7f-8b53-48e3-a237-6fe6388ac1f5, Initiating User: 81e71657-a917-e111-af73-00155d011f08
    </TraceText>
    </OrganizationServiceFault>
    Kindly help me.
    I checked plugins registered in Database.

    You plugin assembly (OpportunityPlugins.Plugins.PostOpportunityUpdateEstCloseDt) has a reference to v.5.0.9690.2165 of the Microsoft.Xrm.Client assembly, and the error indicated that v.5.0.9690.2165 of the Microsoft.Xrm.Client assembly is not available in
    the new environment
    Ideally, plugins should not use the Microsoft.Xrm.Client assembly, but instead use the Microsoft.Xrm.Sdk assembly, which will always be available. So, the preferred solution would be to recreate the plugin assembly without the reference to the Microsoft.Xrm.Client
    assembly
    An alternate solution, which may be quicker, would be to recompile the plugin assembly against whichever version of the Microsoft.Xrm.Client assembly is on the system, but this won't solve potential future errors with future Crm versions
    Microsoft CRM MVP - http://mscrmuk.blogspot.com  http://www.core.co.uk

Maybe you are looking for