Search parameters are getting cleared after search result

Hi ,
We have created z component with search and search result view based on only value nodes.
we are able to get search result with the give search criteria. After getting result   search parameters are getting refreshed.
how to keep those values in search parameters.   which method i need to redefine..... what will be the part of code.
Please suggest .
thanks
ram

Hi,
You have to set the search field values after the result obtained. I believe you can find this in any of the standard advanced search components - BT111S_OPPT etc. for reference.
Regards,
Harish P M

Similar Messages

  • Advanced search has it fields cleared upon searching

    Using the advanced.aspx the entered values are all cleared upon searching.
    Im lead to beleve that this is by design behaviour and that populating the search-fileds in the resultpage is for everyone to solve themseleves.
    Could this be true?

    I've since learned that default behaviour is the strange
    1. return to simple search
    2. And fill the search field with the parameters.
    3. Let the user click the "advanced search" link to get to advanced search again with the filled values posted and build the form again

  • Text getting cleared after throwing OAException message

    Hi,
    I have a message text input item and a drop down if user does not enter anything in either and hits button then I am throwing a OAException with a message.
    The problem is each time the user enters let us say some text in the drop down and does not select anything in the list all the text the user enters is being cleared off. They want to be able to preserve the text they wrote as it could be a lots of words.
    I tried acheiving this through saving the text into a variable and displaying it after the error but it gives me compile error saying statement is not reachable.
    Here is my part my code....the one in bold is where I was trying to assign the saved text back but it throws me compile error. Can someone suggest some other way of doing what I am trying to do?
    else if(SaveButton !=null && ((NoteType.length() == 0 || (NoteText.length()==0 && !"".equals(NoteText.trim())))))
    {System.out.println("The Note Status is Null raise an error");
      saveNoteText = NoteText;
      String message = "You must enter a note and select a note type";
            throw new OAException(message, OAException.ERROR);
            *OAMessageTextInputBean Note = (OAMessageTextInputBean)webBean.findChildRecursive("NoteText"); // Does not work*
            *Note.setText(saveNoteText);}*

    Hi Guys,
    Actually yes I am setting the value to NULL in the beginning of the PR when the page first loads.
    But the issue is that if I don't do that then the comments / notes that the user enters are showing up if I hit cancel and come back to the page. So my requirement is that if the User comes in the page the notes and note type should be null or blank.
    There are 2 buttons on the page one is the Save button and the other is the Cancel button. I just want the to handle my items correctly on these events.
    * IF the user hits the save button without entering the required fields then I raise an OAexception but the all the fields are getting cleared out. ( I don't know how since I set them to NULL in the PR not in PFR). I want the error message but I don't want to clear out the fields.
    * IF the user hits the cancel button I don't want to retain or keep the fields I want to blank them out.
    Right now, I can make one or the other work but not both. Can anyone please suggest what I should do. Would really appreciate it. Below is my controller code that setting the stuff
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    String test = (String)pageContext.getParameter("ImcPartyId");
    String ExecuteQueryReport = pageContext.getParameter("ExecuteQueryReport");
    String retURL = pageContext.getParameter("retURL");
    String ExecuteQuery = pageContext.getParameter("ExecuteQuery");
    String SourceSystem = pageContext.getParameter("SourceSystem");
    pageContext.putSessionValue("SourceSystem", SourceSystem);
    System.out.println("The Party ID Here is "+ test);
    {  *OAMessageTextInputBean Note = (OAMessageTextInputBean)webBean.findChildRecursive("NoteText");*     // If I comment this out then in the error
    OAMessageChoiceBean NoteType = (OAMessageChoiceBean)webBean.findChildRecursive("NoteTypeID"); // message my fields are not getting blanked out
    Note.setText(null);
    NoteType.setText(pageContext, null); } // but if I cancel and come back it still shows up...
    pageContext.putSessionValue("retURL", retURL);
    pageContext.putSessionValue("ExecuteQuery", ExecuteQuery);
    pageContext.putSessionValue("ExecuteQueryReport", ExecuteQueryReport);
    // This code added to make the cursor busy after apply.
    OAWebBean body = pageContext.getRootWebBean();
    if (body instanceof OABodyBean)
    ((OABodyBean)body).setBlockOnEverySubmit(true);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
         System.out.println("Start the Controller");
    String SaveButton = (String)pageContext.getParameter("SaveNote");
    String CancelButton = (String)pageContext.getParameter("CancelNote");
    String NoteText = (String)pageContext.getParameter("NoteText");
    String NoteStatus = (String)pageContext.getParameter("NoteStatusID");
    String NoteType = (String)pageContext.getParameter("NoteTypeID");
    String Party = (String)pageContext.getParameter("ImcPartyId");
    String SourceSystem = (String)pageContext.getSessionValue("SourceSystem");
    String NewStatus = (String)pageContext.getSessionValue("NewStatus"); // This is working.
    String OldStatus = (String)pageContext.getSessionValue("OldStatus");
    String retURL = (String)pageContext.getSessionValue("retURL");
    String ExecuteQuery = (String)pageContext.getSessionValue("ExecuteQuery");
    String ExecuteQueryReport = (String)pageContext.getSessionValue("ExecuteQueryReport");
    System.out.println("THE OLD STATUS IS " + OldStatus + " New Stauts " + NewStatus);
    // System.out.println("The Note Type is " +NoteType);
    // System.out.println("The Party Cancelled is " + Party);
    String RespID = Integer.toString(pageContext.getResponsibilityId());
    String UserID = Integer.toString(pageContext.getUserId());
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    Serializable[] params = {NoteText, RespID, UserID, Party, NoteStatus, NoteType};
    Serializable[] params1 = {Party, NewStatus, SourceSystem};
    if (CancelButton != null)
    { System.out.println("Inside Cancel");
    OAApplicationModule projectam = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("ShipperOverviewAM1");
    projectam.invokeMethod("rollbackTransaction");
    CancelButton = null;
    // The user has clicked an "Cancel" icon so we want to navigate back keeping everything in Context.
    HashMap param = new HashMap();
    param.put("partyID", Party);
    param.put("ExecuteQueryReport", ExecuteQueryReport);
    param.put("SourceSystem", SourceSystem);
    param.put("ExecuteQuery", ExecuteQuery);
    param.put("retURL", retURL);
    pageContext.setForwardURL("OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG"
    ,null
    ,OAWebBeanConstants.KEEP_MENU_CONTEXT
    , null
    , param
    ,true // Retain AM
    ,OAWebBeanConstants.ADD_BREAD_CRUMB_NO
    ,OAWebBeanConstants.IGNORE_MESSAGES);
    else if(SaveButton !=null && ((NoteType.length() == 0 || (NoteText.length()==0 && !"".equals(NoteText.trim())))))
    {System.out.println("The Note Status is Null raise an error");
      String message = "You must enter a note and select a note type";
        throw new OAException(message, OAException.ERROR);  }
    else if (SaveButton !=null && ((NoteType.length() > 0 && NoteText.length() > 0 && !"".equals(NoteText.trim()))))
    { System.out.println("Inside here Pressed Save Button");
    String returnValue = (String)am.invokeMethod("addNotes", params);
    //if (a != null && !"".equals(a.trim()))
    // Put an if condition here. Only commit if the Notes return a "S" otherwise throw an exception.
    if (returnValue.equals("S"))
    {  OAApplicationModule projectam = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("ShipperOverviewAM1");
    projectam.invokeMethod("UpdateStatus", params1);
    // projectam.invokeMethod("commitTransaction");
    System.out.println("Commit Transaction Done.");
    MessageToken[] tokens =
    { new MessageToken("NEWSTATUS", NewStatus),
    new MessageToken("OLDSTATUS", OldStatus),
    String MainUrl = "OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&ImcPartyId="+Party+"&ExecuteQueryReport="+ExecuteQueryReport+"&SourceSystem="+SourceSystem+"&ExecuteQuery="+ExecuteQuery+"&retURL="+retURL;
    OAException descMesg = new OAException("XXTSA", "XX_KSMS_SAVED_NOTES", tokens);
    OADialogPage dialogPage = new OADialogPage(OAException.INFORMATION, descMesg, null, MainUrl, null);
    pageContext.redirectToDialogPage(dialogPage);
    else
    {   OAApplicationModule projectam = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("ShipperOverviewAM1");
    projectam.invokeMethod("rollbackTransaction");
    System.out.println("Rollback Executed ");
    String MainUrl = "OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&ImcPartyId="+Party+"&ExecuteQueryReport="+ExecuteQueryReport+"&SourceSystem="+SourceSystem+"&ExecuteQuery="+ExecuteQuery+"&retURL="+retURL;
    OAException descMesg = new OAException("XXTSA", "XX_KSMS_ERROR_NOTES");
    OADialogPage dialogPage = new OADialogPage(OAException.INFORMATION, descMesg, null, MainUrl, null);
    pageContext.redirectToDialogPage(dialogPage);
    // OAApplicationModule rootam = pageContext.getRootApplicationModule();
    //am.invokeMethod("commitTransaction");
    // System.out.println("Inside Save");
    // Try build your own Dialog Page here....
    /*String MainUrl = "OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&ImcPartyId="+Party;
    OAException descMesg = new OAException("XXTSA", "XX_KSMS_SAVED_NOTES");
    OADialogPage dialogPage = new OADialogPage(OAException.INFORMATION, descMesg, null, MainUrl, null);
    // This should take us to and OK Button after pressing the User should go back to Shipper Page. */
    }

  • Field values directly binded to backend service are getting cleared.

    Hi,
    In HCM Forms & Process, for ex: in a form the header field values are directly binded to SAP_PA backend service and rest of the fields (dropdown list and free text fields) are getting from custom generic service. Now there is also a pushbutton in my form is used to calculate percentage of a field. Now when the form is displayed by default the header values are getting populated from SAP_PA backend service. When I click the push button with out selecting values(drop down list) getting from generic service all header field values are getting cleared. But if I select any dropdownlist value before selecting pushbutton and then if I click pushbutton all the header fields are retained with values. I am facing this problem for all the forms that I developed. I am looking for valuable answer.
    Regards,
    Nayani .

    So you are or are not using a user event? Sounded like you were which was firing when the user selecpiushed the "button" for calculating fields. Whatever "event" you have tied that button too seems to be your culprit. Are you doing this calculation in Javascript off the button "onClick" even or passing it to a HCM P&F "user event" in the backend? If it is to a HCM P&F "user event", that's where I would make sure your fields are selected.
    From the sounds of it, it seems when you do NOT select a dropdown list value, your generic service is not handling this gracefully and an error occurs. That would cause ALL other services NOT to run. It's an odd thing the framework does and often very frustrating to hunt down, but whenever any service errors, it will not run others.....hence no fields coming back correctly....even if those other services have NOTHING to do with yours (weird, I know).
    Hope this helps.

  • Custom fields appended in /SAPAPO/MM_DOC table gets cleared after BOP

    Hi,
    I appended few fields in /SAPAPO/MM_DOC table for STO's. I was able to populate it from ECC.
    But once the BOP job has run all these custom fields are getting cleared.
    Can someone tell me how to fix this.
    Thanks
    Kranthi

    Hi Vaibhav,
    Some of the custom fields has been added to /SAPAPO/MM_DOC table in SCM to populate data of STO's in ECC.
    These custom fields will be updated using  BADI's in SCM.
    When the Back Order Processing(BOP) runs on SCM for these STO's these fields whatever has been updated from ECC are cleared.
    How can I stop clearing these custom fields.
    Can I use any exits or BADI's which can update these fields during BOP.
    Regards,
    Kranthi

  • HOW CAN I REMOVE "ASK" SEARCH BAR AND GET BACK FIREFOX SEARCH BAR?

    for last few dyas, when i click on firefox icon, i get the "ASK" search bar. i want to remove 'ASK' search bar, and get back firefox search bar

    If this is the Ask.com toolbar, you can remove it by following these instructions: '''[http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4 How do I uninstall the Toolbar?]'''
    You may also be able to '''[[Uninstalling add-ons|disable or uninstall the add-on using the Firefox add-on manager]]'''.

  • Input Search criteria gets cleared on searching in Search Region

    In a pageA I have a search region, this search region has
    2 date fields.
    I have a return link on pageA that directs to pageB. Another button on pageB directs to pageA. For every page redirection, we have retainAM='Y', due to this the search criterial in pageA still remains if we do a navigation like pageA->pageB->pageA
    to clear the search criteria for every page reload of pageA, I am setting the value of
    datefield to null in the processrequest() of pageA.
    Now the wierd thing that is happening is though the search results are appearing fine,
    the data entered in date fields is getting disappeared on doing a search.
    in processformrequest, when I do a pagecontext.getparameter(datefieldID) this returns a value but
    doing a webBean.findindexchildrecursive(dateBean).getValue returns null.
    any idea what the issue could be.
    Thanks,
    Kalyan.
    Message was edited by:
    Naga Kalyan

    Is it a query region or a custom search region? What is the code written to null the date fields?
    Is there any flow where the values are retained?
    --Shiv                                                                                                                                                                                                                                                                                                                           

  • Q10 search remains on a contact after search and call - any way to auto close?

    Hi,
    I'm just starting to try out a q10 for work purposes and one issue I ran into several times today...
    After typing in a contact name (to search) and then selecting call or email, making call or writing email and the turning screen off:
    The next time I turn the phone on to search for anything, the contact I had searched before appears. Usually after a few button presses I realize it and by then I'm stuck in editing that contact.
    Is there a way to have the search close after the call/email ?
    Or maybe have it reset after a while ?
    Or, even better would be a gesture I can use from when the screen is off to activate screen and start a new ?
    On that last point, depending on the state that I left the phone in it seems I must to do different things to perform a new contact search...
    For example search is showing a contact already and I'm not on the search screen:
      Swipe up or power button to activate Press a key to start a search Swipe left to leave the contact that was displayed by search
      If search is not showing a contact then I just swipe up and type a name
    Also, different topic but I am really hoping there is a simple solution here:  is there a rapid way to jump straight into the hub?  
    Sometimes I need to swipe up to turn on, swipe up to exit an app the swipe right swipe right and swipe right to get into the hub.  It feels kind of disorienting since it's not always the same procedure and I'd like these things to be "muscle memory."  
    Thanks, 
    Dave

    after youve called the contact and it opens with their name again just tap cancel on top right of screen and it puts you back to the first person in your contacts list.
    its the only way ive found out how to close the cotacts name.

  • JSF page values are getting cleared with validation errors

    Using Jdev 10.1.3.4, JSF and ADF BC
    I have 2 jspx pages - 1 input page(with bindings to VO) and a lookup page bound to a read-only VO.
    page1: I am entering values to all the fields and then saving the form. Now if I had entered an invalid value for one of the fields and try to save - I am checking if value is valid in page1's managed bean and returning error message.
    After I get this error message I clear out the invalid value and use the lookup & navigate to the 2nd page fetch a valid value and when I return to my 1st page I am loosing values for some of the fields in my 1st page. Not sure how and this is my first issue! I dont see this behavior if I use the lookup option directly(instead of entering an invalid value, clearing the value after seeing the error message and then going to the lookup page)
    Next I am reentering values that I have lost and when I try to save again this time the value I had set from the lookup page is cleared and since this field is required I am getting an exception again. So, basically once there is an error for a field any new value I set gets cleared on commit and i get a required message for the field. Thanks for any clarifications/help with these strange issues.

    Fair enough :)
    Actually what I was meaning was could I use a collection to repopulate the tabular form when I receive errors. It appears as if it may work. However, I am hitting one snag.
    I have created a PL/SQL Process that runs On Submit and Before Computations/Validations. In this process, I have saving the values in the tabular form to a collection.
    I was then hoping to create another process that ran after any errors occur. However, it does not appear as if any processes run when the screen redraws after a validation issue. Is there a process that runs after validations when the screen is redrawing? Will I need to do this using javascript?
    Thanks

  • UWL items not getting cleared after performing action

    Hello
    We are on EP 7.0.
    We are experiencing a strange behaviorin UWL.
    When end users receive workitems in their inbox and they take the appropriate actions, the workitems still stay in the inbox. Normally they should no longer appear.
    I have tried the refresh in the UWL iview but no luck.
    It seems to work in DEV and other landscape. It does no work in Production. The software installation of UWL are the same across all landscapes.
    Is there any other setting that is required. In SAP GUI this is not an issue.
    Any feedback or tips would be helpful. thanks.
    Regards,
    Sunil

    Hi,
    As far as I can remember, this is a known limitation of UWL.
    Please, check this thread : UWL work item not getting cleared
    I am unsure whether you use the correct button the refresh the UWL (it is well hidden!), check the slide 6 in this document :
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20f4843e-314f-2a10-2a88-8c4afa20dda6&overridelayout=true
    Best regards,
    Guillaume

  • UME properties are getting loaded after during cluster Import.

    Hi All,
    We are getting an error while starting the JAVA instance of oue SCM system.
    We have done a SYSTEM refresh and during our Pre Steps we have exported the Cluster DATA from the config tool.
    After the Restore when we have imported the Cluster Data back from Config Tool, we are getting this error
    Error occured hile loading UME properties MSG:null.
    We are using ABAP database as a userstore, now we are not able to see the UME LDAP DATA tab in the config tool.
    nd also we are getting error when we are opening the Propertysheet com.sap.security.core.ume.service.
    Kindly help us on that as we are not getting any help on net.
    Regards,
    Arun Pathak

    This the dafault Trace from location /usr/sap/<SID>/DVEBMSG<nn>/j2ee/cluster/server0/log/defaultTrace
    #1.#001E0BFD70DA001F00000002000002240004809A3FD2D48C#1267299890942#com.sap.security.core.server.ume.service.UMEServiceFrame##com.sap.security.core.server.ume.
    service.UMEServiceFrame.start()#######SAPEngine_System_Thread[impl:5]_72##0#0#Error##Plain###com.sap.security.core.util.config.UMConfigurationException: Readi
    ng current UME properties failed.: Invalid PKCS\#5 padding length: 243#
    #1.#001E0BFD70DA001F00000003000002240004809A3FD2D521#1267299890942#com.sap.security.core.server.ume.service.UMEServiceFrame##com.sap.security.core.server.ume.
    service.UMEServiceFrame.start()#######SAPEngine_System_Thread[impl:5]_72##0#0#Error##Plain###com.sap.security.core.util.config.UMConfigurationException: Readi
    ng current UME properties failed.: Invalid PKCS\#5 padding length: 243
            at com.sap.security.core.server.ume.service.SAPJ2EEConfiguration.readPropertiesFromStorage(SAPJ2EEConfiguration.java:242)
            at com.sap.security.core.util.config.UMConfigurationBase.refreshProperties(UMConfigurationBase.java:1043)
            at com.sap.security.core.util.config.UMConfigurationBase.initialize(UMConfigurationBase.java:113)
            at com.sap.security.core.server.ume.service.SAPJ2EEConfiguration.<init>(SAPJ2EEConfiguration.java:143)
            at com.sap.security.core.server.ume.service.SAPJ2EEPlatformTools.<init>(SAPJ2EEPlatformTools.java:79)
            at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:258)
            at com.sap.engine.frame.ApplicationFrameAdaptor.start(ApplicationFrameAdaptor.java:31)
            at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
            at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
            at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
            at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:81)
            at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:152)
    caused by -
    com.sap.engine.frame.core.configuration.ConfigurationException: Invalid PKCS\#5 padding length: 243
            at com.sap.engine.core.configuration.impl.security.Crypter.decrypt(Crypter.java:168)
            at com.sap.engine.core.configuration.impl.addons.PropertyEntryImpl.<init>(PropertyEntryImpl.java:97)
            at com.sap.engine.core.configuration.impl.addons.PropertyEntryImpl.readPropertyEntry(PropertyEntryImpl.java:54)
            at com.sap.engine.core.configuration.impl.addons.PropertySheetImpl.<init>(PropertySheetImpl.java:63)
            at com.sap.engine.core.configuration.impl.ConfigurationImpl.getPropertySheetExtensionInterface(ConfigurationImpl.java:198)
            at com.sap.engine.core.configuration.impl.ConfigurationImpl.getPropertySheetInterface(ConfigurationImpl.java:132)
            at com.sap.security.core.server.ume.service.SAPJ2EEConfiguration.readPropertiesFromStorage(SAPJ2EEConfiguration.java:228)
            at com.sap.security.core.util.config.UMConfigurationBase.refreshProperties(UMConfigurationBase.java:1043)
    Edited by: Arun Pathak on Feb 28, 2010 10:59 PM

  • ReturnEvent not get called after search more than 10 times in LOV page

    hi there,
    I using ADF and Jdeveloper 10.3.1.2
    In my project I have a form which called a LOV page for selecting multiple records and submit button sumup the values of each selected row of LOV and return to the main form and display added value on text field.
    problem is when I search records more than 10 times or more I put search criteria and select row on each time. After click on submit the value of each row is sum up return on the main form but it not reflected on main form because ReturnListener not get called .
    But when I select many rows more than 10 without searching then the ReturnListener get called when it returning on main form.
    So should I do so that ReturnListener get called.
    Is it any bug of ADF or Jedeveloper .

    Hi,
    depends on whether you control the BPM task flow or not. If you do, have a look at this thread for how to debug the problem
    How to debug "Attempt to validate an already invalid RegionSite"?
    Otherwise, post it to the SOA forum if this is initiated by their generated code. The most common reason though is that the task flow lacks a default activity. So if the default activity is somewhat calculated dynamically in your application then this may be a reason
    Frank

  • Pricing errors are not cleared after fixing the master data

    Hi All,
    Kindly go through the issue explained below.
    Pricing is determined properly in transaction level(Oppt) when the master data is correct. cool.  
    System shows pricing error (Mandatory condition 0PR0 is missing, Pricing could not be determined) when price(condition record) is not maintained in product. This is also fine.  Now the issue is, Pricing errors are not going away from Opportunity even after the master data(product) fixed with maintaining pricing.
    Scenario     :  Opportunity is saved with pricing errors. 
    Analysis     :  Price or/and Sales area are not maintained in Product that is maintained in Oppt.  That is why this error occurs.  So, we have maintained the Sales area/Price(condition record) in product. Now master data is corrected.
    Expected result: After maintaining the price/sales area in product, the errors should go off from the created Opportunities and pricing should be determined properly.
    Actual result: When we create a new opportunity with the same product, pricing is determined.  But the errors are not going away from the already created opportunity transactions.
    Please let me know if this scenario is not clear to understand. 
    Please help with your inputs.  Thank you for your time.
    Regards,
    Maddy

    Hi Luis,
    Thank you very much for your reply.  Could you please help me where is the button 'Redermine Pricing' available?  I have checked in Opportunity transaction but failed.
    Regards,
    Maddy

  • Selected list in the right side of the shuttle gets clear after form submit

    Hi all,
    In my application, I have a list of email in the shuttle. User can choose the email from that list of email from the shuttle and/or they can also add additional email address separately. So, in my page, I have a shuttle which has pre-populated email list, and I have a text box and a multi-select list (where they can select multiple email address they entered and hit delete to delete them). The problem that I am seeing is, after selecting the email list from the shuttle, and if they entered additional email address and hit "Add" button (which is a submit button to add email address to the multi-select list), only one email address in the selected side of the shuttle remained. rest of them moved back to the left side. I am not sure how to accomplish not to behave that way. Can someone please guide me how to resolve this issue? Much appreciated. Thanks.
    Soe

    Just found out that there is some error in the page branch, which makes the shuttle to clear off. Now the problem solved. Thanks.

  • ODS Activation queue not getting cleared after activation

    Dear Experts,
    I have a strange situation in my BI 7.0 system. Within one ODS I have an activation queue (new data table) of around 34Gb in size. As far as I know, this table should be empty, because all requests are activated correctly.
    Every night a delta is loaded into the ODS and there are no errors. But still the data remains also in the activation queue.
    In fact: All requests since the initialization still reside in the activation queue.
    My question is: Can I savely delete all data from the activation queue?
    It is only occuring for one ODS, all other ODS'es do clear the activation queue succesfully.
    Here is a part of the log for the last delta load, which might lead to the actual problem:
    07.10.2008 00:07:39 Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BIBCTL_D48V1ORBHRBOPNPN3S8I1RUEC with ID 00073900        RSM            703
    07.10.2008 00:07:40 Parallel processes (for Activation); 000003                                                                       RSODSO_TOOLS        018
    07.10.2008 00:07:40 Timeout for parallel process (for Activation): 000600                                                             RSODSO_TOOLS        019
    07.10.2008 00:07:40 Package size (for Activation): 020000                                                                             RSODSO_TOOLS        020
    07.10.2008 00:07:40 Task handling (for Activation): Backgr Process                                                                    RSODSO_TOOLS        021
    07.10.2008 00:07:40 Server group (for Activation): No Server Group Configured                                                         RSODSO_TOOLS        022
    07.10.2008 00:07:40 Parallel processes (for SID Gener.); 000003                                                                       RSODSO_TOOLS        018
    07.10.2008 00:07:40 Timeout for parallel process (for SID Gener.): 000600                                                             RSODSO_TOOLS        019
    07.10.2008 00:07:40 Package size (for SID Gener.): 020000                                                                             RSODSO_TOOLS        020
    07.10.2008 00:07:40 Task handling (for SID Gener.): Backgr Process                                                                    RSODSO_TOOLS        021
    07.10.2008 00:07:40 Server group (for SID Gener.): No Server Group Configured                                                         RSODSO_TOOLS        022
    07.10.2008 00:07:40 Activation started (process is running under user OLTP_RFC)                                                     RSODSO_PROCESSING     029
    07.10.2008 00:07:40 All data fields updated in mode "overwrite"                                                                       RSODSO_TOOLS        023
    07.10.2008 00:07:40 Process 000001 for determining SID for InfoObject 0STORNO started                                               RSODSO_PROCESSING     045
    Thanks,
    Steven Groot

    Dear Experts,
    Finally I got some input from SAP about this issue, which resolved the error.
    Within the table RSODSACTREQ, there was an entry with an errorstatus. This entry was the cause of the activation queuenot being deleted.
    As quoted by SAP in response to my OSS Message:
    The RSODSACTREQ table records requests which have been activated.
    However, sometimes this table can contain requests which have actually
    already been deleted.
    The timestamp for this request (REQU_ELCCK3YPESODU19NXQH9BQZ70) is the
    19th of Feb 07, yet there is no such request in the ODS (first request
    is the 20.02.2007).
    Such a request, which has an entry in RSODSACTREQ with status "2"
    will prevent deletion of the new data table.
    If the request does not exist anymore in the change log table and there
    is no data for the request in the active table, then you can resolve
    this inconsistency by deleting the entries for this request from table
    RSODSACTREQ, and then the activation queue will be truncated with the
    next successful activation.
    Maybe you can use this information if it is applicable to your situation as well.
    Regards,
    Steven Groot

Maybe you are looking for

  • PDF attachments automatically opening ???

    This just started, but when I attach a PDF file to my email message it is now opening in its entirety in the message body. Some of these PDF files are large and I don't want them to automatically open when I attach them. Why did this start and how do

  • Java API's

    Hello I am fairly new to java however I have been reading a lot about it over the last couple of months as I need to created a Java application in which can send a file to a bluetooth device. I have a basic understanding of programming java, however

  • Share FCPX with Blu-ray  USB3 LaCie writer boot error

    Hi I've been around the bush and back looking at how to burn a blu-ray movie to a disc from FCPX and a slim Blu-ray LaCie drive.  I was able to burn a 5 minute movie from FCPX without any trouble but as soon as I try and burn something larger (like a

  • Russian ID3 tags are not suppor

    On the MuVo TX SE firmware . It is displayed in a wrong charecter format. Should I write to the Creative support or it's usefull?

  • Mask not working properly

    I have two layers. The top layer has a layer mask, and the bottom layer is the background. After using black to hide parts of the top layer, I try to reveal those parts again with the white brush...nothing happens. I've tried everything. Brush select