SOLR and PDF Question

Does anybody have any advice about using SOLR to index PDF documents?  The documents have metadata added to them, and we'd like to associate the metadata to the Custom1 through Custom4, and then return them in a results page.  We're able to index the documents, but can't seem to get SOLR (or Verity, for that matter) to recognize and return any of the metadata.
Thanks...
   Dan

I suspect you're gonna have to extract whichever metadata you want to use manually (using <cfpdf> to read the PDF files).
It might be worth checking out what work has already been done for getting Lucene to extract & parse info from PDFs.  Even if the stuff out there isn't an exact fit for you, it'll almost certainly be open source so you'll be able to modify it to suit your needs.
Adam

Similar Messages

  • Adobe print and PDF question

    Hi,
    In Adobe I managed to:
    1) print via the spooler my sfp documents
    2) grab the PDF and send them in a email
    However I would like to have a combination of both. It now looks like when I set the GETPDF to 'X' it only creates the PDF string (Scenario2) and NOT spool to the printer.
    Anybody an idea? I looked into the archiving as well but am lost..
    Thanks!
    Frans
    Edited by: Frans J. Utt on Feb 15, 2010 5:12 PM

    As per my experience you cannot have both. You need to use a FM with parameters and call this FM twice with different expected result (first print, next get PDF). Otto
    p.s.: note there is Adobe forms forum under NetWeaver

  • Photoshop and PDF question

    Hi,
    I have purchsed photoshop and currently have in design on trial.
    Our company has a 40 page brochure and we want to place this on our website.
    I have noticed several other websites that allow you to flip the page with the flip effect, just looking for a little advise and if I am on the right track.
    I noticed at this website http://www.specialisedwelding.co.uk/ a reader pops up you can view direct at http://www.specialisedwelding.co.uk/catalogue/02-MIG.html
    I seen a tutorial that demonstrated how to create this flip but it never went as far as how to place on website.
    Lastley Im at a loss when the reader pops up, will i require another application for this.

    When ever you see something on the web you like you can always use you browsers view source to see the pages htm. Also in the page right clicking may give you some information. On my Window 7 PC using Chrome right clicking shows the page is being displayed by Flash.  Looking at the Page html I see there is some checking going on for  iPad and Android
    http://www.mypageflip.com/
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="description" content="SWP - MIG Welding e-catalogue" />
    <meta name="keywords" content="SWP - MIG Welding e-catalogue" />
    <meta name="author" content="www.page-flip.co.uk" />
    <link rel="icon" href="http://www.specialisedwelding.co.uk/favicon.ico" type="image/x-icon" />
    <title>SWP - MIG Welding e-catalogue</title>
    <style type="text/css">
    <!--
    body {
    background-color: #FFFFFF;
    margin:1px;
    padding:1px;
    position:top left;
    -->
    </style>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-854451-24']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
        // <![ipad-iPhone.sniffer[
    if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
    document.location = "http://my.page-flip.co.uk/00000013/00012513/00072564/";
        // <![mobile.sniffer[
    if ((navigator.userAgent.indexOf('Android') != -1) || (navigator.userAgent.indexOf('BlackBerry') != -1)) {
    document.location = "http://my.page-flip.co.uk/00000013/00012513/00072564/";
    </script>
    </head>
    <body>
    <IFRAME SRC="http://my.page-flip.co.uk/?userpath=00000013/00012513/00072564/" WIDTH="100%" HEIGHT="100%" SCROLLING="no" FRAMEBORDER="0"></IFRAME>
    </body>
    </html>

  • Performance issue and functional question regarding updates on tables

    A person at my site wrote some code to update a custom field on the MARC table that was being copied from the MARA table.  Here is what I would have expected to see as the code.  Assume that both sets of code have a parameter called p_werks which is the plant in question.
    data : commit_count type i.
    select matnr zfield from mara into (wa_marc-matnr, wa_marc-zfield).
      update marc set zfield = wa_marc-zfield
         where werks = p_werks and matnr = wa_matnr.
      commit work and wait.
    endselect.
    I would have committed every 200 rows instead of every one row, but here's the actual code and my question isn't around the commits but something else.  In this case an internal table was built with two elements - MATNR and WERKS - could have done that above too, but that's not my question.
                DO.
                  " Lock the record that needs to be update with material creation date
                  CALL FUNCTION 'ENQUEUE_EMMARCS'
                    EXPORTING
                      mode_marc      = 'S'
                      mandt          = sy-mandt
                      matnr          = wa_marc-matnr
                      werks          = wa_marc-werks
                    EXCEPTIONS
                      foreign_lock   = 1
                      system_failure = 2
                      OTHERS         = 3.
                  IF sy-subrc <> 0.
                    " Wait, if the records not able to perform as lock
                    CALL FUNCTION 'RZL_SLEEP'.
                  ELSE.
                    EXIT.
                  ENDIF.
                ENDDO.
                " Update the record in the table MARC with material creation date
                UPDATE marc SET zzdate = wa_mara-zzdate
                           WHERE matnr = wa_mara-matnr AND
                                 werks = wa_marc-werks.    " IN s_werks.
                IF sy-subrc EQ 0.
                  " Save record in the database table MARC
                  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                    EXPORTING
                      wait   = 'X'
                    IMPORTING
                      return = wa_return.
                  wa_log-matnr   = wa_marc-matnr.
                  wa_log-werks   = wa_marc-werks.
                  wa_log-type    = 'S'.
                  " text-010 - 'Material creation date has updated'.
                  wa_log-message = text-010.
                  wa_log-zzdate  = wa_mara-zzdate.
                  APPEND wa_log TO tb_log.
                  CLEAR: wa_return,wa_log.
                ELSE.
                  " Roll back the record(un save), if there is any issue occurs
                  CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'
                    IMPORTING
                      return = wa_return.
                  wa_log-matnr   = wa_marc-matnr.
                  wa_log-werks   = wa_marc-werks.
                  wa_log-type    = 'E'.
                  " 'Material creation date does not updated'.
                  wa_log-message = text-011.
                  wa_log-zzdate  = wa_mara-zzdate..
                  APPEND wa_log TO tb_log.
                  CLEAR: wa_return, wa_log.
                ENDIF.
                " Unlock the record from data base
                CALL FUNCTION 'DEQUEUE_EMMARCS'
                  EXPORTING
                    mode_marc = 'S'
                    mandt     = sy-mandt
                    matnr     = wa_marc-matnr
                    werks     = wa_marc-werks.
              ENDIF.
    Here's the question - why did this person enqueue and dequeue explicit locks like this ?  They claimed it was to prevent issues - what issues ???  Is there something special about updating tables that we don't know about ?  We've actually seen it where the system runs out of these ENQUEUE locks.
    Before you all go off the deep end and ask why not just do the update, keep in mind that you don't want to update a million + rows and then do a commit either - that locks up the entire table!

    The ENQUEUE lock insure that another program called by another user will not update the data at the same time, so preventing database coherence to be lost. In fact, another user on a SAP correct transaction, has read the record and locked it, so when it will be updated your modifications will be lost, also you could override modifications made by another user in another luw.
    You cannot use a COMMIT WORK in a SELECT - ENDSELECT, because COMMIT WORK will close each and every opened database cursor, so your first idea would dump after the first update. (so the internal table is mandatory)
    Go through some documentation like [Updates in the R/3 System (BC-CST-UP)|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCSTUP/BCCSTUP_PT.pdf]
    Regards

  • Trouble opening jpeg and pdf files.

    I have a fully current version of Photoshop (ICloud).  When attempting to open some jpeg files and pdf files, they remain ghosted and will not open.  I think it may have to do with the settings in the 'open' window but i don't know what to do.  ?????

    …and no one knows how to help you until you provide details.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Storing MS-Word and PDF documents in database uploaded through APEX

    I want to allow users to upload MS-Word and PDF documents they have created / edited outside of the APEX app for storage in the database along with the other app data.
    I know that I should use a file browse item in a region for this purpose.
    I have a some questions:
    1. What database datatype is best for storing MS-Word and PDF docs? CLOB?
    2. How can the user see that the file has been uploaded? In other words, how can they see that the filename has been uploaded? I want to show this on the page for later viewing. I have uploaded a document, but later, I have no way to see that the document has in fact been uploaded. From the APEX page, the file browse item does not indicate whether or not a file has previously been uploaded.
    3. How can the user download the previously uploaded document?
    4. Is there a way to give users the capability to edit a document in an APEX app where they can do MS-Word-like editing (font size, font type, bold, italics, etc.)?
    I know I've asked a lot here and I appreciate your input.
    -Reid

    In my case, I am uploading screenshots of my application and then displaying them. You can feel free to use it if you want, the code was mostly taken from examples of file uploads posted by others. Here is some code to get you started:
    File Table description
    CREATE TABLE FILE_UPLOAD
       (name           VARCHAR2(4000) PRIMARY KEY,
        subject        VARCHAR2(4000),
        id             NUMBER,
        blob_content   BLOB,
        mime_type      VARCHAR2(4000),
        PAGE_ID        NUMBER);File Upload Procedure
    IF ( :P20_FILE_NAME is not null ) THEN
         INSERT INTO FILE_UPLOAD (id, NAME, SUBJECT, BLOB_CONTENT, MIME_TYPE, PAGE_ID)
          SELECT ID,:P20_FILE_NAME,:P20_SUBJECT, blob_content, mime_type, :P20_PAGE_ID
                FROM APEX_APPLICATION_FILES
                WHERE name = :P20_FILE_NAME;
       DELETE from APEX_APPLICATION_FILES WHERE name = :P20_FILE_NAME;
      END IF;Download Image Procedure Definition
    CREATE OR REPLACE PROCEDURE download_my_file(p_file in number) AS
            v_mime  VARCHAR2(48);
            v_length  NUMBER;
            v_file_name VARCHAR2(2000);
            Lob_loc  BLOB;
    BEGIN
      SELECT MIME_TYPE, BLOB_CONTENT, name,DBMS_LOB.GETLENGTH(blob_content)
             INTO v_mime,lob_loc,v_file_name,v_length
        FROM FILE_UPLOAD
       WHERE id = p_file;
        -- set up HTTP header
        -- use an NVL around the mime type and
        -- if it is a null set it to application/octect
        -- application/octect may launch a download window from windows
      owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
        -- set the size so the browser knows how much to download
      htp.p('Content-length: ' || v_length);
        -- the filename will be used by the browser if the users does a save as
      htp.p('Content-Disposition:  attachment; filename="'||replace(replace(substr(v_file_name,instr(v_file_name,'/')+1),chr(10),null),chr(13),null)|| '"');
        -- close the headers           
      owa_util.http_header_close;
        -- download the BLOB
      wpg_docload.download_file( Lob_loc );
    end download_my_file;
    /make sure to grant the procedure rights for use by anyone
    GRANT EXECUTE ON download_my_file TO PUBLICDisplay Image Procedure Definition
    create or replace PROCEDURE "DISPLAY_IMAGE"
      inID NUMBER
    AS
      vMIME VARCHAR2(48);
      vLENGTH NUMBER;
      vFILENAME VARCHAR2(2000);
      vBLOB BLOB;
    BEGIN
      SELECT MIME_TYPE, BLOB_CONTENT, NAME, DBMS_LOB.GETLENGTH(BLOB_CONTENT)
        INTO vMIME, vBLOB, vFILENAME, vLENGTH
      FROM FILE_UPLOAD
      WHERE ID = inID;
      owa_util.mime_header(nvl(vMIME, 'application/octet'), FALSE);
      htp.p('Content-length: ' || vLENGTH);
      owa_util.http_header_close;
      wpg_docload.download_file(vBLOB);
    END;
    /Again, make sure everyone has rights to execute the procedure.
    GRANT EXECUTE ON DISPLAY_IMAGE TO PUBLICThis doesn't create an editor inside the browser, it just creates a simple upload/display process. For a WYSIWYG editor that handles PDF or Docs, you'll need something far more sophisticated, and I can't suggest anything there.

  • Accessibility and Pdf Portfolios

    Everything we put on the Internet must be ADA compliant. There was some discussion with previous versions of LiveCycle forms inside a PDF portfolio possibly not being compliant because of the navigation issues inside the portfolio itself. Does anyone know if a pdf portfolio is ADA compliant and compatible with JAWS reader? We have several application forms which are over 20 pages long. They have designed the application as one document with several forms that might be needed by our clients.
    My thought is that a portfolio would be a more efficient package to put all the ADA forms into so that they client can only fill out those that are needed.
    So my question is, is the portfolio itself ADA accessible? Or how can I make it so. Does anyone know?

    I have posted this question there before and didn't receive an answer. Since a portfolio is the only way to combine multiple LiveCycle pdfs, my hope was that someone on the LiveCycle forum would know the answer.
    Date: Mon, 2 Jul 2012 01:54:35 -0600
    From: [email protected]
    To: [email protected]
    Subject: Accessibility and Pdf Portfolios
        Re: Accessibility and Pdf Portfolios
        created by Niall O'Donovan in LiveCycle Designer - View the full discussion
    Hi Jeanette,  I think your question would be better answered in one of the Acrobat forums: http://forums.adobe.com/community/acrobat.  Good luck, Niall
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4532786#4532786
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4532786#4532786. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in LiveCycle Designer by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Lightroom 5 book module trims pixels on JPEG and PDF export

    I'm making a 12x12" book and want to export at 250dpi.  I'm expecting my pages to be square and exactly 3000x3000 pixles.  When I export to JPEG or PDF the pages are not square and JPEGs are 2968 x 3000.
    I've seen the same question asked regarding LR4.  It appears to not have been fixed or addressed in LR5.
    I'm not using Blurb to create books which I understand is the publisher that requires these odd sized pages and why LR exports pages this way.  Oddly, there is a special export for Blurb books; I wouldn't think that the generic JPEG and PDF exports should follow the Blurb standard.  Idealy, I want my JPEG exports to be two-page spreads at 6000 x 3000 pixels.  I can stitch together two pages in Photoshop easily enough, but not if the pages are not the correct size to begin with.
    For now, I'll use LR5 to mock up a book and then re-create the whole thing manually in PS, which is really sad and such a waste of time given that LR is so close to being able to export exactly what I want.
    Would love to see this fixed in an update soon.

    These are both bugs that have been fixed since the LR4 beta. Thanks for bringing them up, though.

  • I have a serious malfunction of Acrobat Pro and PDF document viewer.

    I have a serious malfunction of Acrobat Pro and PDF document viewer. with monthly subscription. Side scroll bar to review the document works desperately slow, and it is very annoying to work under these conditions. Please no solution?It yosemite my OSX system and retina macbook pro in January 2015 16GB RAM. Someone can help me please?
    thanks
    Bruno

    Dear Sukritd,
    The versión is Acrobat Pro Document Cloud subscription (anual)
    The version is updated.
    Noting to repair, the system is 100% running.
    The problem in the scroll page  in all kind of pdf files.
    Thanks.
    Bruno
    El 2/5/2015, a las 13:45, sukritd15 <[email protected]> escribió:
    I have a serious malfunction of Acrobat Pro and PDF document viewer.
    created by sukritd15 <https://forums.adobe.com/people/sukritd15> in Acrobat Installation & Update Issues - View the full discussion <https://forums.adobe.com/message/7504989#7504989>
    Hi Bruno ,
    Could you please verify the Acrobat version you are using is the latest Acrobat DC or some older version ?
    Does this happen with any particular PDF file or all the documents ?
    If you haven' tried repairing your Acrobat ,please try the same and see if that helps .
    For repairing Acrobat Launch Acrobat>Navigate to Help> Repair Acrobat Installation .
    If that does not work you could probably uninstall the software and try downloading it again and see if that fixes the issue .
    Let us know how it goes .
    Regards
    Sukrit Dhingra
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7504989#7504989 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7504989#7504989
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Acrobat Installation & Update Issues by email <mailto:discussions-community-acrobat-installation_and_update_installation@adobe-v7.hosted.jivesoft ware.com> or at Adobe Community <https://forums.adobe.com/choose-container.jspa?contentType=1&containerType=14&container=47 14>
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624 <https://forums.adobe.com/thread/1516624>.

  • Webdynpro laerning docs and pdf required

    Hi,
    I need to learn WebDynpro and also learn how to develop programs in EJB. I need some useful documents and PDFs and also link to WebDynpro link of help.sap.com.
    Regards
    Kaushik Banerjee

    hi.....
    You can go thru the following docs and threads....
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/9a/368442a07b0e53e10000000a155106/frameset.htm
    http://searchsap.techtarget.com/generic/0,295582,sid21_gci1149410,00.html
    http://searchsap.techtarget.com/general/0,295582,sid21_gci1108668,00.html
    http://www.sapcookbook.com/SAP-CRM-Interview-Questions-SAP-Customer-Relationship-FAQ.htm
    /docs/DOC-8061#41
    What is Webdynpro?
    What is Web Dynpro?
    Webdynpro Sample Applications and Tutorials
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d
    SAP WebAs Samples And tutorials
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/7d646a6c-0501-0010-b480-bf47b8673143
    Basis Webdynpro tutorials....
    http://help.sap.com/saphelp_erp2005/helpdata/en/15/0d4f21c17c8044af4868130e9fea07/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e9/1fc0bdb1cdd34f9a11d5321eba5ebc/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3a/d08342a7d30d53e10000000a155106/frameset.htm
    Web Dynpro Sample Applications and Tutorials:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d
    http://searchsap.techtarget.com/searchSAP/downloads/SAPPRESS.pdf
    Check the following thread u can get lot of materials,
    WeB Dynpro Documents
    Refer these linkshttps://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/web%20dynpro%20tutorial%20and%20sample%20applications.faq
    Why WebDynpro ?
    Why WebDynpro ?
    Why  webdynpro and not BSP or JSP?
    Why webdynpro and not BSP or JSP?BSP to WEB Dynpro
    BSP to WEB Dynpro
    Benifits of using Webdynpro Benifits of using
    Webdynpro
    Java vs. ABAP WEbDynpro Java vs.
    WebDynpro ABAP
    regarding Java related webdynpro
    Regarding Java related Web Dynpro vs. Struts - a few questions
    Web Dynpro vs. Struts - a few What kind of applications are being developed with Web Dynpro?
    What kind of applications are being developed with Web Dynpro?
    http://www.sappro.com/downloads/OptionComparison.pdf
    Hop this will helpful for u..

  • ASAP Is any Java libraries exist to modify Excel file and PDF file

    Is any Java libraries exist to modify Excel file and PDF file. I know about the third party libraries like Apache poi and many more. But I want to know about java libraries not the third party tools.

    Souvik_Software wrote:
    I don't know what you guys want. I simply asked for a answer and because me want it urgently that is why I have written "ASAP". But I think you are more energetic in fighting not with the answer. Thanks for the help.By flagging it with words as "ASAP" and "Urgent" your are implying that your question is more important than other people's questions or that your time is more valuable than the time of people answering questions here. So you see, by doing so, you sound rather selfish.
    But, the answer to the question in your original post is: "no, there are no classes in the core Java API that do what you want". Simple.

  • What does it mean when you computer crashes and when you turn it back on it shows you a blank blue screen with a little folder and a question mark in the middle?

    What does it mean when you computer crashes and when you turn it back on it shows you a blank blue screen with a little folder and a question mark in the middle? It's a old imac from 1997.

    I don't have original discs that it came with.
    Then you still can use the second option with the keyboard combo I posted, called "resetting the PRAM."
    Also when you way hold the c key down do you mean turn computer off and turn back on holding the c key?
    Yes, or you can simply restart. As you don't have the CDs, this isn't on the plate any more.
    The internal backup battery is not expensive and, in most iMacs is user-replacable. If yours has a tray-loading optical drive like this one:
    it takes a major teardown to replace the internal battery. If this is the case, you'd be better off to leave the computer plugged in all the time; that eliminates the main reason for having a working battery.
    If it has a slot-loading optical drive like this one:
    things are much easier. The battery is visible through the RAM access door on the bottom of the computer case. The manual:
    http://manuals.info.apple.com/en_US/iMacG3_2000UserManual.PDF
    has sketches of how to access the RAM and therefore the backup battery. Unfortunately, the pdf on the manual goes up sideways on-screen and the RAM instructions are pretty deep into the manual. It's probably easier to scroll (for a while) to the section on adding RAM and print the applicable pages.
    When you work on the battery, some sort of non-conductive pliers or large tweezer or forceps help unless you have tiny fingers. Make sure to note the polarity of the old battery and install the new one in the same orientation.
    The battery itself is readily available. If price is no oblect, you can get it for a small rasom from Radio Shack Store ("Tandy" outside the US) as part number 23-026.
    Online, they are dirt-cheap even after adding shipping. I buy backup batteries form this outfit:
    3.6v Newer Technology Lithium 1/2 AA PRAM Computer Clock Battery

  • Sharing and displaying Excel and pdf documents in SAP BO Mobile

    Hello all,
    I have one quick question. Is it possible to share excel and pdf documents through SAP BO Mobile?
    I tried it uploading documents to BO Launch pad and assigning them to Mobile category. I can't see them in my ipad. Is there another way to share these kind of files through SAP Mobile in mobile devices? and how?
    Thanks.

    No that won't do it. Because my users have their own excels which are not related to BO or BW platforms. They are entering data manually to excel spreadsheets and reporting. We just want to upload them to BO platform and let them share those files with other users.
    I know I could create a webi report on top of excel, but we don't want to spend redoing the reports in excel.
    Thanks though.

  • Is ADS and PDF forms required for an upgrade to ECC 6.0 for US Payroll?

    We're currently on SAP 4.7 for US Payroll, but are working on an upgrade to ECC 6.0. I'm looking for a clear answer to whether or not we have to move to Adobe Document Services and PDF forms with our upgrade. I've heard from several sources that SAP is not providing updates to SAPscript forms in ECC 6.0 and will only make updates to PDF based tax reporter forms going forward. Can anyone comfirm that is the case?
    Thanks in advance,
    -Nick
    Edited by: Nicholas Petters on Oct 29, 2009 5:52 PM

    Hi
    This is Srinivasa Rao Pandiri... I have an add on question to Nick. We currently upgraded our SAP from 4.6 C to ECC6.0. WE want to use existing PDF forms provided by SAP. To use the existing forms.. without any changes... Do we need ADS? or is there anyway we can use them? withou ADS installed?
    Your help is appreciated.
    Thanks

  • OWA - "Sorry, we ran into a problem" when openingen word and pdfs

    Hi,
    I have a weird problem similar to
    this one where office web apps will not open my word and pdfs on my SharePoint server. Other documents like excel and powerpoint are working just fine. I'm running SP1+ on both SP2013 and OWA server.
    When I open a word or pdf document it opens my document in view mode and displays this error aswell:
    It works fine in other browser such as Google Chrome and also if I change emulation mode to IE9.
    If I check the debugging of the site I get this error:
    Object doesn't support property or method 'selectSingleNode'
    My site is added to the local intranet zone.
    The problem is only located on our a new Citrix farm. If I compare the IE security settings and the local Intranet zone with my own client that also runs IE11 the settings are the same. However it works fine on my own machine. IF I choose to Reset my Internet
    Explorer settings it works also until I log off Citrix completely and back on.
    Any idea on what settings causes this behavior?
    Thanks

    Check if your IE Is 32 bit or 64 bit.
    Also check Office installed on system is 32 bit or 64 bit
    do all users face same issue
    did you added both OWA and SharePoint URL in trusted site
    https://social.technet.microsoft.com/Forums/en-US/591cdbc6-a4a9-4f0c-b242-6fc2c04a6149/ie-11-and-sharepoint-2013-word-web-app?forum=sharepointadminprevious
    http://sharepoint.stackexchange.com/questions/95617/office-web-apps-broken-in-ie11
    upgrading my OWApps to the latest December CU seems to have fixed my problems with IE11.
    If this helped you resolve your issue, please mark it Answered. You can reach me through http://itfreesupport.com/

Maybe you are looking for

  • How I beat the iTunes Error 4310

    This post does not exactly provide a solution to the frustration so many people are encountering when trying to burn a CD from an iTunes playlist, but I did find a way around the problem.  I hope that by posting this I can at least save a few of you

  • How to create a DSN for Oracle Provider for OLE DB in a web server

    Dear Guys, I am a Excel VBA developer. My requirement is from the Excel I have to call a Stored Procedure with REF CURSOR. Normally I am using Microsoft ODBC for Oracle Driver for connecting Oracle DB, which is in the Server . We have users using the

  • DVD/CD RW drive not recognized by Windows 7

    Since buying this laptop (HP Pavillion DV7T) I have had trouble with the DVD/CDRW drive not being recognized after a shutdown.  This is an intermittant problem with no traceable cause.  To fix this issue I have tried the following:  Assigned the DVD/

  • How can i make a button link in flash??

    Hey Guys, Im pretty new to flash but really need your help and guidance. I have a nice video ive created, and i want to make the buttons link to certain pages on a website it will be displayed at. If you want to see the flash video in place on the we

  • Control on lower case upper case

    Hi, I have one internal table say it_tab....i am converting this table into xml file....fields of internal table is equal to xml tag, for example i have defined internal table field name as "Product" so xml tag will be Product.....but my problem is t