How to create a multi column item like the one in LOV's

Hi,
We have a big problem while building our application.
We want to create an item where a user can select a line with multiple columns in it.
Does anyone know how to build this????
Thanks,
Eduard Haaijer

You can use the concatenation ( || ) in the select statement for the LOV.
Ex- Select firstname||' '||lastname from emp;
Let me know if your query was something else.

Similar Messages

  • How to create a multi column list item and select these values from a LOV

    Hi all,
    My requirements are:
    1) create an LOV which holds the productno, productname and productprice fields (this is working)
    2) at run time, select one record from LOV and populate the list/grid with this selected record values of productno, productname and productprice fields, so we are showing them on the form in the form of a table/grid (not working)
    3) be able to select multiple records from LOV and be able to populate the list item with multiple records (not working)
    4) have two more columns in the list/grid, for productquatity and total price (not wokring)
    Please help me.
    how can i create this grid or list in oracle
    whats the possible way of acheiving this in oracle

    If you use a list item to display multiple columns then you'll need to use a fixed-width font. You can achieve a similar look with proportional fonts by using a normal block and setting the fields' bevel to 'None'.
    Each column in the LOV has a Return Item property (under Column Mapping Properties). Set this to a :block.item reference for each column to bring the data back into those referenced fields.
    You can't select multiple records from an LOV. For this you will need to create your own form. Check the help for system.mouse_button_modifiers to see how to respond to Ctrl+click and Shift+click.
    To add columns just modify the LOV's record group's query.

  • How to add a display item like the one in 'Invoices screen' please ?

    The label operating unit is in a folder like feature . Is this a display item/ a folder ? I need to add the same thing as label . Thanks .

    twinklin_girl wrote:
    I figured out it's a folder. How to add folder functionality to a customized form please ?Please see the following docs/links -- Search for "APPFLDR"
    Customization in Oracle Applications [ID 743490.1]
    http://docs.oracle.com/cd/E18727_01/doc.121/e12897/T302934T302936.htm#d0e750
    http://docs.oracle.com/cd/E18727_01/doc.121/e12900/T458979T458984.htm#I_bx2Dlib
    Folder Functionality in custom form
    https://forums.oracle.com/forums/search.jspa?threadID=&q=APPFLDR&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How to create a version that looks like the "quick preview" image?

    Is there a way to easily create a version that is similar in appearance (mostly apparent as saturation)to what is seen when hitting the P key and viewing the "quick preview"? I shoot raw (Canon .cr2) and find that for many of my shots, the "quick preview" would be a nice starting point, and often a fine end-result, for saturation. Any hints welcomed. Thanks. Fred

    Thanks for your comments and I certainly agree with your suggestions. I was hoping that there was something that I was overlooking that would essentially work like a "lift/stamp" and let me find settings that were embedded in the camera generated jpg. I know that you know your way around Aperture, so if you don't have a trick up your sleeve, I think it's probably not to be found.

  • How to create custom thumbnails per episode like the TED videos on Apple TV?

    Not many podcasts do this but I do see TED for example have a different thumbnail per episode on Apple TV (note: iTunes shows different thumbnials because it picks a frame from the video). I'm referring to Apple TV 2 to be precise. Can't figure this out....
    Thanks in advance,
    -g
    PS Our podcast is ChatChow.tv

    They're the same podcast: one is the feed and one is the iTunes Store page. I checked the latest episode: it has an image embedded in the media file which shows until you start playing the video (right).
    There are also two additional tags in within the 'item' tags for the episode, a 'media:thumbnail' tag and an 'itunes:image' tag, both containing an image of a saucepan of brussel sprouts:
    neither of these tags is recognized by iTunes (only the 'itunes:image' tag in the top section of the feed, and that only in the Store, not when subscribing).
    What does the Apple TV show? - is it this image?

  • How to create a multi-line table/column comment

    Can someone tell me how to create a multi-line table or column comment?
    Apparently, the concatenate operator (||) does not work with the COMMENT statement.
    I've searched the Oracle manuals and couldn't find an answer.
    COMMENT ON TABLE sometbl IS 'i would like to break up this comment into several lines in order to improve readability'; Effectively, this is what I'd like to do (but it doesn't work):
    COMMENT ON TABLE sometbl IS
      'i would like to break up ' || CHAR(10) ||
      'this comment into several lines ' || CHAR(10) ||
      'in order to improve readability' || CHAR(10); Oracle version is 10.2.0.4

    Why not just
    SQL> create table t (a int)
    Createtable successfully completed.
    SQL> comment on table t is 'i would like to break up 
    this comment into several lines 
    in order to improve readability'
    Commenton successfully completed.
    SQL> select * from user_tab_comments where table_name = 'T'
    TABLE_NAME           TABLE_TYPE  COMMENTS                               
    T                    TABLE       i would like to break up               
                                     this comment into several lines        
                                     in order to improve readability        
    1 row selected.?

  • How to create sql query for item master with operator LIKE with variables?

    hi all,
    How to create sql query for item master with
    operator LIKE(Contains,Start With,End With) with variables using query generator in SAP B1 ?
    Jeyakanthan

    Hi Jeyakanthan,
    here is an example (put the like statement into the where field)
    SELECT T0.CardCode, T0.CardName FROM OITM T0 WHERE T0.CardName Like '%%test%%'
    The %% sign is a wildcard. If you need start with write 'test%%' and otherwise ends with '%%test'. For contains you need '%%test%%'. You also could combinate this statements like 'test%%abc%%'. This means starts with test and contains abc.
    Regards Steffen

  • How Can I get multi column values from dynamic search help?

    Hi Gurus;
    I'm using dynamic search help in my program.
    I want to get multi column values from search help. But I dont know solution for this issue.
    I'm using F4IF_INT_TABLE_VALUE_REQUEST FM.
    How Can I get multi column values from dynamic search help?
    Thanks.

    Believe it or not, the same FM worked for me in a dynpro. I will try to explain here how it works in custom screen and then you can do your work for other screens or program types. I am not going to write my actual work but will explain in general.
    I have 4 fields (FLD1, FLD2, FLD3, FLD4) and i made the search based on FLD2 and when user click on a line (could be any field), then this would bring the line on to the screens.
    There are like 3 steps.
    You have your value_tab for my fields FLD1, FLD2, FLD3 and FLD4. This is just the data that we pass into the FM. (data: IT_VALTAB type table of ZVAL_TABLE)
    Next map the screen fields into an internal table (data: It_dynpfld type table of dselc ). I also have other internal tables defined  (just to keep it straight, i will be putting here) data:  It_return type standard table of ddshretval.
    Next step is to call the function module. Make sure you have values in IT_VALTAB.
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
            retfield        = 'FLD2'
            value_org       = 'S'
          tables
            value_tab       = It_VALTAB
            return_tab      = It_return
            dynpfld_mapping = It_dynpfld
          exceptions
            parameter_error = 1
            no_values_found = 2
            others          = 3.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
          with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        else.
          perform get_selected_fields tables It_return.
        endif.
    The code within the perform GET_SELECTED_FIELDS  - We need to map the result fields after user selects it. The code goes like this. This is step is to update the dynpro fields.
    I need a internal table as well as a work area here. like,
    data: lt_fields type table of dynpread,
            la_fields type dynpread.
      field-symbols: <fs_return> type ddshretval.
    so fill out LT_FIELDS from the IT_RETURN table
    loop at lt_return assigning <fs_return>.
        la_fields-fieldname = <fs_return>-retfield.
        la_fields-fieldvalue = <fs_return>-fieldval.
        append la_fields to lt_fields.
        clear: la_fields.
      endloop.
    Call the FM to update the dynpro
    call function 'DYNP_VALUES_UPDATE'
        exporting
          dyname               = sy-repid
          dynumb               = '1002' "This is my screen number. You could use 1000 for selection screen (hope so)
        tables
          dynpfields           = lt_fields
        exceptions
          invalid_abapworkarea = 1
          invalid_dynprofield  = 2
          invalid_dynproname   = 3
          invalid_dynpronummer = 4
          invalid_request      = 5
          no_fielddescription  = 6
          undefind_error       = 7
          others               = 8.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    good luck

  • How to create a multi video player with iMovie

    Hey folks, I have a great wee QT player for my daughter's website which was generated for me by iMovie export. Lovely.
    But- folk are wanting to see more videos of her singing.
    Question- how to generate a multi-video player using the same principles (and same simple design)? One like those generated by YouTube's facility to create a list of videos to appear in a single player, or where it is possible to just click a "next" tab? Here is the page I am referring to: http://www.brigidmhairi.com/music.html
    Just to clarify- I am not wanting to use the YouTube player because it is a bit fussy and doesn't look right on the site in mind. The QT one has no borders etc and therefore suits me better. Besides- the 320 format is perfect.
    Hope someone can help me, thank you SO much.

    MacBraveheart wrote:
    .. how to generate a multi-video player using the same principles (and same simple design)? .. Here is the page I am referring to: http://www.brigidmhairi.com/music.html..
    Hope someone can help me, ..
    Hi HighlanderIn ..
    who else than me.. ?
    this is no iMovie related question.. that is
    a) html/CSS-coding or
    b) some flash-app
    read out the code on your linked website ... :
    <embed type="application/x-shockwave-flash" src="http://cache.reverbnation.com/widgets/swf/33/videogallerywidget.swf
    pageobject_id=artistxxx bla bla bla /><br/>
    <a href="http://www.reverbnation.com/main/artist_feature/widgets">
    bla bla bla ..
    </noscript>
    .. going to that website reverbnation.com, it looks like they offer, as YT, a video-hosting service plus that 'special' player as a flash-code you can embed in your website (as the YTplayer) ..
    so, here are your options:
    • use this service.. costs? no idea, research on your own ..
    • use flash, encode yourself.. perhaps, you can find some 'ready made' coding?
    • *what website-maker do you use?* iWeb offers a template for videos.. many on one preview-page, 'click' creates a bigger version for playback ..
    .. as mentioned: less iMovie, more 'website creation' ..

  • How to Create a new column from two different result sets

    How to Create a new column from two different result sets, both the result set uses the different date dimensions.

    i got solutions for this is apply filters in column formula it self, based on the requirement.

  • How to create a multi select drop down filed in crm 7.0

    Hi All,
            I need to create a multi select drop down field in crm web ui where one field have 7 value and we can select more than one value at a time.I have no idea how to create a multi select drop down field in web ui.
    Please help.....

    Hi vishwas
    Please follow the thread where a similar requirement was posted.
    Re: Drop-down list box / pick-list with multiple selections at a time
    Here the suggestions say that a workaround could be to associate a table view to the field.
    Regards,
    Nisha

  • How can I add multi columns to a JCombo Box ?

    Dear experts,
    How can I add multi columns to a JCombo Box ?
    Thankx in advance
    Unique

    What do you mean by adding Multiple columns? JCombobox is a component in which you can choose a value from a list(rows) of values. Could you please explain why do you want multiple columns in the JComboBox. I suppose JComboBox is not meant for that.
    Thanks,
    Jana

  • How to create Implicit Fact column ?and how to use it ?

    Hi all,
    How to create Implicit Fact column ?
    and how to use it ?
    Thanks in advance

    When you create a request with only dimension columns, the Oracle BI engine has to choose a fact table to join the dimensions to each other. If you have multiple fact tables in your BMM layer, the Oracle BI engine will use the most economical fact table, depending on the number of dimensions of the fact table.
    In some cases you do not want to use this fact table, but you want to force the Oracle BI engine to use the fact table you want.
    In that case you should create a fact (or select an existing fact) of the fact table you want to use for the dimension only query. In the presentation catalog of the subject area you should select this fact as the implicit fact. This fact will always be used in the query, but it won't be visible in your report. An example of an implicit fact is the count of the primary key (id) of the fact table.

  • How can I create a drawing like the one pictured from a photo?

    How can I create a drawing like the one pictured from a photo?

    OK, you are getting closer. Now, use your result, and place a Layer above that. Use the Pen Tool to create the "pen strokes" basically tracing over your background image. Then, when you have created each Path (or Sub-Path), choose Stroke Path, with probably the Pencil Tool and a Brush size that is small enough.
    Not sure which versions of PS these are good for, but here are some plug-ins, that might be helpful.
    AKVIS Sketch
    EdgeLine
    Sketch Effects
    Sketch Master
    I see that one of my old favorites, Flaming Pear's India Ink is not around any more.
    Good luck,
    Hunt

  • How to create a new menu item.. please help

    hi every one..,
    i bought a new 30GB ipod .., i would like to create a new menu item in the ipod and wanna generate all my content whichis in my database to this newly created menu item in my ipod....
    any reply to this will be greatly appreciated..
    thanks in adavance
    Prem
    AMD athlon 64. 2400+   Windows XP Pro   1.8GHZ, 512 MB RAM

    Prem,
    First of all, Welcome to the Apple Discussion Forums!
    If you get no response here you may want to post your question over in the iPod Discussion Forums for the quickest response.
    Pick the forum of the iPod in question (Usage).
    Just thought that might get you a better/quicker response than here.
    good luck,
    littleshoulders [:-)

