Lov shud not pop up

Hi all
i have one lov in my page. when user clicks the lov , based on some conditions it should pop up ...otherwise it should show an error and show not pop up.
conditions like before clicking the lov start date should be entered.
I am able to capture the event and throw the exception but lov pops up every time..
if condition doesnt met i am using
throw new OAException("CUSTOM_MSG",OAException.ERROR);
pls help

You can make the start date as required field, but the LOV will still popup to show the error.
Else, you may use PPR to disable LOV's rendered property or make it readOnly till the StartDate is entered.

Similar Messages

  • Memory slots on D7-6100 will not pop up

    Trying to re-install memory after repairs on my D7-6185. Went down to shell for repairs Have double/triple checked rebuild.
    H
    Memory slots will not pop up to all install of memory cards. Nothing is blocking them physically. At the point of pulling out hair.
    Ideas?????
    Marie

    Hi,
    I can't find any D7 model. If a DV7, gently use your fingers to widen the latches and put it down a bit, it should pop up otherwaie use a thin plastic to help it to pop up.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I am not able to email a file from Adobe Reader. When I click to share the file, the option does not pop up to share (via Mail, Message, Air Drop, etc.).

    I am not able to email a file from Adobe Reader. When I click the button to share a file, there is no option for route from which to share (Message, Mail, Air Drop, etc. does not pop up).

    What version of Reader and OS X?

  • Help me-adobe flash player install box "run" or "saveas" will not pop open when I install or update

    I have windows vista 64. I already have flash player13 and reader x 10.1.9 but I can not get FLASH back.
    It wasn't working on youtube. So I tried to update it. Went to adobe and clicked the yellow button to check to see if I had adobe flash. It said I didn't have it installed. I then went to control panel and checked programs and IT WAS installed. So I deleted it. Then went back to adobe page and tried to re-install the newest flash player.
    Again. . . the dialogue box that normally pops up to choose;run or saveas Will not and Does not POP! I re-set my cpu 3 times during the process in order to get a clean go at it too.
    Anyway thanks for your help and let me know please.
    ps I figure this is something that may be fine in a week or two. But I still want to know wtf happened here and what did I do wrong.
    Thanks
    peace
    josh

    Flash Player for ActiveX (Internet Explorer)
    Save that. Close your browser and run it. Then, it'll be installed.
    Then, see: http://forums.adobe.com/thread/885448 and  http://forums.adobe.com/thread/867968

  • ALV TOP-OF-PAGE not popping up

    Hi I am working on ALV and I am trying to use Top-of-page functionality but somehow it's not popping up when I am trying to execute my report and just empty space is showing at the top of report. Following is my code:
    perform data.
    perform build_field_catalog.
    perform top_of_page.
    perform display_alv.
    FORM TOP_OF_PAGE .
      data: t_header type slis_t_listheader,
            wa_header type slis_listheader,
            t_line like wa_header-info,
            ld_lines type i,
            ld_linesc(10) type c.
    Report Heading
      wa_header-typ  = 'H'.
      wa_header-info = 'TEST REPORT'.
      append wa_header to t_header.
      clear: wa_header.
    Date
      wa_header-typ  = 'S'.
      wa_header-key = 'Date: '.
      CONCATENATE  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
                   sy-datum(4) INTO wa_header-info.   "todays date
      append wa_header to t_header.
      clear: wa_header.
    Time
      wa_header-typ  = 'S'.
      wa_header-key = 'Time: '.
      CONCATENATE  sy-uzeit(2) ':'
                   sy-uzeit+2(2) ':'
                   sy-uzeit+4(2) INTO wa_header-info.   "System time
      append wa_header to t_header.
      clear: wa_header.
    Total No. of Records Selected
      describe table it_output lines ld_lines.
      ld_linesc = ld_lines.
      concatenate 'Total No. of Records Selected: ' ld_linesc
                        into t_line separated by space.
      wa_header-typ  = 'A'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = t_header.
    FORM DISPLAY_ALV_REPORT .
    call function 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program     = gd_repid
          i_callback_top_of_page = 'TOP-OF-PAGE'
          is_layout              = gd_layout
          it_fieldcat            = fieldcatalog[]
          i_save                 = 'A'
        TABLES
          t_outtab               = it_output
        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.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    thanks,
    Rajeev
    ENDFORM.                    " TOP_OF_PAGE

    hi check this example..
    REPORT ZTUFI091 .
    *& Report ZDEMO_ALVGRID *
    *& Example of a simple ALV Grid Report *
    *& The basic requirement for this demo is to display a number of *
    *& fields from the EKKO table. *
    *REPORT zdemo_alvgrid .
    TABLES: ekko.
    type-pools: slis. "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
    ebeln TYPE ekpo-ebeln,
    ebelp TYPE ekpo-ebelp,
    statu TYPE ekpo-statu,
    aedat TYPE ekpo-aedat,
    matnr TYPE ekpo-matnr,
    menge TYPE ekpo-menge,
    meins TYPE ekpo-meins,
    netpr TYPE ekpo-netpr,
    peinh TYPE ekpo-peinh,
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
    wa_ekko TYPE t_ekko.
    *ALV data declarations
    data: fieldcatalog type slis_t_fieldcat_alv with header line,
    gd_tab_group type slis_t_sp_group_alv,
    gd_layout type slis_layout_alv,
    gd_repid like sy-repid,
    gt_events type slis_t_event,
    gd_prntparams type slis_print_alv.
    *Start-of-selection.
    START-OF-SELECTION.
    perform data_retrieval.
    perform build_fieldcatalog.
    perform build_layout.
    perform build_events.
    perform build_print_params.
    perform display_alv_report.
    *& Form BUILD_FIELDCATALOG
    Build Fieldcatalog for ALV Report
    form build_fieldcatalog.
    There are a number of ways to create a fieldcat.
    For the purpose of this example i will build the fieldcatalog manualy
    by populating the internal table fields individually and then
    appending the rows. This method can be the most time consuming but can
    also allow you more control of the final product.
    Beware though, you need to ensure that all fields required are
    populated. When using some of functionality available via ALV, such as
    total. You may need to provide more information than if you were
    simply displaying the result
    I.e. Field type may be required in-order for
    the 'TOTAL' function to work.
    fieldcatalog-fieldname = 'EBELN'.
    fieldcatalog-seltext_m = 'Purchase Order'.
    fieldcatalog-col_pos = 0.
    fieldcatalog-outputlen = 10.
    fieldcatalog-emphasize = 'X'.
    fieldcatalog-key = 'X'.
    fieldcatalog-do_sum = 'X'.
    fieldcatalog-no_zero = 'X'.
    append fieldcatalog to fieldcatalog.
    clear fieldcatalog.
    fieldcatalog-fieldname = 'EBELP'.
    fieldcatalog-seltext_m = 'PO Item'.
    fieldcatalog-col_pos = 1.
    append fieldcatalog to fieldcatalog.
    clear fieldcatalog.
    fieldcatalog-fieldname = 'STATU'.
    fieldcatalog-seltext_m = 'Status'.
    fieldcatalog-col_pos = 2.
    append fieldcatalog to fieldcatalog.
    clear fieldcatalog.
    fieldcatalog-fieldname = 'AEDAT'.
    fieldcatalog-seltext_m = 'Item change date'.
    fieldcatalog-col_pos = 3.
    append fieldcatalog to fieldcatalog.
    clear fieldcatalog.
    fieldcatalog-fieldname = 'MATNR'.
    fieldcatalog-seltext_m = 'Material Number'.
    fieldcatalog-col_pos = 4.
    append fieldcatalog to fieldcatalog.
    clear fieldcatalog.
    fieldcatalog-fieldname = 'MENGE'.
    fieldcatalog-seltext_m = 'PO quantity'.
    fieldcatalog-col_pos = 5.
    append fieldcatalog to fieldcatalog.
    clear fieldcatalog.
    fieldcatalog-fieldname = 'MEINS'.
    fieldcatalog-seltext_m = 'Order Unit'.
    fieldcatalog-col_pos = 6.
    append fieldcatalog to fieldcatalog.
    clear fieldcatalog.
    fieldcatalog-fieldname = 'NETPR'.
    fieldcatalog-seltext_m = 'Net Price'.
    fieldcatalog-col_pos = 7.
    fieldcatalog-outputlen = 15.
    fieldcatalog-datatype = 'CURR'.
    append fieldcatalog to fieldcatalog.
    clear fieldcatalog.
    fieldcatalog-fieldname = 'PEINH'.
    fieldcatalog-seltext_m = 'Price Unit'.
    fieldcatalog-col_pos = 8.
    append fieldcatalog to fieldcatalog.
    clear fieldcatalog.
    endform. " BUILD_FIELDCATALOG
    *& Form BUILD_LAYOUT
    Build layout for ALV grid report
    form build_layout.
    gd_layout-no_input = 'X'.
    gd_layout-colwidth_optimize = 'X'.
    gd_layout-totals_text = 'Totals'(201).
    gd_layout-totals_only = 'X'.
    gd_layout-f2code = 'DISP'. "Sets fcode for when double
    "click(press f2)
    gd_layout-zebra = 'X'.
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text = 'helllllo'.
    endform. " BUILD_LAYOUT
    *& Form DISPLAY_ALV_REPORT
    Display report using ALV grid
    form display_alv_report.
    gd_repid = sy-repid.
    call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
    i_callback_program = gd_repid
    i_callback_top_of_page = 'TOP-OF-PAGE' "see FORM
    i_callback_user_command = 'USER_COMMAND'
    i_grid_title = outtext
    is_layout = gd_layout
    it_fieldcat = fieldcatalog[]
    it_special_groups = gd_tabgroup
    it_events = gt_events
    is_print = gd_prntparams
    i_save = 'X'
    is_variant = z_template
    tables
    t_outtab = it_ekko
    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.
    endform. " DISPLAY_ALV_REPORT
    *& Form DATA_RETRIEVAL
    Retrieve data form EKPO table and populate itab it_ekko
    form data_retrieval.
    select ebeln ebelp statu aedat matnr menge meins netpr peinh
    up to 10 rows
    from ekpo
    into table it_ekko.
    endform. " DATA_RETRIEVAL
    Form TOP-OF-PAGE *
    ALV Report Header *
    Form top-of-page.
    *ALV Header declarations
    data: t_header type slis_t_listheader,
    wa_header type slis_listheader,
    t_line like wa_header-info,
    ld_lines type i,
    ld_linesc(10) type c.
    Title
    wa_header-typ = 'H'.
    wa_header-info = 'EKKO Table Report'.
    append wa_header to t_header.
    clear wa_header.
    Date
    wa_header-typ = 'S'.
    wa_header-key = 'Date: '.
    CONCATENATE sy-datum+6(2) '.'
    sy-datum+4(2) '.'
    sy-datum(4) INTO wa_header-info. "todays date
    append wa_header to t_header.
    clear: wa_header.
    Total No. of Records Selected
    describe table it_ekko lines ld_lines.
    ld_linesc = ld_lines.
    concatenate 'Total No. of Records Selected: ' ld_linesc
    into t_line separated by space.
    wa_header-typ = 'A'.
    wa_header-info = t_line.
    append wa_header to t_header.
    clear: wa_header, t_line.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = t_header.
    i_logo = 'Z_LOGO'.
    endform.
    FORM USER_COMMAND *
    --> R_UCOMM *
    --> RS_SELFIELD *
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
    Check function code
    CASE r_ucomm.
    WHEN '&IC1'.
    Check field clicked on within ALVgrid report
    IF rs_selfield-fieldname = 'EBELN'.
    Read data table, using index of row user clicked on
    READ TABLE it_ekko INTO wa_ekko INDEX rs_selfield-tabindex.
    Set parameter ID for transaction screen field
    SET PARAMETER ID 'BES' FIELD wa_ekko-ebeln.
    Sxecute transaction ME23N, and skip initial data entry screen
    CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
    ENDIF.
    ENDCASE.
    ENDFORM.
    *& Form BUILD_EVENTS
    Build events table
    form build_events.
    data: ls_event type slis_alv_event.
    call function 'REUSE_ALV_EVENTS_GET'
    exporting
    i_list_type = 0
    importing
    et_events = gt_events[].
    read table gt_events with key name = slis_ev_end_of_page
    into ls_event.
    if sy-subrc = 0.
    move 'END_OF_PAGE' to ls_event-form.
    append ls_event to gt_events.
    endif.
    read table gt_events with key name = slis_ev_end_of_list
    into ls_event.
    if sy-subrc = 0.
    move 'END_OF_LIST' to ls_event-form.
    append ls_event to gt_events.
    endif.
    endform. " BUILD_EVENTS
    *& Form BUILD_PRINT_PARAMS
    Setup print parameters
    form build_print_params.
    gd_prntparams-reserve_lines = '3'. "Lines reserved for footer
    gd_prntparams-no_coverpage = 'X'.
    endform. " BUILD_PRINT_PARAMS
    *& Form END_OF_PAGE
    form END_OF_PAGE.
    data: listwidth type i,
    ld_pagepos(10) type c,
    ld_page(10) type c.
    write: sy-uline(50).
    skip.
    write:/40 'Page:', sy-pagno .
    endform.
    *& Form END_OF_LIST
    form END_OF_LIST.
    data: listwidth type i,
    ld_pagepos(10) type c,
    ld_page(10) type c.
    skip.
    write:/40 'Page:', sy-pagno .
    endform.
    regards,
    venkat

  • User POV does not pop up from Report in task list

    Hello,
    I've created a report within Related Content in HFM and added it to a task list--the problem I'm experiencing is when I run the report the User POV does not pop up, rather it simply uses the default POV (ie, whatever is set up in data grids or process management)--this happens if I try to run it directly from Related Content or from the task list. My preferences within Financial Reporting have already been updated to 'On' to preview the User POV and if I run the report from Financial Reporting (ie, Explore) the User POV works fine--so, it seems like adding a report to Related Content disables the User POV from popping up. I'm running on Financial Reporting v11.1.2.1 and HFM v11.1.2.1.104.3701. I can't find anything about it within this forum, knowledge base or as a known issue in the ReadMe for the .104 patch set for HFM.
    Can anybody fill me in on if this is functionality by design or a defect?
    Best regards,
    Jason Call

    Financial Reports do not work as you might expect when they are used as a related content item. As you already have realized, you will not be able to adjust the FR POV items from inside of HFM.
    A 'work around' would be to link to the report and put that link in the Tasklist. This will then open the report 'normally' and you will get the POV functionality that you expect.
    To find the link to a report, open the report's properties and look at the 'smartcut' value. (That is a URL directly to the report)

  • TS4425 How can i do when the latest iCloud Terms & Condition does not pop up?

    When I go to photo stream on my appletv, it says "unable to sign in The icloud terms of service have changed. For more info, go to http://www.apple.com/support/icloud".
    I have tried this resolution on my iphone and ipad already:
    On your iOS device, tap Settings > iCloud.
    Note: Verify that this is the same Apple ID you are using on the Apple TV.
    After a moment, the latest iCloud Terms & Conditions will load.
    Unfortunately, it does not pop up the icloud terms and condition for me to accept.
    Anyone can help me?
    Thanks all~

    Caused by the Ask Toolbar extension in Firefox 3.6.13, disable that extension or un-install it.

  • Variable screen not popping up in BEx Analyzer

    Experts,
    I'm facing a wierd situation while executing queries in 3.5 BEx Analyzer. When the query is executed using 3.5 BEx Analyzer varibale screen does not pop and report strats running wide open. The Varible input is optional. But if  the report in executed using Web (From the 3.5 Query Designer) variable screen pops up. This happens with the same user ID.
    Please let me know if you have any ideas, could this be something realted to authorizations. In the meantime, i'm trying to change the varibale to mandatory and see if the variable screen pops up.
    Thanks

    Hello
    The standard behavior is not show the variable screen if it has no mandatory variables. In the webtemplate you may have the parameter forcing to show the variable screen added in the code. It is something like  "force variable screen". Please check if you can see that parameter.
    regards
    Lucimar

  • If your computer is stolen and you downloaded Lion on it can it be found if it is not popping up with iCloud? I have my serial number though

    I need to find my computer I downloaded the Lion system shortly before it was stolen. Can it be found if its not popping up on iCloud.

    have you activated the 'Find My Mac' option in iCloud?

  • I rented a movie in iTunes and connected my iPad to transfer the movie to the iPad.  The rental section will not pop-up and I have confirmed the movie is not an HD movie.  Any suggestions on what to do next?

    I rented a movie in iTunes and connected my iPad to transfer the movie to the iPad.  The rental section will not pop-up and I have confirmed the movie is not an HD movie.  Any suggestions on what to do next?

    I would ask iTunes Store support for help with this. You may never be able to get the movie to download on your own now.
    Go here and then tap on Connecting and downloading, then tap on Movie Rentals. You can have someone contact you, you can chat online or you can get email support. I would opt for the phone call or online chat.
    https://getsupport.apple.com/Issues.action

  • My MacBook Pro is not recognizing my external hard drive.  The hard drive is listed in disk utilities but an icon does not pop up and I cannot access the data.  Is there any way to resolve this?

    My MacBook Pro is not recognizing my external hard drive.  The hard drive is listed in disk utilities but an icon does not pop up and I cannot access the data.  Is there any way to resolve this?

    WE know Disk Warrior is more reliable, hence more useful, and should be in any disk mechanics toolchest.
    For the record, I don't know anything of the kind. I have yet to see evidence that Disk Warrior is useful at all.
    What I do know is that you seem to take every opportunity you get to promote it in these forums. Do you work for Alsoft?
    Let me be a little more explicit. My opinion is that Disk Warrior is a waste of money if one has backups. If a journaled HFS directory is so badly corrupted that it can't be repaired by Disk Utility, then the volume should be reformatted and restored from backup, which has the same effect as running DW, but is probably faster and doesn't cost $99.

  • Excel Not Popping Up After Export

    Hi,
    We are using Discoverer Plus 10.1.2.45.46c. When a user exports to a network drive using the File, Export option excel pops up the file upon completion. If the same user exports the same file to their C drive or uses the 'Export to Excel' button on the tool bar excel does not pop up.
    I have tried the solutions from Metalink including 307919.1, 3933814 and 4285568. We are using XP Version 5.1 SP2.
    Any help would be greatly appreciated.

    Hello,
    What is the version of BI you are working on? If its BI 7.0 please check the following OSS notes for the
    Note 1050605 - No response for the toolbars in BEx Analyzer 2004s
    Note 877774 - Pre-requisite for BI 7.0 Frontend
    Thanks
    Chandran

  • I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp

    I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp text, it wont let me. Just sounds the ding, alert, can still slightly navigate the program but can not use any other tools after clicking warp text. I just have to open task manager and close the program. not sure if I'm doing something wrong or maybe I just need to uninstall and re install. Having trouble finding out how to uninstall and reinstall because the program came pre installed on my desktop.

    It actually sounds like the warp text window is opening off screen.
    Resetting the photoshop elements 10 preferences should fix it.
    *Press and hold the Shift+Ctrl+Alt keys just after you start the launch of the photoshop elements 10 editor
    *Keep holding the keys down until you get a dialog asking if you want to delete the adobe photoshop elements setting file
    *Press Yes

  • My I-Pad 2 keyboard will not pop up when trying to sign in to web sites. Does anyone know how to get it to come up?

    My i-pad 2 keyboard will not pop up with trying to sign into a web site or Facebook..  Does anyone know how to get it to come up?

    Make sure you click in the text box for username and password to bring up the keyboard.
    Try powering off your iPad by holding the power button and sliding the red slider when it appears, or try resetting your iPad by holding the power and home buttons together until the apple logo appears.
    I would also highly recommend an app for facebook, it's called MyPad.

  • I cant find my purchased ringtones on my itunes account? Anybody know how to find this? It's not popping up under Music in my purchased history. It is soooo frustrating because they make it so hard to find anything ringtone related on the itunes store!!!

    I cant find my purchased ringtones on my itunes account? Anybody know how to find this? It's not popping up under Music in my purchased history. It is soooo frustrating because they make it so hard to find anything ringtone related on the itunes store!!!

    They will be wherever you put them.
    You only get one download.

