Linking multiple documents in solar01

Hi Guys,
Linking multiple documents in SolMan is a pain, and I am trying to find out if anyone of you have a way that allows linking multiple documents in SolMan at a go.
We need to do a 3 way match between document types - Say Doc A, Doc B and Doc C. All Doc As have corresponding Doc Bs and Cs.
So each Doc A must be linked to the corresponding Doc B and C; Doc B to the corresponding Doc A and C and Doc C to the corresponding Doc A and B.
Any ideas !!
Cheers,
Nishant

Hallo Bernd
I HAD Reader 8.0 but it could not be used for a pdf form for my bank, that's why it updated.
I much prefer 8.0. I have just downloaded it again.
Ich HATTE Reader 8.0, aber ich konnte es nicht für ein pdf-Formular von meiner Bank benutzen, deshalb hat meine 8 sich quasi in 9 umgewandelt :-(
Ich hatte 8.0 viel lieber, habe es gerade runtergeladen.

Similar Messages

  • Can I use Bridge CS6 as a central image database for linking to multiple documents?

    Can I use Bridge CS6 as a central image database for linking to multiple documents?

    It's only really good for Adobe document formats, if you want to be able to view and/or tag documents.

  • Display data from multiple document Libraries in List View Webpart

    Hi All,
    I want to display data from multiple document libraries into one list view webpart(custom i have created)
    I went through the following link http://blogs.msdn.com/b/ramg/archive/2009/04/22/implementing-a-simple-cross-site-collection-list-view-webpart.aspx
    but it tells to display only from one document library.
    My motive behind displaying data in the list view webpart is to achieve the functionality of Check In ,Check Out and other OOB features.
    With Regards,
    Jaskaran Singh

    Hi,
    As there is no such OOTB feature, a workaround is to create a visual web part to gather items from libraries and implement functionalities like Check in, Check out files
    in different libraries.
    The links below will provide more details:
    Create Visual Web Parts in SharePoint
    2010
    A demo about displaying list items in visual web part:
    http://www.dotnetcodesg.com/Article/UploadFile/2/217/Web%20Part%20in%20SharePoint%20To%20Show%20All%20List%20and%20List%20Items.aspx
    About the Check In and Check Out:
    How to Check In a document programmatically
    SPFile.CheckIn method
    and SPFile.CheckOut method
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to link a document in Framework

    In CWB Home Page there is ability to link to various URL.
    I know how to link to a Portal. But I need to link to a Document (Word or PPT) which is located in Shared Servers.
    If this is possible , How do I write the full Path which includes the document?

    Hi,
    I am not sure whether I understood your requirement clearly.
    If you just want to link a document to your service desk message, you can easily attach the document to the "attchmnt" tab of the "notif_create" transaction, if you are using "notif_create" to create your service desk message.
    (ii) If you are using "crm_dno_monitor" transaction, then you can upload the document in the "documents" tab of this transaction.
    (iii) But, if your requirement is that that you have to upload the document in the Solar01/Solar02 transaction and only have to link to your service desk message, then you can generate the URL of the uploaded document and attach it using the "My Network Places" button of the "Open File" dialog (that comes up by clicking the "export" button of the "attchmnt" tab of the "notif_create" transaction) and specifying the URL in the "File Name" field.
    (iv) If the requirement is the same as in (iii), but if you use "crm_dno_monitor" transaction, the same procedure can be followed in the "documents" tab of this transaction or else we can also use the "create URL" button of the documents tab.
    Hope you know the procedure for generating the URL of the uploaded document.
    Dont forget to reward for useful answers.
    Best regards,
    Alagammai.

  • Uploading multiple documents into sharepoint list item with REST in sharepoint 2013 using content editor web part :

    hi ,
    i am trying to upload multiple document files into sharepoint list item. I followed below link for implementaion.
    http://techfindings-prem.blogspot.in/search/label/jquery.multifilejs
    It was working for sharepoint hosted app.
     This complete code is written within content edito web part.
    It was working when i was in root site collection with below change (hard coded the root level url) in code in "UploadFile" function.
    var scriptbase = "http://servername" + "/_layouts/15/";
                console.log(' File size:' + bytes.length);
                $.getScript(scriptbase + "SP.RequestExecutor.js", function () {
                    var createitem = new SP.RequestExecutor("http://servername");
                    createitem.executeAsync({
                        url: "http://servername/sites/cpg/" + "/_api/web/lists/GetByTitle('SalesRecord')/items(" + attachmentitemid + ")/AttachmentFiles/add(FileName='"
    + fileName + "')",
                        method: "POST",
                        binaryStringRequestBody: true,
                        body: binary,
                        success: fsucc,
                        error: ferr,
                        state: "Update"
                    function fsucc(data) {
                        //alert( data.statusText + "\n\n" + data.responseText);
                        console.log(data + ' uploaded successfully');
                        deferred.resolve(data);
                    function ferr(data) {
                        //alert( data.statusText + "\n\n" + data.responseText);
                        console.log(fileName + "not uploaded error");
                        deferred.reject(data);
    But the issue came in picture when i was working with the other site collection instead of root one. The url was like below.
    "http://servername/sites/cpg/". This time i need to be there within "cpg" site collection. 
    Now if i hard code the url as i did above my code gets break here while come to below line
     $.getScript(scriptbase + "SP.RequestExecutor.js", function () {
    I am getting error when i used below code:
    var scriptbase = "http://servername" + "/_layouts/15/";
     $.getScript(scriptbase + "SP.RequestExecutor.js", function () {
                    var createitem = new SP.RequestExecutor("http://servername");
                    createitem.executeAsync({
                        url: "http://servername/sites/cpg/" + "/_api/web/lists/GetByTitle('SalesRecord')/items(" + attachmentitemid + ")/AttachmentFiles/add(FileName='"
    + fileName + "')",
                        method: "POST",
                        binaryStringRequestBody: true,
                        body: binary,
                        success: fsucc,
                        error: ferr,
                        state: "Update"
                    function fsucc(data) {
                        //alert( data.statusText + "\n\n" + data.responseText);
                        console.log(data + ' uploaded successfully');
                        deferred.resolve(data);
                    function ferr(data) {
                        //alert( data.statusText + "\n\n" + data.responseText);
                        console.log(fileName + "not uploaded error");
                        deferred.reject(data);
    Please hekp in this case. This complete code is written within content edito web part. 
    Regards:
    Sanjay Joshi

    Hi,
    According to your post, my understanding is that you have an issue about upload multiple documents files into library vai REST API.
    As you have said, you have used the hard code url in your code.
    How about use the _spPageContextInfo.webAbsoluteUrl method to get the url?
    I have used this method to get the url, then use the code in the article you have pasted within a content editor web part to upload the files.
    You can replace the hard code url with the _spPageContextInfo.webAbsoluteUrl method, then check whether it works.
    Thanks,
    Jason
    Jason Guo
    TechNet Community Support

  • How can I have a topic name different than the filename of a linked Word document?

    I've encountered multiple issues with linking to Word files ...here's another one: If a Word document is entitled Feature_ABC, then upon generating the HTM after linking it, the HTM's filename and topic name are both Feature_ABC. As underscores are ugly in topic names and features can be renamed, I would hope that I could rename the topic to be different than the filename.
    The Help documentation suggests this is possible by editing the Topic Name Pattern in the Word Conversion Settings dialog of Project Settings. However, reagardless of the Pattern entered, every time I generate or update from the context menu of a linked Word document the topic name remains the same as the filename.
    Because the topic name is shown in the Search panel and browser tabs, it will be a little ugly and may even be confusing. It is possible to edit the HTML directly, but then the HTML is overwritten each time the Word documents are update and the great advantage of using linked documents is lost.
    Is there a way to solve this problem?
    Thanks in advance for any help you might be able to provide.

    Thank you for your quick reply - just checked Multifox out.
    It seems it still forces me to open a new window, while preventing the need for a new profile.
    Why isn't it in the addons.mozilla.org ? Looks dangerous ...

  • Linking multiple textboxes in a form Acrobat Pro 9?

    Hi all,
    I'm making an electronic form with Acrobat Pro 9.
    The setup was made in Indesign CS3 after which the form boxes were detected by Acrobat Pro 9. There is a larger text area which consists of multiple lines of text (to be filled in by the user).
    For this area there are 2 options:
    1- Have multiple textboxes linked together so the text flows to the next box automatically when the current one is full.
    or.
    2- Have 1 multiline textbox with a larger linespacing.
    The problem with 1 is, I can't seem to link multiple boxes together in Acrobat Pro 9. The problem with 2 is, I have no idea how to increase the linespacing.
    Does anybody have any idea how to accomplish either 1 or 2?
    Thanks in advance,
    Bas

    Linking the text boxes is not really possible, at least in a seamless manner. I've seen a few approaches using JavaScript, but none that are very well implemented. My usual suggestion is to redesign the form to get rid of the lines and just use a single multiline text box, perhaps with a faint border to indicate to the user where the field is.
    If you need the lines because the form might be printed and filled by hand or some other means, then you can set up the field with a bit of JavaScript to set the background color to white if the user enters any text, and transparent otherwise. That way, when the document is printed, the lines won't appear if any text is entered, but will if not. You will not need to be concerned about the line spacing of the field matching up with the lines.
    George

  • Opening multiple document in single instance (window)

    Someone here mentioned this: "Acrobat 9 no longer supports opening multiple documents in the same window."
    This is disappointing.. does anyone know the workaround / hack?
    Running Acrobat 9 Standard.
    Thanks,
    Devin

    Unfortunately yes you're correct. The cause was due to no MDI support, which Adobe removed starting at v9.
    Link: http://blogs.adobe.com/acrobat/2008/09/mdi_vs_sdi_in_acrobat.html
    If I find a workaround worth mentioning, I'll post it here later.
    Thanks.

  • RH9 - Can not create ANY links in linked Word documents ;-(

    Ok, this does not make sense:
    - From RH9, create a fresh empty project
    - Create two word files "Topic1.docx" and "Topic2.docx"
    - Put "Link Here" in each document
    - Save the documents
    - From Project Manager, Project Files, link both documents, generate, update all, etc.
    - Now create hyperlinks in each topic, pointing to the other topic using default topic editor in RH9
    - Save All and Generate the WebHelp project and test the links are there and work.
    - Now open and edit both word documents in word. Add some text to each and save
    - In RH9 Project Manager, Project files, Update All and open the topics in RH9 default editor
    Walla, the full text is there, the LINKS are gone. Actually, I understand that this is how it works, but the BIG problem is that links to bookmarks, other topics, links to outside resources created in RH9 Default Editor cannot be preserved when the related/linked document is edited in Word. AND, you cannot create ANY of these links in the Word documents. So, you have a help system that has really nice update features when an author makes a change to a document, but NO LINKS. Updating a linked document will DELETE ANY changes made within the RH9 Default Editor.
    Does this make any sense? Has my brain fallen down? Is there another workflow option?
    Thanks for any help
    Lyle
    Hummmmm, NO POPUPs, mini TOCs or See Also Keywords, Link Controls, etc. etc. etc.

    I have been observing this thread and wanted to just chip in to remove some misnomers,
    1. If you create any hyperlink from any MS Word document (say Doc1) to another MS Word document (say Doc2) and you import the original document (Doc1) then it brings its reference (that is the word document Doc2) as baggage in the RoboHelp project and the hyperlink is not created to the html file generated for the word document Doc2 (linked or imported seprately).
         thus if you click the hyperlink in RoboHelp it should open the word document Doc 2 (that was brought into the project as baggage)
    2. If word "conversion setting" alone are modified (like the settings “convert references to hyperlinks”) then at times the mapping fails to work, in such scenarios just go to the conversion settings dialog of FrameMaker and modify multiple “other settings” (it won’t impact your word conversion mapping.) Now any conversion settings applied for word will work.
                Hence the “convert references to hyperlinks” is working but you need to update any FrameMaker conversion settings to get it working
    @ Lyle – as now the flow must be clearer so I would give you a suggestion to merge all the word documents that you want to work with and use cross-references to places you want to have hyperlinks and use the option to “convert references to hyperlinks” in RoboHelp.and keep all the authoring in word document so that nothing is lost on update.
    NB – There is a method to create intra document cross references in MS Word
    In FrameMaker the concept of book gives it a sense of collection and thus cross references across FM documents inside a book are converted easily but in Word there is no way to group word documents and thus it is not possible to convert any spatial hyperlinks from one document to another.
    Hope this helps
    Ashish

  • Can I apply one .css stylesheet to all of my linked word documents inside my RoboHelp8 HTML project?

    Hello all,
    I am on my fourthRoboHelp8 HTML project, after the other three crashed. I am a technical writer constructing my companies Policy and Procedures Guide. I am only 142 (word documents) and 9 (RoboHelp topics) into my project and there will be plenty more to come. I recently took Kevin Siegel's RoboHelp8 class where I determined that it would be best if I link all of my word documents inside of the Project Manager becuase I will be constantly updating these documents. I've searched around the Adobe Forums, talked to Kevin, and talked to my IT Department, but I cannot seem to find an answer for my problem.
    I have linked all of 142 word documents inside of the Project Manager, and all 142 word documents have their own .css stylesheet. I have assigned the default.css stylesheet (which I have assigned all of the proper formatting to headings 1-4 to match headings 1-4 inside of my Microsoft Word 2007 documents) under Project Settings under the Import tab. I also assigned this default.css stylesheet under WebHelp Pro. My understanding with applying the default.css stylesheet to these two places is that all of my word documents and topics should have this stylesheet applied to them.
    However, when I look at each individual linked word document the default stylesheet has not been assigned and the word document is still being dictated by its own stylesheet i.e. Credit.css. On my third project, before it crashed, I manually went through all 142 word documents in the Project Manager and assigned the default.css stylesheet to them. I did this by right clicking on the topic, under Appearance, I changed the stylesheet i.e. Credit.css to default.css and clicked apply. I was immediately prompted with the two options: "Preserve modifications to this file" or "Don't show me this message again." I tried both options. The first applied the default.css stylesheet and removed the Credit.css stylesheet, but when I made a change inside of my word document and updated it inside of the Project Manager none of my changes appeared. The second did not apply the default.css stylesheet and kept my Credit.css stylesheet applied to my word document. When I made a change inside of my word document and updated it inside of the Project Manager the change appeared.
    I talked about this to Kevin and he said that the individual stylesheet applied to each linked word document did not mean anything, essentially that by making the default.css stylesheet the dominant stylesheet under Project Settings under Import that the stylesheet would be applied to all of my linked word documents/topics. He also suggested that I make a change to the stylesheet like change the color of Heading 1 and link a new word document to see if it applied the changes. I tried doing this inside of my third project, but nothing changed.
    I would like to know if I can assign one stylesheet to all of my linked word documents before I get too far into the fourth project and have that project crash on me too. One of RoboHelp's appealing features is to apply one stylesheet to multiple topics, or in my case 142 word documents and 9 topics. I hope that I can apply one stylesheet to all of these linked word documents because having 142 individual stylesheets is unmanageable.
    Any help or suggestions would be greatly appreciated.
    Thank you,
    Roxxanne

    When a word document is imported into RoboHelp project, RoboHelp generates a separate stylesheet for each word document as each word document may have its own formatting styles. In a generic scenario, word documents may be brought from different sources and may have different styling. Hence, RoboHelp allows users to preserve different styling through sepearate stylesheets.
    However, for a different scenario like yours, RoboHelp allows users to override all the CSS and apply a single CSS to all the topics at the generation of output. As you have already mentioned that you have applied default.css in the WebHelp Pro SSL dialog, that should suffice and should meet your requirement of applying a single CSS to all the topics. You can verify the same at your end by linking few word files and generating the output with a single CSS applied in the SSL settings.
    Mayank

  • Uploading multiple documents using file upload option

    Hi,
      I am new to BSP in file upload.Here i am trying to upload documents and Archiving the documents.At one time i am able to uplaod one document.Is there anyway of uploading of multiple documents from the same File upload control in the same session.and keeping the documents that uploaded in the page.
      Hope you will answer.Need urgent reply.
        Regards
       Usman

    before answering your question, a request
    can you reply/award points/close previous thread opened by you.
    coming to your question, check out the below given link.
    http://www.15seconds.com/issue/990723.htm
    Regards
    Raja

  • Download of multiple documents from Solution Manager

    Is there a way to download multiple documents from Solution Manager SOLAR01 project documentation tabs from multiple nodes rather than going one by one?

    Hi,
    At the application there is no such functionality but I belive if you try to download it directly from knowledge warehouse, you'll be able. You'll just need to pay attention to which folder is stored the documents. For this check the wiki page for documents in solar01 and solar02.
    http://wiki.sdn.sap.com/wiki/x/rBoMDg
    Kind regards, Fabricius

  • Linking multiple d

    Situation: Multiple identical documents are attached to multiple identical process step nodes in one project. To ease document management/maintenance, these documents are linked. Now, if these multiple identical and linked documents are copied and loaded to another project (using an external tool), will they maintain their original links to one another within that new project? I know they will not maintain links to the original project since they are copies.
    If links between the copied documents are not maintained, is there a way these documents could be easily identified in the structure and linked en masse without going into each structure and linking them individually? These are all identical documents, attached to identical process step nodes.
    Thank you,
    Megan N.

    Hello Megan,
    What do you mean with using an external tool ? With this external tool, do you 'download' the documents on your local pc and somehow 'upload' them into a new project ?
    If the external is not also extracting the linking information between the documents I am not sure that there is a way to automatically recreate the links as each new documents (even if they have the same content and are assigned to the same node) will be identified with new IDs. And this ID is used for the linking between documents.
    So it depends if the 'external tool' can handle this linking information or not.
    Best regards,
    Thierry

  • Indesign CS6 crashes when opening multiple documents

    Only recently, Indesign has started crashing when I open multiple documents.
    Nothing new has been installed on the computer as far as I know.
    I've tried trashing the preferences, accessing the files locally, wiping the computer and diaognosing the iMac hardware... without success.
    It's slightly more stable, as in it doesn't crash everytime now but instead more randomly than before.
    Program has never crashed with one document open.
    Interesting thing is if several files are open, then I close then individually, then close down fine. If I try to quit and close all of them in one go, Indesign crashes.
    Also occasionally has problems displaying links, eg. displays a grey box instead of an eps file.
    I have several crash log files in case someone is able to decipher them.

    1. Is there any reason to use eps? Avoid it use AI, PSD or PDF instead.
    2. Are all used fonts ok? What kind of fonts du you use?
    3. Which Mac OS X do you use?
    Does it crash with alwayst the same files?
    What does the file history tell you? Hold down the command key and got to InDesign > About InDesign… Does it tell you somewhat more specific, like missing plugins, severly damaged files and restored files, when (in which version) the files have been created first (helps often to export to IDML and open this again and save it as INDD and work with the new file.), has the problematic file been converted from another application (Quark Xpress or PageMaker), etc.

  • Help Required - Upload Multiple Documents functionality sometimes disappears in SharePoint 2010

    Hi All,
    We have a web application created in SharePoint 2010 & there we were facing an issue of not able to Upload multiple documents. After doing search on google, we have found that
    pre-requisites for this functionality to be working properly are as follows:
    Client Integration needs to be enabled for the web application.
    The STSUpld.UploadCtl IE add-in must be enabled. (located in C:\Program Files (x86)\Microsoft Office\Office12)
    The 32 bit version of Internet Explorer. The 64 bit version does not support it and neither do other, non IE, browsers.
    Office 2003 or newer on the client.
    After meeting all the above requirements, We are now able to see the Upload Multiple Documents link but we are failing in below 2 scenarios:
    On some machines it is working fine & on some it is not.
    On some machines, this option is available for sometime & sometimes it disappears.
    If any one of you have experienced the same problem, then please help us with your valuable suggestions & possible solution for it.

    Hi Manish,
    We've just been experiencing your initial issue with Office 2007 clients not being able to use the multi-file upload functionality.  Sure enough....turning on presence information in Central Admin fixes the issue.  The strange thing is though that
    when presence is turned off, Office 2003 and 2010 clients still work fine and it's only 2007 clients that fail.  Also this issue appeared to only exist for us inside applications that have been upgraded from MOSS2007 to SP2010.  Any new applications
    of even new site collections within an upgraded application worked fine across all 3 Office versions.
    Coincidently, we're also experiencing the more recent issue you've come across with files not uploading after clicking OK in the ActiveX.  Nothing happens.  Office 2010 clients work fine but 2003 and 2007 clients just don't upload the selected
    files.  We've found a workaround which "fixes" the issue but brings it's own set of problems so it's not ideal.  Here's what we've done...
    1. Open IIS, and navigate to the web where you want to use multi-file upload
    2. Select Handler Mappings and Add Script Map
    3. Set Request Path - shtml.dll
    4. Set Executable - C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\ISAPI\SHTML.dll
    5. Set the name to something meaningful - Multi File Upload
    6. Leave the Request Restrictions as default
    This should fix the issue with files not uploading but unfortunately it also prevents SharePoint Designer from accessing the site.  For the application where we desperately need multi-file upload we can manage without SPD access so it's not the end
    of the world but not ideal.  We've actually got an outstanding incident logged with Microsoft to resolve this issue but they've yet to find a solution for us.  We suggested to MS that we update authentication to Kerberos from NTLM and retry as we
    seem to be getting 401 errors in the call stack so thought that could be related.  We've not yet configured Kerberos so I'm not sure whether this is a solution or not.
    One other point worth mentioning is that SharePoint Designer 2010 (which is free) installs the latest version (14) of the Upload ActiveX and with this installed the uploads work as expected.  Also if you have Silverlight and SPD2010 installed then you
    get a Silverlight control to do the upload which also works fine.  Again, not ideal as rolling out SPD 2010 to affected clients isn't really a suitable solution.
    Sorry I can't be any more help.  Hopefully my findings might point you in the right direction.  If you do find a solution (other than the IIS handler mapping) then please re-post here,
    Good luck,
    Ben

Maybe you are looking for

  • Does the Apple TV work only on specific types of TV's?

    We are thinking of buying a new TV, because our current one has 3 random huge red lines going vertically through it. Anyway, I was looking at TVs just a minute ago, and I remembered the Apple TV. Well, there's something called a "Smart TV" which mean

  • Bootcamp: WinXP: Network initialization takes too much time

    Hey I've set up a BootCamp partition on my Macbook 6,1: Windows XP Professional 32-bit SP3 (up-to-date). Its a fresh installation, with latest BootCamp drivers. From start on, the network-initialization takes too much time: - Windows boots up - Enter

  • Problem with halcyon event adapter

    Can anyone help me with the following problem I have with the installation of the Halcyon Prime alert event action module on my SunMC 3.6.1 which is installed on a Solaris 10 zone. Installation of Halcyon eventaction module 2.2.0b seems to be ok but

  • Setting up Designer Margins for Printing

    Good Afternoon, I'm sure this is a dumb question, but I continually find that my form pages are outside of the normal print margins for a standard 8.5in x 11in paper. So far the only solution I have found is to select "Pagearea1" underneath "Master P

  • I'm trying to transfer old purchases from a device I don't have anymore.

    I just want to know how I can transfer those purchases without the device itself onto my current computer. It's the same account too.