Not able to Check-out/Check-in .pdf file from Client application in SharePoint 2013

Hi,
When I click on .pdf document in document library its getting opened in browser not client application.
I have done all the below settings.
1. Set Opening Documents in the Browser as Open in Client Application.
2. Activated Open Documents in Client Application by Default.
Still .pdf files getting opened in browser.
Then I Tried by doing the below Internet Setting.
       In Internet Explorer -> Manage add-ons and disabled Adobe PDF Reader -> Disable (So that the pdf should open in Browser).
Now I am able to Open the document in Client application but its not connected to SharePoint (
I am not able to do Check-in/Check-out/Save file back to SharePoint).
Can Any one Help me with this issue.
Also note Build number and CU :
15.0.4675.1000 - December 2014
Thanks in advance.
pavan2920

the option to open a PDF in the browser is based on the Web Application's list of allowed MIME types... it cannot be controlled on a per-library basis.
see: http://social.technet.microsoft.com/wiki/contents/articles/8073.sharepoint-browser-file-handling-deep-dive.aspx
Scott Brickey
MCTS, MCPD, MCITP
www.sbrickey.com
Strategic Data Systems - for all your SharePoint needs

Similar Messages

  • Urgent ! problem in accessing pdf file from client

    Problem : Unable to access the temp(.pdf) file from the client.
    Scenario: I,m working on pdf reports.Pdf file is created each time the user submits the form.
    The file can be accessed from the server itself.But can't be accessed from the client.
    Description :
    Path i,m specifying for run time creation of the .pdf file is :
    C:\PStudio\RepMenu|RepMenuWeb\tempp_files\
    The C:\ drive is of the server machine.
    After creating the temp file say,
    C:\PStudio\RepMenu|RepMenuWeb\tempp_files\temp_rpt_53881.pdf
    I assign this path to the variable as :
    dir_Path=C:\PStudio\RepMenu|RepMenuWeb\tempp_files\temp_rpt_53881.pdf
    and also create the hidden variable as :
    out.println("<input type='hidden' name='hfile' value="+dir_Path+">");
    Now onClick of image I invoke js function as :
    function clickOn()
         var path="";
         path=document.form1.hfile.value;     
         document.form1.action = path;
         document.form1.submit();
    Help me to figure out where I,m making the mistake.
    For any futher query Kindly mail me at [email protected]

    I had similar issue. Despite of having "Define workstation application in network" for PDF setup for Application Type 3 "print" with Application %AUTO% I was only getting the .pdf file displayed in Adobe Reader instead of getting it printed.
    Solution:
    set Application to "AcroRd32.exe /t" to get the files opened in the Adobe Reader, printed and closed. The only thing I wasn't able to do was to get the Adobe Reader application closed after the print.
    regards,
    Jacek

  • How to open an PDF file from Java Application

    Hi
    I am developing a GUI application in java swing.
    on clicking one button, I want to open PDF file from my swing application.
    Is there any API through which I can achieve this?
    Tapan Maru
    Sun Certified Java Programmer

    Here's a way to do it (if I understand you
    correctly). Just let explorer.exe do it for you.
    import java.awt.*;
    public class openPDF
         Desktop desktop = Desktop.getDesktop();
         public openPDF()
              open("test.pdf");
         public void open(String path)
              try
                   Runtime.getRuntime().exec("explorer.exe "+path);
    } catch(Exception e) { System.out.println("NAI!
    I! ERROR!\n"+e); }
         public static void main(String[] args)
              openPDF myApplication = new openPDF();
    Why do you have a Desktop object as a member but instead of using it, you execute a command with Runtime (which is not platform independent!)???
    -Puce

  • Generate .PDF file from BlackBerry application

    Hai,
    Can anyone explain or give me some idea on generating pdf file in blackberry application programatically...
    Thanks in advance.
    Regards
    Ratheesh R Kurup

    hi Kiriakos,
    which version are you using ?
    please test this with reports 9i since PDF support
    has been enhanced there.
    to test i would suggest to run the report from rwclient
    as well and specify desformat=pdf and to a generate to
    file within builder to see if the same behavior occurs.
    if this problem reproduces there as well i suggest
    to contact oracle support to log the problem.
    regards,
    christian

  • Not able to convert spool output to PDF file properly

    Hi guys,
    i have got spool which contains russian characters which needs to be converted to PDF file.
    Note: ******Assuming user enters only one spool in S_Spool*******
    I am using following code to do this:
    **---- Get Spool ID Details from TSP01
    select * from tsp01 into table i_tsp01 where rqident eq s_spool.
    **---- Sort Table in Ascending order based on Spool Id
    sort i_tsp01 by rqident.
    **---- Get information about Multiple spools
    loop at i_tsp01.
    **---- Get Multiple Spool information
      call function 'RSPO_RETURN_SPOOLJOB'
        exporting
          rqident              = i_tsp01-rqident
        tables
          buffer               = i_spool_table
        exceptions
          no_such_job          = 1
          job_contains_no_data = 2
          selection_empty      = 3
          no_permission        = 4
          can_not_access       = 5
          read_error           = 6
          type_no_match        = 7
          others               = 8.
      if sy-subrc = 0.
      endif.
    **---- Get the Last line index (Number of Lines)
      describe table i_spool_table lines v_lines.
      i_otf[] = i_spool_table[].
    endloop.
    **---- Convert the OTF information to PDF.
    call function 'CONVERT_OTF_2_PDF'
      importing
        bin_filesize           = v_size
      tables
        otf                    = i_otf
        doctab_archive         = i_doc
        lines                  = i_pdf
      exceptions
        err_conv_not_possible  = 1
        err_otf_mc_noendmarker = 2
        others                 = 3.
    if sy-subrc <> 0.
      message i002(sy) with 'Cannot convert to PDF, exiting....'.
      leave program.
    endif.
    DATA: v_numbytes TYPE i.
    DATA : v_return1(128).
      CONCATENATE 'C:\' 'F_spool' '.pdf' INTO v_return1.
      CONDENSE v_return1.
      CALL FUNCTION 'WS_DOWNLOAD'
           EXPORTING
                bin_filesize = v_size
                filename     = v_return1
                filetype     = 'BIN'
             IMPORTING
                  filelength = v_numbytes
             TABLES
                data_tab     = i_pdf
         EXCEPTIONS
           file_open_error               = 1
           file_write_error              = 2
           invalid_filesize              = 3
           invalid_type                  = 4
           no_batch                      = 5
           unknown_error                 = 6
           invalid_table_width           = 7
           gui_refuse_filetransfer       = 8
           customer_error                = 9
           OTHERS                        = 10 .
      IF sy-subrc NE 0.
        EXIT.
      ENDIF.
    i have already tried standard pgm : RSTXPDFT4. But it does not work.
    Suitable answers will be rewarded.
    Thanks,
    GURU

    Hi Guru,
    Use FM 'CONVERT_ABAPSPOOLJOB_2_PDF'.
    Refer this code:
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
           EXPORTING
                src_spoolid              = gd_spool_nr
                no_dialog                = c_no
                dst_device               = c_device
           IMPORTING
                pdf_bytecount            = gd_bytecount
           TABLES
                pdf                      = it_pdf_output
           EXCEPTIONS
                err_no_abap_spooljob     = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_destdevice       = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                OTHERS                   = 12.
      CHECK sy-subrc = 0.
    Transfer the 132-long strings to 255-long strings
      LOOP AT it_pdf_output.
        TRANSLATE it_pdf_output USING ' ~'.
        CONCATENATE gd_buffer it_pdf_output INTO gd_buffer.
      ENDLOOP.
      TRANSLATE gd_buffer USING '~ '.
      DO.
        it_mess_att = gd_buffer.
        APPEND it_mess_att.
        SHIFT gd_buffer LEFT BY 255 PLACES.
        IF gd_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    Regards,
    Hemant

  • Not able to open links to open pdf files, nothing happens, no error messages.

    work site requires pdf files to be downloaded, after updating FireFox I can't do this any longer. I have added site to "exception" for pop-ups, still nothing.

    There needs to be an entry for the XI/ PI server....unless you make an entry you wont be able to access the links....can you try accessing the following link:
    http://<IP-Address of PI>:<JAVA PORT of PI>/rwb/FrontComponent/FC_Secure.jsp?doAction=showMessageMonitoring
    pi.com is not a standard....it was just an example.....thats why i mentioned get the FQDN from your team members
    regards,
    Abhishek.
    Edited by: abhishek salvi on Mar 22, 2010 1:22 PM

  • Illustrations greyed-out when printing PDF file from Adobe Reader

    Hello,
    From within PageMaker 7 I've made a 52-page PDF document in Distiller (selected job option is for Print) and uploaded it to my website.  It contains many greyscale illustrations (TIFs and JPGs first imported into PageMaker), and text.  I am able to view the PDF file over the net, and can print the illustrations and text on each page with no problem.  I am using an old HP laser printer (LaserJet 5L).  Other users are able to view the same PDF document on the net, and they can see all the illustrations and text on every page.  However, some users who have tested it are reporting that when they try to print out the pages on their own printers, most of the illustrations are greyed-out between pages 3 and 51.  The text is printing correctly on their printers.  The images on the front and back cover are printing, and so is an 11-page comic strip (made up entirely of 11 TIFs, with no additional text).  Can anyone work out why all the other illustrations throughout the document are printing greyed-out on their printers?
    Thanks
    Roger3

    I am replying to my own question.
    After posting here, I received feedback from a viewer that the PDF file is downloading and printing out pages with no greying-out of the illustrations.  It looks to me as though the problems are arising from other viewers' slow internet connections and/or hardware RAM for printing, especially if trying to print all pages at once, rather than Saving As to hard drive, then printing.
    Thanks,
    Roger3

  • Reader won't open when opening PDF file from third application

    I need help. Adobe Reader (11.0.06, running on a fully updated 64bits Windows 8.1) only opens "raw", not when supposed to open itself to open a PDF file. In other words, when I click Adobe Reader's shortcut, it opens, but when I double-click a PDF file it does not, unless it was already open that way.
    When that happens (i.e., when I open a PDF file and Adobe Reader doesn't start), I check on Process Explorer what is going on. What I see is a parent process ran from "C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe" "C:\Documents\file.pdf" and a subordinate process ran from "C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe" --channel=172.1.761882444 --type=renderer  "C:\Documents\file.pdf", eventhough no window exists, of course. When this is happening, even to open Reader through it's shortcut I have to kill both processes first.
    I have already repaired the installation and nothing changed. Then I uninstalled it, rebooted and reinstalled fresh, and nothing changed either. I don't know what else to try. Can anyone help?
    (Is there any info I can provide, some log or debug, etc.?)

    Could someone download the pdf file and try it on Reader 9 and then on Reader X to see if they get the same results?
    https://www.dropbox.com/s/1zkwdp8k6ij67hz/Check123.pdf
    Thank you.

  • How to retrieve full flash solution from WSP if not than how to retrieve ascx files from Template folder in SharePoint 2013 ?

    How to retrieve ascx file from the Template folder in SharePoint2013
    My issue is, I have WSP only so I changed into zip and got my all web parts and also one dll file after that decrypted dll and got some C# code
    mixing with some system generated code but not ascx file that is for front-end part. So my question is how we can retrieve full flash solution if not, at least ascx files So if we were on SharePoint 2010 we could have got those file from __Template__
    folder but It’s on SharePoint 2013 and not able to get ascx.
    If we can do so, than will be easy to get the task to be done
    Suggestions would highly be appreciated. Thanks in Advance.
    Ashish

    Hi Amit,
    you can not move specific changes from Dev to production.
    but you can follow this process to make your workflow as it is as in Dev:
    Create a new workflow on the new list in Product.
    Create at least one step, one condition and one action in this workflow.
    1. In Dev server open your .xomal file as XML and copy the entire contents.
    2.In Production server Open your .xoml file as XML and Paste the entire contents
    3. repeat this operation for the xoml.rules file
    4.Double click the .xoml file for the new workflow to open the workflow in the Workflow Designer and click Check Workflow to verify no errors and then click Finish to ensure the workflow is saved.
    Whenever you need to make changes apply the same.
    Please Mark Answer and Vote me if it will to resolve your issue

  • How to print PDF file from java application?

    Hi,
    I have a java application that needs to print an PDF files. Could any one provide me links to tutorial/sample codes for doing this?

    http://onesearch.sun.com/search/onesearch/index.jsp?qt=print+pdf+files&subCat=&site=dev&qp=&chooseCat=javaall&col=developer-forums

  • Unable to create PDF files from any application in any Acrobat version

    Hello, I am hoping someone can help me find a solution to a problem I am having creating PDF files.
    I have searched the Internet for a solution to this problem and can't find any information that helps me.
    I am running OSX 10.8.5 on a 2.5 GHZ Intel i5 Mac Laptop
    I cannot create PDFs from any program, Quark, Word, ect.
    When I try to print to the PDF printer, the printer pauses when it tries to open the Distiller. When I click resume, it pauses itself again.
    I have tried to save the document and create the PDF from within the distiller itself and get this error log:
    %%[ Error: undefined; OffendingCommand: MMXPR3 ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    I was originally using Acrobat 8, But I installed the trial version of Acrobat 11 and it has the same problem.
    The problem seems to be something to do with the distiller. I have a lot of Adobe software so I am trying to avoid a clean/re-install of Adobe software but will do it as a last resort.
    Thanks in advance for any suggestions.

    Hi,
    Besides pamma has suggested, here are similar issues, you can take a look at:
    http://unsolicitedbutoffered.blogspot.com/2014/01/quick-fix-volume-syntax-error-when.html
    http://crowdsupport.telstra.com.au/t5/T-Suite-Applications/There-was-an-error-opening-this-document-The-filename-directory/td-p/197425
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

  • Since upgrading to Mavericks, I'm not able to print most of the pdf files that I download.  Any suggestions?

    I have tried apple support (3 hours on phone), Adobe (1.5 hours on the phone) and Epson (I use the CX11N printer), another 1.5 hours and the proble still exists.
    I have tgried unstalling Epson printer and reinstalling, using "print as an image" and all the other things that Adobe suggedts on their sight.  I am also using Adobe Reader XI.  Any suggestions?

    Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
    Step 1
    If Adobe Reader or Acrobat is installed, and the problem is just that you can't print PDF's displayed in Safari, you may be able to print by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar may appear under the cursor. Click the printer icon.
    Step 2
    There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
    Step 3
    If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
    Safari ▹ Preferences... ▹ Security
    and check the box marked
    Allow Plug-ins
    Then click
    Manage Website Settings...
    and make any required changes to the security settings for the Adobe PDF plugin.
    Step 4
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens by pressing command-V, then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    Step 5
    The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others—I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
    Step 6
    Do as in Step 4 with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

  • Not able to fetch the item level rating for the document programatically in sharepoint 2013

    Hi,
    I am trying to get the current logged in user rating for items in document libraries . However. It is giving rating as 0 for the all the documents. I am using below code
     SPSite site = new SPSite(SPContext.Current.Web.Url);
                        SPWeb web = site.OpenWeb();
      string fileUri = "http://svdvspapp01:2015/" + webUrlSplit;
                                Uri urifileUrl = new Uri(fileUri);
                               SPServiceContext context = SPServiceContext.GetContext(site);
                                SocialRatingManager mySocialRatingManager = new SocialRatingManager(context);
                                SocialRating aRating = mySocialRatingManager.GetRating(urifileUrl);
                                string myRating = aRating.Url + ": " + aRating.Rating;                       
                                objtopRated.myRating = myRating; } }In the above code fileUri is the docuemnt url of the item in doc libraryeg. http://svdvspapp01:2015/ProductsandPricing/Pricing/Pricing_Document 1.xlsxI refrred the below msdn linkhttp://msdn.microsoft.com/en-us/library/ff407954.aspx

    Hi Labhesh,
    I understand that you want to search the date field in the document library inline search.
    I recommend to use the managed property for the dates column in the query.
    For example, if the managed property for the date column is called testdate, then type “testdate:2014-11-28” in the search box in the library for searching the date.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Microsoft Do you have any shame???? What for that SDM is when it is not able to download anything or Produce ISO files?????

    Microsoft Do you have any shame???? What for that SDM is when it is not able to download anything or Produce ISO files????? You have wasted a lot of our precious time . . . Can't you fix a single problem . . . I am downloading windows 8.1 using your SDM
    but it gives errors while downloading , and when download completes 100% , it s not able to unpack and produce an ISO file from it . . . 

    Please see this post:
    http://social.msdn.microsoft.com/Forums/en-US/27085f1c-daf4-4ee3-99eb-5f1ac715d959/dreamspark-students-using-the-sdm-please-read?forum=msdnfeedback
    Moving to off topic.
    Thanks,
    Mike
    MSDN and TechNet Subscriptions Support

  • Invoking PDF file from Forms

    We had a requirement in Oracle 10iDS to invoke PDF file from the Application form .I am trying to do that using client_host('AcroRd32.exe D:\temp\abc.pdf') which is not working ..
    I have webutil configured as well ..
    Can you some one suggest me on this
    Many thanks
    Sareen

    Sareen,
    If the PDF is on the client:
    web.show_document('file://D:\temp\abc.pdf', '_BLANK');
    If on the Application Server, then create a virtual directory (for instance docs/):
    web.show_document('http://server.com:7778/docs/abc.pdf', '_BLANK');
    Regards,
    Martin Malmstrom

Maybe you are looking for

  • Aspect ratio bug with analog TVs?

    I just bought an AppleTV, and connected it via component cables to a 4:3 TV (it's an older TV, has component inputs but only supports 480i, and it's 4:3, not widescreen). The problem is that all 4:3 content that I have is squished horizontally on the

  • RoboDemo (Captivate) file links don't work in HTML Help

    I have about 20 Flash movies (one .swf and one .html file each) that I created using Captivate (formerly "RoboDemo"). They are stored in a subfolder named "Demos" below the application folder where my compiled Help file is stored. Each movie is refer

  • Reducing number of columns in case query

    Hi all, I am operating on 10G R/2. I have a query which produces the columns with the number of counts. SUM (CASE WHEN LTRIM(RTRIM(W_O)) ='ROKOLBIN' THEN 1 ELSE 0 END) AS "O_ROKOLBIN", SUM (CASE WHEN LTRIM(RTRIM(W_I)) = 'ROKOLBIN'THEN 1 ELSE 0 END) A

  • Custom Document & Custom Doc Legal Control Extraction into SAP BI

    Dear All, After all the business content for GTS was activated in GTS and SAP BI, the following configuration steps were taken in GTS to extract this data into BI for reporting: [1] Integration with Other mySAP.com Components > Data Transfer to the S

  • Distributed clustered environment

    Hi , Distributed clustered environment: I am going to configure Clustered environment of BO 3.1 , I have some doubt hence I have less experience in clustering. Configuration details : 1) 2 CMS on 2 diffrent unix box 2) Report servers will be installe