Retaining issue in LOV whenever any Event occurs

Issue
You have a messageLovInput and you also return the value in some column like messageStyledTextbut as soon as any event fires on page the value in the messageStyledText wipeout.
How to Overcome this issue
Instead of creating item of messageStyledText create item of type messageTextInput and set it read only property to "TRUE".
I tried this solution from Anil Sharma blog but it is not resolving my problem.

Hi ,
Can you create a FormValue bean and assign the same VO attribute to this field and return the value to both the fields
and check the value is retaining.
Thanks,
With regards,
Kali.
OSSI.

Similar Messages

  • How to get any event occurs inside inline frame .

    Hi All,
    I have configured some url in af:inlineFrame component .
    This url is pointing to a webapplication which is hosted on different server .
    If i want to know all the activity what is happening insde inlineframe component which event i need to handle .
    I show all metadata of af:inlineframe component i dint find it handle any event .
    Please let me know how could it possible .
    Thanks ,
    Arun.

    Hi Sireesha,
    I have configured http://google.com as a source of inline frame component .
    Now google.com is rendered inside the inlineframe component .
    Whenever i will do some serach or click on the link appearing after searing something in google or someother activity .
    i want to intercept all the actions in my bean .
    Please let me know if above explanation is not clear .
    Thanks,
    Arun.

  • If I do NOT use any event, except AT SELECTION SCREEN, Do I get any issues?

    Hi Experts,
    Pls. let me know that, If I do NOT use any event, except AT SELECTION SCREEN, Do I/prog. get any issues? (am also using AT SELECTION SCREEN OUTPUT for list box preperation).
    For some reason(execution of the report prog. with ENTER button), am using ONLY these 2 events.
    For full detials, pls. see my other thread with title,
    Is it possible to execute a REPORT prog. with pressing of ENTER button?
    thanq

    Hi
    srinivas see this program
    i am executing this program with out any event it is not showing any error but not giving output
    when i put start-of-selection then it is showing output
    *& Report  ZNNR_REPORT33
    REPORT  ZNNR_REPORT33 NO STANDARD PAGE HEADING MESSAGE-ID ZNNR LINE-SIZE 100 LINE-COUNT 65(4).
    ******DATA DECLARATIONS**********
    DATA : BEGIN OF IT_PLANT OCCURS 0,
            MATNR LIKE MARA-MATNR,
            WERKS LIKE MARC-WERKS,
            PSTAT LIKE MARC-PSTAT,
            EKGRP LIKE MARC-EKGRP,
           END OF IT_PLANT.
    DATA : BEGIN OF IT_PONO OCCURS 0,
            EBELN LIKE EKKO-EBELN,
            EBELP LIKE EKPO-EBELP,
            MATNR LIKE EKPO-MATNR,
            WERKS LIKE EKPO-WERKS,
            LGORT LIKE EKPO-LGORT,
           END OF IT_PONO.
    TABLES EKKO.
    ********END OF DATA DECLARATIONS*********
    ********SELECTION SCREEN DESIGN ***********
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETER : P_WERKS LIKE MARC-WERKS MODIF ID S1.
    SELECT-OPTIONS : S_EBELN FOR EKKO-EBELN NO INTERVALS MODIF ID S2.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-004.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS : R1 RADIOBUTTON GROUP G1 DEFAULT 'X' user-command uc1.
    SELECTION-SCREEN COMMENT 5(20) TEXT-002 FOR FIELD R1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS : R2 RADIOBUTTON GROUP G1.
    SELECTION-SCREEN COMMENT 5(20) TEXT-003 FOR FIELD R2.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK B2.
    ******END OF SELECTION SCREEN DESIGN****************
    ***********SCREEN MODIFICATIONS*******************
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF R1 EQ 'X' AND SCREEN-GROUP1 EQ 'S2'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
        ENDIF.
        IF R2 EQ 'X' AND SCREEN-GROUP1 EQ 'S1'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    ********END OF SCREEN MODIFICATIONS*****************
    ***************SCREEN VALIDATIONS *****************
    at selection-screen.
      SELECT SINGLE *
               FROM EKKO
               INTO EKKO
               WHERE EBELN IN S_EBELN.
      IF SY-SUBRC <> 0.
        SET CURSOR FIELD 'S_EBELN-LOW'.
        MESSAGE E999 WITH TEXT-005.
        clear S_ebeln-low.
      ENDIF.
    ********end of screen validation*****************
      IF R1 EQ 'X'.
    *ULINE AT /1(48).
        WRITE : SY-VLINE ,2 'MATERIAL NUMBER',
                21 SY-VLINE , 22 'PLANT',
                27 SY-VLINE , 28 'STATUS',
                43 SY-VLINE , 44 'GRUP', 48 SY-VLINE.
        ULINE AT /1(48).
      ENDIF.
      IF R2 EQ 'X'.
        WRITE : SY-VLINE , 2 'PO NUMBER',
               12 SY-VLINE, 13 'ITEM',
               18 SY-VLINE,19 'MATERIAL NUMBER',
               37 SY-VLINE, 38 'PLANT',
               44 SY-VLINE, 45 'GRUP',
               49 SY-VLINE.
        ULINE AT /1(50).
      ENDIF.
    start-of-selection.
    *set pf-status '100'.
      IF R1 EQ 'X'.
        SELECT MATNR
               WERKS
               PSTAT
               EKGRP
           FROM MARC
           INTO TABLE IT_PLANT
           WHERE WERKS = P_WERKS.
        LOOP AT IT_PLANT.
          WRITE : SY-VLINE , 2 IT_PLANT-MATNR COLOR COL_KEY,
                 21 SY-VLINE , 22  IT_PLANT-WERKS COLOR COL_KEY,
                 27 SY-VLINE ,28 IT_PLANT-PSTAT COLOR COL_NORMAL,
                 43 SY-VLINE ,44 IT_PLANT-EKGRP COLOR COL_NORMAL.
        ENDLOOP.
      ENDIF.
      IF R2 EQ 'X'.
        SELECT EBELN EBELP MATNR WERKS LGORT
               FROM EKPO
               INTO TABLE IT_PONO
               WHERE EBELN IN S_EBELN.
        LOOP AT IT_PONO.
          WRITE : SY-VLINE , 2 IT_PONO-EBELN COLOR COL_KEY,
                 12 SY-VLINE , 13 IT_PONO-EBELP COLOR COL_KEY,
                 18 SY-VLINE , 19 IT_PONO-MATNR COLOR COL_NORMAL,
                 37 SY-VLINE , 38 IT_PONO-WERKS COLOR COL_NORMAL,
                 44 SY-VLINE , 45 IT_PONO-LGORT COLOR COL_NORMAL, 49 SY-VLINE..
        ENDLOOP.
      ENDIF.
      ULINE AT /1(50).
      WRITE :/10 'PAGE NUMBER', SY-PAGNO, '/' ,SY-PAGNO.
      ULINE AT /1(50).
      WRITE :/10 'PAGE NUMBER', SY-PAGNO.

  • TS4204 I need to delete a calendar event that transfered to my 4S from my Droid.  Also this event occurs yearly.  When I open this event, the edit button in the upper right corner does not exist so I can't delete it.  Any suggestions to get rid of it? Sur

    I need to delete a calendar event that transfered to my 4S from my Droid phone. This event occurs yearly.  When I open this event, the edit button that normally appears in the upper right corner does not exist so I can't delete it.  Any suggestions on how to get rid of it?

    uninstalled firefox ....deleted all files still remaining under mozilla firefox directory in program files ... to avoid having to reprogram all my settings, reisntall all addons as well .. I did not remove anything from mozilla firefox that is stored in either appdata or under the windows users directory (if any)
    ... the as suggested reinstalled the latest version of the firefox browser using the link you provided in the email ..; tested and several issues still remain present and unresolved ....
    so please this is urgent or I will have to jump browsers and start using chrome .. because we work 14 hours a day 6 (sometimes 7) days a week, to get ready for the launch of our newest venture and we cannot lose that much days on browser related issues ... so please instead of putting me through week long step process .. of do this .. do that .. can you please actually look into the issue from your end .. I use firefox for so many, many years thta I deserve this kind of support .. thnx Robert

  • Just upgraded to OSX mavericks on macbook pro mid 2011 version. Having a big issue here that whenever my mac comes back from sleep, i.e after I open the lid, the screen flickers and there is an error of Finder not opening properly. Any fix to this?

    Just upgraded to OSX 10.9 mavericks on macbook pro mid 2011 version. Having a big issue here that whenever my mac comes back from sleep, i.e after I open the lid, the screen flickers and there is an error of Finder not opening properly. Any fix to this?

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • Can i cal a javascript function from a jsp without occurance of any event??

    Hi,
    Below is the problem that i am facing:
    Problem:
    I want to open a new url from a java class.
    I have a java class. I am calling a jsp from this java class. JSP does some validations and after these validations, opens a url in new window. But I want to append some runtime parameters in the url and pass it through post method in jsp so that end user cannot see these parameters. Can any one tell me how to code for this schenario?
    Class A calls X.jsp
    X.jsp
    1. do some validations
    2. call some javascript function
    3. append the parameters in the url using dopost method
    One more thing to mention, when calling this jsp, i need to show this jsp to user, therefore there would not be any event in this jsp. I need soluions for following points:
    1. Without occurance of any event, my javascript function must be called
    2. desired parameters must be appended in the url
    3. New url should be opened and the parameters should not be visible to end user.(ie parameters need to be passed via post method in jsp)
    Appreciate your help.
    Thanks,
    Rajeev

    You are all mixed up. Here's how it works: a JSP is a program that executes on your server. It generates HTML (which may include Javascript) and sends that to the client, most likely a browser. When it has finished generating and sending all that HTML, the browser accepts it and renders it. The browser may execute Javascript as it renders the HTML, or it may execute Javascript later upon a click or mouse action or whatever.
    So your idea that the JSP will execute some Javascript is a non-starter. And that business about the JSP appending parameters and using the POST method is all backwards, unless perhaps you meant that the JSP would generate HTML containing a form that does that.
    Anyway you need to clarify your thought based on how things actually work. Confounding the two phases (generating HTML on the server, rendering it on the client) will make it very difficult for you to get anywhere.

  • Any event in lov where I put my code

    hi master
    Sir
    Any event in lov where I put my code
    Such as after selection value my curser move to next text box and total all bill amount
    For example
    When press enter
    Begin;
    Select sum(billamount) into :billamount from billtable where clientno=:lov.values;
    End;
    Please give me idea
    Thanking you
    Aamir

    KEY-LISTVAL trigger:
    if Show_LOV(<yuo_lov_name>)
    then
    Select sum(billamount) into :billamount from billtable
    where clientno=:<CONTROL.values>;
    end if;
    <CONTROL.values> is a LOV returning item(s)

  • Which event occurs when process any Html form

    Hello Guys,
    In my application i am process some html Form. As well iam using JEditorPane for displaing Web pages. All the Listner is working well. I can display any web form in JEditorpane .
    My Question is that when i click button "submit" in any Web form it's working/process but which event Occurs.I need to change the Application title through web forms.
    Thank'x in advance

    Hi Praveen,
    That is correct, you're not doing anything wrong. The BPEL Console doesn't show any forms for testing the services if the service is synchronous.
    I test my synchronous webservices with Eviware SoapUI. This is a freeware tool. Check: http://www.soapui.org/
    Just create a new project in soapUI, create a new request from WSDL, copy and paste the WSDL in soapUI. It will generate a default request for you, which you can edit and execute.
    HTH,
    Bas

  • My Calendar on my iPhone won't allow me to save any events. It says "cannot save event" does anyone know how to fix this issue?

    After updating my phone earlier this month to the 5.1 software my calendar won't let me save any events. It displays "Cannot save event" I have tried googling the error and I have tried restarting the app, restarting my phone and even cutting the calendar off and back on....nothing has worked. Any other suggestions???

    Select the drive and Finder > Get info and at the bottom "ignore permissions on this volume"
    You can copy the files, but the ownership on the files still belongs to the other user account, once your done copying, then perform a #6 Reset Users Permissions and that will set all the ownership to that account.
    ..Step by Step to fix your Mac
    Another method is to copy the entire folder, then change it's permissions.

  • Issue with LOV  .LOV window pops up but with session loss message

    Hi,
    I am facing one issue for LOVs.
    On a page when i enter any partial value for LOV then LOV window pops up but it gives me
    error message as
    "You cannot complete this task buz following events cause loss of page data
    ** Your login session has expired
    ** A system failure has occured
    I am not able to proceed ahead
    Thanks,
    Milind

    The applicationModule is oracle.apps.icx.por.rcv.server.ReceiveItemsAMImpl
    which choose the SQL of many view objects with search criteria the user filled, add search criteria and launch the SQL to display articles to receipt.
    I need to add search criteria with those are already in. So I don't see how I could make this differently.
    Moreover the page is in a train. So all pages of this train have the same root AM...
    Can't we change the root AM during execution in JAVA ?
    Regards
    Vincent

  • ICal not showing any events on certain dates.

    Preface: I'm an intermediate computer user and I have never experienced an issue that I was not able to resolve with some troubleshooting, until now. Starting yesterday, iCal would not allow me to view/create events on dates March 13th - March 17th in Month View. I am able to create and view events on every other day of March, as well as other months in 2012. It is most peculiar because I am able to see the "new events" created on those dates when I switch to Day view.
    Steps I've taken thus far: I've disabled iCloud, deleted all calendars from computer, quit the app, cleared ALL possible content (cache, icom, metadata, app support, etc) - Rebooted, reopened iCal (with icloud disabled) and was still experiencing the same issue.
    I then ran a terminal command to completely wipe the iCal application, cleared all the data once again, rebooted, then migrated a fresh copy of iCal from another computer (running same OS) and the issue still persists.
    Any thoughts? It's not an iCloud issue (which I immediately assumed), it's not an issue with the copy of the App I have, it's not an issue with my OS (I recently reformatted from clean slate and have not had a single other issue than this)....
    I'm out of possible ideas! 

    Spent more and more time trying to figure out a solution and finally came across a simple fix! If the start day is changed to Monday from Sunday it will fix this issue! (However, if changed back to Sunday the issue will persist)
    Thanks to Musitrio for the head's up on this one.

  • For loop pause till event occurs

    I'd like to know if it's possible pausing for loop in a fixed step till en event occurs.
    I need to use for loop index to indexing some vector's data, but the steps in for loop must be exectuted only if  precise condition occurs.
    thank you very much for possible solutions
    Francesco

    Without seeing any code, it is hard to recommend what to do.
    You probably want a State Machine architecture so that you can stay in a certain state of a while loop, then move on to the next step (state) when your condition is met.
    You could also use event structures.  You could also use notifiers or occurrences to hold the execution of your loop until the notifier is written to or occurrence executed in a parallel loop of your code.

  • Refresh issue in LOV Switcher

    Guys,
    I facing a issue from LOV Switcher.
    Let me explain the scenario:
    I have search page (SearchPage.jsff), i have created page (CreateEditPage.jsff).
    CreatePage.jsff has a LOV (Lov is implemented using LOV swither, displays either LOV 1 or LOV2 depnding on the attribute in the viewobject)
    1. I navigate from SearchPage.jsff to CreateEditPage.jsff. As per the logic, Lov 1 is displayed. (as expected)
    2. Now am back to SearchPage.jsff, and again navigate to CreateEditPage.jsff. As per the logic LOV 2 is displayed. (as expected)
    3. Now am back to SearchPage.jsff, and again navigate to CreateEditPage.jsff. As per the logc, LOV 1 should be displayed, but it is displaying Lov 2. (when i refresh the page using F-5, the proper LOV is displayed).
    There seems to be some issue with the LOV refresh.
    Anybody faced similar issue??
    Any suggestions are welcome....

    would this help you:
    http://jobinesh.blogspot.com/2011/09/programmatically-switching-lov-queries.html

  • Any event which is raised when we save Purchase order after creating a new?

    Hi
    I need to know any event which is raised whenever we save a purchase order after creating a new one. I know event 'change' of object type BUS2012 is raised whenever we change a PO. Please help in this regard.
    Regards
    Swetabh

    Create event doesnt exist in BUS2012.check if custom business object exists for this by using 'where used list',probably it may have created event.

  • HT2513 I have a message that I cannot eliminate. "The Anniversary calendar does not support events". I cannot find any event associated with the anniversary calendar. In fact I have deleted the anniversaries from my calendar. any ideas?y

    I have started to use ICal and yesterday started to receive a message "The Anniversary valendar does not support events". I have searched my calendar events and cannot find any event associated with the anniversary calendar. I have turned off the anniversary calendar and deleted fro my calendar and the message still occurs. The MacBook Pro that I sync does not have this message. Even when ICal is turned off the message still occurs. Any ideas?

    I have started to use ICal and yesterday started to receive a message "The Anniversary valendar does not support events". I have searched my calendar events and cannot find any event associated with the anniversary calendar. I have turned off the anniversary calendar and deleted fro my calendar and the message still occurs. The MacBook Pro that I sync does not have this message. Even when ICal is turned off the message still occurs. Any ideas?

Maybe you are looking for