How to display data in the same tab components ?

Hi,
I have a tabbed pane and contains 3 tabs. I have entered some value in the text field and clicked the enter button in the 3rd tab.This enter button contains some validation code and after validation it will display some data in the text area in the same tab. In the mean time , i am navigating to another tab eg first tab. But my data is displayed in the second tab instead of 3rd tab.
can anyone help me to solve this ?
bye for now
sat

But my data is displayed in the second tab instead of 3rd tab.
can anyone help me to solve this ?Then you are updating the component on the second tab. Fix your code.

Similar Messages

  • How to display data with the same text and key in the drop down list?

    Hi All,
    Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    REPORT ZTESTING.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST,
          c(20) type c.
    *      c = 'select any'.
    data:begin of itab occurs 0,
          kunnr like kna1-kunnr,
          name1 like kna1-name1,
         end of itab.
    data:begin of jtab occurs 0,
          kunnr like kna1-kunnr,
          land1 like kna1-land1,
         end of jtab.
    PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
                              default 'SELECT'.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'p_list'.
    VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    APPEND VALUE TO LIST.
    VALUE-KEY = '2'.
    VALUE-TEXT = 'Country'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    start-of-selection.
    select kunnr name1 up to 20 rows from kna1 into table itab.
    select kunnr land1 up to 20 rows from kna1 into table jtab.
    case p_list.
    when '1'.
    loop at itab.
    write:/ itab-kunnr,itab-name1.
    endloop.
    when '2'.
    loop at jtab.
    write:/ jtab-kunnr,jtab-land1.
    endloop.
    endcase.
    <Added code tags>
    Moderator Message: Please use the "code" tags to format your code snippet.
    Edited by: Suhas Saha on Nov 17, 2011 11:19 AM

    shawnTan wrote:
    Hi All,
    >
    > Would like so to seek for you advice on the above mention topic. How to display the data with the same text and key using function module 'VRM_SET_VALUES'. From my testing by writing a program, this function module will only show the text and key if both have different data. Please find the coding as below. Is the normal behaviour of this function module? How to overcome this problem? Thanks in advance.
    >
    >
    REPORT ZTESTING.
    >
    > TYPE-POOLS: VRM.
    >
    > DATA: NAME  TYPE VRM_ID,
    >       LIST  TYPE VRM_VALUES,
    >       VALUE LIKE LINE OF LIST,
    >       c(20) type c.
    >
    > *      c = 'select any'.
    >
    > data:begin of itab occurs 0,
    >       kunnr like kna1-kunnr,
    >       name1 like kna1-name1,
    >      end of itab.
    >
    > data:begin of jtab occurs 0,
    >       kunnr like kna1-kunnr,
    >       land1 like kna1-land1,
    >      end of jtab.
    >
    > PARAMETERS: p_list(20) AS LISTBOX VISIBLE LENGTH 20
    >                           default 'SELECT'.
    >
    > AT SELECTION-SCREEN OUTPUT.
    >
    > NAME = 'p_list'.
    >
    > VALUE-KEY = 'Name'.     "---> Data for key is the same with text
    > VALUE-TEXT = 'Name'.    "--> Data for text is the same with key
    > APPEND VALUE TO LIST.
    >
    > VALUE-KEY = '2'.
    > VALUE-TEXT = 'Country'.
    > APPEND VALUE TO LIST.
    >
    > CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    >
    > start-of-selection.
    > select kunnr name1 up to 20 rows from kna1 into table itab.
    > select kunnr land1 up to 20 rows from kna1 into table jtab.
    >
    > case p_list.
    > when '1'.
    > loop at itab.
    > write:/ itab-kunnr,itab-name1.
    > endloop.
    >
    > when '2'.
    > loop at jtab.
    > write:/ jtab-kunnr,jtab-land1.
    > endloop.
    > endcase.
    >
    > <Added code tags>
    >
    > Moderator Message: Please use the "code" tags to format your code snippet.
    >
    > Edited by: Suhas Saha on Nov 17, 2011 11:19 AM
    This surely seems to be a bug to me(if not by design),  did you check for any SAP notes? Perhaps a front end trace can help(Note 407743) !
    -Rajesh.

  • How to display data in the same row

    Hi i have a data like this
    sales_order_no shipped_amount aggregate_source_order_num
    1 10000 sao/1
    1 10000 sao/2
    2 10000 sao/4
    2 10000 sao/5
    2 10000 sao/6
    now i want to disply like this:
    sales_order_no shipped_amount aggregate_source_order_num
    1 10000 sao/1,sao/2
    2 10000 sao/4,sao/5,sao/6
    can anybody help me how to do it??
    i really appreciate your help.

    or
    SQL> set linesize 120;
    SQL> with sales_order as
      2   (select 1 sales_order_no, 10000 shipped_amount, 'sao/1' aggregate_source_order_num from dual union all
      3    select 1 sales_order_no, 10000 shipped_amount, 'sao/2' aggregate_source_order_num from dual union all
      4    select 2 sales_order_no, 10000 shipped_amount, 'sao/4' aggregate_source_order_num from dual union all
      5    select 2 sales_order_no, 10000 shipped_amount, 'sao/5' aggregate_source_order_num from dual union all
      6    select 2 sales_order_no, 10000 shipped_amount, 'sao/6' aggregate_source_order_num from dual)
      7  select so.sales_order_no,
      8         so.shipped_amount,
      9         substr(max(substr(sys_connect_by_path(so.aggregate_source_order_num,','),2)),1,60) aggregate_source_order_num
    10    from (select sales_order_no,
    11                 shipped_amount,
    12                 aggregate_source_order_num,
    13                 row_number() over (partition by sales_order_no, shipped_amount
    14                                    order by sales_order_no, shipped_amount) rn
    15            from sales_order) so
    16  start with so.rn = 1
    17  connect by so.rn = prior so.rn + 1
    18  and prior so.sales_order_no = so.sales_order_no
    19  group by so.sales_order_no,
    20           so.shipped_amount;
    SALES_ORDER_NO SHIPPED_AMOUNT AGGREGATE_SOURCE_ORDER_NUM
                 1          10000 sao/1,sao/2
                 2          10000 sao/4,sao/5,sao/6
    SQL>

  • How to populate data in the same table based on different links/buttons

    Hi
    I'm using jdeveloper 11.1.4. I have a use case in which i need to populate data in the same table based on click of different links.
    Can anyone please suggest how can this be achieved.
    Thanks

    I have a use case in which i need to populate data in the same table based on click of different linksDo you mean that you need to edit existing rows ?
    What format do you have the date in - table / form ?

  • How to retirve data in the same sequence as it is entered by user.

    Dear All,
    Can anybody please help me to resolve the below oaf issue.
    Issue : In one of the column in advanced table is OAMessageTextInputBean. User will enter data as
    1) color
    2) size
    3) name.
    I set the properties of Text inputBean Heigth and length. so when ever user enter more data automatically scrollbar is getting to scroll up and down. So far ok. But,
    When i want to represent this data in view mode, i am using OAMessageStyledText bean. But i data enter abouve is getting in the same line as
    1) color2)size3)name.
    I want to show the data entered by user in textInput same in message Styled Text, basically sequence. So, Could anybody help me how to achieve this requirement?
    Thanks in advance,
    Hasine K.

    hi,
    in advance table create a item rawtext and add HTML tag and use <br> tag for breaking the line.........for more go to OAF Userguide

  • How to display result in the same portlet

    Hi,
    I've a dynamic page with some links in there. I want to display the results of the links in the same portlet. Can anyone please let me know how can I achieve this?
    Thanks in advance.
    Regards,
    Jatinder

    You can check in portalstudio.
    Pls see Re: probem with databse connection using OCI driver

  • How to merge dates in the same year in one column in rdlc report ?

    dears 
    I need to create like this report but I cannot merge the transactions in the days in one column return to the month as in the table
    Delivery Schedule
    2010
    2011
    2012
    2013
    2014
    Model / Month
    Total
    Total
    Total
    Total
    Jan
    Feb
    March
    April
    May
    June
    July
    Aug
    Sep
    Oct
    Nov
    Dec
    Total
    item1
    0
    item2
    11
    1
    1
    2
    item3
    3
    1
    1
    2
    item4
    14
    1
    1
    1
    1
    1
    1
    1
    7
    item5
    10
    2
    2
    1
    1
    1
    4
    10
    1
    1
    1
    1
    25
    item6
    0
    item7
    7
    1
    1
    2
    1
    1
    1
    7
    item8
    19
    4
    4
    5
    11
    10
    4
    7
    13
    2
    5
    3
    68
    item9
    1
    2
    1
    1
    5
    item10
    15
    3
    5
    5
    5
    8
    5
    3
    7
    5
    8
    1
    3
    58
    item11
    63
    15
    8
    4
    12
    6
    11
    8
    7
    24
    11
    6
    112
    item12
    3
    1
    1
    1
    1
    1
    2
    1
    2
    10
    item13
    32
    3
    7
    7
    7
    8
    5
    5
    10
    2
    54
    item14
    16
    3
    2
    5
    7
    9
    8
    6
    3
    2
    45
    Total Delivery
    0
    0
    0
    193
    29
    29
    21
    26
    51
    36
    40
    40
    44
    38
    25
    16
    395

    Hi Eng ,
    Based on my understanding, the date field exists in the database, then you want to display the corresponding year and month within the report and perform sum total,right?
    In your scenario, since you haven’t provided the sample data, we create the database with some data. Then design the report with the structure you provided. Please refer to our test steps and results:
    1. Create the database with the query below:
    create table test1
    [item] nvarchar(50),
    [date] date,
    value int)
    insert into test1 values
    ('item1','2014/02/08',10),
    ('item2','2014/02/22',56),
    ('item3','2014/07/18',45),
    ('item3','2014/07/18',40),
    ('item4','2015/02/26',36),
    ('item5','2015/02/12',79)
    2. Design the report like below:
    3. Preview the report.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • How to display data on the bases of master plan in Quality Results

    Dear,
    I have been woking on quality results to insert data through interface in child view(Q_COTTON_TEST_CHILD_IV) which is auto generated view as built-in functionality. Master quality plan has been inserted from fron-end while child data inserted throught interface & fron end as well. In quality module, when select child plan and call detail but don't appeare data which inserted through interface table while manual entry of chile record is being displayed,
    Still, i have coufused that how can we make relation between parent & chile record while inserting data through interface table.
    Kindly please advice to get this.
    thnks...

    Dear,
    I have been woking on quality results to insert data through interface in child view(Q_COTTON_TEST_CHILD_IV) which is auto generated view as built-in functionality. Master quality plan has been inserted from fron-end while child data inserted throught interface & fron end as well. In quality module, when select child plan and call detail but don't appeare data which inserted through interface table while manual entry of chile record is being displayed,
    Still, i have coufused that how can we make relation between parent & chile record while inserting data through interface table.
    Kindly please advice to get this.
    thnks...

  • How to display data depend upon ListBox value?

    Hi Experts and Particularly Hema,
    As I asked before how to display data in the ListBox, I got an very good response from you all(particularly Hema) .
    Now what my doubt is asked with sample scenario below:
    In Screen Painter -
    Two fields namely : One List Box and other is I/O used only for displaying purpose i.e., only for output, not for input purpose.
    List Box is filled by primary key field(C1) value from one table(T1) when the screen load.(i.e., such code is written in PBO).
    Now what I need is :
    If the user select any one value in the List Box then it automatically display the corresponding C2 value from T1 in the I/O field.
    I think you may all understand what I am trying to ask.Please let me know the solution.
    Thanks in advance,
    Regards,
    Raghu

    Simply attached a function code for the listbox... when the user changes the value, you will be able to pick this up in the PAI and loop back to the PBO and redisplay the corresponding output field.
    Jonathan

  • How to add new data entry and display old data in the same screen in SM30?

    Hi, Experts:
    We need to use SM30 to maintain a table entry. When I click the button of "New Entries", the table screen becomes blank. I can only add new data but not be able to see the old data existing in the table.
    How can I have the new line available for me to add new data at the same time see the data currently existing in the table?
    Thanks,
    Jenny

    Hi, thanks for the reply!
    Just to follow up for what we did to disable the delete function for maintaining table records. We hided the Delete button by adding a "MODULE disable_delete" code in Screen Painter. So now only adding records to the table is allowed.
    Thanks,
    Jenny

  • How to display more than one data on the same page?

    Hello all,
    I have a question that is if I want to choose more one data on the same page and the data is selected from the same column.
    I.E I want to tick more than one boxes in the page but the data is selected from the same column.

    Select all the item to burn... right click...
    Or
    Place all items into a folder and burn the folder to the disc.
    Or
    Make a Burn Folder in the Finder (place items into the folder) and burn from there to a disc.

  • How to put information in the different tabs of same excel sheet

    Hi all,
    How to download information in the different tabs of same excel sheet.
    EG data.xls is the excel sheet name
    and sheet1 , sheet2 , sheet3 are different tabs of it.
    Is there any standad function module for this .
    If somebody is having idea abt it , Please guide.
    Regards,
    Shikha Jain

    Hi Shikha,
    You can do this by using the DOI interface for spreadsheets. Take a look at:
    http://help.sap.com/saphelp_47x200/helpdata/en/e9/0be83b408e11d1893b0000e8323c4f/frameset.htm
    Regards,
    John.

  • Firefox opens Google link in the same tab (the way I like it), but I can't figure how to keep that and still have YouTube windows pop-up in a new tab. Help?

    Hello, here is my problem: reading your mozilla support, I learned how to make Firefox open links in Google results in the same tab, that's the way I like it, but I still like to have my YouTube windows pop-up in a new tab (I participate in one forum, when I come to the YouTube window in some topic, I usually click on a small right-down button "watch on YouTube", and that always opens video it in a new tab; all until latest few updates of Firefox). Can this issue be corrected in about:config feature, and how? Sorry if my English isn't so glorious.
    Thanks a lot for answering, and best regards...

    Hello. I have just tried this add-on you suggested, and no change.
    And no, there was no some other add-on before, not that I know about it. Mainly, I need this option while I'm on a forum (IP board powered), it is not really something so important, but it's neat function for me.
    So, to be more detailed - I read a certain topic on this forum, and some of the posts from other members contain YouTube screens (looking same as on the original YouTube page), showing the frame of a video.
    In earlier versions of Firefox, I used to click on a small YouTube logo button (right side, down, between "watch on full screen" and "watch later" buttons). Clicking on this button automatically opened new tab, leaving forum tab as it is, and in new tab original YouTube page, with that certain video. In the same time, in Google search page, when clicking on a link, all links were opening in the same tab.
    Now, after some of the latest updates of Firefox, I noticed that some default settings were changed - in Google search, clicking on a link always opens a link in a new tab. I have found out here on your forum how to set this back in about:config feature, and now I have again that links in a Google results page are opened in the same tab (that's the way I like it).
    But YouTube screens on this forum are now also being opened in the same tab, and that is what I don't like, and trying to change back.
    So, what I need: all links to open in the same tab after clicking, as I have it now, and YouTube screens (e. g. on this forum) to be opened in a new tab (by clicking on a small YouTube logo ("watch this video on YouTube").
    Pedantic I am, I know that, and I know that this may look silly to some people, but if there is a way to do something, please tell me.
    Thanks for answering, and best regards.
    P.S.
    Is it possible that forum updates changed my setting, and not the Firefox? Thanks again...

  • In FF 34.0.5 I use to be able to click on a link within an e-mail and the link would open in a new tab; it now opens in the same tab; how can i change it back?

    I'm using FF 34.0.5 (I like it). I use to be able to right click on a link, within an e-mail, and the link would open in a new tab. Now when I click on the link it opens in the same tab replacing my e-mail.
    Example - a friend sends me an e-mail containing a link to a web site he thinks I'd like. I click on the link and go to the web site and then go back to the e-mail tab and reply to him. Now, when clicking that link, my e-mail disappears and is replaced by the new site.
    How can I fix this? When this happened once before I was told to change the 'value' for a specific 'preference name' through the about:config page.
    Can anyone help jog my memory?
    Thanks!

    Is this about clicking a link in an external program?
    You can check this pref on the about:config page for external links.
    * browser.link.open_newwindow.override.external (-1)
    If this pref has the default value -1 then browser.link.open_newwindow is used.
    * http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • Does anyone know how to display (in LabVIEW) the memory use during execution of an image and data acquisition VI to predict when it is time to cease the acquisition to prevent the program crashing?

    Does anyone know how to display (in LabVIEW) the memory use during execution of an image and data acquisition VI to predict when it is time to cease the acquisition to prevent the program crashing?
    I am acquiring images and data to a buffer on the edge of the while loop, and am finding that the crashing of the program is unpredictable, but almost always due to a memory saturation when the buffers gets too big.
    I have attached the VI.
    Thanks for the help
    Attachments:
    new_control_and_acquisition_program.vi ‏946 KB

    Take a look at this document that discusses how to monitor IMAQ memory usage:
    http://digital.ni.com/public.nsf/websearch/8C6E405861C60DE786256DB400755957
    Hope this helps -
    Julie

Maybe you are looking for

  • Change NLS_LENGTH_SEMANTICS to CHAR

    I need to change the length semantics of all the tables in an existing application schema from BYTE to CHAR. I have explored two methods 1- Datapump export/import Due to large tables with numerous CLOB columns, the performance of the export/import is

  • Problems in adapter monitoring

    Hi all, We have a problem when we try to see the list of adapters in the adapter monitoring. It is showing only JPR adapter and the names of all the other adapters are missing. But we were getting the names of all adapters when we are trying to confi

  • I have looked at the service manual to be able to access the App store and Itunes, to no avail, still not successful.

    I have viewed the download sevice manual to be able to acess itunes and the apps store,and applied all settings which are recommended, to no avil my iphone still prompts me to " Cannot connect to iTunes Store or Apps store, does anyone have any step

  • Automatic ordering of tracks

    My Music folder contains artist/album folders that contain track files in their original album order. When adding to iTunes the track number seems to be stripped fom the title and the files are added to the library in alphabetical order. This doesn't

  • Cut-Off

    When some one callls and your on a dial-up connection, does the iBook have software that has a little pop up saying incoming call and gives u a choice to bypass the call or disconnect internet and answer the phone? If you can understan what im saying