JBG Format conversion to pdf from IBR

Hi All
Does IBR convert JBG format files if yes who do i configure it ?
Thanks
Raj

Hi All
Does IBR convert JBG format files if yes who do i configure it ?
Thanks
Raj

Similar Messages

  • Error during Document Check IN and Conversion to PDF from IBR

    Hi All
    I am getting the following error when i trying to check in a document of 21 Mb
    Refinery Logs :
    The post converted queue for agent 'idc' states that Content ID 'SPECAPI5' converted but the converted primary webviewable file was not found. Exception type is 'java.lang.Throwable'. [ Details ]
    Details :
    An error has occurred. The stack trace below shows more information.
    !csJobCannotBeReturnedConvertedFileMissingDetails,idc,SPECAPI5!syExceptionType,java.lang.Throwable
    java.lang.Throwable
         at intradoc.common.IdcLogWriter.doMessageAppend(Unknown Source)
         at intradoc.common.Log.addMessage(Unknown Source)
         at intradoc.common.Log.errorEx2(Unknown Source)
         at intradoc.common.Log.errorEx(Unknown Source)
         at intradoc.common.Log.error(Unknown Source)
         at docrefinery.server.RefineryService.pullConvertedWork(RefineryService.java:546)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at intradoc.common.IdcMethodHolder.invokeMethod(Unknown Source)
         at intradoc.common.ClassHelperUtils.executeMethodEx(Unknown Source)
         at intradoc.common.ClassHelperUtils.executeMethod(Unknown Source)
         at intradoc.server.Service.doCodeEx(Unknown Source)
         at intradoc.server.Service.doCode(Unknown Source)
         at intradoc.server.ServiceRequestImplementor.doAction(Unknown Source)
         at intradoc.server.Service.doAction(Unknown Source)
         at intradoc.server.ServiceRequestImplementor.doActions(Unknown Source)
         at intradoc.server.Service.doActions(Unknown Source)
         at intradoc.server.ServiceRequestImplementor.executeActions(Unknown Source)
         at intradoc.server.Service.executeActions(Unknown Source)
         at intradoc.server.ServiceRequestImplementor.doRequest(Unknown Source)
         at intradoc.server.Service.doRequest(Unknown Source)
         at intradoc.server.ServiceManager.processCommand(Unknown Source)
         at intradoc.server.IdcServerThread.run(Unknown Source)
    Status : GENWWW

    This is the Error that i get when i click on "Get Conversion (HTML)" Link of the Document
    Content Server Request Failed
    Unable to get dynamic conversion. The file is too large to convert.
    [ Details ]
    intradoc.common.ServiceException: !csDynConvFileTooLarge at dynamicconverter.DynConverterHandler.setInputConversionInfo(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:461) at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:142) at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:75) at intradoc.server.Service.doCodeEx(Service.java:488) at intradoc.server.Service.doCode(Service.java:470) at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1350) at intradoc.server.Service.doAction(Service.java:450) at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1191) at intradoc.server.Service.doActions(Service.java:445) at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1061) at intradoc.server.Service.executeSubServiceCode(Service.java:3453) at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:939) at intradoc.server.Service.executeServiceEx(Service.java:3448) at intradoc.server.Service.executeService(Service.java:3432) at intradoc.server.Service.doSubService(Service.java:3421) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:461) at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:128) at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:113) at intradoc.server.Service.doCodeEx(Service.java:505) at intradoc.server.Service.doCode(Service.java:470) at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1350) at intradoc.server.Service.doAction(Service.java:450) at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1191) at intradoc.server.Service.doActions(Service.java:445) at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1111) at intradoc.server.Service.executeActions(Service.java:431) at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:632) at intradoc.server.Service.doRequest(Service.java:1709) at intradoc.server.ServiceManager.processCommand(ServiceManager.java:357) at intradoc.server.IdcServerThread.run(IdcServerThread.java:195)

  • How to get report in excel format instead of pdf from oracle forms.

    Hi,
    How to get report in excel format instead of pdf from oracle forms.
    Form & Report developer 10g
    report format .rdf

    create a report using report builder.
    call the report from form using the following procedure
    DECLARE
         RO_Report_ID REPORT_OBJECT;
         Str_Report_Server_Job VARCHAR2(100);
         Str_Job_ID VARCHAR2(100);
         Str_URL VARCHAR2(100);
         PL_ID PARAMLIST ;
    BEGIN
    PL_ID := GET_PARAMETER_LIST('TEMPDATA');
         IF NOT ID_NULL(PL_ID) THEN
    DESTROY_PARAMETER_LIST(PL_ID);
         END IF;
         PL_ID := CREATE_PARAMETER_LIST('TEMPDATA');
         RO_Report_ID := FIND_REPORT_OBJECT('RP2RRO');
         Add_Parameter(pl_id,'P_SUPCODE',TEXT_PARAMETER,:CONTROL.S_CODE);
    Add_Parameter(pl_id,'P_INVOICE_NO',TEXT_PARAMETER,:CONTROL.IN_NO);
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_FILENAME, 'INVOICE_REG_DETAILS.rep');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_EXECUTION_MODE, BATCH);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESTYPE, FILE);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESFORMAT, 'SPREADSHEET');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_SERVER, 'rep_dbserver_frhome1');
         Str_Report_Server_Job := RUN_REPORT_OBJECT(RO_Report_ID, PL_ID);
         Str_Job_ID := SUBSTR(Str_Report_Server_Job, LENGTH('rep_dbserver_frhome1') + 2, LENGTH(Str_Report_Server_Job));
         Str_URL      := '/reports/rwservlet/getjobid' || Str_Job_ID || '?server=rep_dbserver_frhome1';
         WEB.SHOW_DOCUMENT(Str_URL, '_SELF');
         DESTROY_PARAMETER_LIST(PL_ID);
    END;

  • Conversion of PDF from flex

    Hai
       I need to create pdf generation from flex.
       I tried with LCDS and there is no way to create XDP template.
       live cycle designer needs dotnet support.. but i need to do with j2ee..
       is any other approach to create pdf from flex with j2ee environment???
       thanks in advance...

    Hi there, there's a library called AlivePDF that allows you to create pdf files from Flex. Maybe that's what you're looking for.

  • Bad format,when printing pdf from ipad

    Hi got a Iprint appliance 101 with 2 sharp MX printers
    I've "Air" enabled them , and they show in Ipads and macs , But when tying to print to them , when examining print jobs in a mac , "printing --Bad format" shows
    the File is a PDF
    Any Idea what to look at ??
    Lars

    Not sure if this will help, but I would try the latest 7.x version from http://www.adobe.com/support/downloads/detail.jsp?ftpID=3953

  • Corrupt image formatting when creating pdf from embedded visio image in MS word

    Hello, Using Adobe Acrobat 9 standard and trying to create a PDF file from an MS word (version 2003) document.  PDF file created is fine except for an image (embedded visio diagram imported into word).  When created in PDF, the image is missing many of the diagram labels, and other text boxes are in the wrong font and wrong location.  I don't know if it's my Adobe Acrobat or MS Word settings that need to be updated.
    thanks, NB

    Dear fellows,
    the problem is still present.  My system:Windows 7 32-Bit Prof, MS Office 2010 Prof, Acrobat X Pro 10.1.1, Vision 2010 Prof, all updates installed.
    Problem #1: Even the latest Acrobat X 10.1.1 version causes Visio 2010 to start with error messages, origin: the Acrobat Add-In.  Therefore I de-activated the Acrobat Add-In, again, as in the past.
    As I design grafics with Visio 2010, I mark them in the active Visio window, copy the marked parts and then insert them into my Word-Document.  So far, so good and as I want it.
    The (still present) problem: I can produce a PDF file using the "save as Adobe PDF", but the Visio drawing is incomplete and corrupt.  E.g. arrows as line endings have disappeared.
    PS: But using Adobes PDF printer sets the embedded Visio drawing correctly!  But using the printer one looses some features of the "save as Adobe PDF" command.
    Well, probably one day ...
    Regards,
    Rückenlehne.

  • Question re Create PDF from Word doc

    Hi
    I am trying to create a pdf from a Word document (Word 2007, Acrobat 8 Professional), and am having lots of trouble with images,fonts and document overhead. With the fonts, i generate the PDF by saying Create Pdf from the plugin in Word. I specify in the Preferences that fonts are not to be embedded. I then open the PDF and access PDF Optimiser -> Audit Space Usage, and it says that fonts take up like 20% of the document, however there are only like 10 lines of text in Arial (9pt), and 6 titles also in Arial (Bold). I dont understand why Font is taking up so much space considering that i have elected not to embed fonts (if i go to the Fonts section in the Optimiser, it shows both embedded and unembedded panes blank).
    With the images, i have 2 jpegs in the footer, that are compressed (JPEG -> Low). The other thing i am struggling with is the headers and footers, if i generate the PDF from the Word doc with Headers/Footers, then images take up over 15% of the document. Not sure if there is a way to add headers and footers within minimum impact of filesize? I have tried checking everything in the 3 categories of Dicard Objects, Discard User data and Clean Up. but the Document Overhead remains at 35%.
    What else can i do to get these filesizes reduced?I have been researching this for days and have not come across anything that has helped.I have tried to PDF print, i have changed the font to like Courier, ensured no thumbnails or bookmarks, ensured JPEGs are not embedded in the doc, tried Save As, Save As under a different filename - basically anthing you can find on the net i have found and tried, but still cant fix this!!!! please, if anyone knows acrobate 8 better than me / or knows what the problem is, please advise????
    Thanks very much.

    The colors and size in a graphic needs to be done in a graphics editor. What type of editor would depend on the use of vector graphics versus bitmap. Sometimes vector graphics are larger than bitmaps if you are using a lot of lines that would display better as just a splotch of color. Such are the variations between vector and bitmap graphics, but important if you are looking for size reduction. For a bitmap, I would do the sizing and color depth with IrfanView, but you should be able to do that with PhotoShop if you have it. Vector graphics can be adjusted in Illustrator. The size of vector graphics is not an issue since they are scalable, but the size of a bitmap is important since your are looking at individual pixels and that depends on size. The point is that if you can adjust the color depth and size for the desired pixel resolution, the bitmap is optimized for the conversion to PDF from WORD.
    As I mentioned, the smallest file size job options should minimize font storage in the PDF. Checking with the PDF Optimizer does not always give you all of the fonts. I am not sure why. It is better to check the font tab in the document properties to see what has been embedded. There is a preflight macro to embed fonts, you might check to see if there is one to delete fonts (I have not checked on that). Sometimes you can play with the reprint of a PDF, but that is not an option that is generally recommended, particularly if you have any tagging or such. Of course, tagging can really bloat a PDF, but is needed for a variety of reasons such as format for saving back to WORD (not a great workflow), accessability, and related issues. In another topic, there is some discussion of the purposes of tagging and bookmarks. However, the tags and bookmarks take space if that is really an issue for you. The latter are avoided if you use the print to the Adobe PDF printer and do not use PDF Maker in the PDF creation process. Again, there is a trade-off here in terms of size and functionality, particularly accessibility compliance.
    Not sure I am helping as I run on, but sort what might be useful for you.

  • I purchased the Adobe pdf Pack to combine 50 PDF files to one and when I select them from my folder it claims "the files are not in a format not supported for conversion to PDF".  They already are pdfs, what am I doing wrong?".

    I purchased the Adobe pdf Pack to combine 50 PDF files to one and when I select them from my folder it claims "the files are not in a format supported for conversion to PDF".  They already are pdfs, what am I doing wrong?

    Moved to Adobe PDF Pack (read only)

  • Pdf pack will not create a pdf from a tiff file    conversion failure    Why

    pdf pack will not create a pdf from a tiff file    conversion failure    Why

    Hi David Turner,
    What is the exact error message which you are facing while converting the file from .tiff  format to PDF format.
    As per my knowledge, PDF Pack supports conversion from .tiff format to PDF Format -Different File formats that Adobe PDF Pack supports.
    Regards,
    Rahul Tyagi

  • Format changing when exporting from InDesign to PDF

    I am using Acrobat 8 version 8.1.2, and InDesign version 5.0.2.
    I am noticing a very specific problem when exporting some files to PDF from InDesign.
    We often have a format where we have a numbered list of right-aligned number, followed by some text, a leader line, and then another number at the end of the line. This is set up with a left indent and a first line left indent (rather than using the numbered list options), and then the necessary tabs later in the lines.
    I am finding since we switched to IDCS3, that when I export to PDF, lines containing this format change in the PDF. The text that appears after the number in the front of the line is pushed over on top of the leader line, leaving a huge white space. On rarer occasions, it will move things in lines that have no indents, but contain tabs that aren't being used.
    I have been able to get the files to export correctly by removing the left indent and first-line left indent and using tabs instead (or by removing unused tabs). But we have hundreds of files set up in this manner so going in and changing how they are all set up is problematic to say the least.
    Is this a known issue? Does anyone know why this might happen and how I can prevent it?

    I haven't tried printing to PDF. I will try that and see what happens. Unfortunetly, where I work we are required to export to PDF rather than print to PDF, so if it works it will only be a clue for me rather than a solution.
    Thanks for the reply. I'll try a cross post to the InDesign forms.

  • Formatting Issues When Printing from a PDF

    I am currently using Adobe Acrobat Pro 9 in Windows 7.  I have been printing or saving documnts as PDF's without issues until today.  I have created a document in Microsoft Publisher and have saved it as a PDF.  When I open that document, it appears on screen just as the original file in Publisher.  My issues are when I print from the PDF document.  When I print from the PDF, the formating for footers is not saved.  For example.  I might have a blank page with a page number at the top and a footer containing my company name on the bottom of the page.  When I print that page, the page number is where it is suppose to be, but the footer is moved to right under the page number at the top of the page.   I have been printing PDF from Publisher for years using these same versions of Adobe and Publisher.  Does anyone know why the formatting is not printing correctly?

    Hello John.
    See this article. I hope it helps:
    http://kb.mozillazine.org/Problems_printing_web_pages

  • Why is adobe requiring me to make a purchase in order for me to create a pdf from word? I paid for the service in April which included unlimited conversions for a year

    why is adobe requiring me to make a purchase in order for me to create a pdf from word? I paid for the service in April which included unlimited conversions for a year

    Make sure you're actually logged-in to your account.

  • Creating pdf from clipboard does not import images or formatting

    Creating PDF from clipboard works perfect in acrobat X however in acrobat XI no images are imported and the text just defaults to times roman font. My wife uses acrobat for her craft patterns and copies from the web all the time with no issues in Acrobat X. She tried it on Acrobat XI and it just looks like garbage. The text is there but the images that were copied along with the text are not. I have examples that she did using the exact same clipboard in both X and XI.

    Bill@VT wrote:
    I guess I must not understand how you are transferring the items to the clipboard. Is the browser the same one you used with AA X?
    Yes, I used the same browser (Chrome) with AA X and AA XI.
    Bill@VT wrote:
    When I did it with AA XI, I used the mouse (on a PC) to select the text and figures in my browser and copied that info to the clipboard (ctrl-C on the PC and I assume similar on the MAC).
    Yes, the procedure for copying info to the clipboard is similar for a Mac and a PC. I select the info (in this case, text and graphics) with the mouse, and can copy it to the clipboard with either Command-C (Mac equivalent of ctrl-C), or by right-clicking on the highlighted info and choosing "copy" from the pop-up window.  I do not have to use Print Screen in conjunction with this procedure. If I use Print Screen, it copies everything that my monitor displays and the results of a paste are an image.
    Is there something I am missing about getting the web page parts wanted to the clipboard? If you clip the items into a graphics packages, does the graphics show up as desired?
    No, you are not missing anything. All of the web page parts are in the clipboard. The problem is that only the text is showing up when I use the create PDF from clipboard option in AA XI. I do not have a graphics package installed; however, if I paste the clipboard contents into Word, both the text and graphics show up.
    I checked the PDF created with my AA XI and found the text as text and the the graphic as graphic, not simply a graphic as you suggested. Is it possible the graphic is shown with a place holder or just space for the graphic. If that is the case, check the preferences that you have "view large images" turned on.
    As I explained ad nauseum, the PDF I try to create with AA XI using create PDF from clipboard does not include the graphics; it only has the text. I just checked the preferences and "view large images" is turned on. I could not find any other preference settings that would seem to help with the problem I am having.
    I can paste the clipboard contents directly into Word and print the document to a PDF. When I do that, though, I usually have to spend a lot of time editing the Word document, because the contents are not in the same format. The paragraphs are usually squashed together, or the photos are too large and I have to change the size. This just takes up more time than I have to spend.
    The bottom line is that it seems to me Adobe must have changed something in the Mac version of AA XI that causes it to not work the same way it does in AA X. The PC version is obviously okay, because you are able to get the feature to work.
    I guess I am going to have to give up on this problem and stick with using AA X.
    Thanks again for all your help.

  • A few months ago when I pull up pdfs from Merrill Lynch, the format comes up blurry, not blurry if I use internet explorer, how do I fix this?

    There was no problem for years. This started several months ago.

    Reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Command+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages
    Current Firefox versions have enabled a built-in PDF Viewer that doesn't have all features that other PDF readers like the Adobe Reader have or may not function properly otherwise.
    You can change the action for Portable Document Format (PDF) from Preview in Firefox to use another application like the Adobe Reader or set to Always Ask in "Firefox > Options/Preferences > Applications".
    You can set the pdfjs.disabled pref to true on the <b>about:config</b> page to disable the build-in PDF viewer.
    You can check the value of the plugin.disable_full_page_plugin_for_types pref on the about:config page and remove the application/pdf part if present or reset the pref to the default via the right-click context menu.
    See also:
    *https://support.mozilla.org/kb/view-pdf-files-firefox-without-downloading-them

  • Help me!  converting to pdf from word, missing pictures and formating?

    I wrote a book, was able to create a press quality pdf without any problem during my free trial of acrobat pro xi, now that I have made edits and have bought acrobat, everytime I create a pdf from this (large) word file, some of the images are missing, some text is blurry, and my formatting is off.  It's maddening because it worked so easily before.
    Any help is much appreciated. 
    Also, for a company that charges so much for their products that they basically have a monopoly on, it's very annoying that I can't get some sort of tech support on the phone and this appears to be my only option.  VERY ANNOYING. 
    Anyhoo... thanks for any help from the forums/experts.
    -Chris

    I don't know what cause this and it's really annoying. I met the same problem when converting pdf from .docx file.
    The solution is, re-save your .docx file (Word Document) into .doc file(Word 97-2004 Document) first. Then save the .doc file as pdf. It worked for me.

Maybe you are looking for