Weird Print problems and conversion to PDF problems...

I edited a logo in Illustrator for a hat using spot colors. 3 colors total. I saved as illustrator and then placed in InDesign for sizing. I printed it and some of the color didnt show up. So I figured it was the spot colors screwing with our printer. I printed again, but this time, in the ink manager of the print dialogue, I converted all spots to process. That substantially changed the colors in the image. I saved to PDF and then opened in Photoshop, and I get missing color plus changed color. Whats up? Looks great on screen when in Illustrator, and placed in InDesign.. but when It prints or is converted to PDF and opened in Photoshop, it goes to hell.
All Creative Suite 2 files on a Mac

Yep.. it's an overprint issue. When I open the PDF, the overprint version is all screwed up... and over print preview OFF looks fine.
Why is overprint doing anything? I dont intentionally do anything with overprint..I dont really know what overprint is, let alone want anything to do with overprint. I want whats on screen to print...
Chris

Similar Messages

  • 3 problems with conversion to PDF

    Hi,
    I am using Adobe Acrobat 6.0 Professional and MS Word 2003.
    When converting Word documents to PDF, I have these problems:
    1) Bright colours in my Word files (red, pink, yellow) turn much darker and duller in PDF. They look kind of dirty red/pink/yellow. Very unattractive.
    2) Large fonts such as 18 (I use Arial) lose red colour in some letters and turn out white (with a red outline), while some letters remain red.
    3) Spaces between lines with hyperlinks get shifted in PDF - some remain in place, some just disappear, leaving no space between the lines. Can this be fixed in settings somehow?
    I would be so grateful if someone could teach me how to fix these 3 annoying glitches!
    Thanks in advance,
    Gloria

    Mike,
    There are no Distiller settings that I can see in my Word document. There is the Adobe PDF tab which leads to Acrobat PDFMaker and inside it I tried changing conversion settings to Standard, to Press and to High Quality - and in every case I'm still getting the same dark colours in headlines instead of bright, and shifting, shrinking spaces between lines. As soon as I click on the "Convert to Adobe PDF" button, the spaces between hyperlinks start disappearing and the whole page formatting goes crazy. Very frustrating to see the loss of quality.

  • Conversion to PDF problem

    Spool to PDF is failing....when line size is greater than 255 character..
    only 255 chararcters are coming up in the PDF
    I have to convert the spool (Abaplist) to PDF and send as a mail attachment.
    Any help is highly appreicated.

    First generate a spool request by executing ur print program and selecting the option"New spool request" and then click on print previw and then Text->print
    it will give u the Spool request number on the status bar..
    now execute report RSTXPDFT4 ( DOWNLOAD SAPSCRIPT TO PDF FILE ON LOCAL PC)..
    now write the following code to send this PDF as attachment -
    *& Report ZGILL_SENDMAIL_PDF *
    REPORT ZGILL_SENDMAIL_PDF .
    INCLUDE ZGILL_INCMAIL. "SEE BELOW FOR INCLUDE PROGRAM CODE.
    DATA
    DATA : itab LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA : file_name TYPE string.
    data : path like PCFILE-PATH.
    data : extension(5) type c.
    data : name(100) type c.
    SELECTION SCREEN
    PARAMETERS : receiver TYPE somlreci1-receiver lower case DEFAULT '[email protected]'.
    PARAMETERS : p_file LIKE rlgrap-filename
    OBLIGATORY DEFAULT 'C:\TEMP\SALARY_SLIP1.PDF'.
    AT SELECTION SCREEN
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CLEAR p_file.
    CALL FUNCTION 'F4_FILENAME'
    IMPORTING
    file_name = p_file.
    START-OF-SELECTION
    START-OF-SELECTION.
    PERFORM ml_customize USING 'Tst' 'Testing'.
    PERFORM ml_addrecp USING receiver 'U'.
    PERFORM upl.
    PERFORM doconv TABLES itab objbin.
    PERFORM ml_prepare USING 'X' extension name.
    PERFORM ml_dosend.
    SUBMIT rsconn01
    WITH mode EQ 'INT'
    AND RETURN.
    FORM
    FORM upl.
    file_name = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = file_name
    filetype = 'BIN'
    TABLES
    data_tab = itab
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    path = file_name.
    CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
    EXPORTING
    complete_filename = path
    CHECK_DOS_FORMAT =
    IMPORTING
    DRIVE =
    EXTENSION = extension
    NAME = name
    NAME_WITH_EXT =
    PATH =
    EXCEPTIONS
    INVALID_DRIVE = 1
    INVALID_EXTENSION = 2
    INVALID_NAME = 3
    INVALID_PATH = 4
    OTHERS = 5
    ENDFORM. "upl
    *********************iNCLUDE pROGRAM********************************************
    *& Include ZGILL_INCMAIL *
    Data
    DATA: docdata LIKE sodocchgi1,
    objpack LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
    objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE,
    objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objhex LIKE solix OCCURS 10 WITH HEADER LINE,
    reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    DATA: tab_lines TYPE i,
    doc_size TYPE i,
    att_type LIKE soodk-objtp.
    DATA: listobject LIKE abaplist OCCURS 1 WITH HEADER LINE.
    FORM
    FORM ml_customize USING objname objdesc.
    Clear Variables
    CLEAR docdata.
    REFRESH objpack.
    CLEAR objpack.
    REFRESH objhead.
    REFRESH objtxt.
    CLEAR objtxt.
    REFRESH objbin.
    CLEAR objbin.
    REFRESH objhex.
    CLEAR objhex.
    REFRESH reclist.
    CLEAR reclist.
    REFRESH listobject.
    CLEAR listobject.
    CLEAR tab_lines.
    CLEAR doc_size.
    CLEAR att_type.
    Set Variables
    docdata-obj_name = objname.
    docdata-obj_descr = objdesc.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addrecp USING preceiver prec_type.
    CLEAR reclist.
    reclist-receiver = preceiver.
    reclist-rec_type = prec_type.
    APPEND reclist.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addtxt USING ptxt.
    CLEAR objtxt.
    objtxt = ptxt.
    APPEND objtxt.
    ENDFORM. "ml_customize
    FORM
    FORM ml_prepare USING bypassmemory whatatt_type whatname.
    IF bypassmemory = ''.
    Fetch List From Memory
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    listobject = listobject
    EXCEPTIONS
    OTHERS = 1.
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'LIST_FROM_MEMORY'.
    ENDIF.
    CALL FUNCTION 'TABLE_COMPRESS'
    IMPORTING
    COMPRESSED_SIZE =
    TABLES
    in = listobject
    out = objbin
    EXCEPTIONS
    OTHERS = 1
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'TABLE_COMPRESS'.
    ENDIF.
    ENDIF.
    Header Data
    Already Done Thru FM
    Main Text
    Already Done Thru FM
    Packing Info For Text Data
    DESCRIBE TABLE objtxt LINES tab_lines.
    READ TABLE objtxt INDEX tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'TXT'.
    APPEND objpack.
    Packing Info Attachment
    att_type = whatatt_type..
    DESCRIBE TABLE objbin LINES tab_lines.
    READ TABLE objbin INDEX tab_lines.
    objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = att_type.
    objpack-obj_name = 'ATTACHMENT'.
    objpack-obj_descr = whatname.
    APPEND objpack.
    Receiver List
    Already done thru fm
    ENDFORM. "ml_prepare
    FORM
    FORM ml_dosend.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = docdata
    put_in_outbox = 'X'
    commit_work = 'X' "used from rel. 6.10
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    CONTENTS_HEX = objhex
    OBJECT_PARA =
    object_parb =
    receivers = reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8
    IF sy-subrc <> 0.
    MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
    WITH docdata-obj_name.
    ENDIF.
    ENDFORM. "ml_customize
    FORM
    FORM ml_spooltopdf USING whatspoolid.
    DATA : pdf LIKE tline OCCURS 0 WITH HEADER LINE.
    Call Function
    CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
    EXPORTING
    src_spoolid = whatspoolid
    TABLES
    pdf = pdf
    EXCEPTIONS
    err_no_otf_spooljob = 1
    OTHERS = 12.
    Convert
    PERFORM doconv TABLES pdf objbin.
    ENDFORM. "ml_spooltopdf
    FORM
    FORM doconv TABLES
    mypdf STRUCTURE tline
    outbin STRUCTURE solisti1.
    Data
    DATA : pos TYPE i.
    DATA : len TYPE i.
    Loop And Put Data
    LOOP AT mypdf.
    pos = 255 - len.
    IF pos > 134. "length of pdf_table
    pos = 134.
    ENDIF.
    outbin+len = mypdf(pos).
    len = len + pos.
    IF len = 255. "length of out (contents_bin)
    APPEND outbin.
    CLEAR: outbin, len.
    IF pos < 134.
    outbin = mypdf+pos.
    len = 134 - pos.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF len > 0.
    APPEND outbin.
    ENDIF.
    ENDFORM. "doconv
    **********************INCLUDE END********************************
    Reward points if helps.

  • Data missing when I print preview and export to pdf but do see the data when i navigate to that page in the report

    Hi,
    I have a report which consists of 9 subreports in 2 tables..
    When the run report I do see data.
    when i export to a pdf and print preview the report in Bids.. i see data for the first 22 pages and then the remaining pages are blank with just the header showing up...
    when i go to the pdf and select page 25 it is blank but when i go the report and not in print preview mode.. and i type in 25 in the page number data shows up on that page...
    the report is set to a portrait and the margins are set to 0.
    How can I solve this problems and why is it happening... the size of the sub report are the same..
    Any help will be appreciated.
    Thanks
    Karen

    I should add that when I e-mail this document to myself and print it directky from the iMac, it prints fine.

  • Printing error and Export to PDF error after a Quark Express convert

    I are working on a catalogue that was previously made with Quark Express. I used q2id to convert over to InDesign CS3. I had some minor issues setting up the new fonts, but that was no big deal. Now that the catalogue is close to finished, I want to do some test print, however, on several of the files it start processing the printing, finish the processing of all the pages, then kills the print job and comes with the following error:
    Print Error: The Adobe Print Engine has failed to output your data due to an unknown problem.
    Similar error happens when I try to export to PDF, this error only says:
    Failed to Export PFD file
    Anyone had a similar problem?? I've done a preflight but ID does not indicate any problems with the file nor its content. Is there another tool to scan the file with to find errors?? Possible fix it?? Is there a log file I could check??
    In advance, thanks guys.
    Working on:
    InDesign CS3
    Windows XP Pro, SP02
    2 GB RAM

    Thanks Ken,
    Not sure how to check if we do have OPI comments on some of the images, but looks like I have found a solution to the printing problem at least.
    Thanks to a respons by Peter Spier to another topic with similar problems:
    Peter Spier - 4:00am Mar 11, 08 PST (#5 of 6)
    The symptoms could describe document corruption rather than network issues which might fall into the category of things that can be cleared up through export to .inx.
    Try exporting one or two of the problem files to interchange format, open those and save as new .indd and make a new book file. See if that behaves differently across the network.
    I also found another article about INX files, that confirms this technique:
    http://avondale.typepad.com/indesignupdate/2005/08/what_the_heck_i.html
    "...INX can also help “clean up” problem files in InDesign CS2—if you’re running into problems, especially with files that started their lives as QuarkXPress or PageMaker files, try exporting the document as INX and then opening that file."
    So, I
    1. exported all files, one by one to INX or InDesign InterChanged
    2. Then reopened those files, saved back as regular .indd files
    3. Reopend the new file (hoping for a refreshed file and test to see if it would open without problems.)
    4. Then packed the files indevidually and reopend the new packed files when done.
    Alle the files now print without any problems but export to PDF still fails with the same error message.
    Would the OPI comment be a problem here maybe?
    Thanks!
    bard

  • ITUNES HAS ENCOUNTERED A PROBLEM AND NEEDS TO CLOSE  PROBLEMS

    PLEASE HELP ME. I CAN NOT GET INTO ITUNES. I KEEP GETTING THE ERROR MESSAGE "ITUNES HAS ENCOUNTERED A PROBLEM AND NEEDS TO CLOSE" ERROR . WHAT MUST I DO? ITRIED TO REINSTALL THE SOFTWARE,BUT IT DID NOT WORK. HELP

    First, try to check your Quicktime installation--this has been discussed over and over again on the forum. If Quicktime won't launch--that's the problem. You can uninstall and reinstall this application.
    I just had this failure a few days ago. I chose to "repair" my Quicktime installation instead of re-doing the whole thing. I TURNED OFF MY VIRUS PROTECTION AND FIREWALL BEFORE I PROCEEDED! Then, I let Windows run a repair and everything worked properly afterwards!

  • "Itunes has encountered a problem and needs to close" problem.

    Before you read anything, please understand that I am literally being driven to tears right now and that I am on the brink of insanity.
    On Saturday, I tried to update my iPod with new songs and apps that I got from the iTunes stores since Friday. Itunes would open but in the next 10 seconds following it, the error window that says "Itunes has encountered a problem and needs to close" etc. came up. I let it go for like two hours, thinking it was a small bug or something, and I ran a virus scan too, just to make sure (I just switched to AVG too on Saturday). Two hours later, iTunes STILL wouldn't work and by that time, I was about to become upset. I uninstalled and then reinstalled iTunes about 5 times that day. Now today, iTunes is still giving me the same problem. I know other users have faced similiar problems but someway or another, they found a way to fix it.
    I have tried EVERYTHING to fix iTunes. I even did a Quicktimes and an iTunes run to get rid of any and all files associated with the two programs. When I finally thought the nightmare would end, I downloaded iTunes again. However, not only did it NOT work but now EVERY SINGLE ONE OF MY SONGS that I had in my library were GONE. No traces, nothing. Even the movies that I had on it had vanished. Everything single thing that I bought in the iTunes store disappeared. Now, at this point, I am now both incredibly frustrated, and crying my freaking eyes out now. (Understand that I am 15 years old and I grew up with music as my only solace.)
    Somebody, just please help me through this ****. All I wanted was to just update my iPod so I could listen to it in school, and now my music is gone, along with a dead iPod. -_-

    I found my solution! In case you're still having trouble, here's what I did (please pardon the odd grammar, I copy-and-pasted this from another one of my questions!):
    And for those of you who are still experiencing this problem, this is what I did. Although I don't know your details and your own specific problems, I hope this can be at least a helpful guide. (The solution was incredibly simple and easy that I am extremely mad at myself for deleting all of my files now...)
    First, just for safety measures, run a virus scan and a malware scan (so you can get rid of those icky programs lurking in your computer). Once you're done with that, check to see if your computer has an update for you (those automatic updates you get that comes with every Windows computer). If you do, click on it and update your computer. Once it's done, restart your computer and VIOLA! Itunes is fixed, Quicktime is fixed, and Adobe Reader is fixed.
    It's insane. I guess this just goes to show that even the simplest of things can fix such a mind-boggling problem! Before you take extreme and drastic measures, follow through with the simplest of solutions first!

  • PDF and Illustrator CC opacity mask.  The opacity mask displays perfectly in the print preview, and in the pdf document when viewed on my computer, but when printed the gradient opacity mask doesn't work.  Any suggestions?  Have not had this problem in ot

    Never had this issues in previous versions.  This IS a black/white gradient opacity mask over a black and white photo, but still don't think that is the problem.

    You may try the forum LiveCycle Designer.

  • Insert HTML and export to PDF problem (ID CS6)

    Greetings,
    A new feature in Indesign CS6 is to insert HTML snippets in an Indesign document via the Object > Insert HTML option.
    This will insert a frame in the page containing the rendered HTML content.
    There are several issues that I have encountered using this feature in Indesign CS6. Can anyone advise if these are bugs/ux issues and provide any alternatives/solutions.
    1) After inserting any HTML content (even the default "This is an HTML snippet"), when I try to export to PDF format (Interactive or Print), the  HTML content or rather its frame container is rendered in black. I've noticed that the HTML content is exported as a image so all I get are black rectangles.
    There is no problem when I try to export to HTML format.
    2) There seems to be a paste size limit in the Insert HTML text area/field as I can only paste 16566 characters of HTML code. (Haven't checked yet if the limit is in characters or tags or newlines).
    3) How can you set such that the HTML object frame will span multiple pages for cases where the HTML content is larger than the height of the page? Since it is not a text frame, I can't find a threading feature or a possible workaround. Or is the "Insert HTML" feature not really applicable for PDF export workflows but only for epubs?
    Thanks

    Oh ok. I guess direct HTML import is still not possible in ID CS6 (either import as XML or convert to DOC/RTF) for PDF export.
    Thanks

  • Indesign CS4/CS3 and Export to PDF problems

    Hello,
    I have been having problems with both Indesign CS3 and CS4 and exporting large documents to a PDF-file. Exporting halts with error messages like: "Failed to Export the PDF file" in CS4 or "Error encountered while reading JPEG image" in CS3.
    Problem can be corrected by simply closing InDesign and restarting it and opening the same file again. It appears that problem occurs more often the file is large. Any suggestions how to fix this problem?
    I'm using Vista 64-bit and have 8GB memory.

    Handling of missing links HAS changed, and in my opinion for the worse, but at the request of users, so that missing links no longer open the Links panel automatically or ask you to update on opening as they used to, though you should still receive a warning that the links are missing UNLESS YOU HAVE TURNED IT OFF IN YOUR PREFERENCES. It's on by default and you will find the option under the file handling section.
    The rationale is that many workflows do not require that links be intact to accomplish the current editing, and longer documents with hundreds of missing links used to take many minutes to open while ID searched, essentially costing those users lots of money.
    IF you have stored the links in the same directory as the .indd file, and IF you have moved the entire directory and IF you have enabled finding missing links when opening files, InDesign will find and update the locations for the links when the file is opened. If ID is unable to locate a link, because it is not in the current directory or a subfolder, you will see a warning message (in the past you would have had the option to browse for the missing files), and you must open the links panel if you wish to fix them manually.
    In my opinion this is a very acceptable situation, and a great benefit to all types of workflows. I need to know links are modified or missing, so I've left that enabled. Those who don't need to know are no longer bothered or delayed. I suggest you pay a visit to the preferences and make sure that missing/modified checks are enabled, and if you are still having problems then your links aren't stored in the same directory, and that has always been an issue in ID when things get moved.

  • Losing pdf data after closing and reopening the pdf problem

    i have a problem with a pdf file i did with livecycle , which is when i fill the tables into the pdf opened in acrobat professional and save the file then reopen the file again i found some tables lose the data i have inserted before closing although there is other tables did not lose the data , and i tried to compare between tow tables one dont lose the data ana the other one lose it but i found no differences and the have the same properties . so please any one know what solves this problem replay me .

    Such a behavior indicates that you keep the cookie(s) that verify that you are logged on to a web server.
    Are you using session restore to open those tabs automatically?
    * Tools > Options > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"
    You can set the <b>browser.sessionstore.privacy_level</b> pref to 2 (never) or 1 (non-HTTPS, default in Firefox 3 versions) on the <b>about:config</b> page to disable saving cookies via session restore.
    You can change the browser.sessionstore.privacy_level_deferred pref that is used when you do not reopen the previous session automatically via "Show my windows and tabs from last time".
    * http://kb.mozillazine.org/browser.sessionstore.privacy_level
    *http://kb.mozillazine.org/about:config

  • ABAP list to spool and converting to pdf problem in QAS

    Hi
             i am converting the report output to PDF by submitting the spool. i done evrything. but my problem is
    in DEV -everything is ok.when i downalod pdf is coming fine with all fields.
    in QAS- pdf is coming with half page. some fields are cutting off.
    in program i given the format like this.
    wa_pri_params-paart = 'X_65_80'.
        wa_pri_params-linsz = '185'.
      can anyone suggest?? and also can i increase programatically the size becoz it is displaying with small size??

    Programatically you can specify the size by giving
    REPORT XXXXXX NO STANDARD PAGE HEADING
                                         LINE-SIZE 255
                                         LINE-COUNT 90

  • Word 2007 Arabic conversion to PDF - problems - help?

    I have a Word 2007 document with Arial font that contains English and Arabic (Saudi Arabia) languages. When I "Create PDF" from the Acrobat toolbar in Word, the PDF that results is mostly white space because only the English text is converted. All of the Arabic text is missing. I haven't experienced this in the past, but I'm not sure if that's due to using an older version of Word or an older version of Acrobat, or perhaps both. I'm currently using Acrobat 9 Pro. Any help or suggestions would be much appreciated. Thank you.

    You can save any Office file as a .pdf. No additional software needed.
    Ceate the document then start the print process (command + P). The bottom of the print dialog box gives you a button that gives a drop-down with the optionto save the document as PDF.

  • Freehand and converting to pdf problem

    for some reason when i try to convert a freehand document to pdf ready for printing im losing an "inline" effect around some of the text.
    i've put an example to illustrate
    http://simonboard.com/photos/pdf.html
    can anyone on these forums help?

    Distiller is part of Acrobat Pro and used to set up files for output to an imagesetter.
    How are you printing these? Is the printer going to make films for burning plates or is this direct from computer to printer?
    If it's direct, as I suspect, then merely save the file as an EPS, then import it into Illustrator to check it over and make sure everything is good. Or just import it into Preview to look at it. They should be able to print from a Freehand EPS, but best to check with them first.
    Instead of using Freehand's export to PDF simply print then instead of clicking on the Print button on the right, look to the left for a button that says "Save as PDF". This would probably be better than the EPS file, but either one can be imported into Illustrator.

  • TS2755 I don't have an iPhone. My friend does and we have been texting for 5 months now and all of a sudden I can't revcieve her messages. I can message any other iPhone no problem and she has no problem texting other people as well. What is happening?

    I don't have an iPhone. My friend does and we have been texting for 6 months and havn't had any problems. All of a sudden I cannot get her text messages. She revieces mine but i cannot recieve her's. I can also text other iPhone users with no difficulty at all.
    What is happening?

    I would have your friend first do a reset on her iPhone. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. Also, SMS is a carrier feature and if she is having trouble, she might want to contact her carrier and have them double check her account provisioning. It might just need a reset on their end.

Maybe you are looking for

  • Urgent: How to Remove assignment of a marketing attribute for an BP

    Hi Guys,             In my project we are  maintaining two marketing attributes for all the business partners. But there is a need now based on some condition we want to remove one of the assignment for the BP (I.e which ever BP matching the conditio

  • Issues with Display PDF in Browser option

    We've recently hit a problem with our application that used to successfully display PDFs in a web browser control. In Adobe Reader 9.x it worked no problem. In Adobe Reader 10.1.3, it stopped working. I'm working along the line that it is something t

  • No video on podcasts

    I have several video podcasts thAt play on my apple tv, but with no video. They are playing as audio only podcasts. The same videos play fine in iTunse on my iMac and on my iPad. Any idea why? bob ATV 2.0 the black hockey puck, running OS 5.1.1

  • Horizontal page numbering - Crosstabs -Crystal reports 2008

    Hi All, We have Crosstab tab  in which columns grows horizontally and rows too grow vertically. It automatically page breaks when it reached the page layout width. My requirement is to number the all the pages in Page N of M format. But if we use the

  • Siri is saying a different name instead of mine.

    anyone know how to fix siri? it is saying one of my contacts name instead of mine