Webdynpro page builder with side panel

Dear all,
I have created a new page page with the webdynpro page builder and want to show also the side panel in this page.
For this I configured the side panel (always show on application start) and created also a configuration for the side panel which contains a diagram.
1) But always when I start the page in the internet explorer NO SIDEPANEL is shown. I also don't know how user should open the side panel because there is no button.
2) I have in my page a dashboard chip - is it possible to call side panel over navigation target?
Thanks for your help!
Best regards,
Christoph

Hi,
Check this help to start side panel: Creating Side Panels - Web Dynpro for ABAP - SAP Library
And refer this blog series for CHIP: CHIPs, PageBuilder and the Side Panel - Part 1
hope this helps u,
Regards,
Kiran

Similar Messages

  • How to use powl in page builder with WDR_CHIP_CATALOG component

      Hi all,
    I´m trying to create a home page via page builder.
    Within the component WDR_CHIP_PAGE   I use for the chip catalog component WDR_CHIP_CATALOG. For configuration of this component I´ve tried many options but I am not able to include powls. Which configuration name should I enter  (e.g: BSSP_CHIP_CATALOG_HP)?Inside the configuration context, at selection in provider I´ve included as provider X-SAP-WDY-CHIP but nothing happens.
    Thanks and best regards
    Pablo

    You can use  http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air3-8_sdk_sa_mac.tbz2 with FB 4.6. Below are the steps to overlay the sdk
    1. Exit Flash Builder. 
    2. (Optional) Back up the Flex SDK by copying the entire directory.
        In Flash Builder, for example, copy the directory at:
    Mac OS: /Applications/Adobe Flash Builder 4.7/sdks/4.6.0
    3. Download the appropriate AIR SDK file for your operating system e.g. http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air3-8_sdk_sa_mac.tbz2,  unzip and save it on your MAC OS X.
    4. In Terminal, run the below command
    sudo ditto /path/air3-8_sdk_sa_mac /Applications/Adobe\ Flash\ Builder\ 4.6/sdks/4.6.0
    5. (Optional) To access the new AIR 3.8 APIs, update your application descriptor file to the 3.8 namespace.
    To update the namespace, change the xmlns attribute in your application descriptor to: <application xmlns="http://ns.adobe.com/air/application/3.8">
    6. (Optional) To ensure that the output SWF file targets SWF version 21, pass an additional compiler argument: -swf-version=21.
    Hope this will help.
    Regards,
    Nimit

  • SAP delivered Side Panel example

    Hiya,
    I've read up about side panels and I'd just like to demonstrate the functionality to our business - hopefully to convince them that NWBC is the way forward for their power users.
    I was hoping to use a SAP delivered side panel - would anyone know how/where SAP has a standard example side panel that I could use for demonstration purposes?
    Thanks!

    Hi,
    Webdynpro side panels provide a means to build side panels into webdynpro applications.
    NWBC side panels on the other hand are different and allow to include any web page Google Maps etc as side panels to your application.
    Both are two different things, make sure to watch out for these.
    Regards,
    John

  • SAP Standard Side Panels don't show any data?

    Hiya,
    I'm using NWBC 4 (patch 12) on SAP 7.31 (Ehp 6, SP10) and I can't get any of the SAP delivered Side panels to show any data.
    This is typical of what I see, the side panel appears but all the data fields are empty:
    The charts don't work either(?) and show nothing...
    The only part of a side panel that I managed to get to works was in transaction VA03 and it was the chip to show 'company code' data - but that's not going to impress the business when I demonstrate this functionality to show them how great NWBC with side panels is...
    Is there something obvious that I'm doing wrong do you think or has anyone else encountered this kind of problem?
    Thanks!

    Robert
      My 2 cents ...Either your basis team did not activate the parameter necessary for Side Panel or you have NOT perform the necessary Tagging  (aka Wiring).
      For the former (parameter), check the parameters setup as explain in the help file below.
    http://help.sap.com/saphelp_nw73ehp1/helpdata/en/4c/5bdb8497817511e10000000a42189b/content.htm?frameset=/en/4c/5bdae497817511e10000000a42189b/frameset.htm
      If this the is later (i.e. Tagging\Wiring)... That meant that the info from your SAPGUI main screen, has NOT been setup to pass the info to your side panel chip. Some of the standard SAP delivered Side Panel CHIP does requires you to perform your own tagging; and there's a security requirements. So before you start this ... Make sure that you have confirm the parameter had been setup correctly (section above); and you have as much of a security rights as possible.
    Using Pages in the NWBC Side Panel - Creating Mashups with the Page Builder - SAP Library
    HTH ...

  • Identifying the Side Panel role from NWBC

    When an authorized user execute a Tcode with Side Panel assigned, the Side Panel will appear.
    Question - Is there a standard report\mechanics whereby one could identify the Side Panel role associated with that Tcode?
    Currently, my only method is to a brute search for the Application Alias via table AGR_HIER.   And then using description of the node to try to deduce what the Role is.  Works OK, but not exactly the most direct approach.
    Cheers
    Damean

    This report lists all roles with a classic transaction as a triggering condition, either linked directly as APPLICATION_ALIAS or through the node ID.
    report  zlistroles.
    types: begin of nodefields,
      agr_name   type agr_name,
      object_id  type menu_num_8,
      reporttype type reporttype,
      report     type extdreport,
      appl_alias type menu_details_alias,
    end of nodefields.
    data lt_nodes   type table of nodefields.
    data ls_nodes   type          nodefields.
    data ls_nodes2  type          nodefields.
    data lv_objid   type menu_num_8.
    data lt_results type table of string.
    data ls_results type string.
    data lv_alias   type menu_details_alias.
    data ls_match   type match_result.
    data lv_length  type i.
    select agr_name object_id reporttype report appl_alias
      from agr_hier into corresponding fields of table lt_nodes.
    loop at lt_nodes into ls_nodes where appl_alias is not initial.
      if ls_nodes-appl_alias cp '{*}'.
        find first occurrence of regex `\{[0-9]{1,3}\}` in ls_nodes-appl_alias results ls_match.
        if sy-subrc eq 0.
          lv_length = ls_match-length - 1.
          lv_objid = ls_nodes-appl_alias+1(lv_length).
          read table lt_nodes into ls_nodes2 with key  agr_name = ls_nodes-agr_name
                                                      object_id = lv_objid.
          if sy-subrc eq 0 and
             ls_nodes2-reporttype eq 'TR'.
            write: / ls_nodes2-agr_name,
                     ls_nodes2-report.
          endif.
        else.
          find first occurrence of regex `\{TR=(.*)\}` in ls_nodes-appl_alias results ls_match.
          if sy-subrc eq 0.
            lv_length = ls_match-length - 5.
            lv_alias = ls_nodes-appl_alias+4(lv_length).
            split lv_alias at ';' into table lt_results.
            loop at lt_results into ls_results.
              write: / ls_nodes-agr_name,
                       ls_results.
            endloop.
          endif.
        endif.
      endif.
    endloop.

  • Can you launch a doc in Pages 5 with the formal panel closed?

    Driving me nuts, there's a number of Pages 5 documents that don't need to have anything but text edited and I don't need that side format box/panel to be open, which in smaller screens really uses up a lot of space.
    Is there a way to open a document with that darn side panel closed?

    Actually I have just tested Pages 5 and yes you can turn off the side panel by clicking on the Format icon (Paintbrush) top right.
    However since 95% of all your styling is only visible there, you will be turning it on and off a lot.
    You used to be able to show and hide the Inspectors with a keyboard shortcut in Pages '09, so that will still be your best option on your laptop.
    You raise a very valid point about the actual useability of the new UI.
    I disagree with the new User Interface for other reasons, principally it does such a poor job of showing the correct settings for users as needed, this just makes it one more reason to give it an F.
    Peter

  • ???  I just installed Lightroom 5 from Amazon for my Mac with 10.10.1 software.  When I open it I get: "An error occurred when attempting to change modules".  It won't import photos and has no side panels under Library.  What should I do?

    I just installed Lightroom 5 from Amazon for my Mac with 10.10.1 software.  When I open it I get: "An error occurred when attempting to change modules".  It won't import photos and has no side panels under Library.  What should I do?

    I Nearly bought from Amazon too but I found a thread from Adobe stating that the only recognized outlet for lightoom is themselves and other outlets serial numbers will not be guaranteed.
    THat at was sufficient for me to buy direct from Adobe, hope you get it sorted.

  • How to call a BI Query (side panel) with selections provided by "tags"?

    With regards to my previous post (has anyone already successfully integrated their own BI report in a side panel?) we're still not there yet. What we actually would like to do is call a BI Query in the side panel and have the variable for that report filled automatically via "wiring" (using a tag).
    Basically we have a BI Query on a Transient Provider which "calculates" a couple of key figures with regards to a document number (shipment). The reason being before a shipment is to be "sent out" it should meet a couple of requirements (which are not immediately visible within the standard screens) concerning (sales) value, weight, etc...
    We have successfully "tagged" the shipment number in the transactions concerned (VT01N - VT03N). Now, as per my previous post if we just add the BI Query as an analytic list component (WDC_BS_ANLY_LIST_ALV) we seem to be getting errors (as the variable is not passed on). To avoid the error, we have added a search component (FPM_SEARCH_UIBB).
    So, now we get a "selection screen" in which we manually need to fill a shipment number and when we do, the results are correctly displayed.
    Obviously, we would like to have this "variable" assignment to be done automatically via the tag.
    What are we missing here?

    found this document on using the FPM_SEARCH_UIBB http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f07c2765-4ee8-2e10-759b-ea7429a430bb?QuickLink=index&…
    if only such a (extremely detailed) document would exits on passing on the "tag" to the BI query variable (as that is not as straight forward)

  • Master pages working with the books panel

    Hi everyone,
    I'm starting a book which will have about 20 chapters in it. I'm using the books panel to work with it all but I'm not sure how to handle the master pages so that they'll work across all chapters within the books panel. I have a 2-page master spread set up with both of the pages having automatic numbering and the left hand spread with the name of the publication. The right hand spread will have the chapter name and this will be the only element that will change from chapter to chapter.
    So I wondered if there was a way to set it up so that all the chapters were based on this master page. I'd then need to change each of the chapter headings for each chapter but then if I needed to make a change to the left master page, ie. with the publication name on it, is there a way to make this change on just one of the chapters and then all the other chapters would update to reflect the change.
    Appreciate any advice.

    Normally I would say make a second master page for the chapter start nad use that, then include the master pages when synchronizing the book, but there's another thread from yesterday where that is not working for the user, and I'm still trying to figure out why.
    You can follow along at http://forums.adobe.com/message/2760081#2760081, or if you have a Mac you can help out by seeing if it works correctly for you.

  • Help with left side panel area in lightroom 5

    I am having trouble with left side panel  in, library - lightroom 5. I don't seem to be able to open more than one area at a time. ie: if I open catalog and then try to open folder..catalog will close. I have also noticed that the little triangle that I click on to open and close an area is not a solid triangle but is kind of dotted. Have I done something to change the settings or something? I want to set up a new collection but I can't open both folder and collection at the sametime. HELP!

    Right click next to one of the headers and a popup will let you change how the panel is displayed. See screen capture.

  • Building dll with front panel

    Hi all,
    do you know, can i build with LV Builder dll that will run with Front Panel open when i call it from some another VI?
    I tried build it, but not succesfully.
    The prolem was that if i select in VI properties "Show FP when loaded", dll runs with FP open, but property "Show FP when called" doesn't give same results. Dll runs, but in background.

    Nadav,
    Did you see this recent post about LabVIEW calling LabVIEW DLLs?

  • Pagination with 10 pages - 5 either side

    Hi all,
    I'm trying to get some pagination to my results page.
    I would like the navigation links to only show 5 pages on either side of the current page.
    For example if I have 40 pages in total:
    Page 1 shows:
    *1* _2_ _3_ _4_ _5_ _6_ _7_ _8_ _9_ _10_ [_Last_] Next
    Page 18 shows:
    [_First_] _14_ _15_ _16_ _17_ *18* _19_ _20_ _21_ _22_ _23_ [_Last_] Next
    Currently I have all the page links (1-40 echoed) by using this tutorial:
    http://www.phpbuilder.com/tips/item.php?id=2
    Hope someone can help as I'm completed stumped!

    If my very quick scan of the article was correct you'll need to change the loop start and end values in this part of the code:
    // Now loop through the pages to create numbered links
    // ex. 1 2 3 4 5 NEXT >>
    for ($i=1;$i<=$pages;$i++) {
         // Check if on current page
         if (($offset/$limit) == ($i-1)) { Change the loop bounds 1 and $pages. You'll need to do some maths to work out the current page number, and then add and subtract 5 for the start and end. Make sure not to go past the start or end of the set of pages. Good luck.

  • Itunes does not show the left side panel with the library and my ipod(when I connect it)

    My ipod (5th gen) is not recgnized by itunes nor does itunes show the left side panel of the ipod being connected. Windows 7 recognizes the ipod when connected however.

    Press CTRL+S.
    tt2

  • Multi page recordset output from ASP page on Spry Tabbed Panel Widget

    I am using a simple Spry Tabbed panel set on my asp page to show the output from different ASP pages, inside the tabbed panels. The tabbed panels on the page under consideration (destination page) display the output from different asp pages (source pages). The source asp pages generate multi page outputs which are paginated on the source page itself and pagination links are displayed on the source page itself.
    However, we dont want to display the source page outside of the tabbed panel, but instead the output content from the source asp pages should show inside the tabbeed panels only. The first page generated by the source asp page displays correctly inside the tabbed panel. However, when the user clicks on the links for the next page generated by the source asp page, but which is being displayed inside the destination page tabbed panel, they dont display the next page inside the tabbed panel. Instead the source asp page displays the output outside the tabbed panel destination  page.
    Please advise on how to ensure that the user can page through the recordset generated by the source asp page by clicking on the pagination links at the bottom of the records, while ensuring that the output displays within the tabbed panels on the destination asp page.
    I am enclosing the source code being used to generate the spry tabbed panel widget and also updating it with the output from the source asp page. In this case, the code given below is from the main page containing the widget and the source asp page is "sample.asp", which generates multi page output.
    Please note that I am not too keen on using xml data sets output from the source asp page, but would be more comfortable with directly using the asp pages to fill the tabbed panel content.
    Please help
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Untitled Document</title>
    <script language="javascript" src="/SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="/SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="/SpryAssets/SpryData.js" type="text/javascript"></script>
    <link href="/SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
          <li class="TabbedPanelsTab" tabindex="0" onclick="Spry.Utils.updateContent('two','sample.asp?page=' <%=i%>); Spry.Data.initRegions();" >Tab 1</li>
           <li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div id=two class="TabbedPanelsContent">Content 1</div>
        <div class="TabbedPanelsContent">Content 2</div>
      </div>
    </div>
    <script type="text/javascript">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    </script>
    </body>

    I fully agree that the problem does not lie with tthe tabbed panels.
    The solution would probably be first required to be tried using ajax on any div tab.
    Then the same code would have to be used on Sprytabbed panel. Hence, the following may be advised:
    1. Sample code for server side pagination and displaying inside any div tag and refreshing it using ajax. the update link would also lie inside the div tag which would show the next/ previous page without reloading the page.
    2. Then adapting the refresh technique using ajax in the Spry Tabbed panel using the inbuilt updatecontent method of the Spry Tabbed panels.
    In order to achieve the above, I am getting the recordset output in the tab content as expected. The recordset is also getting the pagination links from server side asp as required.
    However, it is also generating the following error.
    Webpage error details
    Message: Unterminated string constant
    Line: 9
    Char: 56
    Code: 0
    URI: http://localhost/test/test5.asp
    The sourcecode is as given below. If you can help with the error indicated above, my problem would probably get solved.
    <html><head>
    <title>Untitled Document</title>
    <link href="/SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css">
    <script src="/SpryAssets/SpryURLUtils.js" type="text/javascript"></script>
    <script src="/SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="/SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="/SpryAssets/xPath.js" type="text/javascript"></script>
    </head>
    <body>
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
        <li class="TabbedPanelsTab" tabindex="0" onclick="Spry.Utils.updateContent('one','untitled-5.asp');">Tab 1</li>
        <li class="TabbedPanelsTab" tabindex="0" >Tab 2</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div id=one class="TabbedPanelsContent">Content 1</div>
        <div id ="two" class="TabbedPanelsContent">Content 2</div>
      </div>
    </div>
    <script type="text/javascript">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    </script>
    </body>
    </html>

  • Help needed with 6 panel a3 layout

    Hi,
    I haven't used indesign for quite some time and even when I did I only really dipped my toe in the water.  I have recently purchased the cs5 master collection, mostly for photoshop and illustrator but I have been asked to produce a leaflet and I am hoping that someone could help me with the intial layout.
    What I want to do is to produce a 6 panel leaflet on a folded a3 page, the other side of the a3 page will be a map.  This document will be printed on a3 hp laserjets so I cannot print edge to edge.
    For some reason the image below isn't showing the lines I put in to explain the folds but basically the a3 page is to be folded once down the centre and then 2 more folds to make it a booklet size of aproximately 140 x 150.
    Do I have to set up an a3 page and set this up manually?  Ideally I would like to be able to create a document that has a separate front page, page 1,2 and 3 (which is also the back) together so I can spread the information over the entire 3.  And again inside 1 and inside 2 together so that I can create information spread over the 2 pages.
    I hope this makes some sort of sense, I don't know the technical terms for the layout so I'm trying to learn as I go.
    Thanks

    yes, I have to get it all onto the one a3 page in the end.
    if I was to set up guides for the a3 page, can I roate the view of the page around so that I am not working upside down (so to speak).
    if I can do that then it would probably be easier to just set up my own guides on the page.
    Thanks for replying so quickly.

Maybe you are looking for