Updating DPAYH-VALUT with old date during FPY1 run

Hi All,
The requirement is, while generating Disbursement document through FPY1 transaction i need to populate the DPAYH-VALUT with some other value. As of now system populating the current date in this field.
Can any body help me which FQ Event we can use to achieve this?
Appreciate your help.
Regards,
Veera.

Any thoughts on this?
Regards,
Veera.

Similar Messages

  • Problem with updating oracle DB with java date thru resultset.updateDate()

    URGENT Please
    I am facing problem in updating oracle database with java date through resultset.updateDate() method. Can anybody help me please
    following code is saving wrong date value (dec 4, 2006 instead of java date jul 4, 2007) in database:
    ResultSet rs = stmt.executeQuery("SELECT myDate FROM myTable");
    rs.first();
    SimpleDateFormat sqlFormat = new SimpleDateFormat("yyyy-mm-dd");
    java.util.Date myDate = new Date();
    rs.updateDate("myDate", java.sql.Date.valueOf(sqlFormat.format(myDate)));
    rs.updateRow();

    I believe you should use yyyy-MM-dd instead of yyyy-mm-dd. I think MM stands for month while mm stands for minute as per
    http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html
    (If this works, after spending so much of your time trying to solve it, don't hit yourself in the head too hard. I find running out of the room laughing hysterically feels better).
    Here is a more standard(?) way of updating:
    String sqlStatement=
    "update myTable set myDate=? where personID=?"
    PreparedStatement p1= connection.prepareStatement(sqlStatement);
    p1.setDate(1,new java.sqlDate());
    p1.setInt(2, personID);
    p1.executeUpdate();

  • Stock details with old date.??

    Hi experts,
    How to know the stock details  with old date (not period)
    date 2 months back or 4 months back.
    with material,wih material group or plant..?
    how to know the total stock details
    MB5L  is for just  last one period stock only we can get..??
    how can i get with any old date?'
    Regards,
    Anthyodaya.
    Edited by: anthyodaya Reddy Nagaram on Apr 5, 2010 12:52 PM

    Check the report
    S_P00_07000139
    Change layout as per your requirement

  • JSP page is coming back with old data even when DB updated

    Hello,
    I am updating an existing record on a database using an HTML form and the changes update the ACCESS database immediately, but the .jsp page is picking up
    old data.
    But but when i do a manual REFRESH, the correct data comes back fine!
    Thanks very much for any insights!
    Summary of the code:
    1. InputEmployeeInfo.html - enter change data, call update....jsp
    <HEAD> <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/> </HEAD>
    <FORM NAME="updateInfo"
    ACTION="./UpdateEmployeeInfo.jsp" >>>>>2.
    METHOD="POST">
    2. UpdateEmployeeInfo.jsp: - call bean, update database, forward to present..jsp
    <HEAD> <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    </HEAD>
    <% response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0); %>
    <jsp:useBean id="empInfo"
    class="com.ora.jsp.beans.employee23.EmployeeInfoBean" >>>>>3.
    scope="request"/>
    <jsp:setProperty name="empInfo" property="*" />
    <% empInfo.updateDatabase(); %> >>>>>3b.
    <jsp:forward page="PresentChangeOfEmployeeData.jsp" /> >>>>>4.
    </BODY>
    </HTML>
    3. com.ora.jsp.beans.employee23.EmployeeInfoBean - Bean-update DB with change data
    public class EmployeeInfoBean {
    public void updateDatabase(){                                            <----3b.
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection conn =
    DriverManager.getConnection("jdbc:odbc:example");
    String sql = "UPDATE EMPLOYEEINFO SET " +
    "NAME=?, ADDRESS=?, PHONE=? WHERE ID=?";
    PreparedStatement statement = conn.prepareStatement(sql);
    statement.setString(1, name);
    statement.setString(2, address);
    statement.setString(3, phone);
    statement.setInt(4, id);
    statement.executeQuery();
    statement.close();
    conn.close();
    4. PresentChangeOfEmployeeData.jsp - read database and display changes <----4.
    <HEAD> <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    </HEAD>
    <% response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0); %>
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection conn =
    DriverManager.getConnection("jdbc:odbc:example");
    Statement statement = conn.createStatement();
    String sql = "SELECT * FROM EMPLOYEEINFO WHERE ID = " + employeeID;
    ResultSet rs = statement.executeQuery(sql);
    while(rs.next()){
    %>
    <TR><TD ALIGN="right" WIDTH="50%">Name:</TD>
    <TD WIDTH="50%"><%= rs.getString("NAME") %></TD>
    ================================================================================
    Complete code listing:
    1, InputEmployeeInfo.html
    <HTML>
    <HEAD>
    <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    <TITLE>Change of Information</TITLE>
    </HEAD>
    <BODY>
    <TABLE WIDTH="100%" BORDER="0" BGCOLOR="navy">
    <TR ALIGN="center">
    <TD><FONT SIZE="7" COLOR="yellow">Employee Information</FONT></TD>
    </TR>
    </TABLE>
    <CENTER>
    <FONT SIZE="5" COLOR="navy">
    Please Enter Your Information<BR>
    Fill in all fields
    </FONT>
    </CENTER>
    <TABLE WIDTH="100%">
    <FORM NAME="updateInfo"
    ACTION="./UpdateEmployeeInfo.jsp" >>>>>>>>>2.
    METHOD="POST">
    <TR><TD WIDTH="40%" ALIGN="right">Current ID: </TD>
    <TD WIDTH="60%"><INPUT TYPE="text" NAME="id"></TD>
    </TR>
    <TR><TD WIDTH="40%" ALIGN="right">New Name: </TD>
    <TD WIDTH="60%"><INPUT TYPE="text" NAME="name" VALUE="Mickey"></TD>
    </TR>
    <TR><TD WIDTH="40%" ALIGN="right">New Address: </TD>
    <TD WIDTH="60%">
    <INPUT TYPE="text" NAME="address" VALUE="St. Louis, MO">
    </TD>
    </TR>
    <TR><TD WIDTH="40%" ALIGN="right">New Phone: </TD>
    <TD WIDTH="60%">
    <INPUT TYPE="text" NAME="phone" VALUE="555-555-1234">
    </TD>
    </TR>
    <TR><TD COLSPAN="2" ALIGN="center">
    <INPUT TYPE="submit" NAME="btnSubmit" VALUE="Update Profile"></TD>
    </TR>
    </TABLE>
    </FORM>
    </BODY>
    </HTML
    2. UpdateEmployeeInfo.jsp:
    <HTML>
    <HEAD>
    <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    <TITLE>Updating Employee Information</TITLE>
    </HEAD>
    <BODY>
    <% response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0);
    %>
    <jsp:useBean id="empInfo"
    class="com.ora.jsp.beans.employee23.EmployeeInfoBean" >>>>>>>>>>>>>3.
    scope="request"/>
    <jsp:setProperty name="empInfo" property="*" />
    <% empInfo.updateDatabase(); %> >>>>>>>>>>>>>3b.
    <jsp:forward page="PresentChangeOfEmployeeData.jsp" /> >>>>>>>>>>>>>4.
    </BODY>
    </HTML>
    3. com.ora.jsp.beans.employee23.EmployeeInfoBean <-------------3.
    package com.ora.jsp.beans.employee23;
    import java.sql.*;
    public class EmployeeInfoBean {
    private String name, address, phone;
    private int id;
    public void setName(String input){
    name = input;
    public String getName(){
    return name;
    public void setAddress(String input){
    address = input;
    public String getAddress(){
    return address;
    public void setPhone(String input){
    phone = input;
    public String getPhone(){
    return phone;
    public void setId(int input){
    id = input;
    public int getId(){
    return id;
    public void updateDatabase(){                                       <-------3b.
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection conn =
    DriverManager.getConnection("jdbc:odbc:example");
    String sql = "UPDATE EMPLOYEEINFO SET " +
    "NAME=?, ADDRESS=?, PHONE=? WHERE ID=?";
    PreparedStatement statement = conn.prepareStatement(sql);
    statement.setString(1, name);
    statement.setString(2, address);
    statement.setString(3, phone);
    statement.setInt(4, id);
    statement.executeQuery();
    statement.close();
    conn.close();
    catch (Exception e) {}
    4. PresentChangeOfEmployeeData.jsp <---------4.
    <HTML>
    <HEAD>
    <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    <TITLE></TITLE>
    </HEAD>
    <BODY>
    <% response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0);
    %>
    <%@ include file="CompanyBanner.html"%>
    <%@ page import="java.sql.*" %>
    <jsp:useBean id="empInfo"
    class="com.ora.jsp.beans.employee23.EmployeeInfoBean"
    scope="request"/>
    <CENTER>
    <FONT SIZE="5" COLOR="navy">
    Your New Information
    </FONT>
    </CENTER>
    <TABLE WIDTH="100%" BORDER="1">
    <%
    int employeeID = empInfo.getId();
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance(); <--------4b,
    Connection conn =
    DriverManager.getConnection("jdbc:odbc:example");
    Statement statement = conn.createStatement();
    String sql = "SELECT * FROM EMPLOYEEINFO WHERE ID = " + employeeID;
    ResultSet rs = statement.executeQuery(sql);
    while(rs.next()){
    %>
    <TR><TD ALIGN="right" WIDTH="50%">Name:</TD>
    <TD WIDTH="50%"><%= rs.getString("NAME") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Address:</TD>
    <TD WIDTH="50%"><%= rs.getString("ADDRESS") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Phone Number:</TD>
    <TD WIDTH="50%"><%= rs.getString("PHONE") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Work Status:</TD>
    <TD WIDTH="50%"><%= rs.getString("WORKSTATUS") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Total Sick Days:</TD>
    <TD> <%= rs.getString("TOTALSICKDAYS") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Taken Sick Days: </TD>
    <TD><%= rs.getString("TAKENSICKDAYS") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Total Personal Time(in hours): </TD>
    <TD><%= rs.getString("TOTALPERSONALTIME") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Taken Personal Time(in hours): </TD>
    <TD><%= rs.getString("TAKENPERSONALTIME") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Health Care Plan:</TD>
    <TD WIDTH="50%"><%= rs.getString("HEALTHCAREPLAN") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Dental Plan:</TD>
    <TD WIDTH="50%"><%= rs.getString("DENTALPLAN") %></TD>
    </TR>
    <TR><TD ALIGN="right" WIDTH="50%">Vision Plan:</TD>
    <TD WIDTH="50%"><%= rs.getString("VISIONPLAN") %></TD>
    </TR>
    <% }//end while loop
    } // end try block
    catch (Exception e) {};
    %>
    </TABLE>
    <%@ include file="ch24_SiteNavigator.html" %>
    </BODY>
    </HTML>

    <%
    String dept_name=request.getParameter("D1");
    String itmp,itmcd,sn;
    %>
    <%
    Connection con;
    PreparedStatement ps;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con=DriverManager.getConnection("jdbc:odbc:acc");
    Statement stmt=con.createStatement();
    ResultSet rs=stmt.executeQuery("select * from item_details where Item_Name='"+dept_name+"'
    %>
    <td> Product name</td>
    <td>Product description</td>
    <td><Product code</td>
    <td>Product price</td></tr>
    <form method=post action="mycreate.jsp">
    <%
    while(rs.next())
    %><tr>
    <%=rs.getString(1)%></td>
    <%=rs.getString(4)%></td>
    <td><font color="#ffffff" size="3" face="arial unicode
    ms">    <%=rs.getString(3)%></td>
    <% String temp=rs.getString(3);%>
    <%=temp%>
    <td>
    <%=rs.getString(5)%></td>
    <td><input type=submit value="Add to cart"></td></tr>
    <form method=post action="mycreate.jsp">
    <%
    con.close();
    %>
    </tr>
    </table></tr></table></tr></table>
    </form>
    </form>
    I want the value of rs.getString(3) in a variable

  • Update new field with existing data programmatically

    I have a requirement to write a code that update an existing lookup field.
    We are running sharepoint 2010. We have a content type, which is used throughout all the sites. The content type has a field called Product, which is a lookup field for all the products we have. The field also contains subproducts. For example, a product
    by name PR1000 has a subproduct PR1010 all in the same drop down menu.
    Now we want to change this grouping and separate them based on product and subproduct. I have created new field called Parent Product (PP) and Child Product(CP).
    I would like to programmatically update the Parent Product field with Product and Child PRoduct field with child product if any. So here is how it works; if an existing item or document has product PR1010, I would to update PP with PR1000 and CP with 1010.
    The problem I am having in order to start this project is the product field is part of every document library and lists and there are 1000s of items with data for product.
    Please help with ideas or suggestions. I am thinking of a feature event receiver, which when activated will automatically update every item with product field not empty.
    Thanks for your help in advance.

    As Bruno suggested ,if its on time activity and on the all site then so go with Powershell 
    script. use feature event receiver when it require on the selected site and if this require to extend
    other sites so that contol will be at your end,else you need to again modified the powershell script.
    Regards,
    Rajendra Singh
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful
    http://sharepointundefind.wordpress.com/

  • Stock app (builtin) - no way to update graphs (they show old data)

    Even if I exit and enter again form the app, switch graph View (from 1day to 1month) some graphs always shows OLD data (even a month or so).. even if it seems it download data from the network..
    It doesn't happens with ALL the stock quotes.. and it doesn't happen with the %, Price or Capit... it only happens with the graphs..
    Tried also to reset the iPhone.. problem still there..
    Any idea? Any way to "clear cache"/"force reload data" for graphs??
    Thanks

    There isn't a way,  I suppose Apple have never considered users might use it the way you are. Or more likely they don't think you should.

  • HT4597 I want to continue having my PC as the master and my iTouch as the slave in syncing Calendar, photos, music. Will iCloud allow that to happen or will it try to override my newly synced iTouch data with old data in iCLoud?

    I want to always sync my iTouch by what is held on my PC, not what is held in iCloud. To me, iCloud is an emergency back up. Will this be able to be done and do I need to do anything in particular to make sure that the data held on the PC, synced to my iTouch, will always take precedence over what is in iCloud? I want to continue to get email, use the internet wirelessly, etc but am worried that iCloud will try to take over. I want the data held by iCloud to be taken from my iTouch and not return old data to my iTouch.

    Restoring will not put it back to iOS 5, it will remain on iOS 7. The 'restore from backup' will replace your current content of your iPad (music, apps and their content, films etc) with what was in that backup (the backup picks up your apps, music, films etc from your iTunes library, not from within the actual backup, so you will need those in your iTunes library for the restore to be able to copy them back). If you currently have important documents/photos on the iPad then copy then copy them off first.
    There is this page, specifically about iPhones but it applies to iPads as well, about syncing to a new computer : Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • Update OnSelect property with excel data

    Hello
    I hope you can follow me.
    What I am trying to do is to create a scrollable menu using a custom gallery.
    I have created an excel spreadsheet table with 2 columns. Name,onselectproperty
    Under name I have the name of the Menu item and under onselectproperty I have the behaviour I want for that menu item i.e. Launch("www.google.com").
    I created a custom gallery and added a button to it, I then set the Text property of this to ThisItem!Name which works and updates each button with the name of the Menu Item.
    However when I try to use the same logic on the onselect property using ThisItem!onselectproperty nothing happens.
    If I use the same reference in a label the onselect statement appear correct.
    I am not sure if this is even possible but any input would be appreciated.
    Ronan

    Hi,
    This is not currently supported. Having said that, if you always use the Launch command, your second column could only contain the URL ("www.google.com").
    Alternatively, if there is a subset of commands you use, you could codify the commands and use a If statement.
    If(onselectproperty="Launch", Launch(Target), onselectproperty="Collect", Collect, ...)
    Olivier

  • Cannot update apps downloaded with old Apple ID after changing ID

    My wife and I used to share my Apple ID on all mobile devices (iPhone 4S, iPad 2) and Mac so we could share contacts, calendar, purchases (apps & music).  My Apple ID was an inactive email address.  When I bought my iPhone 6 I decided to change Apple ID to a current email address and she created her own Apple ID for her iPhone 4S and iPad 2.  Figured we could still share data through Family Share.  Changed Apple IDs on all devices to the current ones.
    Now, she cannot update apps on her devices as she gets message that her apps were downloaded with another Apple ID.  It asks for password for that Apple ID (my old ID), and the passwords for my previous Apple ID and my new password don't work.  I tried deleting the apps off her devices and then installing again from the Mac we backup to, but that did not work.
    Also, is there a way to share contacts and calendar through Family Share or some other way.  We don't seem to be sharing any longer since making all these changes.  Why did I make the changes?  Because using the same Apple ID on all devices was causing me to get her text messages and vice versa, and other strange things after updating to iOS 8.
    I have iPhone 6, she has 4S and iPad 2.  Have a MacBook Pro circa mid-2010 running Yosemite, version 10.10.2.  Mobile devices run iOS 8.1.3
    obdoc54

    It is a good thing you made 2 separate Apple ID.
    I tried deleting the apps off her devices and then installing again from the Mac we backup to, but that did not work
    It's normal it didn't work because you are reinstalling apps (that are on the Mac) that were purchased/obtained from your Apple ID. She needs to reinstall them through the App Store on her device, using her Apple ID.
    share contacts and calendar through Family Share or some other way
    Calendars can be shared through iCloud (A)(without Family Sharing), or using the following method (B) used for the contacts.
    Contacts can neither be shared through iCloud or through Family Sharing.
    To get them synced: Get all of your wife's contact on your iOS device. (you can send them to your iOS device through iMessage)
    then go to your wife's iOS device: Settings --> Mail, Contacts, Calendar.
    From there, disable her iCloud contacts, then add YOUR iCloud account, and select only contacts (and calendar if you want the method (B)).
    This should answer all your questions.
    Cheers

  • Updating to Mavericks with old Aperture

    Im planning on updating to Mavericks from Snow Leopard and are currently using an old version of aperture (2.1.4) as my primary photo app with all photos stored in the aperture library as .appprojects). However Im worried that when I update the os it will no longer recognise this older aperture format and as Im not planning on updating to the newest aperture I dont want to lose all my photos.
    I tryed exporting (within aperture) all projects to a desktop folder as jpg so when I update they're in a common file that can be recognised by any photo app but for some reason it doesnt export them all and in some projects it leaves more than half the photos in a project not exported (I have a mixture of raw and jpg if that makes any difference?).
    Whats the best way to make sure I dont lose photos when I update?
    Thanks, Mark.

    If you upgrade to Mavericks and upgrade to Aperture 3.5.1 it will recognize and upgrade your library. You should have a current up-to-date backup (personally, I'd have a vault, AND a full backup on another drive).
    Aperture 2.1.4 "sorta" runs on Mavericks. Some functionality (like the loupe) is broken and it's unsupported so it will never be fixed. Aperture 3 shipped a full 4 years ago now, so Aperture 2.1.4 is long gone from a support perspective.
    Exporting projects to a folder, etc., is the wrong way to go about it. You'll lose metadata about your photos, projects, and all that.

  • Cannot connect to database (10.2 XE) with old data files

    Hi,
    I was running my database for a while but a couple weeks back it started failing - as in I can no longer connect to it. I tried moving the datafiles (all files under \oraclexe\oradata\XE ) and reinstalling and that makes everything run again with the default database files but when stop the database and copy my old files back in and restart - presto I can no longer connect either by jdbc or by apex ( 127.0.0.1:8080/apex ). My css log file has this in it after I resttart the database and try to connect to apex:
    [  OCRUTL][3280]u_set_comp_error: Parameter was NULL
    [  OCRUTL][3280]u_set_ocr_error: Parameter was NULL
    2011-12-28 17:07:20.084: [  OCROSD][3280]utgdv:1:could not open registry key SOFTWARE\Oracle\ocr os error The system could not find the environment option that was entered.
    [  OCRUTL][3280]u_set_gbl_comp_error: Parameter was NULL
    [  OCRUTL][3280]u_set_gbl_comp_error: Parameter was NULL
    2011-12-28 17:07:20.084: [  OCRRAW][3280]proprinit: Could not open raw device
    2011-12-28 17:07:20.084: [ default][3280]a_init:7!: Backend init unsuccessful : [33]
    [  OCRUTL][3280]u_set_ocr_error: Parameter was NULL
    2011-12-28 17:07:20.084: [ CSSCLNT][3280]clsssinit: error(33 ) in OCR initialization
    So, how can I rescue my data or fix what I assume is a corrupted datafile? I had a backup on dvd but now I can't find the dvd so I'm stuck.
    Edited by: user4272861 on Dec 28, 2011 2:09 PM

    Hi,
    Thanks for the replys,
    My instance is running in the exact place as before.
    When I try to run the commands in the trc file I get up to a point but then get errors.
    The following commands seem to work:
    STARTUP NOMOUNT
    CREATE CONTROLFILE REUSE DATABASE "XE" RESETLOGS NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY 292
    LOGFILE
    GROUP 1 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_4WK0TDM0_.LOG' SIZE 50M,
    GROUP 2 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_2_4WK0TL5T_.LOG' SIZE 50M
    -- STANDBY LOGFILE
    DATAFILE
    'E:\ORACLEXE\ORADATA\XE\SYSTEM.DBF',
    'E:\ORACLEXE\ORADATA\XE\UNDO.DBF',
    'E:\ORACLEXE\ORADATA\XE\SYSAUX.DBF',
    'E:\ORACLEXE\ORADATA\XE\USERS.DBF'
    CHARACTER SET AL32UTF8
    -- Configure RMAN configuration record 1
    VARIABLE RECNO NUMBER;
    EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('RETENTION POLICY','TO REDUNDANCY 2');
    -- Configure RMAN configuration record 2
    VARIABLE RECNO NUMBER;
    EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('CONTROLFILE AUTOBACKUP','OFF');
    work but I can't get past it...
    -- Commands to re-create incarnation table
    -- Below log names MUST be changed to existing filenames on
    -- disk. Any one log file from each branch can be used to
    -- re-create incarnation records.
    -- ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_start.ARC';
    -- ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_%U_.ARC';
    -- ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_%U_.ARC';
    -- Recovery is required if any of the datafiles are restored backups,
    -- or if the last shutdown was not normal or immediate.
    eg the command : RECOVER DATABASE USING BACKUP CONTROLFILE
    produces this:
    SQL> RECOVER DATABASE USING BACKUP CONTROLFILE ;
    ORA-00279: change 38947104 generated at 12/26/2011 01:56:02 needed for thread 1
    ORA-00289: suggestion :
    E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_765_
    %U_.ARC
    ORA-00280: change 38947104 for thread 1 is in sequence #765
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    SQL> RECOVER DATABASE USING BACKUP CONTROLFILE ;
    ORA-00279: change 38947104 generated at 12/26/2011 01:56:02 needed for thread 1
    ORA-00289: suggestion :
    E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_765_
    %U_.ARC
    ORA-00280: change 38947104 for thread 1 is in sequence #765
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    ORA-00308: cannot open archived log
    'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_765
    _%U_.ARC'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    and the command ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_start.ARC';
    produces this:
    SQL> ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA
    \XE\ARCHIVELOG\2011_12_29\O1_MF_1_1_start.ARC';
    ALTER DATABASE REGISTER LOGFILE 'E:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\A
    RCHIVELOG\2011_12_29\O1_MF_1_1_start.ARC'
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level
    What is the trick to getting it to open an archived log?

  • Function Module to Update Shipment Document with FURTHER DATES

    Hi All,
    i need to update (create an event entry) with the 'Begin Plan Date' and 'End Plan Date' of one Event in the 'FURTHER DATES' TAB
    (2nd Tab) of the Shipment Document. I got to do this using the separate program after the shipment gets created from external system in ECC.
    Any ideas on how to do it? the function modules belong to the function group
    TSEG.. but am not sure which function module can cater my requirement..  or can we do it with a BDC call.
    Appreciate ur early reply...
    Regards,
    Leona

    hi,
    YOu can use fm 'HR_99S_date_plus_time_unit'.
    hope it helps
    regards,
    pawan

  • Update essbase variables with OS date

    Hi All,
    Is there a way to update my substitution variables according to the Operating System date? I am trying to avoid some manual process involved in maintaining the application. I am looking for any solutions out of Hyperion.
    Any help is appriciated.
    Thanks,
    KK

    There isn't a way to do this within Hyperion, but it is simple enough to write an external process (korn or bash for Unix, bat or vba for windows) to read the system date, then appropirately set a subvar with a maxl shell call.
    Robert

  • Update text fields with xml data based on DDL selection of an ID number

    Hi guys,
    this one should be straight forward, but I cant seem to find a straight forward answer.  In a nutshell:
    XML file contains ID, Name, Location (so far 3 records in sample xml file)
    Form contains a Dynamic Drop down list to allow selection of ID and text fields to display the associated name and location of that ID.  The binding of the Drop down works fine, however I need the other fields to update to the associated name and location when different ID's are selected.  I assume I'll need some sort of exit event on the drop down list to update the other fields with the Name and location of the ID selected, but I dont know enough to have a stab at it.
    please, please, please help, Im starting to pull my hair out.
    James.

    Hi James,
    This would depend on the structure of your XML but assuming you have something like;
    <Data>
                <Item>
                            <Id>1</Id>
                            <Name>Name1</Name>
                            <Location>Location1</Location>
                </Item>
                <Item>
                            <Id>2</Id>
                            <Name>Name2</Name>
                            <Location>Location2</Location>
                </Item>
                <Item>
                            <Id>3</Id>
                            <Name>Name3</Name>
                            <Location>Location3</Location>
                </Item>
    </Data>
    Then in the change event of your dropdown (your could use the exit event but then value might not have changed so would be performing unnecessary processing) add the following code.
    var itemGroup = $data.Data.resolveNode("Item.(Id.value === '"+xfa.event.change+"')");
    Name.rawValue = itemGroup.Name.value;
    Location.rawValue = itemGroup.Location.value;
    The xfa.event.change will be the value selected, the resolveNode will return the Item with the matching Id, and then it is just a matter of assigning it to your form fields.
    Hope this gets you started.
    Regards
    Bruce

  • Update app bought with old id

    We have an expired emailadress, so we made a new apple id with the correct one.
    We can now login with the new id, but cannot update older apps bought woth the old id.
    It seems that we cannot change the id in the app.

    This recent thread may give you some guidance.
    Updating Apps After Changing AppleID: Apple Support Communities

Maybe you are looking for