Nokia X6 *NEW* date bug.

This is a new possible bug which I've just spotted on my Nokia X6 16GB, which is slightly worse than the date incorrect bug described here: /t5/Xseries/X6-Date-incorrect/td-p/684385
Instead of the date on the phone reverting back by 24 hours, when I switched on my X6 just now, the date reverted all the way back to 01/01/2010 
This is the 1st time I've seen a X6 have its system date automatically shoot all the way back to 1st Jan 2010.
Bug detected on firmware version 31.0.004
If you have encountered this problem, please post it here.

This is also associated with the other date bug, I have seen this as well as losing a day.

Similar Messages

  • The DATA BUG of OVI 3.03 on E72, disgusting!

    Nearly at the same time at the afternoon today - 25 Jan. Many of the users of E72 found their New OVI Maps occured a serious problem. When they open the icon "My place" in GPS, the program halt and no response at all. Many of them think maybe it just be a problem of their own E72 or due to some collisions of the software they installed and even formate the phone or reinstall the OVI maps many times. But as I confrim on some forums,I make sure that this is a BUG of the software.
    First of all, I should declare the OVI maps and software I installed on my E72 were all download form official website maps.nokia.com and with newest verison.
    The Symptom is:
    1. when you open OVI maps and click the "my place"  icon the program halt unless you shutdown the program in task manager or restart the phone.  But if you click the "search" first only once, then all the functions will be ok.
    2. If you change the date to 24 Jan or 26 Jan, every thing is OK. And if you change the date to 15, 25 of anyother months if only the date contain "5", the problem will happen again.
    From this symptom, I can sure it is a DATE BUG of new OVI maps. I just CAN NOT believe NOKIA could made this stupid mistake. I hope NOKIA could fix it or update the software ASAP.
    Message Edited by joeye on 25-Jan-2010 11:00 PM

    Hi,
    We think we know the cause of this issue to be the welcome note localised to Latvian.
    From what we can tell from your firmware version, you are running a latvian varient. We are aware (and have fixed for the next release) that the welcome note, translated to latvian, was causing the application to crash.
    To work around this until the release is made available, please do the following:
    Change the device language, for example to English, and restart the Maps application. Once the application is started, you should then be able to exit the application, revert the language back to Latvian, and restart the Maps application without it Crashing.
    Please let me know if this resolves your issue.
    KR
    Chris
    Although i work for Nokia, my opinions are my own!
    Got a Maps query? Check our Maps FAQ's

  • Adding New Data To Same Page - HELP

    I am trying to put together a invoice on the fly, the products are added to the invoice by selecting the disired product from a drop down menu and hitting the add button. You SHOULD then be able to select more products from the same drop down menu and htting add again will include it in the invoice.... simple?? Well the problem i have is that when i hit the add button to add another item it just replaces the one i have already added.... this is very annoying... i cannot think of a way to take the product data through the form submission ready for adding too.
    Any Ideas this is really bugging me, and the more time i spend on it, the worse its getting. Code Below
    <%@ page buffer="32kb" %>
    <%@ page import="java.sql.*, javax.servlet.ServletException, java.io.IOException, com.stock_control.*" %>
    <%!
    String convertResultsToSelect ( ResultSet rs, String selectName, String idCol, String descCol ) throws SQLException
    StringBuffer sb = new StringBuffer ( "<select name=" + selectName +">" );
    if (rs != null) {
    while (rs.next()) {
              sb.append ( "<option value=" );
    sb.append ( rs.getString(idCol) );
    sb.append ( ">" );
    sb.append ( rs.getString(descCol) );
    sb.append ( "</option>" );
    sb.append ( "</select>" );
    return sb.toString ();
    %>
    <html>
    <head>
    <title>Members Area - Stock Check</title>
    </head>
    <body bgcolor="#CCCCCC" topmargin="0">
    <%@ include file="topConn.jsp" %>
    <%
              String msg = "";
              String name = "";
              String address1 = "";
              String address2 = "";
              String town ="";
              String postcode = "";
              String country = "";
              String phone = "";
              String mail = "";
              String comments = "";
              float total = 0;
              int nextFree = 0;
              String prodResults;
              int numberOfItems = 0;
         String shop = (String)session.getValue("SHOP");
         String selectProd = "SELECT ProductID, ProductName FROM product WHERE ShopID=";
         rs1 = stmt.executeQuery(selectProd+shop);
         prodResults = convertResultsToSelect( rs1, "product","ProductID","ProductName");
         rs = stmt.executeQuery("SELECT COUNT(*) AS stockLevel FROM product WHERE ShopID ="+shop);     
    while(rs.next())
         numberOfItems = rs.getInt("stockLevel");
         Product[] products = new Product[numberOfItems];
    if (request.getParameter("add")!=null)
              // get values from all text boxes....
              name = request.getParameter("name");
              address1 = request.getParameter("address1");
              address2 = request.getParameter("address2");
              town = request.getParameter("town");
              postcode = request.getParameter("postcode");
              country = request.getParameter("country");
              phone = request.getParameter("phone");
              mail = request.getParameter("mail");
              comments = request.getParameter("comments");
                   // add data from dropdown
              String newProduct = request.getParameter("product");
              //connect to database and put product data into array + increment
                   int thenewid = 0;
                   String theName = "";
                   float thePrice = 0;
                   String nono = "0";
              String getProd = "SELECT * FROM product WHERE ProductID=";
              rs = stmt.executeQuery(getProd+newProduct);
              if(rs.next())
                   thenewid = Integer.parseInt(newProduct);
                   theName = rs.getString("ProductName");
                   thePrice = rs.getFloat("SalePrice");
                   Product addProduct = new Product(thenewid, theName, thePrice, nono);
                   products[nextFree] = addProduct; //PROBLEM
                   nextFree++;
    // reload page with new data in form
    //for loop arround array     
    %>
    <form method="GET">
    <div align=center>
    <p>
    <%=prodResults%>
    <input type="submit" value="Add" name="add"></p>
    <TABLE width=100% height="1">
    <TBODY>
    <tr>
    <td width="4%" height="19"> </td>
    <td width="96%" height="19"> 
    </td>
    </tr>
    <tr>
    <td width="4%" height="198"> </td>
    <td width="96%" height="198">
    <div align="center"></div>
    <table border="0" cellpadding="2" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber5">
    <tr>
    <td width="4%"> </td>
    <td width="15%"><font face="Verdana" size="2">Customer Name</font></td>
    <td width="30%"><input type="text" name="name" size="30" value="<%=name%>"></td>
    <td width="19%"><font face="Verdana" size="2">Customer Phone #</font></td>
    <td width="26%"><input name="phone" type="text" size="30" value="<%=phone%>"></td>
    <td width="6%"> </td>
    </tr>
    <tr>
    <td> </td>
    <td><font face="Verdana" size="2">Address Line 1</font></td>
    <td><input type="text" name="address1" size="40" value="<%=address1%>"></td>
    <td><font face="Verdana" size="2">Customer E-mail</font></td>
    <td><input name="mail" type="text" size="30" value="<%=mail%>"></td>
    <td> </td>
    </tr>
    <tr>
    <td height="32"> </td>
    <td><font face="Verdana" size="2">Address Line 2</font></td>
    <td> </td>
    <td><font face="Verdana" size="2">Comments</font></td>
    <td width="26%" rowspan="5"><p>
    <textarea name="comments" cols="29" rows="5"><%=comments%></textarea>
    </p>
    <p>  </p></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td><font size="2" face="Verdana">Town/City</font></td>
    <td><input name="town" type="text" size="40" value="<%=town%>">
    <input name="address2" type="text" size="40" value="<%=address2%>"></td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td><font size="2" face="Verdana">Post Code</font></td>
    <td><input type="text" name="postcode" size="10" value="<%=postcode%>"></td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td><font size="2" face="Verdana">Country</font></td>
    <td><input type="text" name="country" size="40" value="<%=country%>"></td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td height="24"> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td height="23"> </td>
    <td><strong><font size="2" face="Verdana">Product Code</font></strong></td>
    <td><strong><font size="2" face="Verdana">Name</font></strong></td>
    <td><strong><font size="2" face="Verdana">Price</font></strong></td>
    <td> </td>
    <td> </td>
    </tr>
    <%
    if (request.getParameter("add")!=null)
    for(int i=0; i<nextFree; i++)
    Product temp = products;
    int prodID = temp.getid();
    String prodName = temp.getname();
    float prodPrice = temp.getprice();
    total = total + prodPrice;
    // work out total on the fly
    %>
    <tr>
    <td height="23"> </td>
    <td> <font size="2" face="Verdana, Arial, Helvetica, sans-serif"><%=prodID%> </font></td>
    <td><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><%=prodName%></font></td>
    <td><font size="2" face="Verdana, Arial, Helvetica, sans-serif">&pound;<%=prodPrice%></font></td>
    <td><font size="2" face="Verdana, Arial, Helvetica, sans-serif"> </font></td>
    <td> </td>
    </tr>
    <%
    %>
    <tr>
    <td width="4%" height="23"> </td>
    <td width="15%"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"> </font></td>
    <td width="30%"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"> </font></td>
    <td width="19%"><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Total:</font></strong></td>
    <td width="26%"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><%=total%></font></td>
    <td width="6%"> </td>
    </tr>
    </table>
    <p align="center">
    <input type="submit" value="Continue" name="continue">
              </form>
    </p>
    </td> </tr> </TBODY></table>
    <%@ include file="bottomConn.jsp" %>
    </body>
    </html>

    anyone?

  • Processed cube sees no changes, but new data have been inserted..

    Simple AdwWorks cube has time dimension with years range from 2000-th to 2007-th. Fact data exists for 2001-2006. 2000-th and 2007-th are empty.  Ok. 
    I'm insert new data to source fact table for 2001-th  and process the cube. All changes immediately reflect in measure value (it grows). But new data for 2000-th don't reflect in measure value growing .  Nevertheless, during cube processing
    SSAS sees new rows for both cases (the value grows), and sql profiler catches equal batches of commands for  2001-th and 2000-th. But measure value grows only for 2001-th.
    I've clear mdx-script - it contains now only calculate command. Now there is:
    a) select sum(measure value) on fact tables in source database reflect new rows  for both cases
    b) cube processing sees changes for both cases
    c) mdx-script is clear (there are no scopes, witch can set measure value to null )
    d) select [sales amount] for cube reflect this changes only for 2001-th, not for 2000-th
    Any suggestions?
    ===========
    One day later.. :)
    The problem seems as resolved, but... I don't know: is it tech and/or logic feature or bug..
    So, what is happened.. Simple mdx query:
    select [sales amount] on 0,
    [some date from 2000] on 1
    from [cube]
    gives null value for [sales amount], but for [some date from 2001] value is not empty. In database fact table both values (results of sum(salesamount) for both dates) are not empty. After research i found that there was one measure ([Temp]) in the [sales amount]
    measure group for which MeasureExpression was set to [sales amount]*[average rate] ([average rate] - measure from [Fact Currency Rate] measure group). Fact table for [Fact Currency Rate] measure group didn't contain data for 2000-th. I've insert it and - vualya
    - all work and for 2000-th now. Main question is: why ssas calculate MeasureExpression formulas for measures, which I'm not request in a query, and why ssas set requested by me value to null, if it does not depend from formula of MeasureExpression property
    of unrequested measure? Is it bug or "defense from fool"?. There is another sample of such strange ssas behaviour. I mean usage of UnaryOperatorColumn property. If it is set for any attribute of any dimension, then it influences on every query, even
    if this attribute not is a part of this query. For example
    select [sales amount] on 0
    from [cube]
    returns different results, which depends by setting of UnaryOperatorColumn for some dimension attribute.. What all it mean?

    Hi Tkolomiewts,
    I have the following questions, which will help me in better understanding of your issue :
    1) Is [sales amount], a base measure or calculated measure?
    2) Are you using the default Adventure works database? 
    Regarding
    your other question about unaryoperatorcolumn for some dimension attribute affecting the results, lets use the following query that you mentioned:
    select
    [sales amount] on 0
    from [cube]
    This
    query doesnt pick only the measure value, but also fetches the "All" attribute for the all the dimension attributes. Hence, if the UnaryOperatorColumn influences the All attribute's value, then it will affect the results of the query above.
    Regards,
    Muthukumaran

  • New Date Picker and JAWS

    I am trying to make my APEX applications more ADA section 508 compliant for the visually impaired without sacrificing functionality for the non-visually impaired.
    I would prefer to use the new APEX 4.0 Date Picker based on jQuery; however, it is not compatible/spoken by a Screen Reader such as JAWS. The classic date picker is compatible with a Screen Reader but is not nearly as nice or customizable.
    The APEX 4.0 Release Notes state:
    The new inline date pickers used in the Oracle Application Express are not usable with a screen reader.
    Workaround:The only workaround available currently is to enter the date manually into the date input field.
    This issue is tracked with Oracle bug 9740473.
    Are there any plans afoot to make this new date picker "screen readable"?
    Thanks.

    Hi,
    we are a little bit dependent here when the folks of jQueryUI (http://www.jqueryui.com) are making improvements in that area. It might would help if you post in the jQueryUI forum as well.
    But what we could do for 4.1 if no newer version of jQueryUI is available which addresses this accessibility issues, we could fallback to the "Classic Date Picker" if the application is running in "Screenreader Mode". Sighted users would still get the nice jQueryUI based date picker.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Fetch New Data shows two entries for one account

    I have on a variety of accounts on my iPhone and my iPad: an iCloud, an Exchange, a IMAP, and a couple of Gmail accounts.
    Earlier this week, I noticed that in the "Fetch New Data" setting (Settings > Mail, Contacts, Calendar > Fetch New Data), there are TWO entries for one of the Gmail accounts.
    One entry lists "Mail and Calendars." I use this for this particular Gmail account. I have these selected in the "Accounts" section of Settings > Mail, Contacts, Calendar.
    The other entry lists "Contacts and Calendars." I don't sync Contacts, but I do sync Calendars. Why is it listed twice?
    I tried deleting
    the offending Gmail account, but it did not delete the duplicate entries.
    erasing all settings
    all of my accounts, including iCloud, IMAP, and other accounts.
    The ghost account is still there, fetching calendars and contacts.
    Has anyone else seen this behavior?
    I considered erasing settings and content, but that seems pretty extreme for something that might not be that big of an issue.

    Exact same problem here!!! Iphone 5s with IOS 7.0.3, using Gmail among other email providers.
    So it is definately a bug - the "fetch new data ghost account". I hope it will be solved in a newer release. In the meantime, I switched the ghost account to "manual" so it shouldn't interfere...

  • Architectural Design - New Data Warehouse

    Hello All,
    This is my first post to the oracle discussion forums and I'm looking forward to the interactions with other ODWB users.
    I am just begining to implement a design for a new data warehouse, our team has already defined user requirements for a subset of the business (Sales/Marketing) and have committted a logical model to paper. We have installed our dev environment and are now ready to begin the work of creating our prototype.
    I've read all the Oracle doc I can get my hands on regarding implementing your DW objects and have been pondering the approach. ROLAP or MOLAP.....
    it seems to make sense that we should deploy into a ROLAP environment bringing in all our data from our staging area to create a stable relational data store. Then select most used or queried dimensions and facts to deploy in a MOLAP environment... has anyone used this approach? any lessons learned? do you have to choose one method or the other? or can you take a blended approach ? would you deploy both in the same database instance or seperate the two?
    thx

    I'm somewhat new to OWB coming from an Informatica background but in our environment, we are doing the same thing. Our Enterprise Data Warehouse will be based on ROLAP and I intend to use MOLAP for subsets of the EDW.
    Dimensions in Oracle are somewhat interesting in that they are "leveled" and you can tie cubes or "fact tables" to any level of the dimension. This is a bit un-Kimball-like and has taken some getting used to. I think it is a powerful feature but I will have to experiment some until I understand it better.
    One critical bug with 10.2 I've run into is with dimension roles - The time dimension for instance. Typically this is one table that is aliased many many times. If you exceed roughly 5 roles for the time dimension, the generation of the object fails since OWB generates a single anonymous PL/SQL block that exceeds 64k. Its a documented bug in development with no workaround according to metalink.
    Other gotchas are that table changes always try to generate "create table" scripts even if you only add an index or change parallelism. We have had to do table maintenance outside OWB and then keep the metadata in sync up until now.
    I haven't done any of the MOLAP yet but from what I read there are some restrictions - such as you can't have roles on dimensions for MOLAP and I believe you can't have SCDs in MOLAP. I don't know how Time dimensions are handled in MOLAP without roles! Do people really generate tables for every single time dimension in OWB???
    Hope you share your experiences here!
    - Mike Taylor

  • Nokia 5700 New Firmware Should Have This Change Lo...

    Hello All!
    After A Full Anlysis Of Nokia 5700 Xpress Music I want To Inform Nokia Those Changes Which Need To Be MAde In Nokia 5700 New Firmware.
    Here They Are:
    * Music Player SHould HAve Exit Button [It takes 2mb Ram When Run In Background].
    * There Must An Application To Run Phone In Landscape Mode.
    * Loudness Of Music Must Be Enhanced.
    * Music Player Should Be Paused While There Is NAy Incomming Call.
    * Camera Quality Should Be More Better.
    * Camera Zoom Should Be 10X or More.
    * More Visulaization Should BE Added.
    * When Create ANy New Folder In Images Folder Through Gallery and Move All Images To Newly Create Folder Then Only One Image Moved To That Folder. This Bug Should Be Fixed.
    * Radio Sound Must Be More Louder.
    * There Must Be Option To Remove Themes Via Application Manager.
    * Warning Tones Must Be Fast. Warning Tones Heard After 2 sec Of The Notification.
    * Loudness Option Should Work As It Is Not Working In The Current Firmware.
    * The Phone Restart Automatically, This Bug Should Be Fixed.
    * There Must Be 25-30 mb free Ram Available as In The Current Version Only 18 mb Free Ram Is Available.
    * MAps Should Be There In New Firmware.
    I am Sure That Nokia Will Consider These Things While Releasing The New Firmare For Nokia 5700.
    I thank U All!
    Nokia 5530 Xpress Music RM-504
    v30.0.009
    31-5-10

    * Music Player SHould HAve Exit Button [It takes 2mb Ram When Run In Background].i think this will come with a firmware update, cause n73 get it also later by an update
    * There Must An Application To Run Phone In Landscape Mode.
    http://www.bysamir.fr/rotateme/
    * Music Player Should Be Paused While There Is NAy Incomming Call.i agree if it isnt that whay. doenst use the mp3player on my n73
    * Camera Quality Should Be More Better.maybe there will be an update like on n73, but the pictures i saw were really noisy
    * Camera Zoom Should Be 10X or More.it is digital zoom so 10x digital zoom would be like you take a 160x120 cutting of your 2mp-picture (1600x1200) and resize it to 1600x120 - i hope you understand that it is not the same like if you take a 1600x1200 native picture without resizing. that's digital zoom...
    * When Create ANy New Folder In Images Folder Through Gallery and Move All Images To Newly Create Folder Then Only One Image Moved To That Folder. This Bug Should Be Fixed.use fexplorer or x-plore or Y-Browser or activefile as file browser
    * Radio Sound Must Be More Louder.so it is the same issue like phone/mp3 loudness. phone has to be louder at all.
    * There Must Be Option To Remove Themes Via Application Manager.build-in themes cannot be removed
    * Warning Tones Must Be Fast. Warning Tones Heard After 2 sec Of The Notification.you see a notification (for example "battery low") and the sound is 2 seconds late? curious...
    * The Phone Restart Automatically, This Bug Should Be Fixed.also if you dont use the phone? or are you doing something specific?
    * There Must Be 25-30 mb free Ram Available as In The Current Version Only 18 mb Free Ram Is Available.buy a e90... n95 isnt better in that point and n73 isnt too. i dont think they can reduce the ram-using of the symbian-os too free ram for third party apps
    * MAps Should Be There In New Firmware.you can download it!?! why it should be in the firmware? if there is someone who doesnt use or need it, it is wasted memory for him if it is build-in
    V21.0.025 » 04-09-2007 » RM-356 5800 XpressMusic » Language pack 01

  • Nokia 6680 new firmware?

    Hi guys,
    Did Nokia realese new firmware for Nokia 6680?:
    v5.04.40
    20-11-06
    RM-36
    I was just checking for the new firmware for Nokia 6680,
    via Nokia Software Updater. And I was surprise to find there are
    new updates. Then I upgrade my 6680 from v5.04.07 to v5.04.40.
    After upgrade, I notice that there are some difficulties in making & receiving calls, and sending SMS. I'm staying in Malaysia and using Celcom 3G. I refer the provider on this matter, and they said their network is ok.
    Could it be the upgrades?
    What are the changelog for v5.04.40

    Yeah, that's what I thought. An upgrade is suppose to improve the use. Unless, the new firmware has a tiny bug, or it's an unofficial release. I looked up in the Internet, so far, no info about the new firmware.
    Can Nokia release an unofficial firmware?
    Thanks for the help.
    Firdaus
    xxxxxxx

  • New JMF bug?

    Hi to all,
    I'm developing a videoconferencing app, by using client-server architecture.
    Today i get the following error message, after i closed my app by pressing <CTRL>+C in the DOS Prompt.
    Perhaps is a new JMF bug, 'cause i never found any news regarding this particular dll (jmddraw.dll).
    Notice: some times i catch some overlapping, when receiving video data from 2 clients in session. It's strange...
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x11401a9b, pid=3360, tid=2944
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_04-b05 mixed mode)
    # Problematic frame:
    # C [jmddraw.dll+0x1a9b]
    --------------- T H R E A D ---------------
    Current thread (0x0ade69c0): JavaThread "Loop thread: com.sun.media.renderer.video.DDRenderer@3a835d" daemon [_thread_in_native, id=2944]
    siginfo: ExceptionCode=0xc0000005, writing address 0x00000000
    Registers:
    EAX=0x00000000, EBX=0x116206f0, ECX=0x00000000, EDX=0x7c91e2f1
    ESP=0x1185f9fc, EBP=0x11ab8c50, ESI=0x0ade6a7c, EDI=0x00000000
    EIP=0x11401a9b, EFLAGS=0x00010206
    Top of Stack: (sp=0x1185f9fc)
    0x1185f9fc: 0ade69c0 07408088 1185fb44 07408088
    0x1185fa0c: 1185fa2c 00000000 11ab8c50 0f7afe58
    0x1185fa1c: 00000000 7c91e2f1 7c8024b7 00000004
    0x1185fa2c: 00000000 1185fa48 73e81e55 1185faf8
    0x1185fa3c: 73e81ee5 1142074c 00000000 00000000
    0x1185fa4c: 00000000 00000000 000000b0 00000090
    0x1185fa5c: 000a249c 00000000 00000002 00000000
    0x1185fa6c: 1185fb08 0ade69c0 11420730 113a1716
    Instructions: (pc=0x11401a9b)
    0x11401a8b: 00 50 e8 6b 07 00 00 8b 54 24 28 8b f8 83 c4 04
    0x11401a9b: 89 17 8b 43 1c 8d 54 24 24 8b 08 52 8d 54 24 38
    Stack: [0x11820000,0x11860000), sp=0x1185f9fc, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [jmddraw.dll+0x1a9b]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.sun.media.renderer.video.DDRenderer.dxDraw(Ljava/lang/Object;JII)Z+0
    j com.sun.media.renderer.video.DDRenderer.doProcess(Ljavax/media/Buffer;)I+217
    j com.sun.media.renderer.video.BasicVideoRenderer.process(Ljavax/media/Buffer;)I+18
    j com.sun.media.BasicRendererModule.processBuffer(Ljavax/media/Buffer;)I+357
    j com.sun.media.BasicRendererModule.scheduleBuffer(Ljavax/media/Buffer;)Z+459
    j com.sun.media.BasicRendererModule.doProcess()Z+330
    j com.sun.media.RenderThread.process()Z+4
    j com.sun.media.util.LoopThread.run()V+14
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0acb3920 JavaThread "Thread-1" daemon [_thread_in_native, id=3836]
    0x0addd4c8 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=1044]
    0x0addeaa0 JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@1e2afb2" daemon [_thread_blocked, id=224]
    0x0add9568 JavaThread "Loop thread: com.sun.media.renderer.audio.DirectAudioRenderer@c4bc34" daemon [_thread_blocked, id=1968]
    0x0ade7230 JavaThread "Loop thread: com.sun.media.parser.RawBufferParser$FrameTrack@864e43" daemon [_thread_blocked, id=2588]
    =>0x0ade69c0 JavaThread "Loop thread: com.sun.media.renderer.video.DDRenderer@3a835d" daemon [_thread_in_native, id=2944]
    0x0adde048 JavaThread "DirectSound Request Thread" daemon [_thread_blocked, id=2616]
    0x0addc2b8 JavaThread "Loop thread" daemon [_thread_blocked, id=908]
    0x0fa83388 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" daemon [_thread_blocked, id=488]
    0x0add8088 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" daemon [_thread_blocked, id=2928]
    0x0add73b8 JavaThread "Loop thread" daemon [_thread_blocked, id=2860]
    0x0ad2a410 JavaThread "JMF thread: SendEventQueue: com.sun.media.PlaybackEngine" daemon [_thread_blocked, id=3036]
    0x0acd09e0 JavaThread "JMF thread: SendEventQueue: com.sun.media.content.unknown.Handler" daemon [_thread_blocked, id=3980]
    0x0acd1d78 JavaThread "RTPStream" daemon [_thread_blocked, id=1576]
    0x0ae73218 JavaThread "RTPStream" daemon [_thread_blocked, id=2748]
    0x0adad7c8 JavaThread "RTPStream" daemon [_thread_blocked, id=316]
    0x0acdac08 JavaThread "RTPStream" daemon [_thread_blocked, id=3172]
    0x0ae6fc30 JavaThread "RTCP Reporter" daemon [_thread_blocked, id=2064]
    0x0ae6f078 JavaThread "SSRC Cache Cleaner" daemon [_thread_blocked, id=3884]
    0x0ae790a8 JavaThread "RTP Forwarder for address 192.168.0.44 port 1034" daemon [_thread_in_native, id=2720]
    0x0ae75700 JavaThread "RTCP Forwarder for address192.168.0.44 port 1037" daemon [_thread_in_native, id=1848]
    0x0adb14a8 JavaThread "RTPEventHandler" daemon [_thread_blocked, id=2628]
    0x0acdae78 JavaThread "Loop thread" [_thread_blocked, id=1124]
    0x0ad78000 JavaThread "TimerQueue" daemon [_thread_blocked, id=472]
    0x00035b68 JavaThread "DestroyJavaVM" [_thread_blocked, id=2980]
    0x0ad4cb30 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=2228]
    0x0ad11980 JavaThread "AWT-Shutdown" [_thread_blocked, id=4052]
    0x0acecc10 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3900]
    0x00a91550 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3504]
    0x00a90178 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3392]
    0x00a8f500 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2864]
    0x00a867e8 JavaThread "Finalizer" daemon [_thread_blocked, id=1256]
    0x00a85358 JavaThread "Reference Handler" daemon [_thread_blocked, id=3164]
    Other Threads:
    0x00a81210 VMThread [id=4000]
    0x00a92728 WatcherThread [id=3536]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 261K [0x02ad0000, 0x02b70000, 0x02fb0000)
    eden space 512K, 47% used [0x02ad0000, 0x02b0cf78, 0x02b50000)
    from space 64K, 26% used [0x02b60000, 0x02b64500, 0x02b70000)
    to space 64K, 0% used [0x02b50000, 0x02b50000, 0x02b60000)
    tenured generation total 2468K, used 2318K [0x02fb0000, 0x03219000, 0x06ad0000)
    the space 2468K, 93% used [0x02fb0000, 0x031f39c0, 0x031f3a00, 0x03219000)
    compacting perm gen total 9728K, used 9684K [0x06ad0000, 0x07450000, 0x0aad0000)
    the space 9728K, 99% used [0x06ad0000, 0x07445220, 0x07445400, 0x07450000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040c000      C:\WINDOWS\system32\java.exe
    0x7c910000 - 0x7c9c6000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8ff000      C:\WINDOWS\system32\kernel32.dll
    0x77f40000 - 0x77feb000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77da0000 - 0x77e31000      C:\WINDOWS\system32\RPCRT4.dll
    0x77be0000 - 0x77c38000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d640000 - 0x6d7c9000      C:\Programmi\Java\jre1.5.0_04\bin\client\jvm.dll
    0x77d10000 - 0x77da0000      C:\WINDOWS\system32\USER32.dll
    0x77e40000 - 0x77e86000      C:\WINDOWS\system32\GDI32.dll
    0x76b00000 - 0x76b2e000      C:\WINDOWS\system32\WINMM.dll
    0x6d280000 - 0x6d288000      C:\Programmi\Java\jre1.5.0_04\bin\hpi.dll
    0x76bb0000 - 0x76bbb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d610000 - 0x6d61c000      C:\Programmi\Java\jre1.5.0_04\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\Programmi\Java\jre1.5.0_04\bin\java.dll
    0x6d630000 - 0x6d63f000      C:\Programmi\Java\jre1.5.0_04\bin\zip.dll
    0x6d000000 - 0x6d167000      C:\Programmi\Java\jre1.5.0_04\bin\awt.dll
    0x72f70000 - 0x72f96000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76340000 - 0x7635d000      C:\WINDOWS\system32\IMM32.dll
    0x774b0000 - 0x775ed000      C:\WINDOWS\system32\ole32.dll
    0x5b180000 - 0x5b1b8000      C:\WINDOWS\system32\uxtheme.dll
    0x736d0000 - 0x73719000      C:\WINDOWS\system32\ddraw.dll
    0x73b30000 - 0x73b36000      C:\WINDOWS\system32\DCIMAN32.dll
    0x738b0000 - 0x73980000      C:\WINDOWS\system32\D3DIM700.DLL
    0x6d240000 - 0x6d27d000      C:\Programmi\Java\jre1.5.0_04\bin\fontmanager.dll
    0x746b0000 - 0x746fb000      C:\WINDOWS\system32\MSCTF.dll
    0x7c9d0000 - 0x7d1ec000      C:\WINDOWS\system32\shell32.dll
    0x77e90000 - 0x77f06000      C:\WINDOWS\system32\SHLWAPI.dll
    0x773a0000 - 0x774a2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x5d4d0000 - 0x5d567000      C:\WINDOWS\system32\comctl32.dll
    0x6d4c0000 - 0x6d4d3000      C:\Programmi\Java\jre1.5.0_04\bin\net.dll
    0x71a30000 - 0x71a47000      C:\WINDOWS\system32\WS2_32.dll
    0x71a20000 - 0x71a28000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d4e0000 - 0x6d4e9000      C:\Programmi\Java\jre1.5.0_04\bin\nio.dll
    0x10000000 - 0x10041000      C:\Programmi\Sync Manager\agent\syncagent.dll
    0x719d0000 - 0x71a10000      C:\WINDOWS\System32\mswsock.dll
    0x76ee0000 - 0x76f07000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f78000      C:\WINDOWS\System32\winrnr.dll
    0x76f20000 - 0x76f4d000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f86000      C:\WINDOWS\system32\rasadhlp.dll
    0x66750000 - 0x667a8000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a10000 - 0x71a18000      C:\WINDOWS\System32\wshtcpip.dll
    0x0f200000 - 0x0f215000      C:\WINDOWS\system32\jmutil.dll
    0x0f370000 - 0x0f37d000      C:\WINDOWS\system32\jmvfw.dll
    0x73af0000 - 0x73b03000      C:\WINDOWS\system32\AVICAP32.dll
    0x77bd0000 - 0x77bd8000      C:\WINDOWS\system32\VERSION.dll
    0x75df0000 - 0x75e11000      C:\WINDOWS\system32\MSVFW32.dll
    0x72c90000 - 0x72c99000      C:\WINDOWS\system32\wdmaud.drv
    0x76bf0000 - 0x76c1e000      C:\WINDOWS\system32\WINTRUST.dll
    0x77a50000 - 0x77ae5000      C:\WINDOWS\system32\CRYPT32.dll
    0x77af0000 - 0x77b02000      C:\WINDOWS\system32\MSASN1.dll
    0x76c50000 - 0x76c78000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x72c80000 - 0x72c88000      C:\WINDOWS\system32\msacm32.drv
    0x77bb0000 - 0x77bc5000      C:\WINDOWS\system32\MSACM32.dll
    0x77ba0000 - 0x77ba7000      C:\WINDOWS\system32\midimap.dll
    0x73e50000 - 0x73e54000      C:\WINDOWS\system32\ksuser.dll
    0x770f0000 - 0x7717c000      C:\WINDOWS\system32\OLEAUT32.dll
    0x76f90000 - 0x7700f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77010000 - 0x770e2000      C:\WINDOWS\system32\COMRes.dll
    0x778f0000 - 0x779e7000      C:\WINDOWS\system32\setupapi.dll
    0x73620000 - 0x73627000      C:\WINDOWS\system32\msdmo.dll
    0x0f790000 - 0x0f797000      C:\WINDOWS\system32\jmdaudc.dll
    0x73e80000 - 0x73edc000      C:\WINDOWS\system32\DSOUND.dll
    0x20000000 - 0x202d5000      C:\WINDOWS\system32\xpsp2res.dll
    0x10150000 - 0x1015d000      C:\WINDOWS\system32\jmacm.dll
    0x587e0000 - 0x587e7000      C:\WINDOWS\system32\imaadp32.acm
    0x72c60000 - 0x72c67000      C:\WINDOWS\system32\msadp32.acm
    0x586f0000 - 0x586f5000      C:\WINDOWS\system32\msg711.acm
    0x586c0000 - 0x586c8000      C:\WINDOWS\system32\msgsm32.acm
    0x58690000 - 0x58694000      C:\WINDOWS\system32\tssoft32.acm
    0x73ae0000 - 0x73ae7000      C:\WINDOWS\system32\tsd32.dll
    0x586d0000 - 0x586ed000      C:\WINDOWS\system32\msg723.acm
    0x58700000 - 0x5874d000      C:\WINDOWS\system32\msaud32.acm
    0x586a0000 - 0x586be000      C:\WINDOWS\system32\sl_anet.acm
    0x58750000 - 0x587da000      C:\WINDOWS\System32\l3codeca.acm
    0x10290000 - 0x102b4000      C:\WINDOWS\system32\sirenacm.dll
    0x102d0000 - 0x102de000      C:\WINDOWS\system32\jmgsm.dll
    0x103f0000 - 0x103fb000      C:\WINDOWS\system32\jmvcm.dll
    0x10510000 - 0x105bc000      C:\WINDOWS\system32\jmvh263.dll
    0x106d0000 - 0x106de000      C:\WINDOWS\system32\jmcvid.dll
    0x109f0000 - 0x10a0b000      C:\WINDOWS\system32\jmh263enc.dll
    0x113a0000 - 0x113ac000      C:\WINDOWS\system32\jmdaud.dll
    0x11400000 - 0x11408000      C:\WINDOWS\system32\jmddraw.dll
    0x6d360000 - 0x6d366000      C:\Programmi\Java\jre1.5.0_04\bin\jawt.dll
    0x115e0000 - 0x115e9000      C:\WINDOWS\system32\jmfjawt.dll
    VM Arguments:
    java_command: RTPClient
    Environment Variables:
    CLASSPATH=.;.;.;C:\PROGRA~1\JMF21~1.1E\lib\sound.jar;C:\PROGRA~1\JMF21~1.1E\lib\jmf.jar;C:\PROGRA~1\JMF21~1.1E\lib;
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\jdk1.4.2\bin;C:\Programmi\QuickTime\QTSystem\
    USERNAME=Tony
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 12 Stepping 0, AuthenticAMD
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 15, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1047856k(636784k free), swap 2519584k(2224060k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_04-b05) for windows-x86, built on Jun 3 2005 02:10:41 by "java_re" with MS VC++ 6.0
    So, i have just reported this to the "bug report", and i'm waiting for some answers.
    I never catch this error, 'cause in the past i ever used the 1.4.2 JVM's version (i think this is the main reason...).

    Hi, and thank you for reply.
    Are you sure?
    Recently i made some tests with my Client app, and this works with 1.5.
    Of course, there are some problems, e.g. the GUI's layout is not perfect, but i send and receive RTP streams normally... strange...
    By the way, for the moment i'll use the JVM version 1.4.2, thanks.

  • 'Get All New Data Request by Request' option not working Between DSO n Cube

    Hi BI's..
             Could anyone please tell me why the option ' Get one Request only' and  'Get All New Data Request by Request' is not working in DTP between Standard DSO and InfoCube.
    Scenario:
    I have done the data load by Yearwise say FY 2000 to FY 2009 in Infopackage and load it to Write-optimised DSO (10 requests) and again load Request by request to Standard DSO and activate each request. I have selected the option in DTP's to  'Get All New Data Request by Request' and its working fine between WDSO and SDSO. But not working between Cube and SDSO. While Execute DTP its taking as a single request from SDSO to Cube.( 10 request to single request).
    Regards,
    Sari.

    Hi,
    How does your DTP setting looks like from below options ? It should be change log, assuming you are not deleting change log data.
    Delta Init. Extraction from...
    - Active Table (with archive)
    - Active Table (without archive)
    - Archive ( full extraction only)
    - Change Log
    Also if you want to enable deltas, please do not delete change log. That could create issue while further update from DSO.
    Hope that helps.
    Regards
    Mr Kapadia
    *Assigning points is the way to say thanks*

  • Data in New Data in ODS

    Hello,
    I am trying to load data from r/3 into the ODS.
    When i check in the monitor its saying that
    07:37:12 ( 549741 from 549741 Records )
    But its not turning green.Its still yellow.
    I checked the new data in the ODS. The number of entries in it is 0.

    Hi
    You can view the data in ODS only after the status is green.
    Check if it is showing any error in the description.
    If not then wait for some time. we can't do anything as is it showing yellow(in process) status
    Cheers
    SM

  • Refresh jTable after inserting new data into the Database

    Hey all,
    I'm using Netbeans 6.5 to create a Desktop Application which is connected to a Java DB (Derby).
    The first simple steps were all very successfull:
    Create the jTable and bind it to the Database => everything works fine. When the application starts it correctly shows all data from the database.
    The problem starts when I try to insert new data to the database.
    For that reason I've created textfields and a button "Save". When I press the button it successfully inserts the data to the database but they are not displayed in the jTable (when the application starts they are all there, they are not updated at runtime) . I've tried table.invalidate() and table.repaint() but they just don't work.
    Any help will be GREATLY appreciated. But please have in mind that most of the code is Netbeans-generated and most of it not editable.
    Many thanks in advance.
    George

    Once again you are right my friend. I jumped to conclusion way too fast, when I shouldn't. (Give me a break, I've been busting my head with this well over a week). The response I saw when I did that was that indeed a line is added to the jTable. Because I falsly set the index of the object to be added to be second to last the row appeared on the table, what I didn't see at the time was that the last one disappeared. Hmm...
    A new adventure begins...
    So after a few hours of messing around with it here are my observations:
    1) It was not an observable list. When I add the new element with employeesList.add(newEmp); , the table gets notified but a get a bunch of exceptions:
    xception in thread "AWT-EventQueue-0" java.lang.IndexOutOfBoundsException: Index: 84, Size: 84
            at java.util.ArrayList.RangeCheck(ArrayList.java:546)
            at java.util.ArrayList.get(ArrayList.java:321)
            at org.jdesktop.swingbinding.impl.ListBindingManager$ColumnDescriptionManager.validateBinding(ListBindingManager.java:191)
            at org.jdesktop.swingbinding.impl.ListBindingManager.valueAt(ListBindingManager.java:99)
            at org.jdesktop.swingbinding.JTableBinding$BindingTableModel.getValueAt(JTableBinding.java:713)
            at javax.swing.JTable.getValueAt(JTable.java:1903)
            at javax.swing.JTable.prepareRenderer(JTable.java:3911)
            at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:2072)
            at javax.swing.plaf.basic.BasicTableUI.paintCells(BasicTableUI.java:1974)
            at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:1897)
            at javax.swing.plaf.ComponentUI.update(ComponentUI.java:154)
            at javax.swing.JComponent.paintComponent(JComponent.java:743)
            at javax.swing.JComponent.paint(JComponent.java:1006)
            at javax.swing.JViewport.blitDoubleBuffered(JViewport.java:1602)
            at javax.swing.JViewport.windowBlitPaint(JViewport.java:1568)
            at javax.swing.JViewport.setViewPosition(JViewport.java:1098)
            at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.vsbStateChanged(BasicScrollPaneUI.java:818)
            at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.stateChanged(BasicScrollPaneUI.java:807)
            at javax.swing.DefaultBoundedRangeModel.fireStateChanged(DefaultBoundedRangeModel.java:348)
            at javax.swing.DefaultBoundedRangeModel.setRangeProperties(DefaultBoundedRangeModel.java:285)
            at javax.swing.DefaultBoundedRangeModel.setValue(DefaultBoundedRangeModel.java:151)
            at javax.swing.JScrollBar.setValue(JScrollBar.java:441)
            at javax.swing.plaf.basic.BasicScrollBarUI.scrollByUnits(BasicScrollBarUI.java:907)
            at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.mouseWheelMoved(BasicScrollPaneUI.java:778)
            at javax.swing.plaf.basic.BasicScrollPaneUI$MouseWheelHandler.mouseWheelMoved(BasicScrollPaneUI.java:449)
            at apple.laf.CUIAquaScrollPane$XYMouseWheelHandler.mouseWheelMoved(CUIAquaScrollPane.java:38)
            at java.awt.Component.processMouseWheelEvent(Component.java:5690)
            at java.awt.Component.processEvent(Component.java:5374)
            at java.awt.Container.processEvent(Container.java:2010)
            at java.awt.Component.dispatchEventImpl(Component.java:4068)
            at java.awt.Container.dispatchEventImpl(Container.java:2068)
            at java.awt.Component.dispatchMouseWheelToAncestor(Component.java:4211)
            at java.awt.Component.dispatchEventImpl(Component.java:3955)
            at java.awt.Container.dispatchEventImpl(Container.java:2068)
            at java.awt.Component.dispatchEvent(Component.java:3903)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4256)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3965)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3866)
            at java.awt.Container.dispatchEventImpl(Container.java:2054)
            at java.awt.Window.dispatchEventImpl(Window.java:1801)
            at java.awt.Component.dispatchEvent(Component.java:3903)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:269)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:184)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:176)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Exception in thread "AWT-EventQueue-0" java.lang.IndexOutOfBoundsException: Index: 84, Size: 84
            at java.util.ArrayList.RangeCheck(ArrayList.java:546)
            at java.util.ArrayList.get(ArrayList.java:321)
            at org.jdesktop.swingbinding.impl.ListBindingManager$ColumnDescriptionManager.validateBinding(ListBindingManager.java:191)
            at org.jdesktop.swingbinding.impl.ListBindingManager.valueAt(ListBindingManager.java:99)
            at org.jdesktop.swingbinding.JTableBinding$BindingTableModel.getValueAt(JTableBinding.java:713)
            at javax.swing.JTable.getValueAt(JTable.java:1903)
            at javax.swing.JTable.prepareRenderer(JTable.java:3911)
            at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:2072)
    ... and a lot morewhich from my poor understanding means that the jTable succesfully notices the change but it is not able (??) to adjust to the new change. What is more interesting is that when I plainly add the element to the end of the list (without an idex that is), a blank row appears at the end of my Table. The weird thing is that I've bound the table to some text fields below it, and when I select that empty row all the data appear correctly to the text fields.
    I tried going through:
                    org.jdesktop.observablecollections.ObservableCollections.observableList(employeesList).add(newEmp);as well as
                    help = org.jdesktop.observablecollections.ObservableCollections.observableListHelper(employeesList);
                    help.getObservableList().add(newEmp);
                    help.fireElementChanged(employeesList.lastIndexOf(newEmp));and
                    obsemployeesList = org.jdesktop.observablecollections.ObservableCollections.observableList(employeesList);
                    obsemployeesList.add(newEmp);and I still get the same results (both the exeptions and the mysterious empty row at the end of the table
    So, I'm again in terrible need of your advice. I can't thank you enough for the effort you put into this.
    Best regards,
    George
    Edited by: tougeo on May 30, 2009 11:06 AM
    Edited by: tougeo on May 30, 2009 11:21 AM
    Edited by: tougeo on May 30, 2009 11:30 AM

  • Why in SE16 we can not  see New Data Table for standard DSO

    Hi,
    We says that there is three tables (New Data Table, Active Data Table and Change Log Table) of Standard DSO, Then Why in SE16 we can not  see New Data Table of Standard DSO.
    Regards,
    Sushant

    Hi Sushant,
    It is possible to see the 3 DSO tables data in through SE16. May be you do not have authorization to see data through SE16.
    Sankar Kumar

  • New Data in R/3 Enterprise - ABAP Proxies - XI what happen?

    Hi,
    i have a theoretical question:
    if i use R/3 Enterprise on WAS and put new Data in the R/3 System and transport them to XI with ABAP Proxies. What happens in the systems?
    How do the R/3 System put new data in the proxy runtime and send them to xi?
    I want to unterstand how the transport from new data in a R/3 System with ABAP Proxies comes to the XI Integration Server.

    Hi Marcel,
    >>>>>How do the R/3 System put new data in the proxy runtime and send them to xi?
    all you need to do in r3 is to fill tables of a generated structure
    and execute one method of a generated class (send....)
    then R3 will connect over HTTP to XI and send the data from your structures
    structures and class in R3 is being generated automatically via TCODE SPROXY
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Maybe you are looking for

  • I can't get into the itunes music store - can anyone help?

    When I try to get to the itunes music store, I get the following error message: itunes could not connect to the music store. The network connection timed out. Make sure your network settings are correct and your network connection is active. Then try

  • Need to add senders email address into the subject header of my PHP form (somehow)

    Hello one and all, I have a PHP form which is working fine and sends our support team an email with the subject header 'Support'. I have been asked to fix this form to include the senders email address into the Subject header so that the support team

  • Nested perform on commit error

    hi all,happy new year 2006 in my custom transaction upon save, iam calling a Func module in update task passing all the internal tables which contain the update data. inside this FM iam doing table updates without commit and also calling change docum

  • How do I stream my photos when I have attempted everything in the book

    The HDMI cables are properly connected on both TV sets equipped with ATV. All functions are working except for the photo streaming. The homesharing instructions have been tried and retried on all devices. Although I have 16000 pics, this quantity sho

  • I have setup the entire R/3- XI- R/3 channel. now i want to send a MATMAS I

    Hello friends, With help received by you all , i have setup the R/3->XI->R/3 channel. Now i have created a material in my Sender R/3 system. So how do i send that Material to XI from R/3. How will my material appear in the MATMAS Idoc. do i have to d