Maybe you are looking for

  • Error while trying to Open and Delete a BEx Query in Query Designer.

    Hi Experts, I have been facing this issue with BEx Query in Designer mode for a couple of days now in Development Environment in BI 7.0. I would like to Delete an unwanted BEx Query because I need to give it's name to another BEx Query. Whenever I tr

  • Inserting Images in a HTML document

    Hello, i m developing a small HTML editor , The problem i m facing is that if i m writing in my text pane and i wont to insert a image where the cursor presently is how i would do this ? since i wont have any trace as the last element of the HTML gen

  • Problem with mapping

    Source Message          1..1    MessageDataType  1..1       messageId   xsd:string    Datatype2Node  1..1       objectId    xsd:string       Datatype3Node  0..n          symbol      xsd:string Destination Messages        1..1    Message1     1..1    

  • No response from Sun Application Server PE 8.2

    Hi all, I am using Sun Application Server PE 8.2 on windows XP service pack 2 professional edition, and jdk 1.4.1_01. The problem I am facing is that the server is not responding, even though it is listening at the respective ports(4848 for admin, 80

  • Cisco WCS guest user expires after few days

    1) Hardware we are using: WCS version 6.0.196. WLC version 6.0 2) Configuration steps we carried out: We have created guest user using Lobby admin account having for accessing WLC which we are having in network. it works fine for some days but after