How to display existing View as content in TABSTRIP tab?

Is it possible to display existing View as tab content in TabStrip tab? If so how can we do this?
Thanks in advance!

Hi,
Please have a look into this linl. It will really help you a lot and give you clear idea on UI development and also about using TabStrip.
<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0e617bc3-0401-0010-2c82-81f82e73300e">Developing Web Dynpro User Interfaces</a>
Thanks and Regards
Avijit

Similar Messages

  • How to display string with XML content in 4.6?

    Hi,
    I`d like to know how to display string with XML content in it for 4.6.
    4.6 has not method parse_string.
    And example like this is not helpful:
      DATA: lo_mxml    TYPE REF TO cl_xml_document.
      CREATE OBJECT lo_mxml.
      CALL METHOD lo_mxml->parse_string
        EXPORTING
          stream = gv_xml_string.
      CALL METHOD lo_mxml->display.
    Thank you.

    Hi,
    May be you can use fm SAP_CONVERT_TO_XML_FORMAT. But it have some issues with memory usage, the program consumed tons of memory during convert.

  • How to display existing sap form in our menuclick

    Hi All,
    I have created one addon for MRP in this addon when client click on menu i have to display "Order recomandation" form which will dispaly in existing MRP functions.
    How to display existing sap form in our menuclick. please help me as soon as possible.
    Regards,
    sri

    Thanks Teun,
    Thanks for giving reply.
    i am not getting any ActivateMenuItem method in menuclick event
    But here i am addding one menu item from my addon when i click on my menu 20.2.orderrecomnds i have to populate same screen which is coming in mrp order recomonds which form id is 65215
    if ((pVal.MenuUID == "Submenuordrecom") & (pVal.BeforeAction == false))
    // code
    in above menu click event i have to populate order recomonds screen so how to do that.
    Regards,
    sri
    Edited by: dns_sap on Jul 28, 2010 12:09 PM

  • How to display a view which contain interactive form in an external window

    Anyone know how to display a view which contain interactive form in an external window?
    I managed to display the view in an internal window with the following code:
    IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("PdfReportWin");
    IWDWindow window = wdComponentAPI.getWindowManager().createWindow( windowInfo, true);
    For external window, I tried this method : wdComponentAPI.getWindowManager().createExternalWindow(String URL, String title, boolean modal) but there are no parameter for view name?
    Maybe this is not the correct way, really appreaciate if anyone can help.

    Hi,
                U need to the following
               1.Create another window
               2.Create a view in it tat contains Interacive form element.
               3. call this window dynamically thru the first window by creating a context element of IWDWindow  type
    The code may help:
      IWDWindowInfo windowInfo =(IWDWindowInfo) wdComponentAPI.getComponentInfo().findInWindows("SearchEmpwind");
          IWDWindow window = wdThis.wdGetAPI().getComponent().getWindowManager().createWindow(windowInfo, true);
          window.setWindowPosition(WDWindowPos.CENTER);
          window.setWindowSize(400, 250);
          window.open();
          wdContext.currentContextElement().setEmpSearchWind(window);
    Regards
    Ishita

  • How to open particular link or content in new tab

    how to open particular link or content in new tab.... as in ipad we just continue pressing and a option comes that open in new tab... exactly when i tried in macbook .....i was not able to do.... didn't find the answer after googling also. please suggest?

    Check your browser preferences.
    ex Safari>Preferences>General>

  • How to display Calendar view without having to select date

    Hi there,
    I would like to know can I display Calendar view without having user to select date first.
    And also, how do I highlight the date in calendar view for example, to show that i have set a reminder on that date?
    I have searched many threads before, but I could not get the final answer.

    Hi,
    Is there a way to display a full calendar popup with time stamp so the users can pick the timestamp from the popup?Date Picker doesn't have this feature. You can use Javascript to achieve the same. But at same time it's highly unrecommended to use javascript with OAF pages.
    Regards,
    Gyan

  • How to display recently viewed pages?

    Im looking for advice/tutorial on how to display a vertical
    list (<ul>) inside a div which will display say the last few
    pages (via their title) which a user has viewed on my site. Just a
    simple vertical text based list rather like the list shown on the
    "Back" button in IE. Are we talking croutons?
    If a user leaves the site then goes back I want the list to
    be cleared again.
    Ok I know people may say, just use the back button but I
    thought it could be a handy feature on the page itself.

    Hi freidaf1,
    You should take a look at the Tile Tabs add-on:
    https://addons.mozilla.org/en-US/firefox/addon/tile-tabs/
    I believe it will do exactly what you are looking for. You could always open multiple windows, but I think this is a more elegant solution.
    Hopefully this helps!

  • How to display an xml file contents in jsp as tree view

    hi,
    Iam trying to read an xml file and display the structure in jsp as tree view, can any one help me

    Use a [XML or DOM parser|http://java-source.net/open-source/xml-parsers] to read a XML file into a tree structure of Java objects.
    Use the [Collections API|http://java.sun.com/docs/books/tutorial/collections/index.html] to get hold of the relevant elements in a tree structure.
    Use JSTL´s [c:forEach|http://java.sun.com/javaee/5/docs/tutorial/doc/bnakh.html] tag to iterate over a Collection in JSP.
    Use HTML´s [<ul>/<li>|http://www.w3.org/TR/REC-html40/struct/lists.html#h-10.2] or [<dl>/<dt>/<dd>|http://www.w3.org/TR/REC-html40/struct/lists.html#h-10.3] tags to represent a tree in HTML.

  • HTMLEditor : how to display Source and parsed content ?

    Hi everyone,
    I'm currently working on a HTMLEditor that consists of
    one tabbed pane and a tool bar.
    My tabbed pane has two associated panes :
    Editor ( a JTextPane)
    Source ( a JEditorPane)
    I already know how to bind my JTextPane to a HTMLKit and bind the HTMLKit to a HTMLDocument.
    When I type text in my JTextPane it appears just as it should in a web browser (it's already parsed).
    What I would like to do now is to display the source of
    the HTML document when I click on the source Tab.
    I already know how to write this source into a file from the JTextPane, but instad of wirting the source into a file I would like to write it in the JEditorPane.
    Is this a View issue ? Do I have to plug a different View to my Editor so it displays the HTMLDocument ? And if it's so, how do I do ? Isn't there any standard view ready to this ? To display HTML Source code from an existing HTMLDocument ?
    Thanxs for the help

    Here's some working code snippet to illustrate what I meant:
    assuming editorPane being a usual JEditorPane/JTextPane used to do the editing and sourcePane a JEditorPane to show the source (text + tags) then create the sourcePane with:
    private JEditorPane createSourcePane() {
         JEditorPane sourcePane = new JEditorPane();
         sourcePane.setEditable(false);
         sourcePane.setContentType("text/plain");
         return sourcePane;
    }to show the (complete) source after some edit:
    private void showTree() {
         if ((sourcePane == null) || (editorPane == null)) return;
         Reader reader = null;
         try {
              char[] chars = getSource();
              D.ebug("got array " + chars.length);
              reader = new CharArrayReader(chars);
              Document doc = new PlainDocument();
              sourcePane.getEditorKit().read(reader, doc, 0);
              sourcePane.setDocument(doc);
         } catch (Exception ex) {
              ex.printStackTrace();
         } finally {
              try {
                reader.close();
              } catch (IOException ioEx) {
                   ioEx.printStackTrace();
    private char[] getSource() {
         CharArrayWriter writer = null;
         try {
              writer = new CharArrayWriter();
              editorPane.getEditorKit().write(writer, editorPane.getDocument(), 0, editorPane.getDocument().getLength());
              return writer.toCharArray();
         } catch (Exception ex) {
              ex.printStackTrace();
         } finally {
              try {
                   writer.close();
              } catch (Exception ioEx) {
                   ioEx.printStackTrace();
         return null;
    }simply setting the contentType of the sourcePane to text/plain and then do a
    sourcePane.setDocument(editorPane.getDocument()) does show the unformatted text of the html without the tags.
    Greetings
    Jeanette

  • How to display SharePoint view column vertically?

    Hi
    I want to display my column header in vertical orientation. I created a page and inserted list view web part and content editor web part in that. I added following code in content editor web part: 
    <style type="text/css">
    .ms-vh2 {
    WRITING-MODE: tb-rl; -moz-transform: rotate(90deg);
    width:10px;
    .ms-viewheadertr {
    HEIGHT: 240px;
    }</style>
    This rotates the column header successfully. But this also changes the orientation of the drop down option list. Is there any way to avoid this??
    One more thing...I don't want to apply this to all the columns. I want it to be applied to only certain columns. Please let me know how this can be achieved?

    Hi Pratima,
    Thanks for posting your issue, Kindly browse below mentioned URL to fix your issue with the given code and steps
    http://sharepoint.stackexchange.com/questions/26700/viewing-a-custom-list-vertically
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • How to display search results in content area

    Hi
                 How can I display search results in the content area as seen in sdn.
    Thanks in advance.

    Hi,
    http://help.sap.com/saphelp_nw70/helpdata/en/cc/f4e77ddef1244380b06fee5f8b892a/frameset.htm you find the relevant guidelines.
    You can filter the PCD object setting the Search Layout Set of your Searc Iview.
    In System Admin > System Configuration > Content Management > User Interface > Settings > Layout Set and duplicate the "SearchResultLayoutSet" layout set.
    Then you have to duplicate its Collection Renderer "StandardSearchResultRenderer".
    In its property "Resource Types to be Filtered" set as value "-http://sap.com/xmlns/pcd/app/iview".
    Then assign the new Collection Renderer to the new Layout Set and that's it!
    Now if yuor Search Iview uses this new Layout Set, when you search a PCD object the iviews will not be shown!
    (or)
    In the entry "Predefined Properties" of the search options set, you will need to enter "resourcetype(value=http://sap.com/xmlns/pcd/app/page/default)" if you want the search to be limited to resources defined as pages. Leave out /default if you dont want the end user to be able to change the filter.
    If you want the parameter reflected in the URL, you can find information about how to do it here: /message/280371#280371 [original link is broken]
    Check and try either ways.
    Regards,
    Ponneswari A.

  • How to display data on BI content using queries?

    Can anyone help me,not sure how to insert values in the queries then displaying it on the BI content.any step by steps instructions for me to follow?Please help,thank you=)

    Dear Koh,
    i was told that query is used to display the data i insert in the BI content(because i'm supposed to use BI content to display these data),in which there are infoareas created inside,so what should i do next?
    You will design Queries to analyze the data available in the InfoProviders ( InfoCube, DSO, Info Object etc.)
    There are Standard BI Content InfoProviders...if u are using them then just creat Query on top of them..If u are using Customized infoProviders ( Created by u ) then create Query on top of urs.
    Open Query Designer..from ur Start Menu > Business Explorer > Query Designer...and follow the above mentiopned process.
    Or
    Use Tcode RRMX to open Query Designer and create a Query.
    Regards,
    Ram.

  • How to display webdynpro view data in PDF format.

    Dear All,
    Greetings!!!
    scenario :
    i am having five tabstrips  in a table , first four for the different kinds of data
    and fifth one is for to display all tabstrips data in a PDF format.
    Kindly let me know how to acheive this .
    is it possible with out ADLC..?  any demo or article is available for similar requirement?
    Thanks in Advance.
    Best Regards,
    Kranthikumar Palle.

    It's better to use the Adobe form to display your WD data. But you can choose Smartform as a PDF doc to display the WD data.
    Check out the thread [Display a Smartform as PDF document in WD ABAP|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0de1eb8-0b98-2910-7996-8a3c2fcf6785] for more details.

  • How to display a view on external window

    Hi folks,
    I have a scenario like to implement the function that Output views should display on external window.
    I couldn't get as per my requirement..
    Please help me on this.
    thanks i nadvance..
    Regads,
    Prashanthi

    Hi,
                U need to the following
               1.Create another window
               2.Create a view in it tat contains Interacive form element.
               3. call this window dynamically thru the first window by creating a context element of IWDWindow  type
    The code may help:
      IWDWindowInfo windowInfo =(IWDWindowInfo) wdComponentAPI.getComponentInfo().findInWindows("SearchEmpwind");
          IWDWindow window = wdThis.wdGetAPI().getComponent().getWindowManager().createWindow(windowInfo, true);
          window.setWindowPosition(WDWindowPos.CENTER);
          window.setWindowSize(400, 250);
          window.open();
          wdContext.currentContextElement().setEmpSearchWind(window);
    Regards
    Ishita

  • How to Display folder structure in Content repository as a tree model

    Hi,
    I have a requirement in which i need to display a hierarchical folder structure in UCM as a hierarchical model in my portal. Which approach should I follow. Expecting suggestions.. I'm using jdeveloper 11.1.1.5.
    Thank you

    Sorry , my earlier reply was a bit hasty...
    So do you need a navigation model based on a UCM content query ?
    Or
    Would the document manager taskflow work ?
    And you don't need any MDS customization (Terribly sorry for my post above). The default behavior of the document manager is to display the folder structure on the left and the contents on the right.
    After you add the DocManager taskflow, go to its properties in composer and make sure the layout is selected as "Explorer". Once you do this, you should notice that a new split pane has appeared, and its collapsed by default. Save the page and open the split pane to see a tree structure of the folder hierarchy in UCM.
    Would this work for you ?
    -Jeevan

Maybe you are looking for