Adding component to Navigation Panel -

Hi,
I have developed a JSPDynPage Component. After developing the component I need to add that component to my Navigational panel using an iView. Unfortunately I am not able to achieve this.
Can anybody please suggest me how to add a JSPDynPage component to Navigational panel?
Thanks in advance for your responses!!!!
--Vishal

Vishal,
Unfortunately, this is not an easy task. Have you worked with the Default Framework Page before?
Read the following links;
Default Framework Page
http://help.sap.com/saphelp_nw2004s/helpdata/en/b4/771158e4cb4bf6af9974380948db86/frameset.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/97/d4ee3d6434445ae10000000a11405a/frameset.htm
Regards,
James

Similar Messages

  • Customizing: Adding an action to the Navigation panel

    Hello,
    A customer has asked me to add an action based on a webdynpro component to the Navigation panel.
    He provided me with the component name, the package and the url.
    I already figured out that this has to be done in SPRO > SAP xApp Resource and Portfolio Management (SAP xRPM) > Global Customizing > Process and Service Settings > Define Navigation, but i have no clue how to add this action based on the information i have.
    Could anybody give me a hint or a link to some good documentation about this topic.
    Any help will be apreciated
    Regards,
    Magnus

    make use of ActionMap and ImageMap:
    //the action
    Action theAction = new AbstractAction("New") {
      public void actionPerformed(ActionEvent e) {
        //do action
    //accelerator for action
    theAction.putValue(AbstractAction.ACCELERATOR_KEY, KeyStroke.getKeyStroke("control N"));
    //input map and action map from table
    InputMap im = table.getInputMap(JTable.WHEN_FOCUSED);
    ActionMap am = table.getActionMap();
    am.put("New", theAction);
    im.put((KeyStroke)theAction.getValue(Action.ACCELERATOR_KEY), "New");

  • How to add links in the detailed navigation area of the navigation panel

    hi everyone,
    I had developed 4 iviews. 2 of those iviews i added to 2 different pages. And the 2 pages added to workse and assigned a role. i assigned this role to user. and it is working fine.
    i want to add remaining to iviews as links.
    how to add the links in the detailed navigation area of the navigation panel.
    regards
    sunil kumar.ch

    Hi sunil,
       Create a JSPDynPage component(C) having 2 hbj:link whose hrefs point to these 2 iViews(A and B). U can get the href of the iView by previewing it(for A and B). Create an iview from the par component (C) and add it to the DLN so that it shows the links to ur iViews(A and B). U can make the Show Tray property of this iView (C) to false.
    Regards,
    Harini S

  • Link to folder in a room - missing header area and navigation panel

    Hello Community,
    I have a problem, again. While creating favorites to specific folders I got a problem while using and "publishing" them.
    While using the "send to..." feature the recipient gets an eMail with the link to this folder. When clicking this link he gets as the result the opened folder, displayed in a browser. Until now nothing really unexpected.
    What we want is that he gets not only the opened folder. We want that he gets the whole navigation around it (navigation panel, header area) for the specific room the folder is in.
    Now my question. Is it possible to create a link with this behavior?
    Thanks for every hint in advance!
    Regards,
    Frank

    Hi Frank,
    if you have navigated to the room / within the room to the room part you want, check the page toolbar, choose "Add to Portal Favorites", add it under some name; then in IE choose Favorites, right-click on the favorite just added, right click, properties (or just call it). The upcoming URL of the form http://portal:50000/irj/portal?NavigationTarget=navurl://1f9eaddf81792cb6f2b9f05381cce360&&NavTargetAsRoot=true should do the trick (this at least holds from SP14 on).
    Hope it helps
    Detlev

  • List key figures in navigation panel of web report

    Hi,
    I have the standard navigation panel on the left side of my web report that shows a list of the characteristics in rows and a list of free characteristics. Under the heading columns I can see the point key figures.
    Is there any possibility to list all the key figures that are included in the report so that I can use the drag and drop function for adding / removing key figures?

    Philipp,
    Since Key figures is a structure, you cant see all the key figures under that area. What you can do is, you can restrict the keyfigures in the WAD report itself based upon your selection.
    Hope it helps,
    Assign Points
    Thanks,
    Gattu

  • Can we achieve Vertical Collapsable trayOREnlarge Navigation Panel Feature

    Hi All,
    To overcome horizontal scroll issue of diffrerent sections of page, we thought
    a) Vertical Collapsable tray feature [like Collapsable tray we have - which gets shrinked of vertical height but horizontal width still retained]
    b) Enlarge Navigation Panel Feature - [like we have: Having 2 arrow marks which help to shrink or expand navigation panel of portal ]
    c) Collapsable Navigatiop Panel- Expand Navigation Panel
    Can we achieve any of above features by custom development or is there any standard reuse component.
    Please guide.
    Regards,
    Ganga
    Edited by: Gangadharayya Hiremath on Mar 25, 2009 12:24 PM

    hi all
    lets leave the above requirement aside.
    even if that works, it won't solve my purpose because
    i found that even if i get the gp's Contextual Panel / Process Activies Panel in a collapsable window
    or i hide the it, this won't appear in the collapsable window or get hidden when i initiate the process using the generated URL.
    As per my requirement, i need a URL which will initiate a new GP process and doesn't show
    Contextual Panel / Process Activies Panel on the left side.
    But the generated URL doesn't hide it.
    I think there should be some additional parameter which I should pass along the URL and the started process won't show the Contextual Panel / Process Activies Panel.
    If anyone knows how to get rid of Contextual Panel / Process Activies Panel, please reply.
    Thanks & Regards
    Vivek

  • Component visibility getting delay while drop the component in the Panel

    Hi,
    In my project I have used drag and drop functionality to drop the Icon from 1st panel to 2nd panel. The 1st panel contains three buttons with different icons and the 2nd panel is added as the destination (Drop place) in the desktop pane. While drag and drop I have used a panel and label to place the icon in the 2nd panel. The icon which is available in the label visibility getting delay(nearly 5 - 10 sec) at the first time drag and drop. After that there is no time delay for the drag and drop. This happens all the time while start my project. I have tried repaint() and revalidate() for all the panels still the delay is there. Kindly suggest any idea to reduce the delay.
    Thanks in advance...

    Component visiblity getting delay while drop the component in the panel in java swing with comment "Kindly suggest any idea to reduce the delay" - A SSCCE  by @MadProgrammer

  • Align with component in another panel

    ok, I have two panels with a checkbox and a textfield in each. I want the respective checkboxes to be aligned and also the textfields with eachother.
    another question is if I can set the background of a JTextArea if it doesn't have a name, I've just added it to a panel with
    panel.add(new JTextArea("hello my friend");
    greatful for advice
    love/m

    no, I can use any layout that helps me get the result I want!
    right now, I've chosen another solution, but I still would like ideas on alignment since the new design includes four panels with different contents. I wants the four panels to have the same size (oh, they need to be in individual panels since they all have different borders) so I've used gridlayout. but now the component JTextField grows to an ugly size trying to fill the flippin' panel.
    does this make sense? I hope you understand what I mean.
    best regards/m

  • Toc navigation panel has chaptertitles listed 2x

    I've really been working on this for hours and days using all resources available.
    I know that this is an easy fix  but I just cannot get it.
    Issue: TOC  generation
    When I open up the indesign book in adobe digital editions
    the first page is a visual of my TOC (like in the print version) and each chapter is highlighted.
    - if i scroll the chapters are all visible
    PROBLEM
    yesterday -  i was fine - finally - or so i thought.
    today - i have added 2 more documents to this same book; used the same anchor and hyperlink method
    but now the navigation panel looks like this.
    RESULT 
    In the resulting navigation panel in adobe digital reader I now have these listed 2x. 
    -preface    clicking here does nothing
    -diagram   clicking here does nothing
    -chap1       this works
    -chap 2      this works
    -chap 3      this works
    -chap 4      this works
    etc.            this works
    -preface     this works
    -diagram    this works
    Do you know why I am getting the listing 2x and why the first copies of each do nothing ?
    Any assistance would be greatly appreciated.

    dopfel wrote:
    thank you !!
    it worked well.
    - i love this 'opensource knowledge sharing thing'....  more about that
    later.
    - i will continue to add the remaining pages-documents such as dedication,
    acknowledgements (i am adding you !!);  diagrams, list of website references
    etc. etc.etc.  it will take a while.
    if at all possible, may i email you again regarding a couple of incidentals.
    i love to self learn and have been doing this all along but sometimes just
    asking a questions saves so much time ....
    below is the first one regarding formatting.
    there are 'no' blank lines between my paragraphs and i am not certain about
    which is the most efficient way to do this.  it would take hours to change
    the leading and i think i tried changing it from the default 10.8 to 14 then
    18 and i did not notice a difference.
    again thank you.
    did you get these past couple of emails?  i am just replying.
    regina
    note.
    book written in word on a mac and converted to pdf for upload to
    lightningsource, createspace, kindle - initially; just getting to epub this
    past week and a half.
    - used my 'word' document - split it up so each chapter, part is it's own
    doc.
    - placed them all in indesign and saved as .indd
    - the 'only' formatting i used is in indesign.
    - i set the chapter (title of page such as 'dedication') to paragraph style
    1 and left justified things.
    - this is the only thing that i added when i created the toc.
    Question:  is this going to a problem when the ebook is downloaded to
    devices other than adobe digital reader:  such as ipad, sony reader, kindle
    - maybe i might be best off setting styles to all of the text in the
    indesign docs but i really am not sure where to begin and that basic
    documentation or tutorial is really eluding me.  colin flemming and gabriel
    powell's tutorials helped but were not clear about the toc - which YOU were.
    On Sat, Sep 4, 2010 at 2:12 PM, peter at knowhowpro <[email protected]
    Glad my suggestion was able to help you understand the problem and resolve it.
    Just to clarify, this is a forum where your postings appear, not direct email to any forum participant. We're all volunteers, users like yourself, not Adobe employees. Forum visitors may choose to reply to or ignore any posting.
    Regarding your additional questions, please separate the many questions you're asking here, and post each individual topic in a new thread with a clear brief subject line. A clear subject line helps forum participants decide if they are interested in the question and if they feel they can offer a useful response.
    Regarding tutorials, search Google for "indesign tutorials" and/or "indesign learning" without quotes to find information from many additional resources including and beyond these Adobe forums, and the ones you mention. If you only want free ones, search for "free indesign tutorials" and/or "free indesign learning."
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How to make left navigation panel collapsed by default?

    We explored the theme editor but did not see any way.
    Thanks with points.

    What's New in the Portal for 2004 SP20 / 7.0 SP12
    <i><b>Keeping the Navigation Panel Closed:</b> A new property value has been added to the Initial State of Navigation Panel property of the detailed navigation iView (DTN) so that pages/iViews are always displayed with the panel closed, even if there is content in the panel and even if the user has opened it previously.
    </i>

  • Change Navigation panel language

    I am configuring portal content, my portal has abap ume , a customized desktop, portal roles and iviews, as usual, portal users have espanish language, and sap backend users too; Nevetheless  in the navigation panel appear the texts "Deatailed Navigation" and "Portal Favorites", instead of "Navegación detallada" and  "Favoritos de Portal" what could it be? ... 20 points for your help!!!
    Greetings

    Hi Rolando,
    Seems like there is some issue with Portal Translation WorkList i.e. the Detailed Navigation iView and Portal Favourite iView is not added in Translation Worklist where conversion of language is done.
    Function of Portal Translation Worklist is to take care of conversions from one language to another(like in your case it is to change from English to Spanish).
    Couple of thing needs to be done from you are:
    1.   Identify the Desktop which is responsible for rendering this screen and then try to figure out the
          iView (Detailed Navigation and Portal Favourites).
    2.   Create a Translation Worklist and add the iViews into it and follow the steps mentioned in the PDF
          file, you will get on accessing the below link.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/3008aef6-676c-2b10-a5be-e47133f564f1
    Please let me know the status of the issue.
    -Harish

  • Contextual Panel of GP in collapsable window like Navigation Panel

    hi all
    i want to put the Contextual Panel of Guided Procedure in the collapsable window LIKE the Navigation Panel of the portal (not in Navigation Panel).
    For this to achieve, In Portal Content,
    I created a copy of "Navigation Panel & Content Area Layout" and made its "Object is a Template" as TRUE.
    Then I created a new page of Default Page Template so that i can use my "Navigation Panel & Content Area Layout" and put the Contextual Panel of GP in "Navigational Panel".
    Now when I added this page into "Portal Content -> Content Provided by SAP -> Platform Add-Ons -> Guided Procedures -> Pages -> Process Instance" page, a warning message appears saying "The object you have added is not fully compatible with the page. Therefore, its Isolation Method property has been set to URL and read only." and does so, and because of this the Contextual Panel of GP comes in the collapsable Navigational Panel as per my requirement but the height of the page is not sufficient enough to display the whole page in the required format.
    Thus, defeats my sole purpose.
    So please help to solve this problem.
    Thanks & Regards
    Vivek

    hi all
    lets leave the above requirement aside.
    even if that works, it won't solve my purpose because
    i found that even if i get the gp's Contextual Panel / Process Activies Panel in a collapsable window
    or i hide the it, this won't appear in the collapsable window or get hidden when i initiate the process using the generated URL.
    As per my requirement, i need a URL which will initiate a new GP process and doesn't show
    Contextual Panel / Process Activies Panel on the left side.
    But the generated URL doesn't hide it.
    I think there should be some additional parameter which I should pass along the URL and the started process won't show the Contextual Panel / Process Activies Panel.
    If anyone knows how to get rid of Contextual Panel / Process Activies Panel, please reply.
    Thanks & Regards
    Vivek

  • Detailed Navigation Panel in AFP

    Hello Everyone:
           I  created a workset , in this workset  ther are some folders and pages, then I add this workset to a role,when our users preview this role,they found  the page which be added into the workset  is very odd in DLN.
           Firstly In the Detailed Navigation Panel ,the last page name is not display whole.
          Secondly ,if I expand some folder to dispaly the below page ,the last page is disappear  solwly, until clear away completely.
          If I use Default Framework Page or Classic Framework Page ,everything is ok,I am very at o loss.
        So please someone can help me.
       Thanks a lot
       Lexian
      Best Regards
    Edited by: le xian on Dec 1, 2011 11:07 AM

    Dear Arun Jaiswal :
           I think you don't know what my mean.
          Now our EP systmen has been upgraded into 7.3 release,so we use Ajax Framework Page.
        If you are using SAP portal in external facing portal (internet) then might be detailed navigation not work properly
         I use in my company,so it is not external problem.
         sorry
        lexian

  • Navigator Panel in LR3 not behaving - help?

    The Navigator Panel in LR3 seems to have a mind of it's own.
    When adding a folder - right click method - after you enter a name and hit OK - the entire panel re-arranges itself and opens folders/subfolders/subfolders, etc. on a seemingly random basis. This is very annoying as if you want to create another folder - you need to close all of the subfolders LR3 just opened - or scroll all over the place to find where to enter the new folder. This also happens when LR3 is closed and re-opened.
    Can the Navigator not remain at the last state is was left in?
    PS - My Navigator Panel mimics my folder/subfolder layout on the hard drive.
    Any help to correct this? Am I missing a setting or check box?
    Thanks,
    Dave

    I agree, Bob - Bridge is a wonderful tool (aside from it's tendancy to crash on my old PC - hopefully solved with new system and new version). It's the only way to actually see thumbnails of multiple document types and image formats - and when you're managing a huge library of assets, this is crucial.
    Furthermore, it's got some very nice photo editing and management tools that end up being much faster than opening an image in Photoshop would be.  For me, this is particularly useful when I simply need to crop or do some exposure or color modifications to a digital photo before publishing. Very slick and fast.
    And, the ability to apply keywords to your images for future searches is nice, too!
    I'm sure I haven't even scratched the surface of all it's capabilities, but I'd like to go on record now by saying to Adobe, PLEASE don't pull a "Navigator" move and get rid of Bridge. I, for one, use it daily and would definitely miss it!

  • How to change Contextual Navigation Panel text color?

    Hi guys,
    I am trying to change the text color of Contextual Navigation panel of Ajax framework page.
    Using the Theme Editor -> Outer Frame of Ajax Framework Page-> Detailed Navigation it only allow me to change font(size, family, weight). 
    Can anyone guide me where I can find and change the text color of Contextual Navigation Panel using Theme Editor.
    Thanks & Regards,
    Hanna

    Brian Fernandes wrote:
    the other option available is to manually download the .css files and make changes to them directly.
    Modifying css on fs directly is a bad idea, next time you deploy the theme or update the system you will overwrite all modifications again. If you are not able to identify the element you need in the theme editor with the class locator component, download the theme, depack and try to identify the class you need directly in proprietary descriptors, its not css format. Pack again, upload in the portal, clear cache: et voila. I would also restart the EP if your changes doesnt reflecting, I faced such issues already.
    cheers

Maybe you are looking for