How to add item in advnace search LOV  of OA frame work ?

HI,
I have one requirement to add one new item in existing lov of advance search of vertical view in OA framework which is seeded.Through the Form personalisation
I have created Criteria Row: (MscCreationdate_row) in which i have given ID value as MscxcreationDate
and applied it then it get created. then created Message Lov Input only (and not able to create messageStyledText)
as Level =Site Item ,Style =Message Lov Input
there is lot of properties but i have filled only data type,promt I am not sure rest of the properties that what values should be there
like Access Key,Attribute Set,View Attribute,View innstance etc...
After that i have applied and found a option to create Lov Map: (MSCX_CREATION_DATE) and i mapped but there was also a lot of properties to fill
like LOV Region Item,Return Item,Attribute Set,
I have given LOV Region Item=MSCX_CREATION_DATE and same as return item.
Could you please suggest me what values are needed in these properties here to add on field on advance search.
when i open the advance search lov i found the creation date there and that get added in form also but when click in search button for value it threw the error:
oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND-INVALID APPLICATION. Tokens: APPL = null;
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:2011)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
     at oa_html._OA._jspService(_OA.java:84)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
     at oracle.jsp.JspServlet.service(JspServlet.java:156)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
## Detail 0 ##
oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND-INVALID APPLICATION. Tokens: APPL = null;
     at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getAppId(OAWebBeanFactoryImpl.java:5391)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:981)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
     at oa_html._OA._jspService(_OA.java:84)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
     at oracle.jsp.JspServlet.service(JspServlet.java:156)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND-INVALID APPLICATION. Tokens: APPL = null;
     at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getAppId(OAWebBeanFactoryImpl.java:5391)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:981)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
     at oa_html._OA._jspService(_OA.java:84)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
     at oracle.jsp.JspServlet.service(JspServlet.java:156)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
Can anybody suggest me what are the only steps need to follow?
Thanks,
Edited by: user10980325 on 30 Mar, 2012 11:44 PM

Hi!
For existing entries, you can use the SAVE_TEXT function module.
You just have to pass the right key to the function element.
Regards
Tamá

