Can we have a choice list (lookup) while editing a report.

I have created a report and it has one editable field. BAM shows an input field which user can update but to avoid typing mistakes we want to make it choice list.
Can I do it? Source data for choice list is fixed for time being but I would like to know if its possible to query data for choice list from other data objects.
Thanks
Sanjeev

That is not going to happen.

Similar Messages

  • HT2486 can I have two contact lists on one mac book pro?  I need one to sync with my iphone, one to sync with my husband's iphone.

    can I have two contact lists on one mac book pro?  I need one to sync with my iphone, one to sync with my husband's iphone.

    I agree with Chris CA that this is the way I would *expect* iTunes to behave.
    When I look at iTunes from my account (my music is in ~/Music/iTunes/ and not available to my spouse's account), I can see in my music library all my rips and my purchases, just as I would expect. I can use Store>View My Account (<myAppleID>) and all is as expected. Home sharing is NOT on.
    Doing the same from the other account is not much different, actually. Nothing in the library yet, of course. Store>View My Account (<herAppleID>) also works. I CAN authorize my computer to play her music. I CAN view her iTunes purchases. When I attempt to download the purchases to HER library, though, I get the following dialog box:
    Now I interpret this to mean that this computer (mine) will not download from a different AppleID (also mine) for 90 days. Is that [interpretation] correct?

  • The new itunes is slow and I can not see my musics anymore. How can I have my musics listed like they were before?

    The new itunes is slow and I can not see my musics anymore. How can I have my musics listed like they were before?

    I have the same problem with new 11.0. Presentation of album data now seems scrambled in 'Album' screen. Instead of albums in alphabetical order with all album tracks I now get albums in the order of the Album Artist. Unless the album artist is EXACTLY the same, the tracks on any one album can be spread all over the screen (hopeless for compilations). Does anbody know how to get the Album screen to sort solely on the Album title?

  • Can you have two detail lists from the basic list at the same time?

    Hi
    Can you have two detail lists from the basic list at the same time?
    If yes how and if no why?
    Thanks
    Venkat

    No   ... it is not   possible   of   2 detail  list at   one time   from the basic  list ...
    you can  increament   the SY-LSIND  .... But you can not   display  both the windows   at single time  ...
    it is  possible  to  display  2 Detail list  in ALV   ......  from one  basic  list   using  the  Blocked  list  concept    .
    Sample Program on BLOCK LISTS
    Report   zblock_list
    * Declarations for BLOCK ALV DISPLAY
    *--type pools
    TYPE-POOLS:slis.
    DATA:x_layout TYPE slis_layout_alv,
    t_field TYPE slis_t_fieldcat_alv,
    *--field catalog
    x_fldcat LIKE LINE OF t_field,
    *--to hold all the events
    t_events TYPE slis_t_event,
    x_events TYPE slis_alv_event,
    t_sort TYPE slis_t_sortinfo_alv,
    x_sort LIKE LINE OF t_sort ,
    *--Print Layout
    x_print_layout TYPE slis_print_alv.
    *----Macro to add field catalog.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    DEFINE add_catalog.
    clear x_fldcat.
    x_fldcat-fieldname = &1.
    x_fldcat-seltext_m = &2.
    x_fldcat-outputlen = &3.
    x_fldcat-tech = &4.
    x_fldcat-col_pos = &5.
    x_fldcat-no_zero = 'X'.
    x_fldcat-ddictxt = 'M'.
    x_fldcat-datatype = &6.
    x_fldcat-ddic_outputlen = &7.
    if &6 = 'N'.
    x_fldcat-lzero = 'X'.
    endif.
    *--build field catalog
    append x_fldcat to t_field.
    END-OF-DEFINITION.
    *----- data declerations.
    data: v_repid like sy-repid.
    data: begin of itab occurs 0,
    matnr like mara-matnr,
    ernam like mara-ernam,
    meins like mara-meins,
    end of itab.
    data: begin of jtab occurs 0,
    matnr like makt-matnr,
    maktx like makt-maktx,
    end of jtab.
    select matnr ernam meins
    up to 20 rows
    from mara
    into table itab.
    select matnr maktx
    up to 20 rows
    from makt
    into table jtab.
    v_repid = sy-repid.
    *DISPLAY alv
    * Initialize Block
    call function 'REUSE_ALV_BLOCK_LIST_INIT'
    exporting
    i_callback_program = v_repid.
    *Block 1:
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '18' '' '1' 'C' '18',
    'ERNAM' 'Created By' '12' '' '2' 'C' '12',
    'MEINS' 'Unit' '5' '' '3' 'C' '3'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST1'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'ITAB'
    it_events = t_events
    it_sort = t_sort
    tables
    t_outtab = itab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 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.
    endif.
    *--BLOCK 2(SUMMARY REPORT)
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '20' '' '1' 'C' '18',
    'MAKTX' 'Description' '40' '' '2' 'C' '40'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST2'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    * Append table block.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'JTAB'
    it_events = t_events
    tables
    t_outtab = jtab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 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.
    endif.
    *--CALL FM TO DISPLAY THE BLOCK REPORT.
    call function 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    * exporting
    * is_print = x_print_layout
    exceptions
    program_error = 1
    others = 2.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    form top_of_list1.
    skip 1.
    write: 10 'List 1',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    form top_of_list2.
    skip 1.
    write: 10 'List 2',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    reward  points if it is  usefull ....
    Girish

  • How can i have a multi task approach while working on my iPad? Shfting windows is heavy and time consuming!

    How can i have a multi task approach while working on my iPad? Shfting windows is heavy and time consuming!
    Also shifting windows while surfing is not easy, when used to multiple screens and easy shifting from one web page to another.
    Thks

    Not entirely sure what you mean, but this has some info about multi-tasking . iOS 5, which will be available to download on October 12th, adds multi-tasking gestures (from http://www.apple.com/ios/features.html#more) :
    Using four or five fingers, swipe up to reveal the multitasking bar, pinch to return to the Home screen, and swipe left or right to switch between apps.
    Also Safari will get tabbed browsing in iOS 5, making it easier to switch between pages/tabs.

  • How can I have the articles listed for all of the asssortments?

    How can I have the articles listed for all of the asssortments without any condition? Is there any customization for this?

    Can you make some explanation? Is it OK if I choose "02 - Listing without qualification" as listing procedure?

  • Can you have 2 contacts lists on the same iTunes account?

    I have an iTunes account that both my wife and myself use, me with a 4, my wife with a 4s. I want to swap phones with her, can the two sets of contacts be saved on the same account, or do we need seperate accounts, back up the respective phone, then sync in the other account?

    Yes. You can easily have multiple iPods on the same iTunes account on the same computer. Each iPod will show up with its name when plugged in, and each iPod can have its own set of preferences (i.e., what music, videos, photos, audiobooks, etc. to sync).
    What you can't do easily is use the same iPod on multiple computers with different instances of iTunes. One instance of iTunes has to be "in charge" of an iPod.
    John

  • Pls can i have a complete list of my shsh blob...thanks...

    pls can i have a complete copy of my shsh blob??thanks...

    Jailbreaking / hacking can not be discussed here per the TOS.

  • How can I have multiple-selection list box "select at least one checkbox" option active only when the section it's in is visible?

    Hi, I'm using SP13 and InfoPath2013.
    I created a custom form and published it to SP13 document library.  This form has many MSLB.  Depending on the checkboxes selected in the 1st MSLB, the other MSLB will either hide or show.  Each MSLB is in its own section.  The requirement
    is to have each MSLB to have at least one checkbox selected.  Well, the problem is that when that MSLB isnot checked in the 1st MSLB it is not visible and shouldn't require any checkbox to be selected.  However, the form can't get submitted instead
    an error dialog would pop up and ask user to make a selection for MSLB that is not even displayed.  Is there any way to fix this besides unchecking all MSLB to be not required at least one selection?  Thank you.

    Eric, 
    I follow your reply post here and still doesn't work.  I also noticed your screen shot of selecting a field is not the same as what I see in InfoPath 2013.  
    Here is what I did, 
    1.Check At least one selection required for
    these Multiple-selection List Boxes
    as you want .
    2.Create a Formatting  rule for the 2nd
    Multiple-selection List Box.
    3.Add a  Condition as below:
    4.  I get a validation error if I don't
    select at least one checkbox in the hidden MSLB control when submitting.
    I think I'm following all the steps correctly
    but please let me know if I'm not.

  • Can I have my mac in stop while watching a home video which is on my iMac's hard drive?

    I have had a 1st gen ATV long time ago.
    It came with a hard disk where I was storaging a bunch of videos I ripped from my dvd for my kids.
    I know the new gens now don't have a HD but get the films from the mac's drive in streaming.
    My question is: does the mac HAS to be completed turned on? Or can it work while in stop? It would be annoying to have it turned on in the same room while watching TV.
    Secon question: can the ATV access the itunes library of a user which is not the one selected on the mac at that very moment?
    Thank you
    G

    - The Mac has to be on and running iTunes in order to be accessible for ATV.
    - If the other computer has been setup with the same home sharing ID then both can be accessed. Otherwise, you would need to switch over to the other ID. The answer above would apply here too.

  • ADF Shuttle Component - Can we have multiple leading list

    Hi,
    I have requirement where there are multiple lists of different types on the left hand side and user should be able to shuttle the items from any of the list to the single selected list in right side. I know in ADF shuttle there is one leading and one trailing list. I wan to know how can i make ADF shuttle component support multiple leading lists and single trailing list.
    Or should I go for total custom solution mimicking shuttle behavior?
    JDev version is 11.1.1.6.0
    Thanks,
    Sandeep
    Edited by: Sandeep Koul on Aug 26, 2012 10:47 PM

    After consulting other ADF experts offline, we have come to conclusion that there is no off-the shelf component which caters to my requirement.
    We are now going with complete custom solution to achieve shuttle behavior.
    I am marking this query as answered.
    Thanks,
    Sandeep

  • Can we have the 'select list with submit' type within a tabular form?

    An item can be the "Select list with submit' type so a form has no problem with it. However, when I built a tabular form manually, I couldn't find this type. There are only three types avaiable: "named", "static", and "dynamic".
    Is it possible to have the "submit" type so columns of the tabular form can be dynamically rendered based on the user inputs?
    Another question I have is how to dynamically build the tabular form with decode func. For example, if the value of col_1 is 'val_1', then build a select list in col_2; otherwise null in col_2.
    I tried to use
    select col1,
    decode (col1, 'val_1', select htmldb_item.select_list_from_lov(2, first, 'lov1') from dual, null)
    from....
    where....
    But it didn't work.
    I'd like to know whether it's feasible to have something like that.
    TIA.
    Message was edited by:
    Luc

    You could use a region of type PL/SQL function
    returning SQL query to dynamically build this kind of
    tabular form. However if you want to use the built-in
    multi-row insert, update and delete processes, all
    items in a column must have the same display type. Marc, thanks for the quick reply. I appreciate it.
    I got your idea. However, I need to have the javascript 'ToggleAll' as the heading so the form works as same as the built-in one. If I put the query definition into a pl/sql procedure, where I can put this html tab attribute? It can not be inside the checkbox function, otherwise the checkbox of any row would act as same as the header.
    I hope I've made this clear.
    To Vikas: It's our clients who want this, not us. :(

  • How can I have my .mp3 listed in my podcast directory?

    I subscribed to a podcast and have ~20 downloads
    I went to the author's website and downloaded a few more .mp3's
    I can't seem to get the newly downloaded mp3's to list in the itunes podcast
    Does it have something to do with the timing of the podcasters date of being a podcaster? In other words, are the newly (older) downloaded mp3's too old to be listed in itunes?
    thanks.

    Expanding on what Jim said, if you're referring to commercial and hence copy-protected video DVDs, breaking the copy protection, which would be necessary to copy the videos from the DVD and convert them, is illegal in the US (and other countries) and hence Apple explicitly forbids such posts. We're therefore not allowed to discuss it here.   Some DVDs and Blu-Ray movies come with a "digital copy" that allows you to download a copy of the movie for use on computers and portable devices. You might see if any of the DVDs you have come with such a feature. Walmart/Vudu also has a service that basically gives you a digital copy of a DVD you already own. See:
    http://www.vudu.com/disc_to_digital.html
    Other DVD/Blu-Ray vendors may now or soon have similar services.
    If these are home movies that you or someone has burned to DVD and hence are not copy-protected, Handbrake (freeware) is one of the more popular converters. Once converted, you just drag the movie into the iTunes window on your computer.
    Regards.

  • How can i have a second function running while Threat.sleep is active?

    HI,
    I am not that familiar with the Threat.sleep class, and here is my question:
    Is it possible that you can execute something else while Threat.sleep is pausing a function, if so, how is it possible?
    If not is there an another way how i can let a function wait for a specifi amount of time dou it makes it move and douring this period, is it possible that an other function executes?
    Thanks,
    betlor

    [url http://java.sun.com/docs/books/tutorial/essential/threads/index.html]Using Threads

  • In Address Book how can I stop the cursor from wandering while editing a page?

    At times when I am editing a page in Address Book, the cursor wanders, so the text I am typing shows up in the wrong place. Often it deletes exist text. Why does this happen? How can I prevent it?

    Does this only happen in the Address Book or does it do this all the time and causes only issues in the Address Book?

Maybe you are looking for

  • Adobe Premiere Pro CS4 4.0.1

    An update to Adobe Premiere Pro CS4 will be available via Adobe Update Manager shortly. The file will also be available for download tomorrow (November 20) on Adobe.com, as will the readme (at http://www.adobe.com/support/documentation/en/premierepro

  • Connect SQL Server 2008 in Oracle BI EE

    Hi all, Am very very new to Oracle BI and i want to know how to connect my local SQL server database in Oracle BI EE to create new reports. Thanks , Sathish

  • Chart on parent child hiearchy

    Hi All, I am trying to create chart above the table . The table has parent child relationship. However, in chart I want to display only the child values and on table I want to show parent child relationship. Is there a way to create filter for chart

  • Moving Exchange 2010 Transaction Log

    Hi. Running a single instance of SBS2011 with Exchange 2010. We only have one mailbox. Earlier today I moved our main exchange database (.edb) file to a different hard drive. Used EMC, went through smoothly, no issues. I then started moving the trans

  • Crroppining an image of a fish

    I need help pls