ADF partialpagerefresh works alternatively

Hi all,
I am using jdev 11.1.1.6.
In my ADF page I have a button. When that is clicked it pop up another inline window and displays a table with footer component. The requirement is that whenever user change the number field in table the footer should get refresh to show the total. I have used groovy sum function for that. It works well and show the sum correctly.
Recently I have observed that after making the changes in the table and closing it if I click the button again to invoke the inline window and make changes to numeric data, the footer data do not get refresh. If I repeat the same operation again, it works. So it works alternatively within the same session but I want it to work every time I invoke the pop up.
Any pointer to it will help. I might be doing something silly here.
Thanks,
Sachin Gupta

You need to pick up the cloud library when you set up your Android SDK - see step 4 here:
Oracle JDeveloper 11g Tutorials
2.gif
When you do a deployment from Jdeveloper you'll be prompted to decide deployment to what - you can choose emulator or device - if your device is connected with a USB cable to your machine and your machine can see it in the finder you should be able to deploy to it.

Similar Messages

  • Working alternating with iPhoto and FCE tgrying to import pictures from iPhoto into FCE suddenly all my 22300 pictures disappeared leaving empty frames. Does somebody know where the pictures could have gone and how can I get them back into iPhoto? Lothar

    Working alternating with iPhoto and FCE tgrying to import pictures from iPhoto into FCE suddenly all my 22300 pictures disappeared leaving empty frames. Does somebody know where the pictures could have gone and how can I get them back into iPhoto? Lothar

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Does ADF faces works in a page that created by JSC and has some of its comp

    Hi
    Thank you for reading my post
    does any one tried to run ADF faces with JSC applications ?
    I tried to use some of its components (color picker) or a jsf page creted by JSC but after i add taglib and components code to jsp file my page does not shows anything and nothing appeared in log viewer.
    does any one yet tried this ?
    Thanks

    Hi
    Thank you for reading my post
    does any one tried to run ADF faces with JSC
    applications ?
    I tried to use some of its components (color picker)
    or a jsf page creted by JSC but after i add taglib
    and components code to jsp file my page does not
    shows anything and nothing appeared in log viewer.
    does any one yet tried this ?Are you trying to 1) get the ADF faces components working in Creator itself or 2) adding them afterward to an existing Creator developed page? Unfortunately, #1 requires additional work. See http://blogs.sun.com/roller/page/edwingo?entry=component_authoring_for_creator for more information. You may be able to do #2, but I haven't tried it.
    -Edwin
    Creator team
    http://blogs.sun.com/edwingo/

  • ADF wont work with custom LoginModule! Question for Mr. Nimphius!

    ive setup login module as shown in:
    http://www.oracle.com/technology/products/jdev/howtos/10g/jaassec/index.htm
    code:
    actionContext.getHttpServletRequest().isUserInRole("Administrators") works! but i also want this code to work in ADF:
    appmod.getSession().isUserInRole("Administrators")
    with default loginmodule "oracle.security.jazn.tools.Admintool" everything is ok! i can get roles in adf but with custom login module i cant!
    in ApplicationModule config i have setup
    jbo.security.config =
    jbo.security.context = oracle.security.jazn
    jbo.security.enforce = Must
    jbo.security.loginmodule = oracle.sample.dbloginmodule.DBTableLM.DBTableLoginModule
    please help!

    thank you very much for the reply!!!!
    i did what you told but no luck... :(((
    i still can not get user role from application module!
    this code:
    if (AppModule.getSession().isUserInRole("Administrators"))
    System.out.println("User is in role! ");
    simply does not work!
    ive tested on standallone oc4j, ive tested on embeded jdveloper 10.1.2.1 !
    i get NullPointerException at at oracle.jbo.server.security.jazn.JboJAZNUserManager.isUserInRole(JboJAZNUserManager.java:113)
    the thing is that i can use isUserInRole() from request but i can not from application modulle....
    ...ive lost hours in decompiling and tracking down ADF code just to realize that there is no way to use custom login module with ADF because the thing is hard coded to use xml or ldap..
    the only way i see how to solve the problem is to extend oracle.jbo.server.SessionImpl
    and override
    getUserRoles()
    and
    isUserInRole(String s)
    i can substitute session class with my own by setting
    SessionClass = oracle.jbo.server.ExtendedSessionImpl
    in file jboserver.properties (which is inside bc4jmt.jar)
    the easier way is to write my own function isUserInRole() in EntityImpl... i always can get user principal name with AppModule.getUserPrincipalName()
    what do you think?

  • @import in css file in adf not working

    I created a new css support.css in same folder structure in which first css(base.css) and i use @import in base.css to import rules from support.css in base.css and apply css in a component but this functionality not working. please tell me correct rule to import css file in adf
    base.css code--
    @import url("support.css");
    /**ADFFaces_Skin_File / DO NOT REMOVE**/
    @namespace af "http://xmlns.oracle.com/adf/faces/rich";
    @namespace dvt "http://xmlns.oracle.com/dss/adf/faces";
    and support.css code
    .testCss{
    color :red;
    i want to use testCss in our application

    Hi,
    the information that is missing in your question is "what release of Oracle JDeveloper" we are talking about. If you look at the new feature list for JDeveloper 11.1.2 then you see that @import is supported in that release (previously this has been filed as bug 10066954 that is fixed in the 11.1.2 release)
    http://www.oracle.com/technetwork/developer-tools/jdev/jdev-11gr2-nf-404365.html
    Frank

  • Button Toggle ADF Javascript(Works in Firefox but not in IE. why ?)

    I have written a code to toggle button in ADF as follows:
    <af:resource type="javascript">
    function enableDisable(actionEvent){
    alert("21");
    document.getElementById('cb1').style.background='red';
    document.getElementById('cb2').style.background='green';
    alert("221");
    function enableDisable1(actionEvent){
    alert("21");
    document.getElementById('cb1').style.background='green';
    document.getElementById('cb2').style.background='red';
    alert("221");
    </af:resource>
    <af:form id="f1">
    <af:commandButton text="commandButton 1" id="cb1"
    inlineStyle="background:'red';">
    <af:clientListener method="enableDisable" type="click"/>
    </af:commandButton>
    <af:commandButton text="commandButton 2" id="cb2" inlineStyle="background:'green';">
    <af:clientListener method="enableDisable1" type="click"/>
    </af:commandButton>
    This code works fine in Firefox, But My requirement is to run it in IE which it doesn't.
    Kindly provide me solution or any pointers to resolve this.

    I do not now what the function of this declaration is, but
    please remove this from the beginning your css and IE7 also shows
    bullets:
    margin: 0;
    padding: 1;
    The padding: 1; is definitely an error cause there should be
    at least something like px behind the 1, so like padding:
    1px;

  • Laser Jet 100 Colour MFP M175nw adf not working

    The ADF on my printer is not working for scan or copy, the rollers are up and do not engage when I place paper in the ADF -
    Have tried unplugging and resetting - there are no error messages showing
    any ideas ?
    Thanks
    moraj

    Hi @moraj ,
    I understand that the rollers are up and do not engage when the paper is in the ADF. I can help you.
    It sounds like a hardware issue with the printer.
    I have included a document for cleaning the ADF, just to rule that out.
    'Document feeder mispick' Message Displays on the Control Panel and the ADF Does Not Pick Up Paper o...
    Please call our technical support if the issue persists, at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    Contact HP.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • ADF not working in brand new LaserJet Pro MFP M127-M128

    We recently purchased a LasertJet Pro M127-M128.  The ADF does not work consistently.  It automatically prompts to glass feed.  When we change scan feeder and insert the document to the scanner we get an error report "ADF does not contain any pages.  Insert the pages and rescan."  There are already pages in the scanner. This is very frustrating.  I do not want to return this device but if we can't solve the problem we have no choice.  Thank you!

    Hello , Welcome to the HP Support Forums!
    I would like to work with you today with resolving the automatic document feeder issues that you're experiencing on your HP LaserJet Pro MFP M127fw. By the sounds of what you're describing, it does sound like you're experiencing a paper sensor issue with the automatic document feeder. To confirm this, can you remove all the paper from your automatic document feeder and with the printer at its normal screen insert 1 sheet into the feeder. The printer should make a 'ding' noise or display 'original' or 'document loaded' on the screen of the printer. Should none of these things happen than the paper sensor is not 'seeing' pages in the feeder and will not attempt to feed anything.  I'm going to provide some troubleshooting steps to resolve this automatic document feeder issue.  First, can you please run through the following HP Support document. The document does indicate the it is for a Paper Jam error, which I know you're not experiencing. However, it is always a good idea to check the automatic document feeder for any packaging debris or paper.  'Original Jam: Clear jam, and then press OK'  Once you check the automatic document feeder for debris and ensure that nothing is stuck in the mechanism, proceed with the next steps. Clean the pickup rollers and separation pad in the document feeder:
     1. Lift the document-feeder input tray. 2. Use a moist, lint-free cloth to wipe both pickup rollers and the separation pad to remove dirt. CAUTION: Do not use abrasives, acetone, benzene, ammonia, ethyl alcohol, or carbon tetrachloride on any part of the product; these can damage the product. Do not place liquids directly on the glass or platen. They might seep and  damage the product. 3. Once dry, close the document-feeder input tray. Load 1 piece of paper in the automatic document feeder. Ensure the paper guides are adjusted and the feeder lid is closed tight. Does the product detect paper loaded now?  If the printer still fails to recognize paper as loaded in the feeder a reset may be needed.  Please respond to this post with the result of your troubleshooting. Best of luck!

  • ADF Not Working HP Officejet 7610

    When trying to scan or copy multiple pages it only signals the glass to copy or scan.
    Went through all troubleshooting found here
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01728503&tmp_task=solveCategory&cc=id&dlc=en&lc...
    It does the make the beep noise so it's reading that the pages are loaded but still tries to scan from the glass.
    Nothing worked. Still cannot scan or copy from the ADF.
    This is a replacement printer to one that had an ink system error. I'd hate to have to call HP, go through all the steps I've already gone through twice, wait for a new printer and return the old one again.

    Hi @geno0010,
    Welcome to the HP Forums!
    I see that your ADF is not working with your HP Officejet 7610 printer. I am sorry to hear this, but happy to help!
    Three more suggestions to try:
    Make sure the printer's power cable is plugged directly into the wall outlet, and not a surge protector. Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector. This applies to Inkjet printers as well.
    Firmware update. Getting Printer Updates for HP Officejet 7610 Wide Format e-All-in-One Printer Series.
    Try the steps within this video as well. Fixing ADF Paper Pick-Up Issues - HP Officejet 7610 All-in-One.
    If these suggestions do not resolve the issue, then I would recommend to please call our phone support at 800-474-6836 for your replacement options. If you live outside the US/Canada Region, please click the link below to get the support number for your region. Country-language selector.
    Hope this works for you!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • PageFlowScope in ADF not working properly

    Hi. Experts...
    i am working on oracle JDeveloper 11g and try to consume a remote WSDL service, i have created an adf readonly table with the binding of datacontrol's method it is working fine..
    now i want to pass the selected row value on the next page where i will show the form to update the selected row's records.
    for this i am using setpropertyListener on the button of table page (.jspx page)
    and on next page(also .jspx page) i have set the selected row value in pageFlowScope.result
    when i am trying to get the value of "pageFlowScope.result" it shows the value like-
    [{Return=[{_RETURNEDROW=[{_XWF0V0=0.00, _XWGFVA=0.00, _XWASDT=2010-05-20, _XWGGVA=14.00, _XWBNCD=AG, _XWGIVA=0.00, _XWF1V0=0.00, _XWF0VA=0.00, _XWF3VA=0.00, _XWG4TX=Customer ACC10, _XWGDVA=0.00, _XWBPD0=2010-05-15, _XWIDV0=0.00, _DSDCDE=AU, _XWF1VA=0.00, _XWBAD0=2010-05-14, _XWF2VA=0.00, _XWF6VA=0.00, _XWGEVA=0.00, _XWF4VA=0.00, _XWE0NB=0, _XWBCCD=ACC10, _XWJUN0=0, _XWBQDT=2010-05-08, _XWARDT=2010-05-19, _PERSON=MTT, _XWGAVA=0.00, _XWGCVA=0.00, _CUSNO=1, _XWGBVA=0.00}], returnValue=11, _ERROROBJECT=[{_SQL_CODE=0, _SQL_STATE=00000}]}]}]
    but when i am trying to get the internal value of pageFlowScope.result through-
    pageFlowScope.result.Return._RETURNEDROW._CUSNO
    it show me error
    oracle.adf.model.adapter.dataformat.XMLHandler$DataCollection not have a property "Return"
    or
    pageFlowScope.result._RETURNEDROW._CUSNO
    it show me error
    oracle.adf.model.adapter.dataformat.XMLHandler$DataCollection not have a proerty "_RETURNEDROW"
    so plz guide me how can i get the value of pageFlowScope.result
    please help, its urgent
    regards
    Jayant

    Hi,
    so now how can i get the inernal value of pageFlowScope.result through binding.
    ADF binding ? No, you can't. To use ADF bindings you read values from a business services through a Data Control. The PageFlowScope is a memory scope of the task flows. You access it from Java or EL. However, in your case - as it seems - the memory scope contains structured data and no data objects.
    There is not much I can do for you other than recommending to complete one of the tutorials we have on otn.oracle.com/products/jdev
    Frank

  • I don't understand how ADF Security  works

    In short I used ADF Security wizard to make a secured fusion webapp (Form authentification, XML id store, no grants). It made me the error,login and welcome page and I added one more (a page with a table). I granted that page view access to one role defined in jazn.xml. I noticed that at deploy the content of 'jazn.com' is merged into 'myrealm'. Everything goes well when I try a user defined in jazn.xml, but when I add a new user directly from the WLS console (same group as the others defined in jazn.com) I can login but I cannot access the page with the table because I'm not authorized. I think it's a role mapping issue but I'm quite not sure... I tried to look after the valid-users=users mapping but I haven't managed to find the users role into wls.
    How is the application getting the users and roles (groups) from the wls realm? Why I can log in but not authorize ?
    Thanks
    Kquizak

    Hi,
    at devlopment / testing time the way the user provisioning works is that existing users and groups of the same name are initially removed and then re-created. So in your case you have a user created in WLS that is added to a group that is re-newed by the develop-test cycle. This means that when running the application, you no longer have the user to be a member of the group. In a next version of JDeveloper 11 we probably make the user/group provisioning an option, in which case your settings will be preserved. Note that this problem doesn't exist if you deploy the app to a stand alone server, like in production
    Frank

  • Does ADF BC work on a NoSQL DB ?

    I guess the answer is pretty much no , but wanted to get a confirmation from experts.
    In case it matters I am using 11.1.1.6 :)
    I guess using a BigData Appliance we can convert data in a NoSQL DB into a SQL based DB and then used ADF BC on top of it ?

    If you want to access NoSQL from an ADF application you should probably be using JPA/EJB as the layer that access the DB.
    Seems like EclipseLink (which is the JPA implementation in JDev) works with NoSQL -http://wiki.eclipse.org/EclipseLink/Examples/JPA/NoSQL
    And you can then use the rest of the ADF layers on top of it:
    http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/JPAdemo/JPA_demo_mp4.html

  • ADF: ValueChangeListener works but resulting ListBox is not rendered

    Hello,
    after trying for myself quite a while and searching here in the forums I almost give up since it does not seem to work.
    I have a form within a panelpage which consists of a text input field, two selectOneChoices (both with autosubmit), one selectManyListBox and one commandButton. None of them has the immediate attribute set!
    The both selectOneChoice shall update the contents of the selectManyListBox as soon as they receive a change in their selection.
    Since I do not want to use partialtriggers due to validation problem (these did cost me already nearly a day) I try to update the selectManyListBox using a valueChangeEvent on the second (later wanted on both) selectOneChoice.
    Everything works quite fine. The f:selectItems of the selectManyListBox have a list attribute from the backing bean bound to its value. These list is changed according to the selection of the selectOneChoice within its valueChanged()-method and afterwards the getter for this changed property is called accordingly (from the f:selectItems I presume).
    I can see all this during the debug process.
    But the result is not rendered into the selectManyListBox!
    Why?
    Even calling the appropriate renderResponse() within the valueChanged-method does not help at all!
    When I do a simple reload the same getter for the selectItems of the selectManyListBox is called (containing still the same values like after its call after the valueChanged() method) and they are rendered accordingly!
    My page has all metatags against cashing set so I do not understand why it is not rendered after the value change call!
    Can please somebody explain what I'm doing wrong here?
    This happens regardless if required is set to all the input fields or not.
    Code example can be provided if neccessary!
    Many thanks in advance
    Best Regards
    Message was edited by:
    Reth

    is not true because it requires a submit action to
    fire the ValueChangeListener
    But as said (I added it to my first post) both selectOneChoices have autosubmit enabled and the debugging showed that the Listener-Method is called and afterwards the getter that provides the value for the selectedItems for the selectManyListBox and it has all relevant entries according to the choices of the selectOneChoices!
    But the ListBox will first get rendered when a reload of the entire page is done (not when the autosubmits are commited)!
    I do not know why!?
    Best Regards

  • ADF is not working in JDeveloper 10g

    Hi all,
    I've been trying to get ADF to work with JDeveloper 10g but to no avail. I've followed the steps from the following link: http://www.oracle.com/technetwork/developer-tools/jdev/how-to-adf-faces-10gjdev-085657.html
    the only thing that i fail to follow is in creating the library. I have only the adf-faces-api.jar and adf-faces-impl.jar but not the share-1_1_18.jar
    I do not know whether this is creating the problem as my error message is not helpful.
    part of the error msg:
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(oracle.adf.DateTimeRange)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(oracle.adf.RegExp)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(oracle.adf.ByteLength)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(oracle.adf.Color,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.awt.Color)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(oracle.adf.DateTime,null)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.util.Date)
    May 8, 2013 12:25:11 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.util.Calendar)
    I've been trying to resolve this by creating a new project but once i input adf tags the problem arise again.
    Please help. Thanks!
    Edited by: 1003893 on May 7, 2013 9:28 PM

    Now that I've looked at the linked article...
    That was showing you how to use a very early version of ADF Faces (a pre-release, in fact) with a very old version of JDeveloper. That document is nearly 9 years old.
    Starting with JDeveloper 10.1.3, ADF Faces is "built-in"
    And since JDeveloper 10.1.3.x, we have had both the JDeveloper 11.1.1.x and 11.1.2.x series released.
    Why are you still using 10.1.2.x?

  • New (bought last year) Officejet Pro 8600 Plus and I can't get the ADF working.

    9 month old Officejet Pro 8600 [CC78E4]
    Product Number: CM750A-64001
    Serial Number: CN1CD1K1CV
    ADF used rarely and on the occasions I have tried it it always gives me this problem - even for a copy as opposed to a scan
    ADF not working on 5 page document
    Tried using 1 page
    always get "Reload original in the automatic document feeder (ADF) and try again@
    either from the front panel or from the HP scan utility on my PC.
    I have been through the process recommended on your support pages for resetting the printer (remove power cord)
    Please HP experts come to the rescue!

    Hi - You can find the different UK numbers at this location:
    http://www8.hp.com/uk/en/contact-hp/phone-assist.html
    The good news, as you mentioned is if it is less than a year old, it will be taken care of under warranty at no charge to you.
    Say Thanks by clicking the Kudos thumbs up. Please mark the post that solves your problem as an Accepted Solution so other forum users can utilize the solution.
    I am an HP employee.

Maybe you are looking for

  • Idoc PEXR2002 is not getting tiggered frm T-Code F110

    Hi All, I need to trigger the Idoc PEXR2002, from the T-Code F110. The payment process is successfull, but the Idoc is not getting triggered. I am not able to find the exact reason for that. We have a tab with name printout/data medium and it has got

  • Replace source file in Media Encoder

    Is it not possible to replace the source file being used in Media Encoder to encode files? Every time I try to do this it gives me red render frames. Even if the clip is the exact same length. Sometimes ill render a master out, and then create a setu

  • Connect times are dreadful, related to DNS

    I had FiOS installed on Tuesday 11-Feb-2014. I got it, but I don't get it. 15/5 tier, Actiontec M1424WR-Gen3I, 40.21.10.2 firmware. I'm running Vista and my browser is Firefox 27.0.1. I experienced the problem with a wired connection yesterday, befor

  • Fiscal Period Definition

    Is there a way to use the 13 months setting for a fiscal year, but have the periods defined as 4-3-3-3, instead of 4 for all?

  • How do I make embedded OC4J use IBM Db2 schema mapping

    I am using JDeveloper 903 with a datasource which happens to be of type IBM DB2. Whenever, I try to deploy and test an entity bean from withinn JDeveloper, the embedded OC4J seems to be using a different database schema mapping scheme than what is re