Background task problem wont let me export to PDF

Dear community, I have been publishing a newsletter made in Indesign but for some reason, for the last version, when I try to export it to PDF, it reports one background task error.  I am trying everything but I don't manage to  identify what caused it.
I can still create PDF with other applications, so I believe it must come from Indesign.
Thanks for your help.

What is the exact error message?

Similar Messages

  • FCX wont let me export 1080, max is 720

    Wont let me export to vimeo with 1080 settings. I am currently using version 10.0.3.
    Please help, Thanks

    Vimeo wants 1280 x 720 video for HD.
    See:
    http://vimeo.com/help/compression
    MtD

  • Two transactions, same program, processed in background task problem

    Y0 Team ABAP,
    i got something here that bugs me.
    I have done a report. Nothing special, simple selection screen, selection of data, and output via SALV.
    One of my selection screen fields (a parameter) is VKBUR and it is "obligatory".
    2 weeks ago i got the requirement to create a copy of this program, and adopt VKBUR as select option.
    Since i didnt want changeanomalies i decided not to duplicate the program, but just add a second transaction to my program.
    In a routine at event at-selection-screen output, i´m hiding either the parameter or the select option, depending on which tcode was used.
    In some routine which gets triggered at the event at-selection-screen i´m moving either what we got in our parameter to our local range we use for the select, or just assign the select option to our local range, or process an error message if according field is not filled. Yeah that obligatory condition is done by myself since i cant just set the obligatory addition to the statement.
    This all works quite fine so far.
    BUT:
    Today i hear that the end-users process that report in background task by pressing F9.
    Problem is now that when it is processed in background task, sy-tcode is initial, so i dont know which of the transactions the user picked, and so i dont know which of the two fields has to be filled.
    Sure i could do another report, containing just my second selection screen, and when this is checked, do a submit on my real report, tho i still believe there must be some more elegant way.
    Any ideas?

    Unfortunateley those subtotals cant be handeled by the layout, thats why i manually add them.
    But you got me back on track! right now i´m for your solution.
    right now i´m having just ONE selection screen with the select option on it.
    User can decide if he fills just one value or more.
    In the end i loop over my output table and look if there are records of different VKBUR´s.
    If there are i know he wants subtotals and process them. If its just data of one VKBUR i can spare myself the hassle as there is anyway just one records per VKBUR so subtotaling this wouldnt make sense.
    thanks. Thats what i will present my consultant now lets see if i can get him satisfied with it...

  • Fcp wont let me export to the compresser 4 all of a sudden it taking me too compresser 3 this just started happen what do i do

    let me export to the compresser 4 all of a sudden it taking me too compresser 3 this just started happen what do i do

    I don't know why this just started to happen unless v3.0 were somehow moved from its location.
    I once had FCP7 get confused between Motion 4 and Motion 5 when I failed to follow Apple's installation recommendations but never a problem with FCPX going to the wrong app. (But I don't use the Send to Compressor workflow.)
    When you have the legacy apps already installed on your system, the new pro app download moves the old ones into a folder, named Final Cut Studio. That's what I was getting at when I suggested you create a new folder for C3.
    Russ

  • Background task problem

    Hi have couple of background task in my workflow.My problem is that the task sometimes get stuck or sometimes take a lot of time in processing.I am not able to find out problem why it si happening.
    Can you help me out to drill down this problem.

    Hello,
    You wrote:
    "My problem is that the task sometimes get stuck or sometimes take a lot of time in processing"
    So sometimes it gets stuck forever, and sometimes it just takes a long time? Odd. Any difference between the two cases? Are they both with level 2?
    What does the method do?
    Has it always done this, or did it suddenly start showing this behaviour?
    regards
    Rick Bakker
    Hanabi Technology

  • Task bar wont let you shut firefox

    when I am running firefox and then try to use the red x in the top right hand corner of the screen to close the program it wont let me, if I try again it locks up and I have to turn the computor off to get out of it.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Wont let me open my pdfs

    I paid for this service and then a free trial came up but i,d already paid for it? now the free trial is finished it wont let me open up any of my pdfs?

    Adobe Acrobat IV is not being made available as far as I know.

  • Problem When Multiple Users Export To PDF Simultaneously

    I am hoping someone out there can help.  We have had no luck at all with Crystal Reports / SAP support for this issue.
    We have a client/server aplication and have written a C# program to load a crystal report on the server, export it to PDF and then we send the PDF to the client. We are using Crystal Reports 2008 and have applied SP4.
    The scenario is as follows:
    Two users log into our application from different PC's.
    User 1 prints a report with no issue.
    User 2 prints a report 5 seconds later with no issue.
    If User 1 prints a report and while that report is being exported to PDF, User 2 prints a report, the first will be successful and the second will fail.  If User 2 reprints the report after receiving a failure, the report prints successfully the second time (using the same temp report folders as the previous attempt). We have done a lot of tracing and have narrowed the problem down to the point in out C# program when the cryRpt.Export() routine is called.  It seems to be what is failing and doesn't seem to be able to run 2 exports simultaneously.
    All exporting to PDF occurs on the application server and the processes run as "Administrator" so permissions should certainly not be a problem.  Each user is printing a different physical .rpt file and the data for each report is in a different physical directory.
    Has anyone come across this before or have any suggestions?

    We thought the same thing as you suggest and have already made that change without sucess.  Below is what the code looks like for our export routine.  Perhaps you can spot something we have not.  As mentioned before the export appears to be faulting at the statement "cryRpt.ExportToDisk(ExportFormatType.PortableDocFormat, pdfname);" in the below code.
    The code is as follows:
            public void exportReport(string xmldir, string crname, string pdfname, string termid, bool debug)
                try
                    if (debug)
                        dt = DateTime.Now;
                        tw.WriteLine(dt.ToString() + "-Start exportReport: " + crname);
                    ReportDocument cryRpt;
                    cryRpt = new ReportDocument();
                    cryRpt.Load(crname, OpenReportMethod.OpenReportByTempCopy);
                    if (debug)
                        tw.WriteLine("Done loading report: " + crname);
                    int tmpct = 0;
                    int tmpint = crname.IndexOf("
    ", tmpct);
                    while (tmpint != -1)
                        tmpct = tmpint;
                        tmpint = crname.IndexOf("
    ", tmpct + 1);
                    string ODBCReportFileName = crname.Substring(tmpct + 1, crname.Length - tmpct - 5);
                    if (debug)
                        tw.WriteLine("ODBC Report Filename: " + ODBCReportFileName);
                    Database crDatabase;
                    Tables crTables;
                    Table crTable;
                    TableLogOnInfo crTableLogOnInfo;
                    ConnectionInfo crConnectionInfo = new ConnectionInfo();
                    //Setup the connection information structure to log on to the data source for the report.
                    // If using ODBC, this should be the DSN. If using OLEDB, etc, this should be the physical server name
                    crConnectionInfo.ServerName = "SH" + ODBCReportFileName;
                    if (debug)
                        tw.WriteLine("Resetting connection to: " + crConnectionInfo.ServerName);
                    crConnectionInfo.DatabaseName = "";
                    //Get the table information from the report
                    crDatabase = cryRpt.Database;
                    crTables = crDatabase.Tables;
                    //Loop through all tables in the report and apply the
                    //connection information for each table.
                    if (debug)
                        tw.WriteLine("Applying new connection to all tables...");
                    for (int i = 0; i < crTables.Count; i++)
                        crTable = crTables<i>;
                        crTableLogOnInfo = crTable.LogOnInfo;
                        crTableLogOnInfo.ConnectionInfo =
                        crConnectionInfo;
                        crTable.ApplyLogOnInfo(crTableLogOnInfo);
                        if (debug)
                            tw.WriteLine("Applying new connection to tables " + crTable.Name);
                    cryRpt.Refresh();
                    if (debug)
                        tw.WriteLine("Applying new connection to all tables... DONE");
                    if (debug)
                        tw.WriteLine("Target report: " + pdfname);
                    cryRpt.ExportToDisk(ExportFormatType.PortableDocFormat, pdfname);
                    if (debug)
                        tw.WriteLine("Export Complete");
                    cryRpt.Dispose();
                    cryRpt.Close();
                    if (debug)
                        dt = DateTime.Now;
                        tw.WriteLine(dt.ToString() + "-Done export to PDF.");
                catch (Exception e)
                    TextWriter tw1 = new StreamWriter(logpath + "
    exporterror.log", true);
                    tw1.WriteLine("Exception when export report: " + e.Message);
                    tw1.WriteLine(e.StackTrace);
                    tw1.Close();

  • Problems with bleed and exporting to PDF.

    Hi,
    I am having a slight problem exporting a file to pdf in Indesign CS3.
    I have my documents set up with a 3mm bleed and I have made sure that the images and work extend passed the bleed marks as they should. The problem is that when I export to pdf, the pdf file appears to have cropped the work exactly on the bleed line leaving nothing extending passed the bleed. The 3mm bleed area is still there but nothing is extending into it which is kind of pointless. I don't know whether there is a setting I am missing or something like that but any help on this matter would be greatly appreciated.
    Cheers

    "It appears to crop it exactly on the bleed line."
    for the record, isn't that what it's supposed to do?
    Your bleed line is 3mm outside the trim. Anything you bleed will be contained in that 3mm band. If you hang any more than 3mm off the edge, only the 3mm in the bleed band will show on the PDF.
    k

  • Problem - Hyperlinks change on export to PDF

    Working in Indesign 7.0.3 and Snow Leopard 10.6.5
    I have been asked to design a publication that will include hyperlinks to other files (PDFs and Word documents) on the client’s network.
    The client has supplied as the source a Word document with hyperlinks that start with:
    \\Nwfileprintvm\vol1\shared\...  and so on which (I presume) goes to a document on their network.
    When I import the Word document into InDesign, the hyperlinks come in the same way. I have set up the hyperlinks as “Shared Destination” links, as there will be several separate links to the same destination in the InDesign document.
    However, when I export the InDesign document to its final form as a PDF, the hyperlinks in the PDF are somehow automatically prefaced with a location on MY local hard drive (my working folder for the document). They become:
    File:///Volumes/LaCie750/… and so on until they pick up the rest of the file path starting with \\Nwfileprintvm … as above.
    I am exporting using [Smallest file size] since the PDF will be viewed on screen, and with “Include Hyperlinks” ticked.
    So, if I deliver this PDF to the client, it looks like it will try to link back to my hard drive, rather than their network drive.
    What am I doing wrong? How can I export a PDF where the links point to the client’s network rather than my local drive?

    Yes, the hyperlink is defined correctly, without the preceding code linking to my hard drive.
    In the hyperlink panel the full path is:
    \\Nwfileprintvm\vol1\shared\Business Development\Program Support\Ten things.doc
    When I export to PDF, the link becomes:
    file:///Volumes/LaCie%20750/Work%20in%20progress/New%20work/Project%209999%20NewProject/\\ Nwfileprintvm\vol1\shared\Business Development\Program Support\Ten things.doc

  • Background task problem with alv grid display

    Hello !
    I have a problem when executing my program in background.
    In foreground I have no problem, my ALV appears. In the background I have a dump.
    The current ABAP program "SAPLKKBL" had to be terminated because one of the statements could not be executed.
    I use the function module 'REUSE_ALV_GRID_DISPLAY'
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
         EXPORTING
            i_callback_program      = gd_repid
            i_callback_user_command = 'F533_USER_COMMAND'
            is_layout               = gd_layout
            it_fieldcat             = fieldcatalog[]
            it_special_groups       = i_fgroup[]
            i_save                  = 'X'
            it_sort                 = gd_sort
            i_buffer_active         = ' '
            i_callback_pf_status_set = 'F534_SET_PF_STATUS'
         TABLES
            t_outtab                = mytab
         EXCEPTIONS
            program_error           = 1
            OTHERS                  = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    I don't understand where the problem is. Please help me.
    Thank you.

    I love replying to old threads:
    Try this link
    http://scn.sap.com/people/prashant.patil12/blog/2007/02/20/displaying-alv-grid-in-background-job

  • Final cut pro wont let me export

    so im trying to export a video I made but its not letting me. ive tried using difrent codecs (h.264, apple proress and a few others) but everytime I try to export it, its gives me a  error message every time I try (error -1 and error -5) I dont really know what to do know. what can I do?

    Hey!
    It indicates nothing. literally all it said was "Quicktime error - 50"
    as for the BG processes, nothing. It was stick at 5% n not move. just disappear after the Error message.
    HOWEVER,
    the problem is solved.
    I went to the project. Clicked on Duplicate > duplicate the files and video clips. (so a complete duplicate with every single file).  >>> Tried Exporting. Worked!!! took almost the whole night, but it worked out!
    I don't know how that makes any sense.
    Thanks though

  • Final cut pro x wont let me export!!

    I keep getting message "quicktime error - 50" everytime i try to export the file.
    it loads upto 5%. then stops. and after a few mins. gives me that message "error - 50".
    I tried the following:
    1) deleting Render files and exporting.
    2) copied all clips from my project and into a new project.
    3) used Corrupt file finder - found nothing
    3) used Crash analyzer - it said "delete preferences" - did nothing
    4) tried exporting in different formats - nothing worked
    5) its also on ProRes 422
    6) downloaded new codes ( http://support.apple.com/kb/DL1396 ) from here
    Can someone please help me? i googled everything i could and tried everything i can think of .
    its Final Cut pro x 10.8

    Hey!
    It indicates nothing. literally all it said was "Quicktime error - 50"
    as for the BG processes, nothing. It was stick at 5% n not move. just disappear after the Error message.
    HOWEVER,
    the problem is solved.
    I went to the project. Clicked on Duplicate > duplicate the files and video clips. (so a complete duplicate with every single file).  >>> Tried Exporting. Worked!!! took almost the whole night, but it worked out!
    I don't know how that makes any sense.
    Thanks though

  • The task bar wont let me type in a url and use it's memory function useless without it

    the address bar disappeared, help! all that shows up is a tiny box no address can be typed in. Thus the memory feature of firefox is useless.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Is there a problem with Indesign effects exporting to PDF?

    Hi All... Since updating to the latest version of Indesign, I can't seem to get my effects to work when I export into a PDF? Am I doing something wrong or is there a problem with the new version of Indesign? I have a job that I'm urgently trying to get out but can't get the drop shadow or bevel emboss to transfer to the PDF that needs to go to my client? Can anyone help me with this ASAP pleeeeease???

    RAZ! wrote:
    It looks OK in the Indesign overprint preview and I usually have my Acrobat set to view overprint as well so I turned it off & on just in case there was something happening there, but no luck!
    I am using a spot colour in the background behind the graphic but not on the graphic itself, but I don't think that should effect it as I'm sure I've done this many times (But I am starting to doubt myself now... lol)?
    It looks OK in the Indesign overprint preview
    I am using a spot colour in the background behind the graphic but not on the graphic itself…
    That is reason, why it looks like it looks. But what happens if you replace the spot to a process color?

Maybe you are looking for

  • Single songs don't play even though they are synced and work fine on the computer??

    I only recently discoverd this problem. Single songs that I synced into my iPod 5th gen just wont play (they used to work before) even though when I check on my iTunes they work fine and even after syncing it again and even reseting my iPod it just w

  • Maximum and 2nd longest diameters of polygon

    I have a polygon in the form of a Point[] of Cartesian (x, y) pairs� for the sake of argument lets just say it�s a simple closed loop and no crossing sections and I would like to calculate the second longest perpendicular diameter based on the maximu

  • Do i need air extreme with time capsule?

    Do I need Airport Extreme with Time Capsule?

  • Have a problem with display PDF Files!!!!

    When I open a PDF file that takes up to 20 minutes and leaves taken in open AcroRd32.exe process which can not close until you open the requested file, anyone know why this happens? ** system Windows XP Pro, Service Pack3, PentiumD 3Ghz,  2GB Ram, 40

  • OEPE support for Weblogic Portal 10.3.0?

    Hi, I was referred to this forum by Konstantin: replace Oracle Workshop for Weblogic with OEPE? Does anyone know if Oracle Enterprise Pack for Eclipse has tooling support for developing portlets/portals for Weblogic Portal 10.3.0? Kevin