Link a text with another sheet

Hello!! 
Is there a opportunity in Diadem to make a link in one Report sheet on a textbox? The link should go to another sheet and show me the content of it. 
Best regards, 
Mosquito

Hi Mosquito,
wenn ich dich richtig verstehe möchtest du auf einer der Report Seiten irgendetwas von einer anderen Report-Seite anzeigen lassen.
Was genau möchtest du denn bitte angezeigt bekommen?
Abduelkerim
Sales
NI Germany

Similar Messages

  • Formatting incoming text with style sheets

    Is there a way to "find/change" formatted text with existing style sheets?<br /><br />In other words I have formatted text placed into my indesign document that looks like the following: <bf>Four Patch</bf> Then another set of text that looks like this:<it> Baltimore Press</it> <br /><br />I set up stles sheets formatted for Bold font and Ital font to accomodate these formats. Problem is I have a 500 page book that I need to go through and stylize. I tried to do a find/change global (<bf> </bf> to bold font etc but it didn't work. I was hoping by just putting a space between the <> would  help the find/change option to find all the text but kept saying could find.<br /><br />I hope someone understands what I'm trying to do and can tell me that there is a remedy to the tedious formatting issue I have.<br /><br />Thanks<br /><br />MAria<br />Stuart, Florida

    If you have InDesign CS3, I can think of two ways to deal with this.
    Grep search: set search to
    <bf>([^<]+)</bf>
    and replacement string to
    $1
    and then set the change format to your boldface style. Change all. (I often think it's a good idea to take a copy before doing Change All on a 500-page document, but that's up to you.) Repeat with hopefully obvious changes for the italics. You can save the searches if you need to do this often.
    Adventurous alternative.
    Put the single line
    <stuff>
    at the top of your file, and
    </stuff>
    at the bottom.
    Now it's XML. So open the structure panel, import XML from the fly-out menu. Map Tags to Styles from the same menu, and set up the correspondence you need. Then drag the stuff node from the structure panel to the document.
    If you have to do this more than once, you can import the mapping from an old file each time after the first.
    IMPORTANT: The XML route will fail if you have loose & or less than characters in your file. You would have to replace these with the appropriate character entity references.
    (If you aren't reading this on the forum site, you may be seeing character entity references in the message. Hopefully you can decode them.)

  • ESS Travel Management - Link ITEM TEXT with DESCRIPTION field

    Hi guys!
    We are using the travel management in ess.
    If I create a trip and use for example the travel expense type flight or hotel and
    write a description for each type, I want, that this description is display in the ITEM TEXT in tc FB03.
    But the ITEM TEXT displayed always for example *Trip from 09.06.2008 to 12.06.2008
    for each position. In the IMG I found nothing to modify this text field.
    Where can I customize this field?
    It is possible to link the ITEM TEXT with description field in ESS.
    Thanks,
    Dirk Sorgatz

    Hello Dirk,
    You can use the method ex_sgtxt of Badi TRIP_POST_FI to manipulate the transferred segment text!                                            
    Regards,
    Raynard

  • Acrobat Forms - Continue text to another sheet

    OK so I am sort of teaching myself to create forms in Acrobat.
    We have a memo that is a .docx format that I'd like to convert to an Abobe form. The reason being it just seems redundant to edit the document in word - only to then save it as a PDF and insert it the page(s) into a PDF package containing other plans and details in PDF form. I have designed a form that actually works great... except for situations where the "details" of the memo exceed the text box size of the sheet. I need some way to continue the text onto a second sheet. Then the user can simply save the PDF and insert it into their plan set with other documentation. Is there a way to do this? My first thought was just create the form with a second sheet already in it. But like I said, it just depends on the complexity of the project that the user may not even need that second sheet. The downside to that is making sure the user deletes that second page if it isn't necessary. The document also has to be able to be printed to Letter size if necessary.
    Attached is an example... you can see the area I am referring to with the green arrow. The details of the project could be four or five paragraphs or just one.
    Any help would be GREATLY APPRECIATED!!!

    You can set up a form to automatically expand the multiline text field to another page if you create the form in LiveCycle Designer as a dynamic form.

  • Is there a good way to replace the "view cart" text with another text?

    I have this big issue i'm still stuck with, i hope someone can help me.
    I need to change the text "view cart" in the cart-summary module. I have learned that i can do this with javascript: http://forums.adobe.com/message/4409239#4409239
    But there are problems:
    When i use this javascript:
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
    <script>
    $(function () {
      $(".cartSummaryLink").text("Afrekenen");
    $(function () {
      $(".cartLink").text("Winkelwagen is geleegd");
    </script>
    The "view cart" is replaced with "afrekenen".
    BUT:
    When i add another product in the large product layout the text "view cart" is back...
    When i delete a product in the cart  the "view cart" text is also back
    When i refres the page the "view cart" text is replaced again with "afrekenen"
    So i thought, to use some javascript to refresh the page when a product is added:
    <script type="text/javascript">
    function AddProductExtras(){
    document.location.reload(true);
    </script>
    This works but you can see that the text changes from "afrekenen" to "view cart" and back to "afrekenen" Also the page is rebuild again which is not a very good solution.  So here are my questions:
    Is there a better work around?
    If not, is there a way that when a product is deleted in the cart the page can also be refreshed?
    Thanks,
    Frank

    Hello Mario,
    Here's my site where i'm working on:
    http://grootaartseuronics.businesscatalyst.com/index.html
    The cartsummary module is located at the right sitebar.
    The code is:
    <div id="plh_winkelwagen">
    <div class="cart-summary">{module_shoppingcartsummary,vertical,}</div>
    </div>
    The CSS is:
    #plh_winkelwagen {
    float: right;
    width: 160px;
    height: 100px;
    margin: 20px;
    background-color: #FFC;
    background-image:url(../Images/Winkelmandje_nieuw_25.png);
    -webkit-border-radius: 15px; /* Safari */
    -webkit-border-radius: 15px; /* Safari */
    -moz-border-radius: 15px; /* Firefox */
    -moz-border-radius: 15px; /* Firefox */
    border-radius: 15px; /* CSS */
    border-radius: 15px; /* CSS3 */
    .shop-main .cart-summary {
    float: right;
    width: 40%;
    So with your solution I should remove the background plh_winkelwagen en create or put it in the a.cartsummarylink? Or should i keep the plh-winkelwagen and just add your solution. I can create a png the same size as the: winkelmandje_nieuw_25.png with the "afrekenen" text in it?
    Thanks,
    Frank

  • Matching a string of text with another

    Hello Gurus
    I have what is hopefully a fun problem for someone to help me solve. I was unable to find the relevant commands in the ABAP dictionary and am not the best at ABAP anyway!
    We have field with properties:
    /BIC/OZBARCODE
    Data Type  NUMC
    Length     20
    In reality the data in this field should be 13 characters long and we are not interested in strings that are not this length.
    From the remaining data we want to compare characters 8-12 to another text string, lets call it ABCDE. We are then only interested in those that match.
    eg
    if there were three values for /BIC/OZBARCODE:
    ABCDE
    ABCDEXXXXXXXX
    XXXXXXXABCDEX
    ABCDE - would be deleted as of the wrong length
    ABCDEXXXXXXXX - would be deleted as the relevant string does not fall in the right place
    XXXXXXXABCDEX - would be kept
    No need to give me the whole code, I just need the bits that will say:
    If length of /BIC/OZBARCODE = 13
    and
    if characters 8-12 of /BIC/OZBARCODE = ABCDE
    Many thanks in advance for any help.
    Tom

    Hello Tom,
    you basically will need the strlen( ) operator for getting the length of the string and an offset operation to compare the substring.
      DATA: lv_string(20) TYPE c,
            ln_length     TYPE i.
    lv_string = 'XXXXXXXABCDEX'.
    ln_length = strlen( lv_string ).
    IF ln_length NE 13 or
       lv_string+7(5) NE 'ABCDE'.
      " throw the value away
    ELSE.
      " keep the value
    ENDIF:
    The trouble you will face in your setting is that the field is no string but a numeric character. These fields should be right aligned and cannot contain spaces or letters so the length should always be 20. Furthermore they are right alligned and filled with zeros so if zeros are allowed characters from the business view you might not be able to get the length of the string for sure.
    Kind Regards
    Roman

  • Putting Text with Contact Sheet in CS4

    Hello,
    I have read numerous posts, I have seen an online tutorial, in terms of how the Contact Sheet feature was moved in CS 4.....I did manage to find it, however, I do find myself with a question...
    I am submitting images to a magazine Photo Editor, and they require a contact sheet to be submitted along with the images. On the contact sheet they want the FILE NAME, and also the Species Name (I am shooting wildlife), and also a quick mention of the geographic area in the US where it was shot.....
    As I said, I found the Contact Sheet part in CS4, and I see where I can list an overall Header or Footer on the overall Contact sheet page, but I do not
    see anywhere (I apologize ahead of time if I am overlooking this in some obvious place), I do not see anywhere, where, I can go to the individual images, and, in addition to the File names, put the kind of text information that I just mentioned above.
    Way back in CS3, the Contact sheet function actually generated a Layered PS File, with the images and the text for the images, as separate layers, and you could actually go in and type custom text into the Text portion below the image, but that does not seem to be the case at all in CS4.
    Surely this is doable somehow for me to add custom text to the images on my Contact sheet, beyond merely the file names? If not in Photoshop, is anyone aware of any 3rd party Contact Sheet software that will allow me to do this? This is a national publication that puts out about 40 magazines, so I cannot be the first to run into this problem.
    Any help you can give me ( in terms of a detailed explanation of how to do this) would be greatly appreciated.
    Thanks to all, and have a great day!
    John

    I haven't used it myself but you could check out
    http://ps-scripts.sourceforge.net/ContactSheetX/csx.html
    Paul

  • How to display many Links like text with multi lines?

    I need to:
    1)display many links in one container like text
    2)each link have onClick event Handler
    Example:
    Link1 SomeLink2 Link3 \*
    Link4 AnatherLink5            \*
    AndOneMoreLink6              \*
    \* - right border of container
    i'v tried TileGroup, but it has colums.... Group - overlapped links in one place.... and so on.
    Any ideas how to do it?

    I think you overlooked some of the possibilities provided by Apex.
    For instance you can create a simple HTML region where you put the links as you prefer (makes sense if they are a fixed number and you need a special formatting).
    You can also create Lists (see shared components). Lists are specifically meant for links, like Task lists in the Apex Builder itself, but you cannot build them dynamically, so you must know in advance each and every static link.
    Or you can create a report if links come as result of a query which is good for building them dynamically.
    A fourth option is a PL/SQL region outputting HTP calls where you have total control over every aspect.
    Flavio
    http://oraclequirks.blogspot.com

  • Link labview data with excel sheets

    I would like to save the output of a cluster(containing strings and numeric data) in a specific format(each data in respective columns)
    in an excel sheet.
    how do I do it in labview??
    I tried mathscript, is there any other way? If there isnt can u suggest how can I use it to solve the above mentioned issue.
    similarly, can I recieve data in real time from excel sheets??
    pls suggest.
    Solved!
    Go to Solution.

    I think you should use the ActiveX to fullfill your requirements.
    You can refer to this example
    <LabVIEW Folder>\examples\comm\ExcelExamples.llb\Excel Macro Example.vi
    Use activeX to write and read data.
    Best Regards
    Hu Yu

  • I need to create a XL chart linked to data in another sheet

    I am trying to build an application where i have a chart in the 1st worksheet while the data is in some other worksheet and link them. I am unable to do this

    Hi:
    You can find it from follow:
    http://sine.ni.com/apps/we/niepd_web_display.DISPLAY_EPD4?p_guid=B123AE0CBBFC111EE034080020E74861&p_node=DZ53003&p_submitted=N&p_rank=&p_answer=&p_source=External

  • Linking the douments with one another

    Hi All,
    I need to link one document with another document based on the text in the document. let me try to explain the exact scenario. For example I have three documents in Word or PDF format. Lets say Doument 1 has word 'Article 1' , Document 2  has the word
    'Article 2' and the document 3 has the word 'Paragraph 2'.
    I want build the solution to provide search functionality to user that if the user enter any of the word then it should returns all the three document links to the user and then user can click any of the link to go to that particular document.
    Is SharePoint 2013 provide out of the box functionality for this or need to build a custom solution.
    If needs to build a custom solution then what kind of solution it will be.
    Any help much appreciated.
    Thanks
    John 

    You need to create result source for your document library. For better understanding the result sources read this - http://technet.microsoft.com/en-us/library/dn186229(v=office.15).aspx
    Configuring the search webpart for this result source will yield you the exact search results you are looking for, nothing custom in this and everything is Out of box.
    Rajesh | Blog

  • How to link an subvi(worksheet) with another VI

    hi,
    I want to know how to link worksheet data with another VI's block diagram? ie i want to use 3 data's collected in the worksheet block diagram  changed into a subvi and this subvi should be linked to another block diagram that accepts these 3 inputs to give some warning.
    Please help me how to link these two ........:...............
    Solved!
    Go to Solution.

    Sorry but I'm confused by most of your statements. There is a worksheet in Excel and a block diagram in LabVIEW but there is no such thing as a 'worksheet block diagram'.

  • Text with voice-over

    Hello,
    Is there a function to link the text with a sound file?
    For example, if you click on the paragraph, the text is read in the chosen language (French, English ...).
    Every word could be highlighted and synchronized with the voice-over.
    Do you have a solution?

    I agree, and I tried this already. This model will not work for a language learning textbook for example.
    Just too much hazzle - and besides, you cannot shrink the media widget that much anyway... it will end up looking terrible.
    I am confident that Apple will at least consider this issue and maybe come up with an elegant solution as usual.

  • Can't link to a cell in another sheet at certain point

    Hello,
    this is the first time I use the support communities.
    I have a continuing promblem with numbers ( v. 2.3). I'm working on a projekt for my univerity and are quite familiar with number. But at a certain point it get's impossible to link to another cell on a different sheet! This works fine until a certain point (which I actually don't know).....
    I do the same stuff which I did very often before but it dosent work....
    1. I click on the cell I want to have the linked value in it
    2. I press = to start linking.
    3. I go to the cell i want to take the data from (in another sheet).
    4. The Box becomes white with the name and position of the source cell in it. But when I klick enter it dosn't work....
    I really don't have an idea what this could be... It worke fine in the same way before a few hundered times... Is there any limitation of link's between the single sheets or something?
    I'm very glad for any help in this issue
    Regards,
    Gregor

    On your last screenshot, you had moved off of the cell you were working on. The resulting formula/reference was not shown.
    Becasue it is not in English, it is hard for me to tell for sure what might be going on.  The reference in your third screnshot looked odd to me.  In English it would be one of the following forms when referencing a cell on a different sheet:
    Sheet name::Table Name::Cell address
    Table Name::Cell Address
    or, if "use header names as cell addresses" is on
    Sheet name::Table name::column name row name
    Table name:: column name row name
    column name row name
    The reference shown in your third screenshot doesn't seem to fit that pattern
    I am assuming if you look at your resulting formula, the cell reference is not in a colored oval, it looks like plain text.
    I've seen header names get misinterpreted by Numbers, like it can't figure them out and make a reference from them. If you are using header names as cell references, changing the names can fix it.  Turning off that feature might also fix it. I don't use that feature usually; it often makes my formulas too long and complicated.
    I have not seen a similiar problem with table and sheet names but you could try changing them to see if it helps.
    Sometimes Numbers simply has a problem with a reference and you have to start over with the formula and it will work the next time. I don't know why, it just happens sometimes.

  • How can iPhone videos sent to another iPhone be made clear like they were recorded even though it sent as a text. with iMessage it's clear but when it's not available the quality *****, how can I make a received vid clear again??? help

    how can iPhone videos sent to another iPhone be made clear like they were recorded even though it sent as a text. with iMessage it's clear but when it's not available the quality *****, how can I make a received vid clear again??? help

    This is determined by your carrier. SMS/MMS is a poor man's email and by that I mean SMS/MMS has major restrictions and limitations compared to email but is a cash cow for cell phone carriers.
    Upload the video to YouTube when connected via wifi and send the YouTube link via text.

Maybe you are looking for

  • Cintiq tablet will not work correctly with windows

    I am using photoshop CS6 on a 64 bit windows system and my Cintiq 12 will not function with the pressure sensitivity. any suggestions to correct this?

  • Problem in production order creation

    Hi All, I am using BAPI "BAPI_PRODORD_CREATE" for creation of production orders. But if i pass the value to the BAPI, i am getting the error WBS Element does not exist always... But if i give the same value in SE37 directly the BAPI is creating Produ

  • No content on iPod, but it shows in iTunes

    This problem started either yesterday or the day before. I plugged my iPod into my computer, it synced and recharged, but now when I go to listen to any music or audio books, it tells me no content. I can see the music in the iPod menu in iTunes, but

  • Where can I buy an unlocked iphone 5 online?

    I want to ship it to a friend in the US and she is going to bring it to me in Bermuda.

  • ALV display column

    Dear All, Can I get two sub column under one cloumn in ALV report display? like '30 days' is first column and under that I need 'USD' and 'EUR' Thanks, Fed