Adding Document Link

I am trying to insert a shortcut 'Add DocumentLink' like 'Add Document' inside a document library (just replacing upload.aspx with newlink.aspx (id=idHomePageNewLink) it brings up the first form to upload the Document URL & Title when click on OK gives
error message. We have created views in library with filters to show only specific documents to control access; from any view when they use 'Document Link' from ribbon it always lands up in a different view. please let me know how i can add shortcut link

Hi M Raki,
You seems to add custom action in the Ribbon to replace the upload document function.
You can create custom action using CustomAction element in CAML, the following sample shows how to do this. And to achieve the upload function, if you don’t want to use default upload page, custom a layout upload page to achieve the upload, then redirect
to the default list view page.
Add Custom Button to the SharePoint 2010 Ribbon:
http://blogs.msdn.com/b/jfrost/archive/2009/11/06/adding-custom-button-to-the-sharepoint-2010-ribbon.aspx
Thanks,
Qiao Wei
TechNet Community Support

Similar Messages

  • Can document links be added via scripting?

    Can we add document links through scripting on Master Agreement header page? We are trying to mass update document links for about 3000+ records and hence I need to create a script (one time task) that can add these values on MA header page.
    I am trying to create the document link defintion as follows:
    DocumentLinkDefinitionIBeanIfc dld = (DocumentLinkDefinitionIBeanIfc)
    TypeFactory.createObjectReference(620);
    dld.setDisplayName("Test");
    dld.setInternalName("Test");
    dld.setLinkClassId(509);
    dls.setSystemDefined(new
    Boolean(false));
    dld.setLinkDirectionType(new DocLinkDirectionTypeEnumType(3));
    dld.setLinkDefinitionType(new DocLinkDefinitionTypeEnumType(3));
    and then set this document link defintion to Document Link Bean as follows:
    DocumentLinkIBeanIfc dl = (DocumentLinkIBeanIfc)
    TypeFactory.createObjectReference(509);
    dl.setExtRefDoc("99999");
    dl.setExtRefLine("900");
    dl.setLinkDefinitionObjRef(dld);
    But this is giving me error.
    Let me know if I am doing something wrong.
    Any help will be appreciated.
    -Regards,
    Bindu Sharma

    Hi,
    I create the document link definition between two agreements (variables doc and otherAgreement) using this code:
    documentLinkDef = documentLinkDefHome.findUnique("FCI-CONTRACT RELATED");
    newDocLink = doc.documentLinkList.create();
    newDocLink.linkDefinitionType = new DocLinkDefinitionTypeEnumType(1);
    newDocLink.linkDefinitionObjRef = documentLinkDef.objectReference;
    newDocLink.LinkDocObjRef = otherAgreement.objectReference;
    doc.documentLinkList.add(newDocLink);
    Hope this is helpful
    Francisco

  • Acrobat X external document linking problem

    Hello,
    I have been using Acrobat 6 standard for our user manuals for years and have recently started using Acrobat X.
    It seems that the external document linking has changed though.  I used to put all of our 3rd party literature (PDFs) in a separate folder (to keep it clean and neat) under our main manual PDF.  I would link to all those documents inside our user manual PDF.  Then when I later burned the PDF and the 3rd party literature to a CD, as long as I maintained the folder heirarchy, everything worked just fine.
    Under Acrobat X though this doesn't seem to be the case.  If I just burn it to a CD, then the all of the external links are broken.  I have been able to do this by adding Desinations names to the 3rd part literature but this is a lot more work and I don't want to modify all of the 3rd party docs.  In addition, some of them are read only and you cannot edit them.
    Does anyone know how to link to external documents in Acrobat X and then move them to a new location while maintaining the link without editing the external documents (some are read only).
    Thank you for any help you can give me.

    The Javascript code populates a field on the form and the If Then statement sets this value based on  the amount in another field.  I have changed all of the values in the If Then statement but the button is still using the old values.
    I have tried this on three different computers and it will not pick up the new values. 

  • Document links repositioned after OCR is performed. Is there a workaround or solution?

    We use Adobe Acrobat Pro 10. We receive files that have imbedded links which link various parts of the PDF file to each other. It is necessary to complete OCR on this file for future search purposes. However, we have found that performing OCR causes the links to lose their position within the document. The link stll exists, just not in the same position it held prior to peforming the OCR function. Is there a solution for this issue?

    Did some trials. A common multi-page PDF containing a scanned document. No OCR. Added a link annotation over the image of a text string; made the annotation's boundary visible.
    OCR via Searchable Image (Exact) - observed no change in "position" of the link.
    OCR via Searchable Image - observed a "positional shift". Actually, expected this.
    Searchable Image not only provides the OCR output it also tweaks the image (deskew, etc.).
    Searchable Image (Exact) only provides an OCR output. The image is left "exact" as-is.
    So, identify which of the three OCR processes is used (#3 is ClearScan).
    You might want to do trials on a common PDF using each and then compare/contrast.
    Be well...

  • Add new document links to UDO

    Hello,
    I have created a UDO from an RFX and am now am trying to link the 2. I want to add a link in the RFX to the UDO and in the UDO to the RFX.
    I have added the link from RFX to UDO as follows:
    linkCollnRFX=doc.getDocumentLinkList();
         newMember=linkCollnRFX.create();
         newMember.setDisplayName("Test Link");
         newMember.setLinkDefinitionType(new DocLinkDefinitionTypeEnumType(1));
         newMember.setLinkDocObjRef(udoBean.getObjectReference());
         relnHome =IBeanHomeLocator.lookup(session, DocumentLinkDefinitionIBeanHomeIfc.sHOME_NAME);
         relnBean = relnHome.findUnique("RelatedSRF");
         newMember.setLinkDefinitionObjRef(relnBean.getObjectReference());
         linkCollnRFX.add(newMember);
         //save the document
         doc.getIBeanHomeIfc().save(doc);
    I need to the same thing for the UDO. UserDefinedBizDoc1IBeanIfc has getAllDocumentLinks() which returns CollectionIfc. CollectionIfc has no add method. Can someone please help me understand how I can add to this collection?
    Thanks,
    MP

    Thanks Baski,
    getDocumentLinkList()  is not listed in UserDefinedBizDoc1IBeanIfc. I anyway tried and as expected got the following error
    Error in method invocation: No args method getDocumentLinkList() not found in class'com.sap.odp.api.doccommon.userdefined.UserDefinedBizDoc1IBeanImpl' : at Line: 30 : in file: inline evaluation of: ``import com.sap.odp.api.doccommon.userdefined.*;  import com.sap.odp.api.doccommo . . . '' : udoBean .getDocumentLinkList ( )
    I also already tried casting this yesterday, I tried the following 3 methods, and all gave me the same error listed below.
         linkCollnUDO=(AssociativeCollectionIfc) udoBean.getAllDocumentLinks();
         newMemberUDO=linkCollnUDO.create();
         linkColln=udoBean.getAllDocumentLinks();
         linkCollnUDO=(AssociativeCollectionIfc) linkColln;
         newMemberUDO=linkCollnUDO.create();
         linkColln=udoBean.getAllDocumentLinks();
         AssociativeCollectionIfc linkCollnUDO=(AssociativeCollectionIfc) linkColln;
         newMemberUDO=linkCollnUDO.create();
    2011-10-13 08:34:43.459     ERROR     local4     ScriptManager     executeToolbarScript     RequestHandler.RqThread: tb_script     4D37565E1B5A849F12847A27A8ED6F5E     #abc.context.id#     abcadmin               Toolbar (rfx.RFXDoc. ABC1) script exception: ID: Illegal cast. Cannot cast com.sap.odp.api.doccommon.userdefined.UserDefinedBizDoc1IBeanImpl$1 to com.sap.odp.api.ibean.AssociativeCollectionIfc
    Am I doing something wrong? Can you help me to cast this properly?
    Thanks,
    MP

  • Add new document link not working in upgraded sharepoint 2013?

    Hello there,
    Upgraded SharePoint team sites from 2010 to 2013. add new document link not working for shared document in upgraded sharepoint 2013?. it is specially not working on machine where Office web apps set up with this sharePoint server and it
    is working fine with environment  Office web apps not configured with Sharepoint.
    Looking resoluion /suggestion, thanks in advance.
    Regards,
    Sushil

    Hi  Sushil,
    According to your description, my understanding is that the add new document link was not working on machine where Office web apps set up with this SharePoint server after you upgraded SharePoint team sites
    from 2010 to 2013.
    For your issue, it can be caused by integrating Office Web Apps with upgraded SharePoint Site.
    Firstly please make sure claims-based authentication is used by the SharePoint web application that is used to create the new document. Only web applications that use claims-based authentication can open
    files in Office Web Apps. To determine the authentication provider for a web application, follow these steps:
    1.In SharePoint 2013 Central Administration, click Manage web applications.
    2.Select the web application that you want to check, and click Authentication Providers on the ribbon.
    The authentication provider must be displayed as Claims Based Authentication for Office Web Apps to work correctly with the web application. To resolve this issue, you can delete the web application and recreate
    it using claims-based authentication, or you can change the authentication method of the web application.
    Secondly, make sure the WOPI zones match on the SharePoint 2013 and the Office Web Apps Server farm.
    To do this, run the following command on the SharePoint Server:
    Get-SPWopiZone
    The result will be one of the following:.
    internal-https
    internal-http
    external-https
    external-http
    Next, run the following command on the SharePoint Server.
    Get-SPWOPIBinding
    In the output, look for WopiZone: zone. If the results from Get-SPWopiZone don’t match the zone that is returned by Get-SPWOPIBinding, run the Set-SPWOPIZone -Zone cmdlet on the SharePoint Server to change
    the WOPI zone to match the result from Get-SPWOPIBinding.
    If not work, you can try to disconnect SharePoint 2013 from Office Web Apps Server and re-configure Office Web Apps for SharePoint 2013.
    For more information, please refer to the article:
    http://technet.microsoft.com/en-us/library/ff431687(v=office.15).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Open Document Link on PO Approval WF

    In the PO Approval Workflow, if you have the proper responsibility, an "open document" link is displayed that, when clicked, takes the user to a screen entitled "Notifications to Releases".
    This function is available to our Purchasing Super User responsibility but is not available for the Purchasing Approver responsibility. I'm trying to change that.
    Using help, I determined that the form associated with "Notifications to Releases" is POXPOERL. That form is assocated with the following functions and menus:
    FORM_NAME     FUNCTION_NAME     MENU_NAME
    POXPOERL     PO_POXPOERL     CHV_CHVSSWKB_FUNCTIONS     
    POXPOERL     PO_POXPOERL     PO_POXSTNOT_FUNCTIONS     
    POXPOERL     PO_POXPOERL     PO_POXPOVPO_FUNCTIONS
    POXPOERL     PO_POXPOERL     PO_PURCHASE_ORDERS_GUI
    POXPOERL     PO_POXPOERL     POS_INTERNAL_HP_MENU
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXSTNOT_FUNCTIONS     
    POXPOERL     PO_POXPPOERL_VIEW     PO_REQUESTOR_GUI
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXPOERL_FUNCTIONS
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXBWVRP_FUNCTIONS     
    I've tried, under Functional Developer, to add several of these to the menu for Purchasing Approver. When they show up on the menu and I click them, I get a message stating: "You are not setup as a buyer. To access this form you need to be a buyer."
    All I want is for people to be able to see and use the "Open Form Command". Am I going about this the wrong way?

    I was probably not clear enough in my original question.
    We want people who are approvers - but not necessarily buyers - to be able to open the form from the link. I'm not set up as a buyer, but I have the Purchasing Superuser responsibility and I can open the form.
    I guess, bottom line... some more information on how to make links to eBiz forms work from WF would be helpful. I've not found much in the Oracle-supplied documentation that we have; I've read what's in the Developer's Guide and the Admin guide. Can anyone suggest a web link or two that might shed more light on the process?

  • File not found when adding a link to another site collection on the navigation page

    When I am adding a link to another site collection in the navigation page, I got the following error. Is there any limitation for the navigation setting? why can't we add a link to another site collection in the navigation page?
    This is SharePoint 2007

    Hi
    the URL provided is working?  (check it in separate browser window )
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • How to get "Open Document " link

    Dear  Friends,
    I have customized a Requisition Notification based on PL/SQL documents and work flow concepts.
    I have created no.of requisitions to test. Each requisition have 3 persons involved say A ,B , C
    One for submitting ,other two for approval .
    After person B approves., it will go to C. till now  Everything working fine ,
    But In person C's notification list ,  the link called "Open Document " is missing to open the submitted requisition.
    Do I NEED TO SET UP ANY THING .
    How to resolve this .Any idea .Plz share.
    Let me know for any clarification.
    Thanks
    Aravinda.

    Dear friends
    It's solved.
    Just add Purchasing responsibilty to that user to whom  that "open document link " is not visible in the notification.
    Thanks
    Aravinda.

  • How to get the custom integrator in Manage Document Links

    Hi All,
    My requirement is "Creating Word Documents Using Web ADI", I am following the document
    Oracle® Human Resources Management Systems
    Configuring, Reporting, and System Administration Guide
    Release 12.1
    Part No. E13509-02
    From page no. 194.In that section, No.8. Use the Manage Layout Document Links page to create a link between the
    integrator and layout and the Word template.
    See: Creating Links between Template Letters and Layouts, page 2-33
    2-33>>
    Select Manage Document Links from the Web ADI menu.
    But when I click on the "Manage Document Links", I couldn't see my custom integrator to associate my word document with my integrator.
    I could see only the standard integrators.
    How to get my custom integrator in "Manage Document Links". I could see my custom integrator in define layout but not in this page.
    Thanks.
    With Regards,
    Kali.

    Hussein,
    Thanks for your reply.
    I followed the
    Note 360105.1 -Understanding and Using Web ADI in Oracle HRMS, and the section "Letters",
    I could follow all the steps, except the following,
    The reason is, when I click on Manage Documents Links, I am not getting my newly created integrator.
    If I link a standard integrator "HR People Details" to my document, that is opening properly.
    But I am not able to link my document with my integrator(which is based on my view).
    c.  Now link the template letter to the Letter Integrator and Layout.
    If not already done so, Add the function WebADI Manage Document Links to your Web ADI menu, and give it a prompt of Link Document.
    Select Link Document option , and Web ADI Mail Merge page displays. Choose your Letter Integrator. Link it to the Layout, and a list of template documents uploaded to the database is displayed. Select the template letter to be linked with the layout.
    Thanks.
    With Regards,
    Kali.

  • BO 4.1+ IE9 document link in webi?

    Hello All,
    We are using BO 4.1 & IE8 previously. Recently we upgraded the version of IE8 to IE9. When I open Master - Detail Reports, the tool is not behaving properly and its not opening up the detail report when clicked from master report. Is there any possibility to do any settings to work with IE9 for document link in webi 4.1? Thanks in advance.
    Regards,
    Anila.

    Hi Sathish,
    Thanks for your help. I have changed it in the preferences--WebI--modify--to web. I worked and created the report using document link on IE8. But very recently client has upgraded the version of IE. So because of which the master-detail is not working properly. Are there any settings to be changed in order to work with IE9??
    Thanks & Regards,
    Anila.

  • I have a new Mac Pro.  I want to use my old Mac Pro as a storage drive for photos and old documents, linked to my new Mac Pro.  How do I set up the old computer?

    I have a new Mac Pro.  I want to use my old Mac Pro as a storage drive for photos and old documents, linked to my new Mac Pro.  How do I set up the old computer?  Both computers have OS X10.9.3.  Currently they are connected by a Firewire 800 cable.

    You certainly could keep the old Mac Pro in Firewire mode (hold down the T key on its keyboard as you boot) to show its drives on the new MP. This is basically as fast as putting the drives into a Firewire enclosure.
    Or you could boot it normally and share its files over the network using the Sharing panel of System Preferences. If you turn on both File and Screen Sharing, you don't even need to have a monitor attached - you can do all administration using screen sharing. However, this method requires that you open all files over the network, which will be slower than the direct-connect method above, and may also not work with all applications.
    Matt

  • Not able to see document when I click Generate Document link in SSHR

    Hi,
    I have created a 'Generate Document' link on 'Change Hours' page of SSHR.
    But When I click on that link,I am seeing a blank screen and could not get the document.
    Please help me in this tio resolve the issue.
    Thanks,
    Srinivas

    Dear Srinivas,
    Since I am not able to understand the specifics of the SSHR Page, its slightly difficult to suggest something. If you can share the technical details of the page, it might be easier to make a guess. Btw, in case this is standard page behaviour, Oracle Metalink might be a place to look out for resolution.
    Regards
    Sumit

  • Why do I not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task?

    We are trying to use workflows to review and edit pdf files in sharepoint 2010. We are having a couple of issues and am hoping someone has the answer.....
    1)  When myself and coworkers click on the pdf document in the library, we get the check out option as expected.  However when we click on the document
    link in a workflow task (on the sharepoint site), the pdf opens as a temporary file and we do not get the check out option.  Why does this happen????? 
    2)  The same thing happens when we click on the document link in the workflow task email;   HOWEVER,  one of our co-workers does get the
    check out option when clicking on the link in the email task.  Why would she get the checkout option using the email and not when clicking on the link in the task list on the sharepoint site ????  We have compared our internet settings and adobe
    settings to ours and found no differences.
    We are using Sharepoint 2010, Windows 7, IE8, Adobe Reader X or XI.  Some of us have Adobe Pro X and have the same issues.

    Hi,
    According to your post, my understanding is that you could not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task.
    I try to reproduce the issue, however, no matter when I click the pdf type document in the library or click on the pdf document link in the workflow task email, it download the pdf doucment and then I can open it.
    It will be better if you can descript how you
    get the check out option as expected when you click on the pdf document in the library.
    Then I upload a
    word type document to the library, no matter when I click the word type document in the library or click on the word document link in the workflow task email, I can open the word document directly and get the check out option as expected.
    I recommend to use the other type docuemts to check whether the check out option works.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Document Link Item Icon not visible at query execution

    Dear Colleagues!
    How can I acheive to have the comment-icon visible when I open a query with comments in BI Portal, as a default?
    I have set som settings for the properties of the Query in Query Designer. As it is now I have marked for Document Links, Master Data and Info Provider Data, under presentation of the query as a whole.
    Still, when I execute, I can not see any icons. But if I enter settings in the web, and mark for Document Settings for data, the icons appear.
    I do not want the customer to have to do this settings each time they ececute a query from the portal. Rather I want the Document Link Icon to be visible by default. How can I get my settings in the query designer to be counting in fromt of the settings in the template?
    Regards Silje

    I figured this one out myself. There is a setting in Web Application Designer, directly on the query in question. In properties for the query I tick of "Document Links Visible".
    Regards Silje

Maybe you are looking for