Multiple 'My Links'???

User is building page with multiple tabs. He would like to use
the 'My Links' portlet in several of the tabs. It looks like
you can only have one. When he adds the secound 'my links'
portlet, it contains all links previously created on another
page. Anyway to do this or workarounds?

No. That's the intended behaviour.
Regards,
Jerry

Similar Messages

  • Multiple file links in a single page: A better way to/efficient way to handle ?

    Aloha Everyone!
    I would like to ask the community how they have handled multiple file links in a single page. Sort of a pseudo database of files.
    Here is the webpage I have been working on:http://huichawaii.org/
    Here is what I have done to show files so far:
    old version:http://huichawaii.org/proceedings---2012-education%2c-math---engineering-technology.html
    new version: http://huichawaii.org/ahs2013-proceedings.html
    The website works best in Chrom or Firefox, still have to convert the flash header to an edge animate .
    Mahalo in advance for everyone's input!

    Depending on what other text you might have, you could use the data list component.
    To get the text to have underlines, you will need to edit the repeated item. You can also adjust colors and fonts as well. The default rollover and selected states will probably not be the UI that want, so make sure you change those as well.
    Now for the interactivity, select the datalist, and use the interactions panel, choose "On Select", then "Go To Url", the trick is to make sure the "When a specific item is selected" is also set. Here are the basic settings to get your links working:
    Add new interactions for each item you want to be functional.

  • How can I make multiple popup links on one page?

    I was wondering if anyone had a simple code that will allow me to have multiple popup links on one page? I have no idea what to do.  Any help would be greatly appreciated.

    Give each an individual id like:
    <SCRIPT language="JavaScript1.2">
    function openwindow1()
    window.open("score_popup/wbc_slalom_running_order.html",
    "mywindow","location=1,status=1,scrollbars=1,width=600,height=525");
    .......... etc.
    and then:
    <p><a href="javascript: openwindow1()">WBC Invitational Slalom Event Running Order</a></p>
    View actual working page here:
    http://www.worldbarefootcenter.com/
    scroll to bottom of page to see pop-up links. View source code for complete details:
    Best wishes,
    Adninjastrator

  • ORACLE EXPRESS: build a page with multiple forms linked to one table

    hi,
    im using oravle application express. APEX
    i would like to build a page with multiple forms linked to one table (orders) , the page has 4 from  each one with different order_id number (depending on filtering),  and if the order is prepared click yes for each order and this 'YES' should be UPDATED AND SAVED to each order number in the same table with the press of one button.
    i created all the form as (sql query)
    and create one update process
    (UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_1
    WHERE ORDER_ID =:P10_ORDER_ID_1;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_2
    WHERE ORDER_ID =:P10_ORDER_ID_2;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_3
    WHERE ORDER_ID =:P10_ORDER_ID_3;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_4
    WHERE ORDER_ID =:P10_ORDER_ID_4;
    i dont know really if i can do that, but it appear hat it actually saving according to order_id number , but not all the time some time it saved the value as "null".
    please guide me what is the correct way to do this.
    I READ THIS ONE
    http://stackoverflow.com/questions/7877396/apex-creating-a-page-with-multiple-forms-linked-to-multiple-related-tables
    BUT IT WAS FOR MULTIPLE INSERT
    thanks.

    Sans,
    I am no Apex expert, but with a situation as "complex" as yours, have you thought about creating a VIEW that joins these 7/8 tables, placing an INSTEAD OF trigger on that view to do all the business logic in the database, and base your application on the view?
    This is the "thick-database" approach that has been gaining momentum of late. The idea is to put your business logic in the database wherever possible, and let the application (Form, Apex, J2EE, whatever) concentrate on UI issues,

  • Procedure for multiple DB Links

    Hi Everybody,
    Hope everyone is doing fine. I am working on oracle 11g R2. I have one scenario on which i need your help guys. We need to have one one stored procedure which has comma seprated Database Links as IN parameter. This procedure has one update statement. So whatever multiple database links we will pass, this update statement needs to run only on those databases . Can you please help for options we can do to solve this scneario?
    It will something like this:
    CREATE OR REPLACE PROCEDURE TEST_SP(DB_LINKS_IN VARCHAR2, E_MGR_IN VARCHAR2, E_ID_IN NUMBER)
    AS
    V_SQL VARCHAR2(400);
    BEGIN
    V_SQL: = 'UPDATE EMPLOYEE@'||DB_LINKS_IN
    SET EMP_MANAGER='||''''||E_MGR_IN||''''||'
    WHERE EMP_ID ='||E_ID_IN||;
    EXECUTE IMMEDIATE (V_SQL);
    END TEST SP;
    Above update statement needs to run in loop for Database links coming as comma seprated value from IN parameter DB_LINKS_IN. Can you please help in how to modify above procedure for DB links coming as comma seprated value?
    I will greatly appreciate your comments and responses.
    Regards
    Dev

    You could try the following steps:
    1. Create type
    CREATE OR REPLACE TYPE MYSTRTABLETYPE AS TABLE OF VARCHAR2 (255);
    2. Create function to parse comma-delimited list of db links:
    CREATE OR REPLACE FUNCTION IN_STRLIST( P_STRING IN VARCHAR2 ) RETURN MyStrTableType
    AS
    L_STRING VARCHAR2(32000) DEFAULT P_STRING || ',';
    L_DATA MyStrTableType := MyStrTableType();
    N NUMBER;
    BEGIN
    LOOP
    EXIT WHEN L_STRING IS NULL;
    N := INSTR( L_STRING, ',' );
    L_DATA.EXTEND;
    L_DATA(L_DATA.COUNT) :=
    LTRIM( RTRIM( SUBSTR( L_STRING, 1, N-1 ) ) );
    L_STRING := SUBSTR( L_STRING, N+1 );
    END LOOP;
    RETURN L_DATA;
    END;
    3. Modify your procedure as follows:
    CREATE OR REPLACE PROCEDURE TEST_SP(DB_LINKS_IN VARCHAR2, E_MGR_IN VARCHAR2, E_ID_IN NUMBER)
    AS
    V_DB_LINK MYSTRTABLETYPE := MYSTRTABLETYPE ();
    V_SQL VARCHAR2(400);
    BEGIN
    V_DB_LINK := IN_STRLIST(DB_LINKS_IN);
    for i in 1..V_DB_LINK.count
    loop
    V_SQL: = 'UPDATE EMPLOYEE@'||V_DB_LINK(i)||
    ' SET EMP_MANAGER='||''''||E_MGR_IN||''''||
    ' WHERE EMP_ID ='||E_ID_IN||;
    EXECUTE IMMEDIATE (V_SQL);
    end loop;
    END TEST SP;
    Please note I have not tested the code. Also you might want to consider using bind variables for the EMP_ID and EMP_MANAGER values.

  • Multiple Database Links

    I have created a database link in Oracle 9i to access the data stored in a remote MSSQL Server machine. Can I create multiple database links in Oracle 9i to access different remote MSSQL Server machines? If yes, please advise how to accomplish this. Thanks.
    SK

    From A, you can query synonym on B linked to table on C. Then grant select on this synonym to user user used for the dblink connection.
    Nicolas.

  • Windows 2008 AD Sites and Services: Multiple Connection links between same sites

    Hello,
    Our AD Sites  & Services is showing Multiple Connection links between the same sites. How is this possible and can i delete extra ones?  

    Hi,
    As Calin Liviu mentioned, you do not have to manage connection objects. In fact, changes that you make to connection objects that the KCC creates automatically are ignored.
    If the site is added to more than one site link, it might be an interim site between other sites that are added to this site link.
    Understanding Replication Between Sites
    http://technet.microsoft.com/en-us/library/cc771251.aspx
    Please check the replication issue, and post the result to here.
    Regards.
    Vivian Wang

  • Executing multiple XML links

    Is there any way that I can execute multiple XML links from PL/SQL?
    I have links that go to another site to a .php file and then populates data at that site.
    Also, is there any way to emulate the pushing of a 'submit' button in code?
    Thanks,
    Joyce

    You can look at the HTTPUri support in XML DB.

  • Multiple hyper links one image?

    I have a KeyNote that I've built as an 8.5x11 document that I'm hoping to export as a PDF with multiple hyper links. Is this possible?
    Or do I have to have an individule image for each hyperlink?
    thanks

    You can place as may hyperlinks on a slide as you require.
    Each hyperlink must be attached to an individual object or text box on the slide.

  • Multiple Promoted Links Wrap Tiles

    I am using promoted links web parts for a landing page menu and wanted to tile wrap, the link below was very helpful in seting up the script editor to make the promoted links tile wrap, but as I have 3 promoted link web parts they get jumbled up.
    http://social.technet.microsoft.com/wiki/contents/articles/19622.sharepoint-2013-promoted-links-wrap-tiles.aspx
    Is there any quick way to modify the script code to allow for multiple promoted link web parts and still tile wrap?

    Hi,
    According to your post, my understanding is that you want to modify the script code to allow for multiple promoted link web parts and still tile wrap.
    You can use the code as below, then all promoted link web parts in the page will tile wrap.
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js "></script>
    <script type="text/javascript">
    $(document).ready(function () {
    var currentRow = 1
    $('.ms-promlink-root').each(function () {
    if ($(this).html() != "") {
    var numberOfLinksPerRow = 4;
    // local variables
    var pre = "<tr><td><div class='ms-promlink-body' id='promlink_row_";
    var post = "'></div></td></tr>";
    var numberOfLinksInCurrentRow = numberOfLinksPerRow;
    // find the number of promoted links we're displaying
    var numberOfPromotedLinks = $(this).find('.ms-promlink-body > .ms-tileview-tile-root').length;
    // if we have more links then we want in a row, let's continue
    if (numberOfPromotedLinks > numberOfLinksPerRow) {
    // we don't need the header anymore, no cycling through links
    $(this).find('.ms-promlink-header').empty();
    // let's iterate through all the links after the maximum displayed link
    for (i = numberOfLinksPerRow + 1; i <= numberOfPromotedLinks; i++) {
    // if we're reached the maximum number of links to show per row, add a new row
    // this happens the first time, with the values set initially
    if (numberOfLinksInCurrentRow == numberOfLinksPerRow) {
    // i just want the 2nd row to
    currentRow++;
    // create a new row of links
    $(this).find('table > tbody:last').append(pre + currentRow + post);
    // reset the number of links for the current row
    numberOfLinksInCurrentRow = 0
    } // move the Nth (numberOfLinksPerRow + 1) div to the current table row
    $(this).find('.ms-promlink-body > .ms-tileview-tile-root:nth-child(' + (numberOfLinksPerRow + 1) + ')').appendTo($('#promlink_row_' + currentRow));
    // increment the number of links in the current row
    numberOfLinksInCurrentRow++;
    </script>
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Multiple Buttons linking to Multiple pages from one movie

    Hi All,
    I have a flash movie with 3 buttons I am trying to link relativley to pages within my site, I have one working fine but can't get the others to link and when I try it makes the one that is working, work no more..
    Below's the code I am using for the one that is working;
    import flash.events.MouseEvent;
    var getIndex:URLRequest = new URLRequest("../index.html");
    //---Enter Button---\\
    E_btn.addEventListener(MouseEvent.CLICK, bClick);
    function bClick(event:MouseEvent):void{
    navigateToURL(getIndex,"_self");
    Still a bit of a newbie in flash so any help really appreciated.
    Many Thanks

    I only see code for one button there, so I can only guess you repeat the same function multiple times.  You cannot use the same name for different functions, and you cannot have the same function duplicated.  Similarly, you cannot declare the same variable more than once.  You can have buttons share the same function though, and you can assign new values to variables.
    For now, start by creating a unique function definition for each button.
    For further consideration, if your buttons happen to be movieclips you can assign the url's to them as variables, or if you name your buttons using the page names they link to, then the same function could be shared with a little generic finagling.

  • Multiple Order Linking with One PR

    Hi Experts,
    Is there any way where i can link Multiple Maintenance Order in one PR.This i need to track the services against each order through one PR PO.
    Regards,
    Kavvya

    HI kavya
    For your requirement you can creatre PR/PO independently with account assignment category F. After wards you create maint. order as per requirement & assign services from this PO to any operation by changing the control key to PM03 but change the reservation/purchase requisition indicator to never manually so that it doesnt trigger any PR from maint.order. after changing the control key, you select the operation & click external button below you will get service selection in which you select exter nal services from F4 list (you can select from the PO) & qty also. By this you will get planned cost of external service. Then you do service entry in ML81N with reference to PO & give maint order no & cost will flow to maint.order. You can link to multiple maint order by this. You consume external services of single PO in multiple maint. order.
    Shakti

  • Multiple symbolic links for same wdfdevice object

    Is it possible for my driver to call WdfDeviceCreateSymbolicLink twice successfully to create 2 symbolic links to the same device ? 
    I have one device driver, which controls one physical device, which performs two separate functions and i would like the applications to use different symbolic links to refer to the different functions. 
    Calling WdfDeviceCreateSymbolicLink twice fails so what other options do i have to solve this ?

    you can have WDF manage as many device interface guids as you want. If you want to understand which interface is being opened, you need to specify a unique ReferenceString for each.
    WDF does limit you to one WDF managed symbolic link. If you want more than one, you can create it by calling IoCreateSymbolicLink yourself. you will then have to delete on your own too. If you have control over which path, use multiple device interfaces
    further reading
    http://blogs.msdn.com/b/doronh/archive/2006/08/18/706717.aspx
    http://blogs.msdn.com/b/doronh/archive/2006/02/24/538790.aspx
    d -- This posting is provided "AS IS" with no warranties, and confers no rights.

  • Multiple notifications linked to work order

    Hi sap gurus,
    How can we link multiple notifications in PM Work order
    Regards,
    Krishna

    Greetings Krishna,
    You can use the "Objects" tab in the Order view (IW32 t-code) to assign multiple Notifications to an Order.
    Please note a Notification can only be assigned to 1 Order at a time (therefore it is a N:1 relationship between Notifications and Orders).

  • Multiple File Links

    I understand how to make links to files through various means--text, buttons, etc.
    But how might I manage a growing catalog of files to be downloaded. For example, each week of a semester a teacher has a new handout for the class. Each week the teacher adds that handout and some study guides to the web site.
    After a while, there would be a lot of links to a lot of files. Now I suppose you could just have a new page for each set of files and branch off that way. But that seems kind of hard or too much work. Is there someway to create like a drop down menu to select categories and then files. For example and using a teacher again, a drop down box to pick classes the teacher teaches, you select the class then you get the files. And/or you could have another drop down menu for selecting which year's classes and study guides.
    So basically, any good solutions for multiple/many file management?
    Also along those lines, I'm guessing with so many files it would be best to have them on a central server with folders that never change or are moved for the sake of iWeb never losing the correct file link? Because I'm also guessing you can't upload linked files to your Mobile Me account so that they are stored there, rather than locally on your computer?
    Thanks

    For those files you can drag them onto the iWeb page and resize. Then get converted to a png file that way but can be downloaded for printing as an image file. If the pdf is too large for one page and you want scrolling add it like in this demo page: Scrolling Text Box. With that method all you would need to do is replace the linked to file with the one you want to use. You can place the file any where on the server and link to it. Replacing it with a new file but with the same name will automatically update the website.
    When you drag the pdf onto the web page as in the first suggestion iWeb will automatically upload it along with the rest of the site's files. No worry about where to keep it on the HD.
    Are you using MobileMe as the hosting server?

  • Multiple thumbnails linked to one pic. frame?

    Hi, i am a beginner, so go eazy on me,
    I am trying to link multiple images (thumbnails) to one big
    picture frame.
    So if you click the thumbnails, each will blow up in the same
    frame.
    The easy solution would be to link to a table, but it doesn`t
    seem linkable.
    I tried different slide viewers but I cant personalize them
    enough.
    Please sombody help me!

    There are a few ways:
    Google Disjointed rollovers
    Set Text of Layer
    Swap Image in the Behaviors Panel
    Hope this helps
    Jo
    "serestibi" <[email protected]> wrote in
    message
    news:fpgc4m$9tj$[email protected]..
    > Hi, i am a beginner, so go eazy on me,
    > I am trying to link multiple images (thumbnails) to one
    big picture frame.
    > So if you click the thumbnails, each will blow up in the
    same frame.
    > The easy solution would be to link to a table, but it
    doesn`t seem
    > linkable.
    > I tried different slide viewers but I cant personalize
    them enough.
    > Please sombody help me!
    >

Maybe you are looking for