Similar Messages

  • Object array - how to add items?

    Hello!
    I have little problem, how to add item to array, to get something like this:
    Object[][] someObject = {
    {"1", "2"},
    {"4","5"}
    };From this:
    Object[][] someObject = {
    {"1", "2"}
    };? Thanks in advance!

    Once you allocate an array like that, you can't
    resize it.
    Object[][] someObject = {
    {"1", "2"}
    };creates an array with size [1][2]. You can't makeit
    any larger. You can create a new Object[][]
    with the new size, copy the elements into the new
    array, then add your new objects in the newposition.
    or even better use arraylistExcept that he's using this for a JTable, so the best he could do is a Vector. Yuck. :)

  • DataGrid - Create at runtime - How to Add Items??

    I create a DataGrid at runtime and then and columns to it as need be. How Can I add items with the correct dataField if I don't if I don;t know this till runtime? In other word I'm having trouble constructing the Object to send to AddItem becase the dataField Name needs to be hard coded...
    Below does not work for me because if I have more than one column then I can seem to figure out out to create  ItemObjFinal dynnamically.
    var ItemObjFinal:Object = {ThisNameNeedsToBeDynamic: "text", ThisNameNeedsToBeDynamic: "value" };
    I also tried creating an array of Objects like this:
    var ItemObjFinal:Object = new Object;
    var obj:Object= dgc.dataField;
    ItemObjFinal [0] = {(obj.valueOf()):  dgc.headerText };
    ItemObjFinal [1] = {(obj.valueOf()):  dgc.headerText };
    =========================================================================================
                  ac.addItemAt(dgc, int(ac.length));
                  dataGrid_preview.columns = ac.toArray();
                  var obj:Object= dgc.dataField;
                  var ItemObjFinal:Object = {(obj.valueOf()):  dgc.headerText };
                  var obj2:Object= dgc.dataField;
                  var ItemObjFinal2:Object = {(obj2.valueOf()): dgc.headerText};
                  //K Now add it!
                  //IList(dataGrid_preview.dataProvider).removeAll();
                  IList(dataGrid_preview.dataProvider).addItemAt(ItemObjFinal,0);
                 //IList(dataGrid_preview.dataProvider).addItemAt(ItemObjFinal2,1);

    Ahh answered my own question:
                 ac.addItemAt(dgc, int(ac.length));
                  dataGrid_preview.columns = ac.toArray();
                  var ItemObjFinal:Object = new Object;
                  var ItemObjFinal2:Object = new Object;
                  for each(var col:DataGridColumn in ac)
                    ItemObjFinal[col.dataField] = col.headerText;
                    ItemObjFinal2[col.dataField] = col.headerText;
                  ItemObjFinal[dgc.dataField] = dgc.headerText;
                  ItemObjFinal2[dgc.dataField] = dgc.headerText;
                  //K Now add it!
                  if(IList(dataGrid_preview.dataProvider).length > 1)
                      IList(dataGrid_preview.dataProvider).removeItemAt(0);
                      IList(dataGrid_preview.dataProvider).removeItemAt(1);
                  IList(dataGrid_preview.dataProvider).addItemAt(ItemObjFinal,0);
                  IList(dataGrid_preview.dataProvider).addItemAt(ItemObjFinal2,1);
    This code may still need some tweaking as I get an RTE at  "IList(dataGrid_preview.dataProvider).removeItemAt(1);"   but at least I'm able to solve my original question. Thanks Alex!

  • How To add a field in search criteria in SAP standard report

    Hi AlL,
    I have a requirement where i need to add a field in search criteria of selection screen and display in output of Standard SAP report.
    I have read in threads that to obtain Access key and modify the code in std report , if i am not able to get an Access key and not allowed to copy the report as Z.
    Could you please let me know how to solve this kind of requirement.
    thanks
    Chary

    Well - it's a report so there won't be a user exit. I think your options are what the others (and you) have suggested - change the standard program or make a copy.
    There are different opinions on the forum about which to do.
    Rob
    PS - you're not bothering anyone. We like problems.
    Message was edited by: Rob Burbank

  • How to add check tables or search helps to search help parameters?

    Hello Forum!
    I have made a Z-Search help, and I have a problem with some of my parameters.
    The field (MARC)-EKGRP (Purchasing Group) has a check Table (T024) and the matching search help (H_T024).
    I seem to find no possibility to add this check Table search help to my EKGRP parameter in my Z-Searc Help.
    (Therefore, the End-User has to type it in Manually, there is no F4 funktionality...)
    Is there a way to do this?
    Thanx for replying!
    Kind Regards,
    Pieter
    PS: I´m experiencing the same problems with other fields as well: to parameter (MARA-)MFRNR I would like to add the seach Help 'KRED', for it appears on my Z-Search Help. And so on....

    Thanks, Archna Raja!
    This is certainly the right direction to look for a solution.
    However, i can not get it to work.
    In debugger Mode I have populated the SHLP-FIELDDESCR field 4AVAILABL  with X.
    Result: The button for the search help appears. But when I click on it, nothing happens.
    I than also tried this in combination with populating the fields:
    REFTABLE
    CHECKTABLE
    No search Help window opened..
    I did not find a fileld  where I can indicate the Search help in the SHLP Structure.
    Am I missing out on something?
    Kind Regards,
    Pieter
    PS: I´m trying to get a search help for The filed EKGRP.
          Check Table:  T024          Serach Help: H_T024
    Edited by: Pieter De Fré on Nov 30, 2010 11:38 AM

  • How to add an option in the LOV of Change Disposition to in Item Samples

    Hi
    Can anyone please tell me how to customize this particular issue.
    ADDING ONE MORE OPTION IN THE LIST OF VALUES OF CHANGE DISPOSITION TO IN THE ITEM SAMPLES FORM.
    FOR EXAMPLE- REGRADE OR REPROCESS APART FROM ACCEPT, ACCEPT UNDER DEVIATION AND REJECT.
    ### Steps to Reproduce ###
    1.GO TO QUALITY MANAGER RESPONSIBILITY
    2.GO TO SAMPLES
    3.GO TO ITEM SAMPLES
    4.CREATE A SAMPLE AND SAVE
    5.ENTER RESULTS AND SAVE
    6.GO TO ACTIONS
    7.GO TO CHANGE DISPOSITION.
    Thanks in advance
    Prem.

    Hi
    Just while trying to find something for myself, came across this. Not sure since when this has been introduced, but there is a lookup that is availalbe. I went into OPM ALL Responsibility and got GMD Lookups. In this is GMD_QC_SAMPLE_DISP which has the disposition options.
    Regards
    Girish
    Message was edited by:
    [email protected]

  • How to add item in column header

    How can i add an messageStyled item(or any item) in column header? if so how can i do this

    Standard framework feature allows to add only a sortable header bean in a column header which holds some of the UI and runtime properties for that column.
    If you can explain your requirement, we can suggest the way to achieve that.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • CRMD_ORDER - How to add user status for searching

    Hi Gurus
    Our requirement is that we want to search sales transactions in CRMD_ORDER by user defined statuses. Currently I can only search by system status (along with other standard criteria such as created by/direct processing etc). How do I add more search criterias so as to enable searching solely by user status?
    Please advise.
    Thanks

    Hi Jai,
    As per your requirement, i suggest u to check the Tx CRM_SRV_REPORT (standard Tcode)
    In this report you can change the layout of the screen after executing the report, and choose the user status from the layout.
    I hope this will help you
    Best Regards,
    Madhup

  • How to add keywords for google search?

    I just published a web site but I don't know how to make my web site available to people who search on google using keywords. How do I add keywords to an iWeb website so people can find my site using google?

    You won't be able to do this directly in iWeb. You will have to edit the HTML files that iWeb publishes either to your iDisk or to a folder (if you are not using .Mac). Just open up the page.html files that represent each of your web pages. On your iDisk, these files should be in the /Web/Sites/iWeb/sitefolder folder.
    <head>
    <title>Your Page Title Goes Here</title>
    <META name="description" content="Your Page Summary Goes Here"><META name="keywords" content="Your Meta-Tag Keywords Go Here Separated By Commas">
    </head>
    This is the general format to add meta information to your pages. The meta tags go between the <head> and </head> tabs in your html code. Including this information will make your Google listing a little more descriptive without having to change the body content of your page (right now it is using the body content and giving you the names of the graphic files).
    The downside is that you will have to do this for every page if you decide to go this route. You will also have to do this everytime iWeb or you make changes to your web pages. You might want to learn how to use something like MassReplaceIt to help you automate the process. Good luck!

  • How to add item to a List with a bounded wildcard

    Hi,
    Is there a way to add a subtype instance to a List with a bounded wildcard? For example, say I have an
    abstract class called Car. Then I have 2 concrete subclasses--Ford and Toyota. Now say I have another
    class that contains a prepopulated list and is wildcard bounded like this: List<? extends Car> carList. I
    want to add a method where I pass in a Car subtype as a parameter and then add it into this list, e.g:
    public void addCar(Car car) {
    carList.add(car);
    Trying this, I keep getting "cannot find symbol" compilation errors. When I went back to read the Generics
    tutorial by Bracha, he mentions that explicitly adding a subtype, e.g. carList.add(new Ford()), can not be
    done. But here I'm adding the "upper bound" of the wildcard, i.e. the Car type. Therefore there should be no
    discrepancy between supertype and subtype an thus the carList.add(car) should be ok, IMO.
    Am I misunderstanding something with this logic? Also, if carList.add(car) can not be done, then how can
    I go about doing something similar which will allow me to add subtypes to a "generic" list?
    Thanks in advanced!
    -los

    I get a compilation error expecting an Object instead of a Car. Of course you did. List<? super Car> is a list into which you can put cars -- and possibly other stuff. List<? extends Car> is a list out of which you can get cars (possibly of different makes).
    Do you need a list that you can put cars in and get cars out? That's List<Car>
    This isn't a linguistic problem you are having; this is a design problem. If you have a function that takes an argument which is a list that you can put any kind of car into and be sure of getting a car out of, it isn't reasonable to pass in a List<Ford> (because the function might put in a Chevy) or a List<Object> (but there might be motorcycles already in there). By the requirements you have, you need a List<Car> and nothing else.
    Yes, you could use a cast, but all you are doing is circumventing the type system by saying "I know this List<Object> only has Cars in it."

  • How to add Value Table or Search Help for a field which is on Standard SAP?

    Hi All,
        I have a field HERST (tcode IE01) which doesnt have any value table or search Help. I have the same field in a Z table which I should display for the standard screen field in tcode IE01. So Pls suggest me on this.
        Thanks in advance.
    Regards
    Jaker.

    Hi, Tamas,
    I found the reason. The function Z_WEBRFC_READ_DATA_SH had a string concatenation error.
    CONCATENATE '{"results":[{"key": "shlpname", "value": "' l_shlp '"},"key": "fieldname", "value": "' l_field '"}]}' INTO htmldoc-line.
    The correct code is like:
    CONCATENATE '{"results":[{"key": "shlpname", "value": "' l_shlp '"},{"key": "fieldname", "value": "' l_field '"}]}' INTO htmldoc-line.
    Another question is, I can't get any words in Chinese from WebRFC. It returns error when I try it. How can I configure it?
    Xin

  • How to add items dynamically to the DropDown Ring control in Web UI Builder

    Hi All,
    Is there any way to add the item names to DropDown Ring Control in Web UI Builder?
    Or
    Is there any other control available to make selection in the Front Panel which can be dynamically loaded?
    Thanks,
    Alagar

    DiyaDiya  
    We do not currently have a solution for populating the items in a ring dynamically. 
    Thanks for the clarification.
    Seems incredible after all these years that such functionality (dynamically populating a ring control) is still beyond Labview. I must be missing something.
    However, I'd suggest a combobox is closer than a listbox as a workaround.
    [edit]
    nevermind, it actually can be done (well, maybe not in the webUI), I found the explanation here http://digital.ni.com/public.nsf/allkb/FB0409491FAB16FA86256D08004FCE7E

  • How to remove "Items" in the Search Header Component

    Hi guys
    I'm hoping some of you can help me out with this problem.
    In my collection renderer, I have entered "SearchHeaderComponent,this", which has given me the Searchheadercomponent, that I was interested in. Unfortunately I'm only interested in the "No search results" and "Did you mean..." functions of the Searchheadercomponent, I am NOT interested in the "Items" and "Sort By" functions.
    I thought these changes had to be done in the Search Options Set via "Enable Item Selection" and "Enable Sorting of Search Results", but if I deselect these it yields no changes.
    Could anyone give me a good piece of advice on this issue?
    And if anyone knows of any documentation on SearchHeaderComponents except http://help.sap.com/saphelp_nw04/helpdata/en/a6/98955203cf0e4698ffa95bac071c2b/frameset.htm, I would really appreciate it and I don't forget to reward points.
    Regards,
    Martin

    Hi Phil
    No, sorry, I haven't stumbled across anything at this point.  You should know though, that I don't have the need to develop my own search header component, I just want to be able to disable sort by and items from the standard search header component.
    I dont believe that there is a guide for developing search header components, but if you're lucky Matthias Röbig-Landau or Thilo Brandt from SAP sees this message, and replies. I'm sure they know if any documentation on developing a search header component is available.
    There is nothing you can use in this guide by Thilo Brandt: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/41cbcb56-0701-0010-43b4-fbc138ea2b6a?
    Kind regards,
    Martin

  • How to add items into giftlist

    hi all please give me the solutions and code

    Hi,
    Several servlet beans are provided to support gift list and wish list functionality. These servlet beans can be used with forms to look up gift lists and gift items, as well as to perform actions, such as removing or purchasing items from a gift list, adding gift lists to a profile, and removing gift lists from a profile.
    You can look at Pioneer Cycling Store as an example  in  /atg/commerce/gifts/GiftlistFormHandler component in the product display page with an option for the customer to pick a list for the selected item.
    <code>
    <dsp:form action="<%=form24%>" method="post">
         <input name="id" type="hidden" value='<dsp:valueof param="id"/>'>
         <input type="hidden" name="itemType" value="product">
         <input name="itemId" type="hidden" value='<dsp:valueof
                      param="Product.repositoryId"/>'>
         <dsp:input bean="GiftlistFormHandler.addItemToGiftlistSuccessURL"
              type="hidden" value="../user/lists.jsp"/>
         <dsp:input bean="GiftlistFormHandler.addItemToGiftlistErrorURL" type="hidden"
              value="../user/lists.jsp"/>
         <dsp:input bean="GiftlistFormHandler.productId"
              paramvalue="Product.repositoryId" type="hidden"/>
         <%/*Display any errors that have been generated during Cart operations: */%>
         <dsp:include page="../../common/DisplayGiftlistFormHandlerErrors.jsp"
              flush="true"></dsp:include>
         Add <dsp:input bean="GiftlistFormHandler.quantity" size="4" type="text"
                  value="1"/>
         <dsp:select bean="GiftlistFormHandler.catalogRefIds">
         <dsp:droplet name="/atg/dynamo/droplet/ForEach">
           <dsp:param name="array" param="Product.childSKUs"/>
           <dsp:param name="elementName" value="sku"/>
           <dsp:param name="indexName" value="skuIndex"/>
           <dsp:oparam name="output">
         <dsp:getvalueof id="option59" param="sku.repositoryId"
              idtype="java.lang.String">
    <dsp:option value="<%=option59%>"/>
    </dsp:getvalueof><dsp:valueof param="sku.displayName"/>
           </dsp:oparam>
         </dsp:droplet>
         </dsp:select>
         <BR>
         to
         <dsp:select bean="GiftlistFormHandler.giftlistId">
           <dsp:getvalueof id="option73" bean="Profile.wishlist.id"
                idtype="java.lang.String">
    <dsp:option value="<%=option73%>"/>
    </dsp:getvalueof>My Wishlist
           <dsp:droplet name="/atg/dynamo/droplet/ForEach">
             <dsp:param bean="Profile.giftlists" name="array"/>
             <dsp:param name="elementName" value="giftlist"/>
             <dsp:oparam name="output">
             <dsp:getvalueof id="option83" param="giftlist.id"
                  idtype="java.lang.String">
    <dsp:option value="<%=option83%>"/>
    </dsp:getvalueof><dsp:valueof param="giftlist.eventName">Undefined</dsp:valueof>
             </dsp:oparam>
            </dsp:droplet>
         </dsp:select>
         <dsp:input bean="GiftlistFormHandler.addItemToGiftlist" type="submit"
              value="I Want It"/>
        </dsp:form></dsp:getvalueof>
    </code>

  • [SOLVED]how to add items in gnome 3 file manager

    Added an illustrating picture describing what I want to do. It wont let me just drag them there, any suggestions?
    Last edited by Crypz (2011-10-01 17:52:12)

    rogue wrote:Is that Nautilus file manager? If so I think you use the bookmarks to add things to the places menu.
    Figured it out.
    Tried that bookmark thing earlier too but it didnt react/do anything.
    now i tried "edit bookmarks" and somehow managed to get the bookmark option activated. Bookmarks appeared on the left and can now drag items there.

Maybe you are looking for