Document contains an invalid frame

On open, on a long document in InDesign CS6 (8.0) I'm getting:
==
Document contains an invalid frame.
Story text begins -
[figure]
Delete frame and associated story?
==
If I click 'No' it gives me the next figure (about forty of them) and then ultimately, the document opens.
Ideas?
Thanks

Your file won't open, right?
Legacy files are known to have problems from time to time, and the most reliable way I know to avoid those problems is to export .inx, when possible, from the original version. The second most reliable is to export .idml from the original version.
There are some scripts that will do a batch conversion to .inx or .idml to help you, if you have a lot of files, and if you think you don't have to thoroughly check every legacy file you open in a new version you are sadly mistaken. If you open a .indd file directly, as soon as you start to edit any text it will reflow to confrom to the new text engine and you may not see the problems on the page where you are working. .inx/.idml forces the entire document to recompose as soon as it opens.

Similar Messages

  • Unresponsive Document - Document contains an invalid frame.

    I'm getting a message on a print document that I'm working that reads "Document contains an invalid frame. Story text begins -  Delete frame and associated story?" Regarless of my choice, ID becomes unresponsive. Anybody now what's going on/how to save it?

    Yes. There's a script that does just that. Give me a moment while I find it.
    Found it:
    // blindOpen_and_IDML-Export.jsx
    var _file = File.openDialog("InDesign-Datei"); // Selection of a file
    if(_file != null)
    var d = app.open(_file, false); // Open the file without showing it
    d.exportFile(ExportFormat.INDESIGN_MARKUP,  File(_file.fullName.replace(/.indd$/i,'.idml'))); // Export im IDML-Format
    d.close(SaveOptions.NO); // Close without saving
    And this is how to install it:
    http://indesignsecrets.com/how-to-install-a-script-in-indesign-that-you-found-in-a-forum-o r-blog-post.php

  • The Folder Path "My Documents contains an Invalid Character"

    Hello.
    I have a major problem at hand.
    I presently have iTunes 7.6 on my Dell laptop
    when i try installing itunes 7.7 or 7.7.1, it gives an error
    "The folder path my documents contains an invalid character"
    I scoured the internet, but to no avail...
    Please help
    Sometime back, the name of My Documents have been changed to "id" by mistake
    Then itunes 7.6 also wasnt working.. Then i went to the registry and changed all the folder paths, and then it was working....
    So, please help...
    Thanks!

    If the same problem occurs in another account, it suggests the message is misleading and the problem is not with My Documents itself.
    That is unless you have changed the path c:\Documents and Settings which is common to all accounts.
    It sounds as though there is a registry key set with corrupt information somewhere that you haven't found yet.
    Something you could try is a complete removal of iTunes according to the following method. I have also included instructions for installer clean up which you should do if one of the uninstalls fails. I am guessing that the iTunes uninstall might fail with a similar message.
    == uninstall with cleanup ==
    Download a fresh copy of iTunes and the stand alone version of Quicktime
    http://www.apple.com/quicktime/download/win.html
    http://www.apple.com/itunes/download/
    Download and install Microsoft Installer cleanup utility, there are instructions on the page as well as the download. Note that what you download is the installer not the program – you have to run it to install the program
    http://support.microsoft.com/kb/290301/
    Now use the following method to remove iTunes and its components:
    XP
    http://support.apple.com/kb/HT1925
    Vista
    http://support.apple.com/kb/HT1923
    If you hit a problem with one of the uninstalls don't worry, carry on with the deleting of files and folders as directed in the method.
    When you get to deleting Quicktime files in the system32 folder as advised in the method, you can delete and file or folder called Quicktime.
    Restart your PC.
    Run the Microsoft Installer Cleanup Utility. (Start > All Programs > Windows Install Clean Up)
    Remove any references you find to the programs you removed - strictly speaking you only need to worry about those programs where the uninstall failed.
    restart your PC
    Install the stand alone Quicktime and check that it works.
    If it does, install iTunes.
    ===

  • I am trying to download the latest iTunes update.  Keep getting error message stating "The folder path 'My Documents' contains an invalid character".  I can't uninstall iTunes for the same reason.  HELP!

    I am trying to download the latest iTunes update; keep getting error message that says "The folder path 'My Documents' contains an invalid character".  This also happens when I try to uninstall iTunes.  HELP!

    OK, never mind!  I saw another question on the right side that addressed the problem, and it worked perfectly!  Went to Major Geeks' page, downloaded the Windows Installer Cleanup Utility, and was able to reinstall the updated version of iTunes!  This community is super!

  • SSMS 2012:FOR XML PATH Using XPath Node Tests-Columnn name 'test()' contains an invalid XML identifier as required by FOR XML?

    Hi all,
    I am learning XPATH and XQUERY from the Book "Pro T-SQL 2008 Programmer's Guide" written by Michael Coles, (published by apress). I copied the Code Listing 12-8 FOR XML PATH Using XPath Node Tests (listed below) and executed it in my
    SQL Server 2012 Management Studio:
    --Coles12_8.sql // saved in C:/Documemnts/SQL Server Management Studio
    -- Coles Listing 12-8 FOR XML PATH Using XPATH Node Tests
    -- Retrieving Name and E-mail Addresses with FOR XML PATH in AdvantureWorks
    -- 16 March 2015 0935 AM
    USE AdventureWorks;
    GO
    SELECT
    p.NameStyle AS "processing-instruction(nameStyle)",
    p.BusinessEntityID AS "Person/@ID",
    p.ModifiedDate AS "comment()",
    pp.PhoneNumber AS "test()",
    FirstName AS "Person/Name/First",
    MiddleName AS "Person/Name/Middle",
    LastName AS "Person/Name/Last",
    EmailAddress AS "Person/Email"
    FROM Person.Person p
    INNER JOIN Person.EmailAddress e
    ON p.BusinessEntityID = e.BusinessEntityID
    INNER JOIN Person.PersonPhone pp
    ON p.BusinessEntityID = pp.BusinessEntityID
    FOR XML PATH;
    I got the following error message:
    Msg 6850, Level 16, State 1, Line 2
    Column name 'test()' contains an invalid XML identifier as required by FOR XML; '('(0x0028) is the first character at fault.
    I have no ideas why I got this error message.  Please kindly help and advise me how to resolve this error.
    Thanks in advance,  Scott Chang

    Hi Michelle, Thanks for your nice response.
    I corrected the mistake and executed the revised code. It worked nicely.
    I just have one question to ask you about the appearance of the xml output of my Co;les12_8.sql:
    <row>
    <?nameStyle 0?>
    <Person ID="1" />
    <!--2003-02-08T00:00:00-->697-555-0142<Person><Name><First>Ken</First><Middle>J</Middle><Last>Sánchez</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="2" />
    <!--2002-02-24T00:00:00-->819-555-0175<Person><Name><First>Terri</First><Middle>Lee</Middle><Last>Duffy</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="3" />
    <!--2001-12-05T00:00:00-->212-555-0187<Person><Name><First>Roberto</First><Last>Tamburello</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="4" />
    <!--2001-12-29T00:00:00-->612-555-0100<Person><Name><First>Rob</First><Last>Walters</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="5" />
    <!--2002-01-30T00:00:00-->849-555-0139<Person><Name><First>Gail</First><Middle>A</Middle><Last>Erickson</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="6" />
    <!--2002-02-17T00:00:00-->122-555-0189<Person><Name><First>Jossef</First><Middle>H</Middle><Last>Goldberg</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="7" />
    <!--2003-03-05T00:00:00-->181-555-0156<Person><Name><First>Dylan</First><Middle>A</Middle><Last>Miller</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="8" />
    <!--2003-01-23T00:00:00-->815-555-0138<Person><Name><First>Diane</First><Middle>L</Middle><Last>Margheim</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="9" />
    <!--2003-02-10T00:00:00-->185-555-0186<Person><Name><First>Gigi</First><Middle>N</Middle><Last>Matthew</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="10" />
    <!--2003-05-28T00:00:00-->330-555-2568<Person><Name><First>Michael</First><Last>Raheem</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    <?nameStyle 0?>
    <Person ID="11" />
    <!--2004-12-29T00:00:00-->719-555-0181<Person><Name><First>Ovidiu</First><Middle>V</Middle><Last>Cracium</Last></Name><Email>[email protected]</Email></Person></row>
    <row>
    I feel this xml output is not like the regular xml output.  Do you know why it is diffrent from the regular xml xml output?  Please comment on this matter.
    Thanks,
    Scott Chang
    What do you mean by regular xml document? Are you referring to fact that its missing a root element? if yes it can be added as below
    USE AdventureWorks;
    GO
    SELECT
    p.NameStyle AS "processing-instruction(nameStyle)",
    p.BusinessEntityID AS "Person/@ID",
    p.ModifiedDate AS "comment()",
    pp.PhoneNumber AS "text()",
    FirstName AS "Person/Name/First",
    MiddleName AS "Person/Name/Middle",
    LastName AS "Person/Name/Last",
    EmailAddress AS "Person/Email"
    FROM Person.Person p
    INNER JOIN Person.EmailAddress e
    ON p.BusinessEntityID = e.BusinessEntityID
    INNER JOIN Person.PersonPhone pp
    ON p.BusinessEntityID = pp.BusinessEntityID
    FOR XML PATH('ElementName'),ROOT('RootName');
    replace ElementName and RootName with whatever name you need to set for element as well as the root element
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Folder path "My Tunes" contains an invalid character.

    When trying to install the latest version of ITunes I get the message "the folder path My Tunes contains an invalid character. I click ok and then it says try again later, but later is always the same. I've tried to delete the whole thing to start from scratch but it won't let me. Something got messed up when I put the program into an external hard drive. What should I do next?

    "The folder itunes cannot be found or created and is required. The default location for this folder is inside "My Music" folder.
    okay ... the best place to start with that one is with the following document:
    iTunes for Windows: "Disk is locked" or "iTunes folder cannot be found" when installing or opening iTunes
    ... but if you run into the complication where "My Music" doesn't appear as an option in TweakUI, perhaps try the alternate technique from the following Nigel Carpenter post:
    Nigel Carpenter: re: Itunes problem

  • The folder path "My Pictures" contains an invalid character! ???

    I get this error when updating Itunes+QuickTime.
    "The folder path "My Pictures" contains an invalid character."
    The installation aboards when I click OK.
    The path on my PC is: "C:\Documents and Settings\alexisg\My Documents\My Pictures". I don't see anything wrong with it...
    Any idea how to fix it?
    Thanks!

    +"The folder path "My Pictures" contains an invalid character."+
    Although the following document refers to a different application, it's worth trying when that message mentions "My Pictures":
    You may receive one of three error messages when you try to install Streets and Trips or MapPoint

  • ITunes fails to install update "folder path program files contains an invalid character"

    I'm trying to get the newest version of itunes, but I keep getting "the folder path program files contains an invalid character." I've seen on here before attempts to use Microsoft fix it and Windows Clean up which I've tried and both haven't helped. I've gone to youtube and tried to delete the appropriate folders under the registry edit. Nothing seems to work. I need the new itunes to update my iphone because of the recent hardware crash via the new update.

    At what stage in the process does this occur?
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • The font 'Didot' contains an invalid encoding. Some characters may not display.

    I am receiving this message:
    "The font 'Didot' contains an invalid encoding. Some characters may not display."
    The message appears only in one form, not others. It appears only once, the first time I click on the form after opening it, then not again until I reopen the form.
    The font is not embedded in the form and does not exist on my computer. The font is not employed in any field in the form or in its static elements.
    Would appreciate any help in getting rid of this very annoying message.

    KKKRRRGGG wrote:
    I have a 2 page PDF form that is getting this error message every time I open the document.
    "The font "HelveticaNeue" contains an invalid encoding. Some characters may not display."
    The document has been in use for a year (never having this error message) and needed some updates. All that was changed was the addition of some extra fields and some options in one java script to reflect extra addresses in a drop down menu.
    HelveticaNeue was in a PDF layout (from Illustrator) for the background but this variable was removed when I converted all fonts to curves (outlines) and replaced it in to my form. Under Properties>Fonts HelveticaNeue isn't even listed. All fields are Myriad Pro (triple checked) so I cannot understand how it is still an issue. It does not seem to have any impact on the document apart from the error message. It is hard to remove when it does not appear anywhere in the document except for the error message.
    I have worked backwards and deleted all java scripts and it is still an issue. I have re-imported the background with active HelveticaNeue fonts and it is still an issue. Deleted any fields that relate to java scripts and it is still an issue. Tearing the hair out.....
    Any help would be hugely appreciated as I would prefer to not have to start again from scratch.
    Run FontBook and verify the Font. If defective open your System Install CD  open Fonts. Drag this font to Desktop.
    If you can Remove the defective font by draging to Trash (if system font you'll have to give username and Password) .
    Then drag the copy on Finder in same folder dective was removed from
    THen Restart Computer with shift key down. Hold down until a screen comes up where you must sign in. wait until screen fully loads. Now try the PDF.  If works shut down Acrobat (or Reader) and the restart computer normally.
    If this doesn't work do the repair located at: http://support.apple.com/kb/DL1377

  • An unnamed file contains an invalid path

    Hi. I'm using Flash CS3 on Windows XP Pro (SP3) and for the
    past two weeks, when attempting to save a file, I've been getting a
    dialog which is headed as "Adobe Flash CS3" and reads: "An unnamed
    file contains an invalid path. OK" After clicking OK, the dialog is
    dismissed but the Flash ui does not respond. Quitting Flash and
    restarting it again is OK - Flash behaves "normally". This issue
    does not occur every time I try to save a document - but it has
    occurred every time I've used Flash. It does not occur for any
    other CS3 application. I have tried to uninstall and re-install
    Flash. (Same issue.) I have also tried to re-install all of CS3.
    (Same issue.) I use McAfee Security Center and have scanned the
    system twice without finding any issues. I have run a checkdisk on
    the hard disk drive and also defragged the hard disk drive. None of
    these things has changed the behaviour. Can anyone offer any
    advice?

    Please post to the Discoverer forum:
    Discoverer

  • 'The folder path "C:" contains an invalid character.' ERROR AS I INSTALL iTunes

    hi
    first of all, merry xmas to all that celebrate! i hope you had/have a memorable day!
    and wishing everyone the very best for the new year.
    Now, I have a problem when I try to install iTunes on my computer. I'm running:
    - Windows Vista (Home Basic)
    - iTunes 10.5.2.11
    i have sufficient hard-drive space and sufficient ram. its definetly NOT from that. I originially DID HAVE iTunes already installed on my computer, but I was frequently having problems with establishing a connection through my iPhone 4. So I thought it would be a good idea to delete it and try downloading a new version, then install it fresh!
    I have some computer skills and knowledge, and i know how "most" things work and run. But now I am totally stuck. I run the iTunes software to be installed, but the installer keeps giving me an error message and NOT installing. I've done all the easy and required steps after I deleted the original version of iTunes from my computer, and now I need help from someone who really knows their stuff in IT and computer software. I have a feeling it may be a string of codes that are corrupt or significantly different to what they should be, but thats just my guess! cos like i already said, ive tried all the common fixes already but have been unsuccessful thus far. Some of the things I did were:
    - Restart the computer, re-boot, login to Windows, run the iTunes installation
    - Turn off the computer, wait 10 minutes, re-boot and then run the iTunes installation
    - Delete ALL the "Apple" company software that was still installed on my computer (QuickTime, iPhone Utility, iPod, Bonjour, etc etc)
    - Confirm my "User Account Control" is OFF
    - Run the iTunes installation file from my secondary windows login account (which has "Administrator" privilages)
    - Create a new windows login account, turn off the UAC (User Account Control protection), then try installing iTunes
    - Run disk-error checks on my hard-drives incase there are missing/corrupt/misplaced files that needed repair
    etc etc etc etc
    Nothing worked! THIS BELOW IS EXACTLY THE PROBLEM I KEEP GETTING WHEN I DOUBLE-CLICK ON THE iTUNES INSTALLER:
    - Double click on the iTunes install icon
    - The "Trusted File Security Warning/Confirmation" window appears, requesting I confirm to Run or Cancel the software installation. I click on "Run"
    - A horizontal grey bar appears in the middle of the screen, and quickly fills up green
    - Then a small installation windows appears (Windows Installer) that writes "Preparing to Install". Then it very fast writes a couple different sentences (which is normal), specifically the sentences are "Performing installation checks" and "Checking spacing requirements".
    - immedietly after the previous step, another window appears and I hear the "error" audio tone. The ERROR MESSAGE has the Yellow Triangle logo with an exclamation mark in the middle, and beside it displays the following text (and Ive attatched the screen shot too):
    THE FOLDER PATH "C:" CONTAINS AN INVALID CHARACTER
    then below this message theres the "OK" button which I have no choice but to click on. then the next window that appears is as follows (see screenshot), and it reads:
    iTunes Installer Completed
    The installer encountered errors before iTunes could be configured.
    Errors occured during installation. Your system has not been modified.
    Please run the installer again, or click Finish to exit
    Please I beg you guys to help me, I will be extremely grateful for ALL and ANY advice/tips/assistance/solutions I receive. And would owe you one for sure!!
    Please feel free to write your opinions and thoughts on what I could do different, as Ive used up all my knowledge regarding the matter, and have seriously hit a brick wall now.
    Thanks so so so much, and once again I wish everyone the absolute very best!
    regards.
    PS. Replies can be posted in this thread, otherwise even sent to me via email if you wish to do otherwise. My email address is:  [email protected]
    cheers

    Resolution:
    Check for the existence of a hidden folder named %appdata% in the C:\Program Files\Microsoft Application Virtualization\Client folder.  (You will need to un-check the folder options box in windows explorer for "Hide
    protected operating system files" to see it)
    If the hidden %appdata% folder exists, delete it.
    Proceed to uninstall the App-V client
    After a clean uninstall and removal of remnants of the client, reinstall the client again and apply the latest hotfix available (Hotfix 2 for SP2 at a minimum).

  • On file open: "This document contains JavaScript code for a widget that no longer exists."

    I had an existing, functional datepicker in a web page.
    Recently I downloaded the UI Datepicker in the Widget Browser and installed it in DW CS5. Now every time I load the file that calls the datepicker that I added myself, a warning opens with the following text:
    This document contains JavaScript code for a widget that no longer exists. If you don't remove the code, the browser might display JavaScript errors when loading the page. Would you like Dreamweaver to find all instances of this code for you?
    Widget: $("#reservDateBegin").datepicker();
    Widget: $("#reservDateEnd").datepicker();
    Clicking "Yes" opens the file and shows the search box at the bottom of the window with [current document] in File and $("#reservDateEnd").datepicker(); in Matched Text. Clicking "No" just opens the file.
    The error is wrong, since installing the widget is what caused the error in the first place!
    How can I get DW to stop showing this message?
    Thanks for any help.

    I do understand you're trying to be helpful. I was just hoping providing the relevant code snippets would be sufficient so I didn't have to take the time to provide a "cleaned" version of the files and upload those to a public-safe location.
    Zabeth69 wrote: If you don't understand what 'code at the bottom of the page' means, you have not used one of those systems. I don't know what causes the error code to come up (besides removing a Spry widget, I mean). So if it doesn't apply to you, ignore it.
    This is exactly my point: I haven't used any of the DW "systems". I've always manually coded in DW, so I can't have removed a Spry widget in the first place. It wasn't until I installed the Widget using the Widget Browser that I started getting the error (I don't mean adding the datepicker widget to the code using the DW Insert menu - I mean installing the Widget into DW itself). Ignoring such an erroneous/incorrect error seems kind of silly, since every time I open the file I get the error message.
    Anyway, as requested, the following are links to the contactUsCleaned.php page, and the php included headerCleaned.php file. Since these use php includes to complete the rendered HTML, they won't look right in the browser, but as you know viewing the source will show the relevant html, javascript, and jquery code. I didn't see any way to upload the files in this forum, which, due to the php code, would be preferable to see exactly what my code looks like...
    http://www.eventidewebdesign.com/public/contactUsCleaned.php
    http://www.eventidewebdesign.com/public/headerCleaned.php
    The footer.php file the contactUs page includes is simply a set of HTML links to the pages on the site, copyright info, and the Google Analytics script. There is no other code in the footer.php file.

  • Error message: "This document contains photoshop data which appears to be damaged."

    I saved the file I was working on by choosing "Save" from the "File" menu. Unfortunately after 10 min as I saved my work  my PC had "issues" and needed to be manually shut off. I was trying to open the psd file after restarting my computer and I get this error message: "This document contains photoshop data which appears to be damaged. Continue and ignore the photoshop data?" I clicked okay and then I get just a black screen. No Layers or any pictures.
    I have tried to preview in Graphic Converter, in Illustrator, in ACDSee, etc... Nothing... I just get a black screen. Also, I have tried file recovery programs: Stellar Phoenix PSD Repair V1.0 and Advanced PSD Repair v1.4
    The program Stellar Phoenix PSD Repair V1.0 was able to recover only BMP picture 3.4 KB, it is so tiny that you can't see anything on the picture.
    I also have tried to install plugin "psdrecover", for Adobe Photoshop. Unsuccessfully for some reason. The plugin does not want to be installed into the "plugins" folder. I did follow the instructions.
    I am using Photoshop 6 version and Windows 7 operating System.
    I am in dire need of help. I've been working on it for days. Is there any way to recover that file back?

    I hate to be the bearer of bad news, but you're likely out of luck.  We almost never hear of anyone recovering image data from a damaged PSD.
    Some thoughts:
    1.  Set up backups.
    2.  Get in the habit of saving your master file in several different locations as you work on it.
    3.  Consider upgrading to Photoshop CS6, which auto-saves your work in the background.  I'm not sure whether it would have recovered the data in your particular case, but it's possible.
    4.  Don't feel bad - go back and do the image again, and I'll bet it comes out even better in less time.
    -Noel

  • 'Program Files' contains an invalid character when installing iTunes 10.5

    I'm getting an error when I try to install iTunes 10.5: "The folder path 'Program Files' contains an invalid character". Nothing has changed on my machine, I don't see any invalid characters in the path where I'm installing iTunes, and I have now tried to install this manually. Any ideas how to proceed?
    Thanks!

    what was the answer to work around this error message..  i am having the same problem trying to unistall quicktime.. 
    thanks

  • Trying to uninstall or repair get an error message: The folder path 'My Music' contains an invalid character.

    Trying to uninstall or repair get an error message: The folder path 'My Music' contains an invalid character. How do I fix?

    Try the following user tip:
    "not a valid short file name" and "invalid character" install errors

Maybe you are looking for

  • Text wrap in InDesign cs2

    I have InDesign cs2 and the text wrap feature has completely disappeared--listed in window but GONE! How can this be recovered?

  • External content sharepoint list permissions

    So I have created external content types that are read-only for some sql data. The issue that I'm trying to solve now is that the SharePoint list which displays the data has a "view item" functionality on one of the columns. When the user clicks that

  • Free Upgrade macos 10.7 to 10.8 for new macbook

    hello, I bought a new macbook pro, can I somehow upgrade version macos 10.7 to version 10.8?

  • Upgraded to ios6 on ipad2 now I cant send messages from imessage.

    Upgraded to ios6 on ipad2 now I cant send messages from imessage. Any fix? I've rebooted/powered down and on again and in Settings turned messages off and on again. Still won't work...

  • Capture Change in Sales Order Status

    Dear All, I have an issue in which i need to capture all the sales order in which change has taken place in a given day. I have checked CDHDR & CDPOS but they arent helpful as they are not updated when there is change in status of sales order. Could