MessageStyledText value disappers from page when clicked on Apply

Hi,
I have two fields in advanced table - OrgnCode(LovInput) & OrgName(MessageStyledText)
For OrgnCode, i have following LOV mapping
a) Return item & criteria item = OrgnCode
b) Return item = OrgName
On the basis of OrgnCode selected in LOV, OrgnName must be populated. This is is happening but when i click on Apply, the OrgnName dissappears from the page but is committed in database.
To solve this, i created a OrgNameFL( FormValue) which is mirror of OrgName(MessageStyledText). The View atribute for both the fields is same.
This approach worked for other such cases but is not working for OrgnCode LOV.
Any pointers to what i may have missed in OrgnCode LOV code or any other solution to this problem?

Hi,
As per my understanding this is the known problem with LOV that the item returned by LOV should not be readonly fields(formValue is an exception), so whatever
issue you are facing is known issue.
what you can do to get rid of this problem is you can write your own logic to populate the field in LOV's event handller in controller.
Let me know if you need further help.
Regards,
Reetesh Sharma

Similar Messages

  • Keyflex value disappears from page when lov event is fired

    Hi All,
    There is a keyflex field and one lov field in my page. When i select the value from kff and after that selecting any value from lov item my kff value disappears from page.
    Plz help asap.............

    Hitesh,
    Mukul, i can put my own Add another row button and do cusom code,but what about other events?
    Yes, see dev guide and old threads. It has been explained in dev guide claerly and have also replied this in old threads.--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Trying to print a document from Pages, when I go to print it won't let me select the document.  It is grey and I can't click it.  What should I do?

    Trying to print a document from Pages, when I go to print it won't let me select the document.  It is grey and I can't click it.  What should I do?

    I'm not clear on how you're trying to print. When you select Print from the file menu in Pages the current document is already selected. Perhaps you need to show the details in the print dialog. The first screenshot is from Mountain Lion the second from an earlier OS where you click the blue down-facing triangle button (sorry, I can't remember which one).

  • Mailto link to send the content of the page when clicked.

    I want to set up a mailto link that sends the contents of the page to a predefined address when clicked. I want this to work from a webpage viewed on an iPad as well as a desktop computer. If this is possible, how do I do it?

    You cannot, but you may be able to send the link to an address, just not the webpage content itself.

  • Do not get full page when click on bookmarked entry

    when click on bookmarked item - only get part of a page not full page? Why? how do I get the full page from clicking on a bookmark?
    using firefox 4 on win 7 - 64bit
    last (old) firefox worked fine!!!

    How are you saving a new bookmark?
    There 5 ways to save a new Bookmark in Firefox, the first 4 should offer to save the new bookmark in a folder:
    1.
    2. Right-click and select Bookmark this Page.
    3. Bookmarks > Bookmark this Page
    4. Double-click the Star that is on the right side of the Location bar.
    4a. (A single-click on the Star will save the new Bookmark to the Unsorted Bookmarks folder, without opening the Edit this Bookmark dialog.)
    5. Drag the website image in the URL bar into the Sidebar view of Bookmarks
    or to the Bookmarks menu bar item and then into the drop-down or onto the Bookmarks Toolbar

  • In ADF Tree how to Navigate to Pages When Clicking Tree Node   (TP4)  ?

    hi
    I know how to use af:tree as master-detail tree
    by draging detail views from Data Controls and dropping in JSF
    Page but I would like to know how to call other pages when double-clicking child nodes in the tree. in JDeveloper 11 TP4 & Windows XP
    Anybody can help?
    best regards
    Forakora;

    Hi,
    if it has to be a double click then this can be done with a clientListener that calls a JavaScript function and that you set to the doubleClickEvent type e.g.
    handleTreeSelection(event){
    // do here what you need to do
    queue event to a serverListener that references a managed bean. Use managed bean to
    navigate to another page
    Out of curiousity, what is the usecase ?
    Frank

  • How To Handle With Back Ground JOB From WEBUI When Click On "Appove"

    Hi
    How To Scheduled A Job Through ABAP Report In back end  Of CRM when i click on "Approve" Button in WEBUI  From result list.
    As per My requirement I have a Search View and Result View
    In Search View I have  Below Fields
    ITC Vendor ID    
    Claim Status
    User status (date status changed)
    Model
    Serial Number
    Date completed of Service Completion
    Based on Search Criteria I will get Result In Result View.(Suppose 10 Records I got In Result View)
    In the Result View I need to Add one Button As "Approve"
    When i Click On Approve button One Pop up Message Need to Open And In that popup window I need to Display Below Text
    "Approve  Claim Job Has Started In Background  
    Note: Only Claims Which are in Submitted  Status  Will be  Approved. you May Close This Window"
    In SAP CRM System  Back Ground Job Need To Start When Click On "Approve" Button In WEBUI .
    In the Back Ground ABAP Report which will validate based on Result List Records"
    In the Result List we may have all types of Claims which are status in "Submitted" "Pending" "Rejected" "Approve".
    I need to collect all records from Result list and validate Those Records who's Status in "Submitted
    1)Sort all the claims based on ITC Vendor ID.
    2)Grouped all the submitted claims against each ITC Vendor ID from the search result
    3)Change the status of the selected submitted claims to Approved.
    4)Displays information messages as mentioned whenever a claim is approved, the same message will be captured in the job log.
    ‘Claims <ClaimID 1>,…<ClaimID N> now approved for ITC Vendor ID’.
    5)Sending Email to each IRC.
    6)Capture all the approved claims in the below format (Format Attached "Screen Shot Attachment")
    7)Store the file in the Application Server AL11 in .csv format
    Please Find Attachement For Reference.
    1)ITC Claim Screen Shot
    2)Screen Shot For Attachment
    Thanks
    Raj

    Hi,
    You can add the following code in on approve method to show popup to the user,
    IF req_edit IS NOT BOUND. " gloabl attribute in impl class of the view
        REFRESH lt_buttons.
        lss_button-id  = 'btnyes'.
        lss_button-text = 'YES'.
        lss_button-on_click = 'YES'.
        APPEND lss_button TO lt_buttons.
        CLEAR lss_button.
        lss_button-id  = 'btnno'.
        lss_button-text = 'NO'.
        lss_button-on_click = 'NO'.
        APPEND lss_button TO lt_buttons.
        CLEAR lss_button.
        CALL METHOD comp_controller->window_manager->create_popup_2_confirm
          EXPORTING
            iv_title          = 'ATTENTION'
            iv_text           = 'Are you sure you want to edit this document?'
            iv_btncombination = '99'
            iv_custombuttons  = lt_buttons
          RECEIVING
            rv_result         = req_edit.
        req_edit->set_on_close_event( iv_event_name = 'EDIT' iv_view = me ). "#EC NOTEXT
        req_edit->open( ).
        RETURN.
      ELSE.
        lr_node ?= req_edit->get_context_node( 'OUTPUTNODE' ).
        lv_outbound = lr_node->get_event_name( ).
    *  CLEAR ptc_pricing_status.
    *    lv_outbound = req_edit->get_fired_outbound_plug( ).
        IF lv_outbound = 'YES'.
    you can use the submit report code here and you can al the validations here
        ELSE. " No
    if user clicks no nothing to do..
        ENDIF.
        CLEAR req_edit.
      ENDIF.
    Best Regards,
    Dharmakasi.

  • Is it possible to keep the outline auto formatting from Pages when copying and pasting that outline to the Presenter Notes on Keynote?

    I have been using my iPad for my notes, but I want to start using it as a remote for my macbook. When I copy and paste the notes into the Presenter Notes section of Keynote on the macbook, it unformatted. Any bullet point formatting that I do on my macbook is not showing on my iPad's Remote view Presenter Notes. Is there a way to create consistency here that does not involved formatting each one separately?

    Use Drag and Drop
    Have both applications open side by side
    select the text in Pages
    with the mouse drag the text from pages into presenter Notes pane in Keynote

  • How to switch to another page when clicking a button

    I have a main frame consits of many button.What I need to do when click
    a button,it switch to another page?
    Thanx....

    Try this, it should work.
    // not tested
    JButton linkButton = new JButton("<html><a href=\"http://forum.java.sun.com\">link to<br>forum</a></html>");

  • Safari loads old page when clicking "Refresh" or "Reload"

    Hello Everyone,
    I am using the latest version of Safari (4.0.3).
    When I am viewing a webpage that contains data that is updated frequently (for example, this page in Apple Forums) and I click on "Reload" current page to view the page newly updated, Safari loads the old page...not a new one.
    Anyone having the same problem? Or, perhaps, I have a setting that may need to be changed?
    Your thoughts are much appreciated.
    Thanks,
    joe

    Greetings,
    It sounds like your cache isn't being purged, or there's something preventing it from being purged, so try this:
    1. Go to Home/Library/Cookies and delete the Cookies.plist file.
    2. Go to Home/Library/Caches/com.apple.Safari and delete the contents of that folder.
    3. Go to Home/Library/Caches/com.apple.Safari/Web Page Previews and delete the contents of that folder.
    4. If you don't want to use the Top Sites feature, open Terminal and paste in this command:
    defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2
    5. Go to Home/Library/Caches/Metadata/Safari and delete the contents of that folder.
    6. Go to Home/Library/Caches/Safari and delete the contents of that folder.
    7. Go to Home/Library/Safari and delete these files (if you have them):
    Downloads.plist
    History.plist
    Form Values
    LastSession.plist
    WebpageIcons.db
    Then Repair Disk Permission, restart Safari and see if the problem continues.

  • Redirecting to the Home Page when clicking on close button of the Item in a list

    Hi all,
    I have a SPD Workflow configured in a site to show a link to the current item view form from the autogenerated mail, so that when a user clicks on the link , it gets redirected to the list item as a Viewform.aspx. on closing t hat the user will be redirected
    to the list and shown the allitems.aspc view of the list. But the user now wants to redirect to the Home page of the site. I have created and deployed the SPD WF using Designer 2010 and deployed to the production. But Now I am fearing that to achieve
    this requirement do I need to change the entire approach of SPD Workflow? If anyone has pointers please share with me.
    Thanks,
    K.V.N.PAVAN

    No, I said to set the Source parameter of the URL to the home page.  You have to do this in order for the browser to know where to send the user upon closing or updating the item.  This is how all redirects work in SharePoint.  If you go browse
    around and click on an item, you will see a Source parameter in the address bar.  The URL that comes after "&Source=" is the URL your browser will be sent to after you click "close."  This is how SharePoint remembers the context of where you
    were.  If you don't provide a Source parameter, then it defaults to the list where the item lives.  That's what you're currently doing, so you need to add a Source parameter to the URL you provide in the workflow email.
    http://sitename/list/DispForm.aspx?ID=[Current item: ID]&Source=http://sitename
    Something like that.
    SharePoint Architect || Microsoft MVP ||
    My Blog
    Planet Technologies ||
    SharePoint Task Force

  • Pass hidden values to same page by clicking on href

    I have A.jsp page which has some dynamic hidden fields.The respective code is given below:
    <script language="javascript">
    function submitForm()
    {document.main.action="main.jsp"; document.main.submit(); }
    </script>
    <form name="main">
    HOME
    <input type="hidden" name="user_p" value="<%=user1%>"/>
    <input type="hidden" name="p" value="Hello"/>
    </form>
    When I click on link-HOME, it reconnect to A.jsp but does not pass the hiddden values. Could you help me?

    It did not work.Now after modifying the code for this (I did this because some browser does not support two functions ,like in href. By thinking that it could be the problem)
    <script language="javascript">
    function submitForm()
    document.main.action="main.jsp"; document.main.submit(); }
    </script>
    <form name="main" method="POST">
    HOME
    <input type="hidden" name="user_p" value="<%=user1%>"/>
    <input type="hidden" name="p" value="Hello"/>
    </form>
    Could you explain with working code?

  • I added a gmail account and then couldn't find my mac.mail account on icon page when clicking mail envelope...so I dumped my gmail, but now can't get my mac. mail at all on my phone... please help...

    I added gmail to my phone....  now I can't get my mac. mail from my mac computer on the phone when I click the envelope for mail....so I dumped my gmail account....     still can't get my mac mail back on icon page on iphone so I can get my mail from my computer...
    Ready to take my iphone back.....  maybe I am too old.... for all this stuff.... very sad and frustrated....

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • Error on Page - when clicking the date picker

    Hi Gurus and Experts,
    I'm scheduling a report, when i click the date picker in the Report Parameter section, I got an Error on page (the date picker did not pop-out). What is the problem with this? My date parameter is working when not use for scheduling.
    Regards,
    JP
    Edited by: user10955574 on Nov 18, 2010 12:48 AM

    Hi
    I also encounter that error. The error says 'document.forms[...]' is null or not an object. It only occurs in the report parameters sections when scheduling a report. It works fine on viewing the reports and other that has date picker except from scheduling page.
    Please help.
    Thanks.

  • DW wants to update page when clicking outide DW

    Here is the scenario...
    I am using DW/CS6
    I have created a template which has a menu on the page. It links to two other pages in the site - services and Home......
    Now, whenever I am working on dreamweaver it keeps asking me to update all files based on this template.
    Whenever I click on the desktop outside DW (to browse the internet) it comes up again.
    Even if I want to shut the PC down - it asks me to update based on the template.
    Have cleared DW cache file - restarted DW - Restarted PC - and am going bald and red in the facce very quickly.
    Aiming for the beer in the fridge soon - i'm so frustrated!
    PLEASE - I asked this once before ages ago but cannot remember how it got resolved.
    Thanks in advance
    Terry

    When I click on Update it says Done - then as soon as you click OK the update box appears again.
    If you click on don't update then you get the box again.
    I've got rid of it for now by saving all the pages elsewhere - deleting all the pages and then re-creating each page from the template and then cut and pasting all the information back into each page.
    HOWEVER I get this a lot when I work with templates and it's very frustrating.
    I would like to understand WHY it happens and if it's something I am doing to create the scenario.
    It's by inderstanding it that I can prevent it.
    HOPEFULLY!
    Terry

Maybe you are looking for

  • How do i display multiple pages on the iMac screen in safari

    When I open a new web pages in Safari, it closes the current page.  I want to be able to open another (i.e., split screens) in safari without closing the current page so I can work between the pages.  I'm new to the iMac, but I had this feature on my

  • Purchase Order Condition WOTB - OTB Procurement

    Hello All, I would like to ask what is the Condition WOTB - OTB Procurement used for.  It seems that it always takes the Net Price multiplied by the quantity.  But in the column Actual Price I already get my net value, so I would like to ask what is

  • Showing usage at 3 am

    i was checking my usage and it is shwowing data used at 3 in the morning ?

  • Imac doesn't understand cd's

    Hello! First off, I would like to say that this mac has booted from one special cd (who knows why) But the mac os 8.5 install disk won't boot. Another imac will boot the exact same cd (and it's older!)

  • Deploy applications to existing workstations

    Hi all, is it possible to use MDT to deploy applications to workstations that already exist? For instance, when I boot into Litetouch, I'd like to be able to select to install my applications without deploying an image. Is this possible? thanks, Poot