Maybe you are looking for

  • Error in Importing Data from SAP BW ( XMLA )

    HI All, I am trying to import a physical schema from sap bw ( sap user has all grants ) through the XMLA access IN repository I see objects ( connection pool, hierarchies, dimensions, measures ) and in a while I get them to the presentation layer acc

  • GI for consignment and how amount is calculated

    All, I have a material where the base UOM and GR/GI Uof Entry are both KGs yet the Order Price UOM on the info record is TNE.    When the GI is done for 4977.88 KG Info record price is 877EUR/TNE   The expected amount is 4977.88KG * .877EUR/KG  = 436

  • Does my mac mini version 10.8.4 have a place to play DVD's?

    hey. i need to know if my mac OS X has a place to insert DVD's. i look all around the computer, but i can't find one. Thanks!    ILuvRomance

  • Output message is not getting populated

    Hi My scenario is file->XI->file. I have created  source and destination data sturcture as follows mt_input dt_input FILE  xsd.string  0..unbounded mt_output dt_output OUTPUT xsd.string  0..unbounded i have mapped dt_input & dt_output and FILE & OUTP

  • How set resultout for external java function

    Hi, i am working on workflow with java, any body know how to set resultout in java class in excute method (like return if that is custom look type) and my work flow making the status defferd even i am runing the background process. Thanks srinivas ch