Old data displayed

Post Author: jerryk
CA Forum: General
Hi,
I have noticed that my reports sometimes display old data.  That is, I change the parameters passed to the report but the data displayed is the data for the first set of parameters.  Has anyone else experienced this problem?
I am using Crystal Report XI Release 2 and displaying the report via the .Net Report Viewer control.
jerry

Post Author: Charliy
CA Forum: General
In Crystal look under the file menu and see if "Save Data With Report" is checked.

Similar Messages

  • I scanned an old photo but the date displayed is today, I want the date to be the date the photo was taken.  How do I change the date of the photo in iPhoto 11?

    I scanned an old photo but the date displayed is today, I want the date to be the date the photo was taken.  How do I change the date of the photo in iPhoto 11?

    There are two kinds of metadata involved when you consider jpeg or other image file.
    One is the file data. This is what the Finder shows. This tells you nothing about the contents of the file, just the File itself.
    The problem with File metadata is that it can easily change as the file is moved from place to place or exported, e-mailed, uploaded etc.
    Photographs have also got both Exif and IPTC metadata. The date and time that your camera snapped the Photograph is recorded in the Exif metadata. Regardless if what the file date says, this is the actual time recorded by the camera.
    Photo applications like iPhoto, Aperture, Lightroom, Picasa, Photoshop etc get their date and time from the Exif metadata.
    When you export from iPhoto to the Finder new file is created containing your Photo (and its Exif). The File date is - quite accurately - reported as the date of Export.
    However, the Photo Date doesn't change.
    The problem is that the Finder doesn't work with Exif.
    So, your photo has the correct date, and so does the file, but they are different things. To sort on the Photo date you'll need to use a photo app.

  • How to add new data entry and display old data in the same screen in SM30?

    Hi, Experts:
    We need to use SM30 to maintain a table entry. When I click the button of "New Entries", the table screen becomes blank. I can only add new data but not be able to see the old data existing in the table.
    How can I have the new line available for me to add new data at the same time see the data currently existing in the table?
    Thanks,
    Jenny

    Hi, thanks for the reply!
    Just to follow up for what we did to disable the delete function for maintaining table records. We hided the Delete button by adding a "MODULE disable_delete" code in Screen Painter. So now only adding records to the table is allowed.
    Thanks,
    Jenny

  • UCCX printable reports for Contact Service Queues displaying old data

    Hello,
    Does anyone know how to remove old data from the printable reports? I am trying to view all users listed under specific CSQs and it returns old data of users that are no longer in our system.
    -Ben

    Walter,
    Thanks for the suggestions. We are running version 8.5.1.11002-22. I strictly deal with the UCCX side of things and spoke with the CUCM admin. He advised that the extension is still active because we are forwarding all of the calls for now. Once he removes it I am sure that the name will disappear from the printable reports. If it does not disappear, you will see me posting again.
    Thanks Walter.
    -Ben

  • 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

  • PDF form storing old data

    Hello, I am new to the forum and was hoping someone here would be able to help me with an issue I have run into or help me find someone who could.
    I was recently working on a security assessment of a website and I found a PDF document for an employement application that appears to store old data within the code of the document. To explain further:
    - I found the PDF form document on the website. When downloaded and opened with Reader it appears blank. The document is avaiable to download and then you are directed to email it to HR, so there is no online submission on the website.
    - When opened in a text editor it displays mostly encoded text and numbers but there is portion of the document with lines that correspond to the fields in the document and contain information from previous instances of the document that has been filled out.
    Has anyone encountered this before? If yes are there any remediations for a PDF form storing unwanted data within the code of the document?
    Thanks in advance and sorry if I have posted this in the wrong location.

    Filling in online forms should never allow the form to be saved back to the website.  Usually such a form (or any online document) would go to the user's browser's temp folder, and be saved in there.  I don't know how it was possible that user data got back onto the web server form (unless it was originally uploaded like that).
    What I would do if I encountered such a situation
    upload the clean, empty form
    make sure the file is read-only
    test it by filling in the form online
    see if the original form has been altered in any way

  • Go back to old image display

    I just updated to Firefox 11 and the new image display is awful. When I go to an image URL (like this http://www.google.com.br/images/srpr/logo3w.png ) it's displayed with a dark background. It would be better if the background was soft grey... but it's too dark!
    Is there a way to use the old image display, with white background or changing the background color?

    <strike>I don't think that you can use code in userContent.css to fix this</strike>.<br />
    <strike>There is no selector possible to set the background-color for the body if there is only an img (body > img:only-child) on that page.<br />
    Only a script would be able to accomplish that AFAIK.</strike>
    It looks that I'm wrong about this.
    *http://userstyles.org/styles/58710/firefox-11-change-image-view-background
    *http://forums.mozillazine.org/viewtopic.php?f=38&t=2443535
    Add this code to userContent.css in the chrome folder
    *http://kb.mozillazine.org/userContent.css
    <pre><nowiki>@-moz-document regexp("((.*\\.(png|apng|jpg|jpeg|gif|tiff|bmp))|(^data:image\\/.*))(\\?([^#]*))?(#(.*))?") {
    html > body { background-color: #E8E8E8 !important; }
    html > body > img:only-child { background-color:#fff !important; box-shadow: none !important; margin: 0 !important; }
    </nowiki></pre>
    * resource://gre/res/TopLevelImageDocument.css

  • ALV refresh with the Old Data

    Hi All,
    I have a question with OO ALV. I have an Editable ALV output which contains around 10 fields. In the output the User can Edit/Insert/Delete the Records, and on the application tool bar I have a button (CHANGE)by which the user can swtich between the change and display mode of ALV.
    Once the ALV list is displayed, when the user click on change the output is open for Editing. Lets say the user deletes the record, and again clicks on the change(which should take to display) by giving the message "Changes made will be lost" and the old data should get displayed.
    The logic i followed is,
    1. displayed the ALV.
      CALL METHOD gr_grid->set_table_for_first_display
        EXPORTING
          it_toolbar_excluding = gt_exclude
          is_layout            = gs_layout
        CHANGING
          it_fieldcatalog      = pt_fieldcat
          it_outtab            = pt_outtab[].
    2. when I click on the change button, the ALV is set for Edit using
            CALL METHOD gr_grid->set_ready_for_input
              EXPORTING
                i_ready_for_input = 1.
    lets say, now the record in the output is deleted, and I clicked on Change again, which should take me to display with the old data.
    can you help me in displaying the old data.

    It works good for me.
    I copied the program BCALV_EDIT_01 to Z program and add the required logic. Backup of the table after the ALV display
        gt_backup = gt_outtab.
    Refreshing the ALV table display in the perform SWITCH_EDIT_MODE
    *§3.Use IS_READY_FOR_INPUT to fetch current substate of editable cells.
      IF g_grid->is_ready_for_input( ) EQ 0.
    *§4.Use SET_READY_FOR_INPUT to switch between the substates.
        CALL METHOD g_grid->set_ready_for_input
                         EXPORTING i_ready_for_input = 1.
      ELSE.
    *------ ADD Begin
        message I398(00) with 'Data not saved.!'.
        gt_outtab = gt_backup.
        g_grid->refresh_table_display( ).
    *------- ADD end
        CALL METHOD g_grid->set_ready_for_input
                         EXPORTING i_ready_for_input = 0.
      ENDIF.
    Regards,
    Naimesh Patel

  • Data display error in reports

    Hi,
    I've a serious problem. I've developed a new database.I've imported a .dmp backup file into my user from my previous database which was same although only certain new options have been added in the new database. The problem is I'm able to view all data but when i try to retrieve old data through reports, they aren't being displayed.If i enter any new data, they are displayed through reports but not the old data that were in the .dmp files.
    What could be the error?

    What happens If you try to run the same query from your reports in sql?

  • Content Rendered from UCM after updation returns old data

    Hi
    The requirement that i have in place is as below:
    1. Portal application should have an option to display content from UCM(Content here is just the metadata like title, description, etc of the content)
    2. The application should also have options for adding, updating and deleting the content.
    3. The updates should immediately reflect on the display.
    I am achieving the above using RIDC apis, not using OOTB task flows.
    But the issue that am facing here is that after performing any of add,update or delete the results fetched are still the older ones. There fore my display screen still shows old data.
    And one observation is that the updates are reflected only when i send a new browser request.
    I have tried refreshing, clearing browser cache, but nothing seems to work. Not sure if the content is being cached on the UCM server itself.
    If so how do i clear it?
    I am using GET_SEARCH_RESULTS to fetch the data and display.
    And i am using PS4 version of webcenter.
    I really need some help on this ASAP as it is in a critical state or any work around please.
    Thanks

    Hi Nelson
    The code snippet used for fetching the content metadata is as below
    To retrieve all the Folder information
    requestBinder.putLocal("IdcService","COLLECTION_DISPLAY");
    requestBinder.putLocal("hasCollectionID","true");
    requestBinder.putLocal("dCollectionID",rootFolderId);
    ServiceResponse response = idcClient.sendRequest(idcContext, requestBinder);
    DataBinder resultbinder = response.getResponseAsBinder();
    resultbinder.getResultSet("COLLECTIONS");
    List folderList = new ArrayList();
    for (DataObject data : resultSet.getRows())
    String parentId = data.get("dParentCollectionID");
    if (folderId.equals(parentId))
    folderList.add(data);
    To retrieve all the content information under a folder
    requestBinder.putLocal("IdcService","GET_SEARCH_RESULTS");
    requestBinder.putLocal("QueryText",
    new StringBuilder().append("xCollectionID >= `").append(docInfo.get("xCollectionID")).append("` <AND> xCollectionID <= `").append(docInfo.get("xCollectionID")).append(" ` ").toString());
    requestBinder.putLocal("SortField","dInDate");
    requestBinder.putLocal("SortOrder","DESC");
    idcClient.sendRequest(idcContext, requestBinder);
    resultbinder.getResultSet("SEARCH_RESULTS");
    List files = new ArrayList();
    for (DataObject dataObject : resultSet.getRows())
         files.add(dataObject);
    Once i have the list i just iterate over it and display using <af:outputText> or <af:commandLink>
    Till now havent been able to find the issue.
    The ony solution which helped this is to call this retrieval method twice before displaying. But this is creating a huge performance issue.
    So i am looking for a proper solution for this.
    Please help.
    Thanks

  • Update Old data in SIS

    Dear Guru's,
    I have created my own SIS & now i want to update the Old data in this SIS. Currently the SIS is showing the values from the date when it was created. Can anybody tell me the steps to update the same with the old values.
    Rgds,
    Ajinkya

    Hi,
    Kindly refer to Glynn Williams page no :-418,it says that should one create a new structure and require historical data to be updated into it,<b>refer to</b> <b>OSS note</b> <b>number 0064636</b>.This explains the methods of procedding with statistical update.
    Summary
    Symptom
    This note describes the standard procedure for setting up the statistical data in the Logistics Information System (LIS). However, in addition to this standard procedure, you should also read the application-specific documentation which is stored for each application (Purchasing, Sales and Distribution, Production, Inventory Controlling) in Customizing. This documentation can be found as follows (starting from the top level of the Customizing tree):
    + Logistics - General + Logistics Information System (LIS) + Logistics Data Warehouse + Data Basis + Tools + Setup of Statistical Data + Application-specific Setup of Statistical Data
    The programs which carry out the setup in the individual applications are also called at this point in Customizing.
    Procedure for statistical data setup
    The setup reads all original documents or only the original documents required by the user (such as purchase orders, production orders, material documents, billing documents and so on), and sets up statistical data from these documents. Here, every document is updated in the LIS information structures corresponding to the update rules defined in Customizing.
    Does the statistical data setup work correctly?
    Since a setup can take a number of hours, it is best to just set up one or two (incorrect) documents at first, to check the result before a complete setup is carried out. This is carried out with the following steps:
    1. Call the setup program for a few test documents
                  Call the statistical data setup for the respective application via Customizing. (Path -> see above) Enter the information structure to be set up, and, for example, '&(T' as a version. Important: the version '&(T' must not yet exist, that is, '&(T' must be empty.
                  Explanation of the version: All data records of an information structure begin with a three-character version number. The current statistical data (actual data) has the version number 000. Data is selected from this version when a standard analysis is carried out. So that the actual data is not modified, the setup must be carried out into another version. The versions into which a setup is carried out must begin with '&(' - by convention.
                  Enter the document numbers for which the setup is to be carried out as a test on the setup selection screen. Start the setup after this. (If there are not many documents, this can take place online).
    2. Check the result of the setup
                  To display the set up documents in the standard analysis, the standard analysis must access the version '&T'. Via the menu path "System -> User profile -> User parameters", enter and save the parameter ID 'MCR' with the value 'X'. As a result, an input field appears on the standard analysis selection screen, in which a version other than '000' can be entered.
                  Now call the standard analysis in question. On the selection screen (at the very bottom), overwrite the version '000' with '&(T' (if you have followed the above suggestions). The standard analysis then displays the data which was set up.
    3. The user parameter 'MCR' can be reset again.
    Standard procedure for the statistical data setup in the LIS
    The data of the actual version (000) should be replaced with the set up data when setting up a complete information structure. Two procedures (A and B) are described below. These procedures have the following advantages and disadvantages:
    Advantages of procedure A:
    It is possible to compare the old actual data with the set up data.
    Disadvantages of procedure A:
    Data is stored 1 or 2 times (3 times if the actual data is saved)
    R/3 operation must be shut down during the entire procedure
    Longer runtime than procedure B
    Advantages of procedure B:
    Data is only stored 1 or 2 times (3 times if the actual data is saved)
    R/3 operation must only be shut down during the actual setup.
    The runtime is shorter than for procedure A
    Disadvantages of procedure B:
    It is not possible to compare the old actual data with the set up data.
    Procedure A is the "normal" method", and is suitable for normal datasets. On the other hand, procedure B should be used for large datasets.
    Although the correctness of the setup should already have been checked using a few documents - as described above, it can nevertheless be a good idea to compare the entire data with the old data (or at least taking random samples) after carrying out the setup. Only procedure A offers this possibility.
    Important additional information on deleting and converting data
    Note that when Report RMCVISCP is mentioned in the following section, it should only be used in Releases < 4.X . In all release levels as of 4.X, Report RMCVISCP has been replaced by Report RMCSISCP. So use the later report, since Report RMCVISCP in Release > 4.X is also no longer supported by Support.
    Procedure A
    R/3 operation must be shut down until the following steps 2 to 5 have all been carried out. In particular, no documents may be created or modified.
    1. Delete the target version of the setup
                  If the setup is to take place in version '&(N', for example, this version must be deleted using the program RMCVISCP. Enter the affected information structures and the version to be deleted on the selection screen of RMCVISCP. (In addition, the checkbox "Delete a version?" must be marked).
                  The version '000' may not be chosen as a target version of the setup. This means that '000' may not be entered as the version to be deleted.
    2. Carry out the setup.
                  In Customizing (see the path described under "Symptom"), call the setup corresponding to the required application. Since now, or at least a large proportion of the original documents are now to be set up, it is recommended that you schedule the setup in the background for a weekend.
    3. Check the data which was set up
                  The set up data can be displayed via the standard analysis. To do this, set the MRC parameter to 'X' (see above), so that the version '&(N' can be entered on the standard analysis selection screen (if the setup was carried out in this version).
                  Furthermore, you can compare version '000' (old actual data) with the newly set up data (version '&(N') via the comparison of planned and actual data in the standard analysis. (The menu path for the comparison of planned and actual data in the standard analysis is as follows: Edit -> Comparisons -> Planned/actual... )
    4. Delete version '000'
                  Delete version '000' using program RMCVISCP. If there is sufficient disk space, the version '000' can of course be saved as version '&(S', for example, before carrying out the deletion. (This version must be empty or have been deleted beforehand). However, this saving is not absolutely necessary, especially since the old actual data is presumably incorrect (otherwise there would be no need to make the setup).
    5. Copy the set up data into version '000'
                  Using program RMCVISCP, copy the set up version '&(N' into the target version '000'. R/3 operation can start again after this.
    6. Delete version '&(N'
                  Finally, delete the version '& (N' using the program RMCVISCP.
                  Procedure B:
    Within procedure B, R/3 operation need only be shut down during the following steps 4 and 5.
    1. Save the actual data
                  Copy version '000' into another version, for example, '&(S'. Call program RMCVISCP for this, and enter '000' as the source version and, for example, '&(S' as the target version. The target version must be empty or have been deleted beforehand (with the program RMCVISCP).
                  However, the actual data need not necessarily be saved. In particular, this is the case if the actual data contains a large number of errors. However, the saved data can be an advantage if the setup is canceled for any reason. The old actual data could then be copied back into version '000' again.
    2. Deactivate updating
                  Deactivate the update in Customizing for the information structures to be set up. The Customizing path for this is as follows:
                  + Logistics - General + Logistics Information System (LIS) + Logistics Data Warehouse + Updating + Updating Control + Activate update
                  Then choose the relevant application. The affected information structures can be selected by double-clicking on the subsequent screen. Then mark the radio button "No updating" under "Updating" on the following popup.
    3. Delete version '000' (with program RMCVISCP)
                  For large dataset, deleting version '000' can take several hours. However, it is important that updating of the information structure is deactivated, and thus R/3 operation can be continued as normal.
    4. Activate updating
                  After deleting version '000', reactivate updating of the affected information structures (as under point 3 above).
    5. Carry out the setup
                  In Customizing, call the setup corresponding to the required application. The setup must be carried out into version '000'.
                  R/3 operation must be shut down during the setup. Before and after this step, R/3 operation can continue as normal.
    6. Check the set up version '000' by taking random samples
                  A comparison with the old actual data is only possible if the old actual data was saved beforehand (for example, into the version '&(S'). However, the comparison is only useful if R/3 operation was stopped between saving the old actual data and the setup. Otherwise, there exists the danger that documents were created or changed in the meantime. These document changes would then only be taken into account in the set up data, not in the old actual data.
    7. Delete version '&(S' with program RMCVISCP
                  The saved old actual data can than be deleted afterwards.
    Reward points if useful.
    Regards,
    Amrish Purohit
    Message was edited by:
            AMRISH PUROHIT

  • BAPI_INCOMINGINVOICE_GETDETAIL returns "old" data

    Hello,
    I have developed some WF which handles incomming invoices but also have some Z tables behind.
    I will describe my problem now. One of the tasks opens a secondary screen with tx MIR7, on a primary screen there is a button which reads data from invoice. Steps are:
    1. user opens a task - he has a screen with some data
    2. wf automaticallly opens a secondary window with MIR7 (so user can switch between two sap windows with e.g. alt+tab)
    3. user make some changes in MIR7 and save invoice
    4. user click the button in the primary window -> action which reads data from invoice with BAPI_INCOMINGINVOICE_GETDETAIL -> sometimes this function returns "old" data.
    Do u know if the data from MIR7 are saved in some update task, or are they buffered, or....? how can i avoid this?
    thx,
    JJ

    hi..
    U have to give vendor invoice number for it to work.  The invoice should be posted in MM, if u post in FI this BAPI wont work.
    MIR4: In this tcode, you can display the vendor invoice numbers.
    MIR5: THIS CODE gives the list of available invoice documents.
    Regards,
    VIshwa.

  • Old data showing in background app view

    When double tapping the home button for the iPhone 6 plus, iOS 8.1.2, I am having issues where apps display old data on all the background apps that pop up. For example, if I have safari open in the background and I want to switch to it from springboard, i double click home to bring up all background apps, and I'll find safari with a webpage that displays old history. However when I click into safari, it'll refresh to the correct/present webpage.
    This will still happen after deleting all browser history and settings. I will still see old websites pop up in safari, in the background app view. Even after erasing and restoring factory settings, this problem still exists with the background app view. Not only with safari. Is this being looked into?

    I believe that the icon shown in the recents list is a sort of snapshot of the last time the app was open. I don't believe they are supposed to refresh in the background, especially as most apps are in a suspended state when not being uses.
    Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Struggling with how to appropriately scale this host/data display VI

    Hello! I'm hoping someone can send me in the right direction on this. I've mocked up a front panel the way I intend it to look - a fill slide overlapping a waveform chart, to give the effect of a visible current value and a short history trace. The idea is to have many of these kinds of indicators on one display for an engine test stand- it allows the simple visualization of a lot of data all at once, and I am replacing an old data acquisition system with a similar display.
    The meat of my question lies in how to take these indicators (which work pretty much the way I want) and duplicate the code thirty times without making a huge mess. I looked into subpanels but it seemed like that was also a complicated thing to do thirty times. Maybe it's just gonna be messy, but I hope there's some good/simple way to do this.
    Making a custom control seemed like an option, but I couldn't figure out how to make the custom control contain both the waveform chart and the fill slide -- and then after that, how to make the colors alternate in the alarm state like I already have.
    I'm asking before I spend a huge amount of time on it in case I need to start over!
    If you think you might be able to help please have a look at the attached VI with six of these things already cloned and let me know your idea. I really appreciate it.
    Matt
    Solved!
    Go to Solution.
    Attachments:
    Small Histogram Standalone.vi ‏55 KB

    First of all, that's a pretty neat looking UI element you've come up with there!
    To be honest, I think the most appropriate way to solve this would be to create an XControl for your UI element. It's quite an involved process if you haven't created one before but if you search for creating an XControl there's quite a lot of resources available.
    If that seems a bit too involved/advanced, your idea of using Subpanels is probably the best solution - create a VI that shows the data and however many subpanels you need to display the data and load the VI into the subpanel. You'll obviously have to (an array of subpanel references works well for this) do the asynchronous calls and manage the VI references etc.
    The key thing is that you will want to create your graph/slide combo only once and then repeat it where needed - either through an XControl or a reentrant VI loaded into a subpanel.
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets

  • Equipment Master Data Display

    Dear PM Experts,
    I m facing a problem regarding equipments Master data display.
    When I used t-code ih01 after getting the list of technical object when I click any of the technical object, in equipment master data structure tab I can see the functional location and superior equipment
    But when I m seeing the same equipment No. through IE03 I m not able to see the functional location or superior equipment in structure tab.
    One more difficulty hw to see the changes history effectively because when I see the changes history Extra---- Display Changes.there are no. of entry at a single time for example at 15:10:05 ( 15 hrs 10 min. & 05 sec ) there are ten changes in old value H & New value D . What it means please explain.
    RC

    Dear Pete,
    I got the answer
    1.In Ih01 Valid date i was taking in past so it was showing the past history of equipment.
    2.whenever I m dismantling any functional location it is showing multiple changes at a single time.
    RC
    Edited by: Raju chauhan on Oct 12, 2008 3:31 PM

Maybe you are looking for

  • Urgent - problem with multiple users on same page

    Hi all, I have got an big problem with my app: when several users are using the same page, the action launched by USER_A affects the page displayed and used for USER_B. If there is only one user using the page, there is no problem at all. The webapp

  • 10.7 Bluetooth not working anymore

    I'm trying to setup my mighty mouse for the first time. It showed up in the bluetooth preferences but was not connecting, so I deleted it from the list and now, it doesn't show up anymore. I tried resetting the PRAM and SMC, dumping the bluetooth pre

  • E-mail alert on error

    Hi, The scenario : E-mail - XI - IDOC I need to send e-mail message for case that e-mail  message from sender will fail for any reason. Is possible for that to use CCMS, take some content to generated e-mail error message ? Is CCMS standard part of X

  • Issue in XSD  while exchanging the doc in events handling ?

    Hi Experts, I am working  on events where I need to pass some information say data types are  String, List of Strings and document from one process when an event  occured  to another process and use that data in second process. I am creating  one XSD

  • ODI metadata integration with EPMA Shared library

    Hello all, we are in the implementation phase of Hyperion Planning and we have to update metadata using some ETL tool into EPMA. Is ODI integrates with Oracle and EPMA shared library or not. if not then we have some other tool to integrates the same.