Implementation of Tab Screen in portlets

I want to display two tabs which relate to different information in a portlet.
Ex: Tab A Tab B
When user clicks on Tab A , it displays Animal Information
When user clicks on Tab B , it displays Birds Information
The user is able to see both the tabs on single page. The default information is of Tab A.
This is strictly a Tab Screen Implementation in portal.
Is this possible?
It seems to be achieved through Themes Navigation. As tabs can be created by applying css styles . Dont know not sure!
Any idea?
Thanks in advance.

Hi !
ya these are not tabs but looks like tabs and works same as tabs.
follow these steps.
1: take a "contents" div on mouse over,and click change contents of
this div. such as
<div name="contents" width="300" height="300"> </div>
<a href="javascript:your_method()"><img src="tab_image.jpg"></a>
2: on mouse click in java script change contents of div
document.getElementById(tab_name).innerHTML = "CONTENTS";
3: change image source too in same script which shows selected tab
document.getElementByID(tab_image_name).src = "selected_tab.png";

Similar Messages

  • Creating tabs in a portlet

    Hey, I want to create tabs in my portlet. I've search on the web and it's seem that jsf doesn't provide any component to do this. Any one of you have an idea how I can implement it ?
    I've tried some solution, but their is always a problem using it in a portlet because most of them are design to be display in a regular page.
    Please help me

    Hey, I want to create tabs in my portlet. I've search on the web and it's seem that jsf doesn't provide any component to do this. Any one of you have an idea how I can implement it ?
    I've tried some solution, but their is always a problem using it in a portlet because most of them are design to be display in a regular page.
    Please help me

  • Tab screen

    Hi all,
    I need to create a tab-screen in ME21N transaction for header details. it should have a date field. i.e. the screen should be one among header details tabscrren. how shall i do this. plz help me.
    Thanks and regards,
    subbu.

    Hi,
    U can use the BADI: ME_GUI_PO_CUST and implement this badi using SE19 tcode.
    For better understanding see the docu and default code see the class:CL_EXM_IM_ME_GUI_PO_CUST.
    U need to implement the  'subscribe '  and 'map_dynpro_fields'  methods.
    If it is helpful rewards points
    Regards
    Pratap.M

  • How to clear the values from a Tab Screen.

    Hi,
    I have created Two Tab in my report by using the below mentioned code.
    SELECTION-SCREEN BEGIN OF SCREEN 200 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK BR_ACB WITH FRAME TITLE TEXT-502.
    PARAMETERS: P_VATNUM   TYPE T001-STCEG,
                 P_NAME     TYPE T001-BUTXT,
                 P_STREET   TYPE rfpdo-KQSUSTRAS,
                 P_CITY     TYPE rfpdo-KQSUPADD02,
                 P_CNTRY    TYPE rfpdo-ALLGINLD.
    SELECTION-SCREEN END OF   BLOCK BR_ACB.
    SELECTION-SCREEN END OF SCREEN 200.
    SELECTION-SCREEN BEGIN OF SCREEN 201 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK br4 WITH FRAME TITLE text-503.
    PARAMETERS: P_IDLU    TYPE LU_IDCODE,
                 P_VATNU   TYPE LU_VATNUM,
                 P_DESIG   TYPE LU_DESIGNATION,
                 p_telf  LIKE rfpdo-asldtelf.       "Telefonnummer
    SELECTION-SCREEN END OF BLOCK br4.
    SELECTION-SCREEN END OF SCREEN 201.
    SELECTION-SCREEN BEGIN OF TABBED BLOCK tabb1 FOR 8 LINES.
    SELECTION-SCREEN TAB (15) tabs1 USER-COMMAND ucomm1 DEFAULT SCREEN 200.
    SELECTION-SCREEN TAB (15) tabs2 USER-COMMAND ucomm2 DEFAULT SCREEN 201.
    SELECTION-SCREEN END OF BLOCK tabb1.
    INITIALIZATION.
      tabs1 = text-500.
      tabs2 = text-501.
    Problem I am facing here is when report loads the screen once and I am filling all the valuse in the Tab Screen 200 and 201 and executing the report and when I am reloading any other variant then it is not clearing the valuse present in the Tab Screen 200 and 201.
    Can any buddy help me regarding this to clear the Tab Screen 200 and 201.
    Thanks and best regards,
    Niteesh Rai

    Hi Niteesh,
    I have tested the scenario which you have mentioned above,  Its working fine for me.
    I have filled all the values in screen 200 and 201 as well and saved it as variant Test1, and again
    I have filled all the values in screen 200 and 201 as well and saved it as variant Test2.
    When I am changing the variants from Test1 to Test2 and vice versa.  I displaying their respective data as well.
    Regards,
    Md Ziauddin.

  • How do i set my homepage to show when i click a new tab instead of the about: Tabs screen?

    Is there a way to set the homepage to open when one clicks the plus on the tab bar instead of the about: Tabs screen opening?

    New Tab Homepage extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/777

  • How to add new tab screen in transaction BP

    Hi,
       Please let me know How to add new tab screen in transaction ukm_BP. Is there any SPRO configuration needed for this?
    Thanks,
    Debi.

    Hi,
    You may also try the exits available with the MIGO transaction. To find exits you can use the fillowing code by giving tranasaction code as input.
    REPORT  zrmexitfinder                               .
    TABLES: modsap, modact, tstc.
    PARAMETERS: input1 LIKE tstc-tcode DEFAULT ' ',
                input2 LIKE modsap-typ DEFAULT ' '.
    DATA: search1(6),
          search2(3),
          search3 LIKE modsap-member.
    DATA : first_row VALUE 'Y'.
    CONCATENATE: '%' input1 '%' INTO search1,
    '%' input2 INTO search2.
    SELECT * FROM tstc WHERE tcode LIKE search1.
      first_row = 'Y'.
      CHECK tstc-pgmna NE space.
      CONCATENATE '%' tstc-pgmna '%' INTO search3.
      SELECT * FROM modsap WHERE typ LIKE search2
      AND member LIKE search3.
        SELECT SINGLE * FROM modact WHERE member = modsap-name.
        IF first_row EQ 'Y'.
          WRITE: /0 tstc-tcode, 6 tstc-pgmna, 16 modsap-name, 32 modsap-typ,
                 45 modsap-member, 70 modact-name.
          first_row = 'N'.
        ELSE.
          WRITE: /16 modsap-name, 32 modsap-typ, 45 modsap-member, 70 modact-name.
        ENDIF.
        CLEAR : modsap, modact.
      ENDSELECT.
      IF sy-subrc NE 0.
        WRITE : /0 tstc-tcode, 6 tstc-pgmna, 30 'No exits found'.
      ENDIF.
      CLEAR tstc.
    ENDSELECT.
    END-OF-SELECTION.
      CLEAR: search1, search2, search3.
    Regards,
    Renjith Michael.

  • J1IEX Item Level data Duty values Tab Screen

    Hallow Experts,
    In J1IEX - Capture / Post / Cancel Excise invoices transaction > Item Level data > duty values tab screen,
    System displays following information
    Excise duty Base Amount – Basic material Amount on which excise tax amount is calculated. (Pls. correct if I am wrong)
    Then information displays individually for BED, AED, NCCD, SED, ECESS This information is displayed in following four rows.
    Total Duty
    Credit available
    Credit availed
    Credit due
    Inventorized duties
    I want to know the description of above mentioned entries (e.g. – what is Credit available? What is credit availed? And what is credit due?) And at what level, which row entry is displayed, that mean while capturing excise invoice entry will be displayed in which row? After posting excise invoice entry will be displayed in which row?
    And after posting vendor invoice entry will be displayed in which row?
    Also please explain - What is Inventorized duty? And when it is to be displayed?
    Thanks in advance!!!!

    Hallow Experts,
    In J1IEX - Capture / Post / Cancel Excise invoices transaction > Item Level data > duty values tab screen,
    System displays following information
    Excise duty Base Amount – Basic material Amount on which excise tax amount is calculated. (Pls. correct if I am wrong)
    Then information displays individually for BED, AED, NCCD, SED, ECESS This information is displayed in following four rows.
    Total Duty
    Credit available
    Credit availed
    Credit due
    Inventorized duties
    I want to know the description of above mentioned entries (e.g. – what is Credit available? What is credit availed? And what is credit due?) And at what level, which row entry is displayed, that mean while capturing excise invoice entry will be displayed in which row? After posting excise invoice entry will be displayed in which row?
    And after posting vendor invoice entry will be displayed in which row?
    Also please explain - What is Inventorized duty? And when it is to be displayed?
    Thanks in advance!!!!

  • How to Implement Auto tabbing feature in a table region???

    Hi All,
    I am trying to implement auto tabbing feature in one of my OAF page using java script which is actually working for individual items but
    while implementing the same for a table bean its not working. is there any way to implement this feature in OAF without using java script?
    if not could anyone give some rough java script for this feature? please this is urgent..
    Thanks in advance
    Sree

    Sree,
    check this if it helps ;
    https://forums.oracle.com/thread/963732
    Not sure we can set Focus in : PFR ,  I hope it is possible in only PR.
    Regards
    Sridhar

  • Implement soft tab in JTextArea?

    Hi
    Does anyone know how I can implement soft tab in
    JTextArea?
    Or put it this way, override default tabbing behaviour
    and inserts string " " whenever user press tab.
    Thanks in advance
    Okidoki

    For backspace you can do the same thing, removing only the previous character(s).
    class MyTabKey extends KeyAdapter {
         public void keyPressed(KeyEvent e) {
              int keyCode = e.getKeyCode();
              if (keyCode == KeyEvent.VK_TAB ) {
                   e.consume();
                   JTextArea textArea = (JTextArea)e.getSource();
                   int tabSize = textArea.getTabSize();
                   StringBuffer buffer = new StringBuffer();
                   for ( int i = 0; i < tabSize; i++ )
                   buffer.append(" ");
                   textArea.insert( buffer.toString(), textArea.getCaretPosition() );
              if (keyCode == KeyEvent.VK_BACK_SPACE) {
                   e.consume();
                   JTextArea textArea = (JTextArea)e.getSource();
                   int tabSize = textArea.getTabSize();
                   int end  = textArea.getCaretPosition()-1;
                   int start  = end - tabSize;
                   textArea.replaceRange("",  start, end);
    }Hope this helps,
    Denis

  • Hi Any body guide me for Advance pricing setups and implementation manual with screen shots

    Hi Any body guide me for Advance pricing setups and implementation manual with screen shots
    Regards
    Guru

    Hi,
    Please <b>read the rules of engagement</b> before posting.
    <b>- Do not ask to send you an email.</b>
    The question you ask and the solution to it is often also interesting for other users of the community. If you ask somebody to send you the answer per email, you deprive others of also learning to know the answer. Therefore any requests for sending material or answers to an email address will be modified by the forum moderators.

  • Adding Tab screen to MIGO_TR transaction

    Hi Friends,
    I have requirement like to create a tab screen in MIGO_TR transaction with a input field using BADI  * u201Cmb_migo_badi"*
    can anyone help how to achieve this. Is it possible to create a tab screen in a standard sap program using BADI.
    Please help to solve the problem.
    Thanks
    Edited by: Gayathri Sundaresan on Sep 23, 2009 12:46 PM

    Hi,
    In User Exit Function module..
    write call screen statement..
    Regards,
    Omkar.

  • SUbmit program where the selection screen called has tab screens

    Hello folks,
                    Anyone ever used the submit command where the program called has tab screens on its intial screen? I would like to do this and do not want to have the selection screen display, so I am hoping there is some way to inform the submit command that I have multiple tabs to fill selection criteia on.
    Cheers,
    Ross Goodman

    Hi,
    Try using
    Submit prog_name  USING SELECTION-SCREEN dynnr
    or
    SUBMIT prog_name USING SELECTION-SET  'Variant'
    I guess this should meet your requirement.
    however I have not tried it for Selection screen with tabs.
    Let me know how it goes...!!1
    Regards,
    Nikhil

  • Additional Tab Screen EXIT Name for VA42, VA43

    Hi All,
    Anyone can suggest me Additional tab screen exit, so i can display some fields in particular tab. It's Urgent.
    Thanks
    Amit

    Modification is required.  You should consider looking at these Notes:
    [Note 386694|https://service.sap.com/sap/support/notes/386694]
    [Note 209278|https://service.sap.com/sap/support/notes/209278]
    [Note 398418|https://service.sap.com/sap/support/notes/398418]
    [Note 302497|https://service.sap.com/sap/support/notes/302497]
    [Note 170183|https://service.sap.com/sap/support/notes/170183]
    Regards,
    Jamie

  • Hp 7 voice tab screen broken unfortunately. tab is under warrenty.. how to replace the screen

    hp 7 voice tab screen broken unfortunately. tab is under warrenty.. how to replace the screen 

    Hp india have bad service ever. I hv order three notebooks ' hp 15-ac026tx' before five days for firm. Distributior open the boxes. But at the time of installation not single driver supporting to 2gb graphics card. As distributor made with Hp support they replied the engineer will come to ur place soon. But still no one has come. And im going to cancel this order and will prefer other compony.

  • Problem in saving mkpf through migo additional tab screen

    Hi all,
    I am facing problem while saving mkpf table through some zfields added in extra tab at header level. i have append structue in mkpf. and implement screen through mb_migo_badi. i have searched a lot on sdn. but nothing is available regarding updation of mkpf. all says that we have saved data in ztable. cann't we save in mkpf table . if yes then what i have to do for it..

    Hi,
    You can find data in these tables when quality checking is done, these needs to be set by functional consultants.
    Chekc your process if any Inspection lots size is defined for each each goods movement at all, if not these tables will not be populated at all.
    Regds,
    Mano Sri

Maybe you are looking for

  • Why does apple refuse to support flash media? Is it a security issue or politics?

    Constantly I come accross websites that require a flash player and now that we are in an ios7 enviroment you'd think this issue would be resolved. I mean why does my OSX in my mac have no problems but my iphone/ipad forget it. Will Apple ever resolve

  • How can I redownload purchase from iBooks because they are no longer able to download them?!

    It keeps saying I have insuffienct store credit even though I purchased the book. It's also confusing because it was only after the iOS update. Which was a few hours ago.

  • How to resend data if WS down? (file - PI - WS)

    Hi all, I have following scenario: File -> PI -> Oracle Webservice My doubt is how to control the error when the call to WS fails? (bc WS is down or whatever..) Sender CC is setted up to delete file when process finishes. but what happens when data c

  • Replace section offset problems

    Hello all, I have some problems with: REPLACE SECTION OFFSET pos OF init_source WITH text. So: when i use it in the er5 system it works just perfectly. but when i use it in the sc1 system, when i check the source code i get the error: section offset

  • Lost my lists after upgrading itunes10.6

    HI there! I'm on my way to get insane! I've lost all my files after the last update of itunes.The message is that my itunes library is not compatible with the new version of itunes 10.6. Since I've made this upgrade,I can't recover my ancient files!