Linking the views

Hi,
i am facing a problem while linking two views in the bsp application (under the same controller).
i am using the anchor tag <a> for the hyper reference,
because i have to link the views through hyper reference only,
can anyone please tell me the right way to do it.
regards,
Aayush

Hi,
As per my understanding, your requriement is: (Correct me if i am wrong).
You have one default View and Window. In the View you are displaying the menu bar. Each menu bar item contails one specific URL. When user clicks on any of the menu bar item you need to open the corresponding URL in the same View.
1)  Take the view set with two rows. In first row add the default MenuView (menu bar) and in second row embed another View (For example: ResultView).
2). In RestultView create IFrame UI element (Note : it is deprecated). And bind one cotext attribute to url.
Map this context attribute to MenuView also throug the Component Controller.
3). Create inbound plug to MenuView and outbound plug to ResultView. On click on any of the menubar items change the URL in the context attribute and then navigate to the ResultView through plugs.
Regards,
Charan

Similar Messages

  • When hover to see location of link, the view of that is now on right side instead of left, would like to have it on left of page, and bigger if possible.

    Hi again,
    Using FF 4.. For some reason the way that ff shows the resultant url location while hovering, has moved from the lower left of my screen to the lower right.
    After updating to FF 4 earlier today..it was showing on the left, now is on the right ..and I would like to move it back to the left, but I don't know how
    It's important to me for safe browsing to clearly be shown where a link will bring me. It is no longer bolded as it was in prior versions... Is there a way to make a stand out more as well?
    Thank you!

    I found that doing a search on the current page (Edit : Find) causes the search bar to appear at the bottom, and the hover link will switch to the right side. Close the search bar and it goes back to the left.

  • I have an external server that stores all my movies and music, is there a way to stream it to my apple tv? If not is there a way I can link the folders to itunes (without downloading files to computer) and will that make them view-able for the apple TV?

    I have an external server that stores all my movies and music, is there a way to stream it to my apple tv?
    If not is there a way I can link the folders to itunes (without downloading files to computer) that will make them view-able for the apple TV?
    If none of that works is there a way to get it working alternativly?
    Additional Information:
    Everything is linked via ethernet cable.
    I'm using a PC to set it up.
    If you have any other questions feel free to ask and I'll help where I can.
    Thank you for any help

    (I think the daughter got he better end of the deal!)   I believe if you change the password and user id one of the devices it will stop that from occurring. But I'm not the one to tell you how to do it; someone like "Illaass" (Illaass seems to know how to correct / fix almost anything!) will know how if you don't. Just look for the "cat" icon.

  • Everytime i click on the view in itunes button/link on the itunes website so that i can download apps, nothing happens. I accendentally  clicked on the button other than open itunes and now i cant fix it

    everytime i click on the view in itunes button/link on the itunes website so that i can download apps, nothing happens. I accendentally  clicked on the button other than open itunes and now i cant fix it

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>iTunes and App Stores and sifnout and sign back in
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • How to get the view link definition from the view link accessor

    Hi,
    I am using Jdev 10.1.3 and ADF BC. I am trying to do deep copy in a master/details view, after the new child record is created, I want to update the foreign key attribute. I know I can get the list of attribute definitions from the row in the view object, which include the view link accessors, I am wondering if I can get the view link definition from the view link accessors, so that I can get the source and destination attribute names.
    Thanks!

    Hi,
    you should get this through
    ViewObject vo = this.findViewObject("LocationsView1");
    int indx = vo.getAttributeIndexOf("DepartmentsView");
    ViewAttributeDefImpl vAttrDefImpl = (ViewAttributeDefImpl) vo.getAttributeDef(indx);
    ViewLinkDefImpl vdefImpl = (ViewLinkDefImpl) vAttrDefImpl.findViewLinkDefImpl();
    Note that this code starts from the ApplicationModuleImpl class, which is why I used this.findViewObject().
    Frank

  • How can i force a mail link to open in the viewer and not in the Mail App?

    Hello to everybody!
    I've a trouble about the mail links in a digital pubblication. I've to force a mail link to open inside the viewer.
    A normal mail link causes the exit of the app and switch into the iPad Mail App... Is it possible force to open the mail link inside the folio with the DPS?
    I've seen other digital pubblication made outside the DPS that can open the mail tab of the Mail App without exiting the starting App...
    Thank you in advance for your help!
    Max

    You can't with DPS, it will always launch the mail application registered with the operating system.
    Neil

  • Some worksheets missing the format and stoplight link in viewer

    I have a set of workbooks that are pretty simple. Each has from 1 to 4 worksheets. I have one workbook where two of the worksheets when run through viewer do not show a format or stoplight link, but the other two do show the links. Is there something that blocks these links from being displayed?

    This issue occurred in our system too.
    We are running Oracle BI 10.1.2 on a Windows 2003 Server machine. The "format" and "stoplight" link suddenly disappeared from Disco Viewer.
    Does anybody know what can have caused this?
    ps: moreover the font of the Viewer page is smaller since this happened

  • To find the view link in the attribute definition

    Hi, I am using Jdev 10.1.3.2 and ADFBC. I have two master/detail view objects which have view link defined between them. Now I am trying to do deep copy, but I don't want to hard code the view link accessor name in the code. Here is the part of the code to get the list of attributes:
    ParentVORow newRow = (ParentVORow)parentVO.createRow();
    StructureDef def = newRow.getStructureDef();
    AttributeDef[] attrs = def.getAttributeDefs();
    Now view link accessor is in attrs, but how can I tell which attribute in attrs is a view link accessor without comparing to the attribute name?
    Thanks!

    Please see section "25.3.4.1 Determining the Attribute Kind at Runtime" of the ADF Developer's Guide for Forms/4GL Developers on the ADF Learning Center at http://www.oracle.com/technology/products/adf/learnadf.html for more information on this.

  • Using database-link in view to get around ORA-01031 error

    I have been granted select rights on a users table. I am therefore able to select from his table. If however I try create a view against his table I run into the ORA-01031 problem. I have worked around this problem by creating a database-link to myself and then adding that to the view creation and it works. What are the downsides of using the database-link in this way?

    The only down side I have been able to identify is that a extra session is created and that the CPU has a little extra work due to the LOOP BACK that takes place. I need to ensure the network is not unnessesarly used and therefore will need to ensure that 127.0.0.1 (local host) is used in the database connection discription. e.g.
    create database link my_db_link connect to scott identified by tiger using '(description=(address=(protocol=tcp)(host=127.0.0.1) (Port = 1521) ) (connect_data= (sid=ora10g)))';

  • How to maintain PDF links when viewed in Apple Mail

    Hi All
    I've created a single page promo flyer in InDesign which has an email and a web link at the foot of the page. The flyer is to be distributed to clients as a PDF attachment via Apple Mail. The PDF has been created from the InDesign doc and the links display and behave as they are intended to. When I attach the PDF to a mail it displays just fine. I want recipients to be able to click on and follow the links directly from the Mail view in a single action without having to download the PDF and then click on the links. However when you try to click the links the whole PDF highlights blue and no link is activated. Can anyone suggest a way to achieve this?
    I'm using Apple Mail v7.3 on an iMac running OSX v10.9.5.
    Thanks in anticipation!

    If you are asking about addresses that are not in your Address Book, they are listed in Windows > Previous Recipients.
    Allan

  • Changing an object properties doesn't effect the view.

    Hello, I've have an object (instance of a class that extends CustomNode), this object contains a sequence of other objects (also extends CustomNode) that are presented in application view. When in application runtime this sequence of objects changes (the new sequence is ok, according to System.out.println..., the filter works well) the view acts strange. The new set that is shown in app window is exact negation of the sequence that corresponds to the current object state (the objects that didn't pass the filter are presented).
    here is a sketch of code:
    public var messageStorage : MessageSet = MessageSet {
          messages: [
              .....some data
    public var currentMessages : Message[] = messageStorage;
    public class MainWindow extends CustomNode {
    var messageSet: MessageSet = MessageSet {
              messages: bind currentMessages;
    public function myAction(key: String) {
        currentMessages = messageStorage.find(key);
    override function create() {
         Group {
             content: [
                messageSet
    public class MessageSet extends CustomNode {
        public var messages : Message[];
    public function find(key:String) : Message[] {
         var newSet : Message[];
         for (msg in messages) {
            if (..some conditions...) {
               insert msg into newSet;
         return newSet;
    override function create() {
         Group {
            content: [
               messages
    public class Message extends CustomNode {
    public var text : String;
    public var from : String;
    .... some other code...
    override function create() {
      Group {
          content: [
             Rectangle {
    }In MainWindow when I print out the messageSet before and after performing myAction(key), everything is ok, but the view in Group content[] is corrupted and shows the messages that weren't added to to newSet in MessageSet find() function.
    Anybody has an idea what's wrong? Thank You.

    I don't think there is an "object touchup tool".
    Adobes help for Adobe Acrobat X Standard says:
    Resize an object
    Click the object with the Select Object tool , or the tool used to create the object.
    Drag a handle of the object. Shift-drag the handle to retain the original aspect ratio.
    Link:
    http://help.adobe.com/en_US/acrobat/standard/using/WS58a04a822e3e50102bd615109794195ff-7c7 4.w.html
    But only the selection border is being resized, not the image.
    I'm beginning to believe there is a bug in the resizing function.

  • How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM.

    How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM. I found that it can be
    done by using XsltListViewWebPart class but how can I use this one by using shraepoint client api.
    shiv

    Nice, can you point me to the solution please ?
    I'm  trying to do this but I get an error : 
    Web Part Error: Cannot complete this action. Please try again. Correlation ID: blablabla
    StackTrace:    at Microsoft.SharePoint.SPViewCollection.EnsureViewSchema(Boolean fullBlownSchema, Boolean bNeedInitallViews)     at Microsoft.SharePoint.SPList.GetView(Guid viewGuid)   
    All help really appreciated.

  • In WebHelp, when I mouse over a link, the font size changes.

    Either after I generate to WebHelp or View in RoboHelp, when I mouse over a hyperlink text, the font changes from large to small text. My step is a 11pt font, my body text is 10pt. It appears the 11 pt. font switches to 10pt font when I mouse over it. Any way to fix this?
    Also noticed that when I have a note at 9 pt, and mouse over a link, the text changes to 10pt.
    So now it appears in most of my topics with links within a step or note. In a body, the text appears fine (or stays the same) when you mouse over a link.

    Not believing that either.
    You should be able to edit your CSS in a text editor. If you are not sure what to do, set up a simple project using your CSS. Any text will do and create a link.
    See the Contact page on my site and follow the instructions there.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Error while creating the view from one instance to another instance

    Hi Experts
    I want to Create a view which reside in one instance for example xxx Instance . I want to create the same view which reside in xxx instance to another instance for example YYY Instance How to acheive this ?
    I tried desc the View take the view script from XXX instance and copied the view script to YYY instance when I compiled Iam getting an Error
    For Example My view in XXX Instance
    CREATE OR REPLACE FORCE VIEW xxx.sample
    First_name,
    last_name
    as
         select "F_NAME",
                 "L_NAME"
         FROM  EMP;When try to copy and compile the same view in my YYY Instance
    i am getting error
    ORA: table or view does not exist
    Advance Thanks
    AT

    A.T wrote:
    Hi Experts ,
    Thanks For all your valuable information I amTrying Of DB Link i think so
    As per My understanding If wrong anywhere please advice me
    Here Instance is Like : One DB 10g divided into several Instance like (test , devlopement , production Instance)
    Now hope i ll make my req clear .
    Coming to my reqirement
    the actual table EMP is in xxi.TEST (Here xxi => Schema and test is an Instance )
    I want to create the view which is based on by table EMP which in my test instance to devoplment instance
    For example xxo.development (here xxo => Schema and development is an Instance )
    Need to access the xxi schema in Test Instance How can I create a DB Link please share your ideas and advice me
    Advance Thanks
    ATIt's still not at all clear, but let me outline what I think you are after
    Given a database, ORCL_A
    In database ORCL_A we have a schema, HALFTRACK
    User HALFTRACK has a table, MYSTUFF
    Given a database, ORCL_B
    In database ORCL_B we have a user GREENBRASS
    User GREENBRASS needs to be able to query the table HALFTRACK.MYSTUFF.
    In database ORCL_B, as user GREENBRASS
    create database link mylink
    connect to halftrack identified by halftracks_pswd
    using ORCL_A;
    select * from mytable@mylink;The db link defines a connection specification to ORCL_A, using the credentials of a user on ORCL_A. The target of the USING clause in the link definition must be an entry in the tnsames.ora file on the server hosting database ORCL_B.
    When querying through the link, database ORCL_B is simply acting as a client to ORCL_A, no different that a sqlplus session on ORACL_B's server. As far as ORCL_A is concerned, ORCL_B is just another client requesting a connection, connecting with the credentials defined in the link definition.

  • How to link the ALRTINBOX in a ABAP Web Dynpro application?

    How can I link the ALRTINBOX window in a web dynpro application view?

    Hi Rahki,
    The status of what?
    There are traffic light icons that you can use, or you can set  the cell design (which changes the background colour of a cell (if you are in a table).
    I often use this to indicate on a review step whether a cell/row has been inserted, modified or deleted from a table.
    Chris

Maybe you are looking for

  • Can you choose your photos from your computer to be imported into your iPhone?

    Unfortunately I do not have a Mac computer.  I have a Windows 7 computer.  I have some select photos that I want to be imported into my iPhone so I can use them as a wallpaper background.  Last time I imported pictures from my computer to my iPhone,

  • HT204392 Just Made the switch from PC to a 27" iMac. USB Ports full !

    After adding my iPhone charger, my Printer, a superdrive and the Bose Companion 5 speakers, my USB ports are full! Any good HUBs out there or other connection solutions? Not sure what the Thunderbolt connections are for, except additional monitors? 

  • Massive problem when exporting my video from Adobe CS6

    I have 25fps, 1440 on 780. On premiere pro, everthing seems fine, and the quality is good. However, when i export my file (H.264), the video lags, and most importantly, has waves shaped stripes that difform the image. These lines and stripes occur as

  • Why does time machine go back less than a month?

    clearly, i'm doing something wrong... i'm in the process of cleaning up stuff from my external drives.  sometime in the fall, i switched my time machine backup to a larger drive.  i did my best to follow the instructions for transferring over a time

  • Help!  Installing memory

    I am trying to install a 512 MB memory chip into the bottom of my Macbook Pro. While trying to install it into the bottom slot, it got stuck. It isn't in far enough to push the gold part into the computer and it isn't out far enough to get it out. Ho