Table Popin - Text to be displayed after collapse node in the same column

Hi Experts,
I have a requirement, where I have a parent table and one column of it is associated to Table popin. Within the popin, i display another child table with two columns.. one is checkbox and another is text. When i select some checkboxes in the child table and collapse the popin node, the selected text values should be concatenated and displayed in the parent table popin column.
Is it possible to dislay text in the same popin column of the table ? If so, please provide me the steps or code snaps on how to achieve it.
Thanks & Regards,
Gaurav.

Hi Gaurav,
If you can able to catch the event of the checkbox, then write the code inside that event for concatenation of the selected values.
Else you can call another view with all options and checkbox. After selecting the checkbox and clicking OK or SELECT options you can pass the value back to the field.(This is a suggestion).
Thanks & Regards,
Raghuram K.R.

Similar Messages

  • How to display 2 lines in the same column header of jTable?

    Please could you help me to display 2 character lines in the same column header of a JTable?
    And how to make a fusion between to cells?
    Thank you very much

    In Swing, most components will accept text in the html format
    http://java.sun.com/docs/books/tutorial/uiswing/components/html.html
    You can then use <br> tags to make your header text multiline

  • Table  Interface : Merge cells in the same column

    I want to use the Table Interface to accomplish this...
    I need to merge cells that are to the top/bottom of eachother. So, the 2 cells have the same InfoObject. They are 2 different values and i want them to appear in the same cell... for example..
    A regular table returns:
    STATUS
    ¯¯¯¯¯¯¯¯¯
    OPEN
    CLOSED
    I want it to be displayed like:
    STATUS
    ¯¯¯¯¯¯¯¯¯
    OPEN
    CLOSED
    The vertical lines on the right should be lined up but i cant get it to format. Anyway, how can this be accomplished?
    Thanks.

    We have data object which is a very long text.  Much longer than the 60 char limit.  So, we're thinking of breaking the text up into 60 char chunks.  And then put each chuck beneath one another.  But we need the texts to look like they're all in the same cell.
    I first thought of manipulating the borders using CSS styles.  But I couln't figure out how to tell if I've reached the last line of the text.  (I was trying to use I_Y to navigate through the column.)
    Second thought, merge the cells.  This would be more efficient.
    Thanks.

  • Display discounts and surcharges  for the same vbeln in the same row

    hi experts
    i have to display one discount and surcharges for one vbeln, posnr and one material,
    i have used konv-kschl for condition type and konv-kwert for condition value.
    in my output the conditions what i have given for discounts and surcharges its matching and displaying in different lines for the same vbeln and posnr. usually i should get one line of outputfor one vbeln, but iam getting 3 times repeated
    (one without discounts, surcharges,
    second : same vblen, posnr with discounts,
    third : same vblen, posnr for surcharges )
      please modify the internal table and  conditions below what i have given in my object.
    DATA : BEGIN OF it_konv OCCURS 0,
    knumv LIKE konv-knumv, "Number of the document condition
    kschl LIKE konv-kschl, "Condition type
    kwert LIKE konv-kwert, "Condition value
    kbetr LIKE konv-kbetr,
    kposn LIKE konv-kposn,
    discounts LIKE konv-kwert,
    surcharges LIKE konv-kwert,
    hkunnr LIKE knvh-hkunnr,
    kunnr LIKE knvh-kunnr,
    END OF it_konv.
    LOOP AT it_konv INTO wa_konv.
    CASE wa_konv-kschl.
    WHEN 'ZD01' OR 'ZD02' OR 'ZD03'.
    wa_konv-discounts = wa_konv-kwert.
    WHEN 'ZEXP' OR 'ZEXW' OR 'ZCAF' OR 'ZCAP' OR 'ZCAQ'
    OR 'ZS01' OR 'ZS02' OR 'ZS03'.
    wa_konv-surcharges = wa_konv-kwert.
    WHEN OTHERS.
    DELETE it_konv WHERE kschl = wa_konv-kschl.
    ENDCASE.
    MODIFY it_konv FROM wa_konv TRANSPORTING discounts surcharges.
    CLEAR wa_konv.
    REFRESH wa_konv.
    ENDLOOP.
    As per one of the abap expert who responded to my query is the following.
    DATA : BEGIN OF it_konv OCCURS 0,
    knumv LIKE konv-knumv, "Number of the document condition
    kschl LIKE konv-kschl, "Condition type
    kwert LIKE konv-kwert, "Condition value
    kbetr LIKE konv-kbetr,
    kposn LIKE konv-kposn,
    discounts LIKE konv-kwert,
    surcharges LIKE konv-kwert,
    hkunnr LIKE knvh-hkunnr,
    kunnr LIKE knvh-kunnr,
    END OF it_konv.
    DATA : BEGIN OF wa_konv OCCURS 0,
    kposn LIKE konv-kposn,
    discounts LIKE konv-kwert,
    surcharges LIKE konv-kwert,
    hkunnr LIKE knvh-hkunnr,
    kunnr LIKE knvh-kunnr,
    END OF wa_konv.
    move '1' to it_konv-knumv.
    move 'ZD01' to it_konv-kschl.
    move '1200' to it_konv-kwert.
    move '0010' to it_konv-kposn.
    append it_konv.
    move '2' to it_konv-knumv.
    move 'ZEXP' to it_konv-kschl.
    move '1300' to it_konv-kwert.
    move '0010' to it_konv-kposn.
    append it_konv.
    move '3' to it_konv-knumv.
    move 'ZEXP' to it_konv-kschl.
    move '1400' to it_konv-kwert.
    move '0010' to it_konv-kposn.
    append it_konv.
    LOOP AT it_konv.
    MOVE-CORRESPONDING it_konv to wa_konv.
    CASE IT_konv-kschl.
    WHEN 'ZD01' OR 'ZD02' OR 'ZD03'.
    wa_konv-discounts = IT_konv-kwert.
    WHEN 'ZEXP' OR 'ZEXW' OR 'ZCAF' OR 'ZCAP' OR 'ZCAQ'
    OR 'ZS01' OR 'ZS02' OR 'ZS03'.
    wa_konv-surcharges = IT_konv-kwert.
    ENDCASE.
    COLLECT WA_KONV.
    CLEAR wa_konv.
    ENDLOOP.
    But to try according to the above, i dont have the values for kwert, i know only the condition type (KSCHL). based on this how can i solve my problem
    please clarify
    thanks in advance

    Refer to the suggestion given by Naimesh here Can we modify a sub-total in ALV making use of function GET_GLOBALS_FROM_SLVC_FULLSCR and the method GET_SUBTOTALS. You can see the parameter ep_collect01 refered in case of subtotals. Can you please check ep_collect00 for grand total in your case.
    As said about EP_COLLECT00,here goes a classic example Modify grand total in ALV GRID
    BR
    Keshav
    Edited by: Keshav.T on Sep 21, 2011 9:39 AM

  • I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired

    I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired and i also reset network setting but nothing gonna be worked

    Sounds like the device was dropped at some point and damaged as a result.
    Take it to Apple for evaluation and a replacement.

  • How does iCal, or Calendar, order the display of multiple events for the same time?

    I can't for the life of me figure out how iCal orders the display of multiple items at the same time.  Does anyone have a clue?  It's not alphabetical.  It's not according the the order of the calendars in the left pane.  Is it just random?  Any help would be greatly appreciated.

    In the focus lost eventhandling start a thread which does
    the actual handling.
    the new thread waits for a little time (0.1 seconds)
    the click event of the button checks for a thread like the one above and tells it not to execute
    This way you execute the for the lost focus event only if
    the ok button isn't clicked in the same process ... not
    realy good, because it kind of relies on the ordering of threads ... but maybe it still works for you?

  • Is there a way to display multiple iPad screens on the same television screen simultaneously?

    Is there a way to display multiple iPad screens on the same television set concurrently?  The idea is to let multiple individuals do something on their iPads in a timed window and then display the results of each iPad users answer concurrently on te same television.

    Devices that display two, four, or even eight video signals on a single monitor are available in the video security market. Maybe you could find something there that would do what you want. A quick search on "security tv screen multiplexor" (without the quotes) yielded millions of pages; several on the first page looked promising if you don't mind composite video.

  • IPhone music will not respond to Play button after being paused. The same music is on my iPad and MacBook Pro without problems. Any suggestions about cause and solution.

    iPhone music will not respond to Play button after being paused.
    The same music is on my iPad and MacBook Pro without problems. Any suggestions about cause and solution.

    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • HT201229 I get my texts on my iPhone5.  I was getting the same texts on my iPad2.  Now I am not.  In detail for an old man, how do I get them synced up again?

    I receive my texts on my iPhone5.  I was getting the same texts, at the same time, on my iPad2; but now I am not.  In detail, for an old man please, how can I get them synced up again?

    The iPad is not a cellular telephone.  So "texts" that are sent using the cellular network's SMS text message system cannot go to or from your iPad.
    The only text-like messages your iPad can handle are iMessages.  iMessages can only be sent to or from Apple devices and only while both are either on WiFi or a cellular network that supports iMessaging (not all do).

  • I have tried to format my HDD from MS-DOS fat to MAC OS Extended (jurnaled) but after formating turns to the same MS-DOS FAT format why?

    I have tried to format my HDD from MS-DOS fat to MAC OS Extended via disk utility but after formating turns to the same MS-DOS FAT format why?my current OS is 10.5

    You will need to perform an Internet Recovery or be able to boot the computer using a Snow Leopard 10.6.3 or later DVD. For the former:
    Restart the computer and at the chime press and hold down the COMMAND-OPTION-R keys until you see a globe appear in the gray startup screen. This may take a little while so be patient. You need to have an internet connection for this to work - preferably using Ethernet.
    After a fairly long period of time - 15 minutes or more - the recovery screen will appear. Select Disk Utility from the main menu, and click on the Continue button.
    1. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    2. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    3. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    4. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    5. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    6. After formatting is done quit DU and return to the main menu. Select Install OS X from the main menu and click on the Continue button. Follow the onscreen instructions to install OS X onto the internal drive.

  • Does After Effects CC have the same stereoscopic 3D rig capabilities as CS5?

    I am wondering if After Effects CC has the same stereo rig capabilities as CS5 and CS6?
    Thanks for your time and consideration.

    Yes.
    If you have questions like this, just look through the lists of changes for each version. We list every added, changed, and removed feature:
    http://adobe.ly/DVA_updates

  • HT201263 I completed the steps outlined above for recovery.  after completion I see the same screen showing the "connect to iTunes". step 4.  Again I went through the recovery with the same result.

    I need help with restore on my iPad 2.  After updating the OS to 7.0.4 I see a screen showing that I need to connec to iTunes on my computer.  After resrore is complete the same screen appears,  I disconnected the iPad the re-connected with the same result.  I used restore twice and am still getting the same result.

    Your iPad is in recovery mode.
    http://support.apple.com/kb/HT1808

  • Everytime I send my husband a text or he sends me one, we get the same message instantly as a reply

    everytime I send my husband a text or he sends me one, we get the same message as a reply. or if I try to send a picture to my email it sends it back to my phone. how do I fix this?

    Go into settings-facetime-iphone cellular calls
    Turn it off (grey)
    On both devices.
    Good Luck

  • When I try to install the 'GOOD for enterprise" app, I am getting error 0x100001 during retireve settings step. I followed the step of reloading the OS to fix this as suggested in another thread but even after that I have the same problem. Please help.

    when I try to install the 'GOOD for enterprise" app, I am getting error 0x100001 during retireve settings step. I followed the step of reloading the OS to fix this as suggested in another thread but even after that I have the same problem. Please help.
    Regards,
    Nagarajan Kadhiresan

    if you using the same port, maybe this issue caused by your kingmax
    to make it fast, try your king max at other PC, if cant detect, please reformat your king max

  • Firefox 8.0.1 asks to reboot before taking effect; after rebooting it says the same thing, etc

    firefox puts me in a continuous loop saying I need to reboot before finishing install. After rebooting it says the same thing. I even tried to remove the program but it puts me in the same loop.

    Open the Mozilla Firefox installation directory (e.g., C:\Program Files\'''Mozilla Firefox''') and delete the file '''firefox.exe.moz-upgrade'''.
    If you still can't start Firefox, do a clean reinstall (use another browser to download the Firefox installer from www.mozilla.org/firefox and, after first removing the Mozilla Firefox installation directory, reinstall Firefox).
    Ref:
    http://kb.mozillazine.org/Browser_will_not_start_up#Computer_must_be_restarted_message_after_Firefox_upgrade

Maybe you are looking for

  • Macbook pro retina quit working with external displays

    Just got a new external display, and can't get it to work with my MBP. I tried it via the mini display port and also via the HDMI connection. Then I tried to use my flatscreen tv just to test things out via HDMI and now that doesn't work either, I've

  • Problem importing photos with OS 10.4.6

    I have two PowerMacs G5, one first gen G5 1.8 GHz and a Dual 1.8 GHz. I can easily download from iPhotos or directly on my HP 735 Photosmart pictures that I take when using my Dual G5. But on the other computer the photos get corrupted and are theref

  • Javascript not working when pdf is rendered in the browser IE9

    I have a javascript on the initialize event of a field and it works fine when doing a Preview PDF but not when i render the PDF in the browser if(F.Page_1.field1.rawValue == null)            F.Page_1.field1.presence = "invisible";            F.Page_1

  • System command Correspondence to HTBASIC

    I am creating Labview programs  corresponding to HTBASIC  programs. I cannot find some system level commands such as ABORT 7. Does there exist a correspondence list?

  • Problems viewing text after installing snow leopard

    Im geting capital A's in side a box for areas on websites. any help would be apprecitated