Stand still at Forms 6

Dear All,
Hi, I was a d2k person untill 2 yrs ago. I have 4 years of exp right from forms 4.5 to forms 6. I have created thousands of reports some very complecated ones in this tenure. Took a break of 2 yrs. Now i see a lot has changed. Could somebody plz help me how do i go about to learn new versions. are there any institues who give advance training for people like me? Do you think companies will still take people like me and will be willing to train me.
Lakshmi

I think it important to upgrade from your version to the latest version. Many companies are now migrating their applications to the net and to have good knowledge of how the applications work on this architecture is very important. Myself I'm ocp in 6i and I am now doing my upgrade to 9i dev. As for institutions that teach these lessons, I would ask you to contact your area learning institutions for futher details. Good Luck.

Similar Messages

  • Stand still and no clue whats happening after ....

    Hi
    This is a puzzling one. I have completed the form. Click on Submit button. The form stands still and no clue whats happening?
    Please advice.
    All errors on the page has been resolved. There are none. All the insert to database tables works before but not now. Please advice.
    Thanks.

    <?php require_once('Connections/attending.php');?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO attendlist (Windowsid, title, firstname, surname, extension, mobile, jobrole, course, cpg, mgrname, room) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['Wid'], "text"),
                           GetSQLValueString($_POST['title'], "text"),
                           GetSQLValueString($_POST['firstname'], "text"),
                           GetSQLValueString($_POST['surname'], "text"),
                           GetSQLValueString($_POST['contactno'], "text"),
                           GetSQLValueString($_POST['mobile'], "text"),
                           GetSQLValueString($_POST['jobrole'], "text"),
                           GetSQLValueString($_POST['courses'], "text"),
                           GetSQLValueString($_POST['cpg2'], "text"),
                           GetSQLValueString($_POST['mgrname2'], "text"),
                           GetSQLValueString($_POST['troom'], "text"));
      mysql_select_db($database_attending, $attending);
      $Result1 = mysql_query($insertSQL, $attending) or die(mysql_error());
      $insertGoTo = "ReportbyAll.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    mysql_select_db($database_attending, $attending);
    $query_rsattendance = "SELECT * FROM attendlist";
    $rsattendance = mysql_query($query_rsattendance, $attending) or die(mysql_error());
    $row_rsattendance = mysql_fetch_assoc($rsattendance);
    $totalRows_rsattendance = mysql_num_rows($rsattendance);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO attendlist (title, firstname, surname, extension, mobile, jobrole, course, cpg, mgrname, room, Adate) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['title'], "text"),
                           GetSQLValueString($_POST['firstname'], "text"),
                           GetSQLValueString($_POST['surname'], "text"),
                           GetSQLValueString($_POST['contactno'], "text"),
                           GetSQLValueString($_POST['mobile'], "text"),
                           GetSQLValueString($_POST['jobrole'], "text"),
                           GetSQLValueString($_POST['courses'], "text"),
                           GetSQLValueString($_POST['cpg2'], "text"),
                           GetSQLValueString($_POST['mgrname2'], "text"),
                           GetSQLValueString($_POST['troom'], "text"),
                           GetSQLValueString($_POST['Adate2'], "date"));
      mysql_select_db($database_attending, $attending);
      $Result1 = mysql_query($insertSQL, $attending) or die(mysql_error());
      $insertGoTo = "Listing.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    } ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Register</title>
    <style type="text/css">
    <!--
    body {
    font: 100%/0.8 Verdana, Arial, Helvetica, sans-serif;
    background-color: #4E5869;
    margin: 0;
    padding: 0;
    color: #000;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
    h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;  /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
    color:#414958;
    text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
    color: #4E5869;
    text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
    /* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
    .container {
    width: 80%;
    max-width: 960px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
    min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
    background-color: #FFF;
    margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    /* ~~the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo~~ */
    .header {
    background-color: #6F7D94;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
    padding: 10px 0;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
    padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The footer ~~ */
    .footer {
    padding: 10px 0;
    background-color: #6F7D94;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
    -->
    </style>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
    <script language='JavaScript' type='text/javascript' src='TSScript/yahoo.js'></script>
    <script language='JavaScript' type='text/javascript' src='TSScript/event.js'></script>
    <script language='JavaScript' type='text/javascript' src='TSScript/dom.js'></script>
    <script language='JavaScript' type='text/javascript' src='TSScript/calendar.js'></script>
    <link rel='stylesheet' type='text/css' href='TSScript/TSCalendar/calendar.css' />
    <script language='JavaScript' type='text/javascript' src='TSScript/TSCalendar/TSCalendar.js'></script>
    </head>
    <body>
    <div class="container">
      <div class="header"><!-- end .header --><img src="Cerner At Imperial2.jpg" width="960" height="150" alt="" /></div>
      <div class="content">
        <h3>Attendance Register: </h3>
    <?php 
    echo "Date  ".date("d/m/Y");?>
        </h3>
        <form action="<?php echo $editFormAction; ?>" id="form1" name="form1" method="POST">
          <table width="780" border="0" cellspacing="10" summary="Cerner@Imperial">
            <tr>
              <td><div align="right">* User ID</div></td>
              <td colspan="2"><span id="sprytextfield1">
                <input name="Wid" type="text" id="Wid" tabindex="1" size="18" maxlength="10" />
              <span class="textfieldRequiredMsg"> a value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Title</div></td>
              <td colspan="2"><span id="spryselect1">
                <select name="title" id="title" tabindex="2">
                  <option value="0">Select</option>
                  <option value="Ms">Ms</option>
                  <option value="Mrs">Mrs</option>
                  <option value="Mdm">Mdm</option>
                  <option value="Mr">Mr</option>
                  <option value="Dr">Dr</option>
                  <option value="Professor">Prof</option>
                </select>
    <span class="selectRequiredMsg">    Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* First name</div></td>
              <td colspan="2"><span id="sprytextfield2">
                <input name="firstname" type="text" id="firstname" tabindex="3" size="40" maxlength="30" />
              <span class="textfieldRequiredMsg"> a value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Surname</div></td>
              <td colspan="2"><span id="sprytextfield5">
                <input name="surname" type="text" id="surname" tabindex="4" size="40" maxlength="30" />
              <span class="textfieldRequiredMsg"> a value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Contact/ Bleep</div></td>
              <td colspan="2"><span id="sprytextfield3">
                <input name="contactno" type="text" id="contactno" tabindex="5" size="10" maxlength="6" />
              <span class="textfieldRequiredMsg">a value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Mobile (optional)</div></td>
              <td colspan="2"><input name="mobile" type="text" id="mobile" tabindex="6" size="25" maxlength="18" />          <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Job role</div></td>
              <td colspan="2"><span id="spryselect2">
                <select name="jobrole" id="jobrole" tabindex="7">
                  <option value="0">Select</option>
                  <option value="Doctor">Doctor</option>
                  <option value="CNS/NP">CNS/NP</option>
                  <option value="Midwife">Midwife</option>
                  <option value="Other Staff">Other Staff</option>
                  <option value="Nurse IP HCA">Nurse IP &amp; HCA</option>
                  <option value="Nurse OP HCA">Nurse OP &amp; HCA</option>
                  <option value="IP Physician Assitant">IP Physician Assistant</option>
                  <option value="OP Phlebotomist">OP Phlebotmist</option>
                  <option value="Pharmacists">Pharmacists</option>
                  <option value="Therapist AHP">Therapist &amp; AHP</option>
                  <option value="Medical Secretary">Medical Secretary</option>
                  <option value="Bed Manager">Bed Manager</option>
                  <option value="Medical Record Staff">Medical Records</option>
                  <option value="Medical Records Manager">Medical Records Mgr</option>
                  <option value="OP Booking Clerk">OP Booking Clerk</option>
                  <option value="OP Receptionist">OP Receptionist</option>
                  <option value="ED Admin">ED Admin</option>
                  <option value="Ward Administrator">Ward Administrator</option>
                  <option value="IP Wait List Clerk/Mgr">IP Wait List Clerk/Mgr</option>
                  <option value="Antenatal Supervisor">Antenatal Supervisor</option>
                  <option value="Clinical Coder">Clinical Coder</option>
                  <option value="Clinical Coding Mgr">Clinical Coding Mgr</option>
                  <option value="Pi Help Desk Backoffice">Pi Help Desk Analyst/Back Office</option>
                </select>
              <span class="selectInvalidMsg">Please select a valid item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Manager's Name</div></td>
              <td colspan="2"><span id="sprytextfield4">
              <input name="mgrname2" type="text" id="mgrname2" tabindex="8" size="40" maxlength="30" />
              <span class="textfieldRequiredMsg"> a value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right"></div></td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Course</div></td>
              <td colspan="2"><span id="spryselect3">
                <select name="courses" id="courses" form="form1" tabindex="10" title="course">
                  <option value="0">Select</option>
                  <option value="Doctors">Doctors</option>
                  <option value="Nurse IP">Nurse IP</option>
                  <option value="Nurse OP">Nurse OP</option>
                  <option value="Midwife">Midwife</option>
                  <option value="HCA">HCA</option>
                  <option value="Pharmacist">Pharmacist</option>
                  <option value="Back Office Staff">Back Office Staff</option>
                  <option value="AHP">AHP</option>
                  <option value="Pi Help Desk Analyst">Pi Help Desk Analyst</option>
                  <option value="Medical Secretary">Medical Secretary</option>
                  <option value="OP Phlebotmist">OP Phlebotmist</option>
                  <option value="Champion Users Doctors">Champion Users Doctors</option>
                  <option value="Champion Users Nurse IP">Champion Users Nurse IP</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Training Location </div></td>
              <td><span id="spryselect4">
                <select name="troom" required="required" id="troom" form="form1" tabindex="11" title="location">
                  <option value="0">Select</option>
                  <option value="CXH">Charing Cross</option>
                  <option value="HH">Hammersmith Hammersmith</option>
                  <option value="QEH">Queen Charlottee Hospital</option>
                  <option value="SMH">St Mary's Hospital</option>
                  <option value="WEH">Western Eye Hospital</option>
                  <option value="SCC">St Charles Community</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* CPG</div></td>
              <td><span id="spryselect5">
                <select name="cpg2" required="required" id="cpg2" form="form1" tabindex="12" title="cpg">
                  <option value="0">Select</option>
                  <option value="CPG 1 Medicine">CPG1 - Medicine</option>
                  <option value="CPG 2 Surgery &amp; Cancer">CPG2 - Surgery and Cancer</option>
                  <option value="CPG3 Specialist Services">CPG3 - Specialist Services</option>
                  <option value="CPG4 Circulatory Services and Renal Medicine">CPG4 - Circulatory Services and Renal Medicine</option>
                  <option value="CPG5 Womens and Childrens">CPG5 - Womens and Childrens</option>
                  <option value="CPG6 Clinical and Investigative Sciences">CPG6 - Clinical and Investigative Sciences</option>
                  <option value="CP7 Private Patients">CPG7 - Private Patients</option>
                  <option value="Others">Others</option>
                </select>
              <span class="selectRequiredMsg">Please select an item.</span></span></td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td><input type="submit" name="submitbt" id="submitbt" value="Submit" /></td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="center">* Mandatory Fields</div></td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
          </table>
          <input type="hidden" name="MM_insert" value="form1" />
        </form>
        <p> </p>
        <p> </p>
        <!-- end .content --></div>
      <div class="footer"></div>
    <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none", {validateOn:["blur", "change"]});
    var spryselect1 = new Spry.Widget.ValidationSelect("spryselect1", {validateOn:["blur", "change"]});
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "none", {validateOn:["blur", "change"]});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "none", {validateOn:["blur", "change"]});
    var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4", "integer", {validateOn:["blur", "change"]});
    var spryselect2 = new Spry.Widget.ValidationSelect("spryselect2", {invalidValue:"-1", isRequired:false, validateOn:["blur", "change"]});
    var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4", "none", {validateOn:["blur"]});
    var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "none", {validateOn:["blur", "change"]});
    var spryselect3 = new Spry.Widget.ValidationSelect("spryselect3");
    var spryselect4 = new Spry.Widget.ValidationSelect("spryselect4");
    var spryselect5 = new Spry.Widget.ValidationSelect("spryselect5", {validateOn:["blur", "change"]});
    </script>
    </body>
    </html>
    <?php
    mysql_free_result($rsattendance);
    ?>

  • My new iPhone4S could not start after the Apple mark disappear, the running screen stand still over 30mn. Can someone tell me how to solve this problem.

    My new iPhone4S could not start after the Apple mark disappear, the running screen stand still over 30mn. Can someone tell me how to solve this problem.
    I tried to connect to iTune hoped to restore the system but iTunes did not reconige it.

    here is link to the apple product feedback website:
    http://www.apple.com/feedback/

  • Can i scan my mcbook pro? how? i just want to make sure it is still free form viruses.

    can i scan my mcbook pro? how? i just want to make sure it is still free form viruses.

    Yes. Download and use ClamXav or Sophos.
    (80264)

  • Safari bringing machine to stand still

    Hi
    I am finding safari keeps slowing down my whole machine, it starts fine but eventually the whole system will just come to a stand still and it doesnt matter which user account is being used i dont know if its certain sites but the system becomes so slow even to force quit is not possible and the fans are going crazy, i have just upgrade to flash 10 about a week ago, ... could this be the prob ... this symptom has only come to notice the last week or so.
    Thaks Chris

    It could be the Flash 10 player, so try uninstalling it using the Uninstaller from the Adobe web site and test Safari again. If that solves the problem, then I'd stick with Flash 9 player until all the kinks are worked out of Flash 10.
    But what else did you do just prior to this happening; i.e., download and install anything else? Be very specific as to what it was? Have you tried changing your DNS Server entries in System Preferences > Network to these two:
    208.67.222.222
    208.67.220.220
    click Apply Now, quit System Preferences and then restart Safari to test it.
    Mulder

  • Fillable in Stand Alone Adobe Form

    Hi all,
    I am using stand alone adobe form. It is a interactive form.
    My problem is to make it interactive i need to make FILLABLE = 'X'. But as it is stand alone i am not able to set it to 'X' .
    Import parameter for FM is
    /1BCDWB/DOCPARAMS
    This structure contain FILLABLE. It remain blank initially.
    Is there any way to make it default in print parameter of FM.
    Thanks in advance.

    Hi ,
    Go through site
    saptechnical -> Adobeforms.
    OR   Try this code,
    DATA:
    fp_docparams TYPE sfpdocparams,
    CALL FUNCTION lf_fm_name
    EXPORTING
    /1bcdwb/docparams = fp_docparams
    once you pass fp_docparams to funtion module it will be assign as a fillable
    Your query will be solved.
    Regards,
    Sandeep

  • Still on Forms 6i?

    What % of Oracle developers are still on Forms 6i?
    Have many have made the jump to 9i, which requires us to 1) give-up client/server deployment option, 2) more limited set of features so it can run on the Web, 3) modify existing Forms 6i applications to make them 9i-compatible. I understand that on the positive side, 9i gets your Forms on the Web easily and very fast.
    Ali

    Amil, Gerd - while I know you can make statistic say anything you want, we get more hits on the Oracle9i Forms OTN pages than all of the previous verion pages added together.
    Regards
    Grant Ronald
    Forms Product Management

  • Create and export a still image form video?

    How do I create and then export a still image from my video? Is it the same as freeze frame? It seems like that is different? I looked on youtube and a guy was telling how to do it, but he said to go up to share at the top and it is not there on my version. I think perhaps he was using an older version.. So to cut to the chase.. How do I create a still photo form my vdieo then export it to desktop or iphoto?

    You seem to have added to "Save Current Frame" option to the destinations, but you are not using, if what you are outputting is a video file and not a still image file.
    Now, click Next..., choose a file name and folder to save it on. That is just that.

  • HT6058 Hello I've been downloading the new update and it's been at a stand still since it started two days aand suggestions on how to fix this issue

    Hello I've been downloading the new update and it's been at a stand still since it started two days aand suggestions on how to fix this issue

    Cancel the update and start over again. You will most likely have to restore the iPad now anyway.
    If you were using WiFi, try rebooting the iPad and see if by some miracle the download and install completes. Hold down on the sleep and home buttons at the same time for about 10 seconds until the Apple logo appears on the screen. Try the download again.
    If that doesn't work, try using iTunes to update. But turn off your firewall and antivirus software before you update,

  • Mounting two HP LP2475w monitors to a dual monitor stand: Still use Quick Release plates?

    I have owned one HP LP2475w for a few years and like it so much I bought another one (refurbished).
    I have been using two screens for many years, but decided to get a VESA-compatible stand that supports both.
    After a lot of searching I settled on this Planar:
    http://www.newegg.com/Product/Product.aspx?Item=N8​2E16824995006
    When I mount these screens to the Planar, should I remove them from the Quick Release plates and mount those to the Planar stand?
    I'm unclear as to whether the Quick Release plates would still be used in this scenario.
    Thanks for any advice anyone can provide.
    dg
    This question was solved.
    View Solution.

    Please see page 17 of the HP LP2275w and LP2475w LCD Monitors User Guide. Based on the information presented in this guide, you can either mount the monitors directly to the stand or you can mount the "Quick Release Plates" to the stand and attach the monitors to the plates. Both methods are supported with this setup, however I would suggest using the plates for the convenience they provide.
    Please send KUDOS
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Welcome to BT. Please stand still while I repeated...

    My experience so far:
    Was (and thankfully still am just) with Virgin. Ordered Infinity, TV and phone from BT. Mainly because I want Moto GP in 2014.
    First engineer slot. Engineer no show. Phoned up. Order was cancelled but nobody mentioned it. Excellent. 
    Was told Virgin wouldn't release the number.
    Phone Virgin. No problems their end. Nobody had even contacted them.
    Phone BT. BT admit it was their internal server that had an error.
    Passed around for 2 weeks. Me chasing each time.
    Finally agree my Virgin number can be ported. Arrange date. Today.
    I was out, wife was in. I wrote everything down. "Router in the office please" etc.
    Engineer calls me "I have your new number..."
    So my port was botched too. My Virgin number has been lost. Had it for 15 years. Excellent work!
    Got home tonight. Curious. BT router is still in its box. Unopened.
    Go into office. No broadband socket. Existing Virgin router happily flashing away.
    No broadband.
    Clearly the engineer not only didn't read my checklist (handed to him), he didn't test anything. And left.
    I get an old splitter I have lying around. Try to connect the Home Hub. Nothing, flashing red lights everywhere.
    BT help have all gone home. Must be after all that exhauting and valued work they have been up to.
    Still no broadband.
    Excellent.
    Welcome to BT.

    I have asked a moderator to provide assistance, they will post an invite on this thread.
    They are the only BT employees on this forum, and are a UK based team of people, who take personal ownership of your problem.
    Once you get a reply, make sure that you are logged into the forum, then click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they may not be on duty for a long time, and your message will not be tracked properly.
    For your own security, do not post any personal details, on this forum. That includes any tracking number you are give.
    They will respond either by phone or e-mail within 5-6 working days.
    Please use the tracked e-mail, to reply, not via the forum. Thanks
    This is the form you should see when you click on the link. If you do not see this form, then you have selected the wrong link.
    When you submit the form, you will receive an enquiry number, so please keep a note of it
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Dailog Queue Stand still

    Subject Modified by Moderator
    Read the Rules of Engagement
    Hi Support ream,
    I have recently chnaged the kernel form my PRD server and applied patches, it was suxcessful.But when starting SAPMMC itdisp+work is starting well(message server connection,J2ee all process running) but after sometime Dialoug workprocess standstill is coming and chnaging to yellow.when running MIRO t.code t gives reply workprocess restarted ,session terminated also.I have tried changing abap/buffer sizer and increased accordingly,Kindly suggestas early as possible as total PRD is struck now.
    Please find dev_disp and dev_wo  below.
    dev_disp :
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        PRD
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    180
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        3164
    Mon Oct 13 11:49:52 2008
    kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3164) [dpxxdisp.c   1285]
         shared lib "dw_xml.dll" version 180 successfully loaded
         shared lib "dw_xtc.dll" version 180 successfully loaded
         shared lib "dw_stl.dll" version 180 successfully loaded
         shared lib "dw_gui.dll" version 180 successfully loaded
         shared lib "dw_mdm.dll" version 180 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Mon Oct 13 11:49:57 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5418]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >kancorprd_PRD_00                        <
    DpShMCreate: sizeof(wp_adm)          22152     (1704)
    DpShMCreate: sizeof(tm_adm)          4415616     (21968)
    DpShMCreate: sizeof(wp_ca_adm)          24064     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1544)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 06230040, size: 5079352)
    DpShMCreate: allocated sys_adm at 06230040
    DpShMCreate: allocated wp_adm at 06232118
    DpShMCreate: allocated tm_adm_list at 062377A0
    DpShMCreate: allocated tm_adm at 062377D0
    DpShMCreate: allocated wp_ca_adm at 0666D850
    DpShMCreate: allocated appc_ca_adm at 06673650
    DpShMCreate: allocated comm_adm at 06675590
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 066F6450
    DpShMCreate: allocated gw_adm at 066F6490
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 066F64C0
    DpShMCreate: allocated wall_adm at 066F64C8
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    rdisp/queue_size_check_value :  -> off
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 96 MB
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 4172
      argv[0] = E:\usr\sap\PRD\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = E:\usr\sap\PRD\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=E:\usr\sap\PRD\SYS\profile\PRD_DVEBMGS00_kancorprd
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=65000
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=PRD
      argv[7] = -DSAPMYNAME=kancorprd_PRD_00
      argv[8] = -DSAPPROFILE=E:\usr\sap\PRD\SYS\profile\PRD_DVEBMGS00_kancorprd
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1692]
    ***LOG Q0K=> DpMsAttach, mscon ( kancorprd) [dpxxdisp.c   12408]
    DpStartStopMsg: send start message (myname is >kancorprd_PRD_00                        <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: Checking Downtime Configuration of Monitoring Segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 180
    Release check o.K.
    Mon Oct 13 11:50:04 2008
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    Mon Oct 13 11:50:20 2008
    J2EE server info
      start = TRUE
      state = ACTIVE
      pid = 4172
      http = 50000
      https = 50001
      load balance = 1
      start_lazy = 0
      start_control = SAP J2EE startup framework
    dev_w0:
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Mon Oct 13 11:49:57 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'E:\usr\sap\PRD\DVEBMGS00\exe\dboraslib.dll' ...
    B  Library 'E:\usr\sap\PRD\DVEBMGS00\exe\dboraslib.dll' loaded
    B  Version of 'E:\usr\sap\PRD\DVEBMGS00\exe\dboraslib.dll' is "700.08", patchlevel (0.167)
    B  New connection 0 created
    M sysno      00
    M sid        PRD
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    180
    M intno      20050900
    M make:      multithreaded, Unicode, optimized
    M pid        4164
    M
    M  kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 4164) [dpxxdisp.c   1347]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Mon Oct 13 11:49:58 2008
    M  DpShMCreate: sizeof(wp_adm)          22152     (1704)
    M  DpShMCreate: sizeof(tm_adm)          4415616     (21968)
    M  DpShMCreate: sizeof(wp_ca_adm)          24064     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1544)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 06270040, size: 5079352)
    M  DpShMCreate: allocated sys_adm at 06270040
    M  DpShMCreate: allocated wp_adm at 06272118
    M  DpShMCreate: allocated tm_adm_list at 062777A0
    M  DpShMCreate: allocated tm_adm at 062777D0
    M  DpShMCreate: allocated wp_ca_adm at 066AD850
    M  DpShMCreate: allocated appc_ca_adm at 066B3650
    M  DpShMCreate: allocated comm_adm at 066B5590
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 06736450
    M  DpShMCreate: allocated gw_adm at 06736490
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 067364C0
    M  DpShMCreate: allocated wall_adm at 067364C8
    M  rdisp/queue_size_check_value :  -> off
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    M  ThInit: running on host kancorprd

    M Mon Oct 13 11:49:59 2008
    M  calling db_connect ...
    C  Prepending E:\usr\sap\PRD\DVEBMGS00\exe to Path.
    C  Oracle Client Version: '10.2.0.2.0'
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@PRD on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   0609BFF8   060A1694   060A0F1C
    C  Attaching to DB Server PRD (con_hdl=0,svchp=060A0E68,srvhp=060B26A4)
    C  Starting user session (con_hdl=0,svchp=060A0E68,srvhp=060B26A4,usrhp=060C5BC8)
    C  Now '/@PRD' is connected: con_hdl=0, nls_hdl=0, session_id=67.
    C  Got SAPSR3's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=060A0E68,usrhp=060C5BC8)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPSR3/<pwd>@PRD on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   0609BFF8   060A1694   060A0F1C
    C  Starting user session (con_hdl=0,svchp=060A0E68,srvhp=060B26A4,usrhp=060C5BC8)
    C  Now 'SAPSR3/<pwd>@PRD' is connected: con_hdl=0, nls_hdl=0, session_id=67.
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  DB instance PRD is running on KANCORPRD with ORACLE version 10.2.0.2.0 since OCT 13, 2008, 10:57:35
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20081013 114959 KANCORPRD      
    C  build_stmt: reallocating stmt buffer: 256 -> 2000 characters
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Mon Oct 13 11:50:03 2008
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0AD70040, size: 4400000)
    M  SHM_ROLL_AREA          (addr: CA010040, size: 61440000)
    M  SHM_PAGING_AREA          (addr: 0B1B0040, size: 32768000)
    M  SHM_ROLL_ADM               (addr: 0D100040, size: 615040)
    M  SHM_PAGING_ADM          (addr: 0D1A0040, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 0D230040
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12160 bytes (50 server) at 06920040
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0D350088, size: 536)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0D3502A0, size: 160036)
    B  dbntab: Buffer FTAB(item array)   (addr: 0D3773C8, size: 720000)
    B  dbntab: Buffer FTAB(data area)    (addr: 0D427048, size: 30720000)
    B  dbntab: Buffer IREC(hash header)  (addr: 0F180088, size: 536)
    B  dbntab: Buffer IREC(anchor array) (addr: 0F1802A0, size: 160036)
    B  dbntab: Buffer IREC(item array)   (addr: 0F1A73C8, size: 180000)
    B  dbntab: Buffer IREC(data area)    (addr: 0F1D32E8, size: 6144000)
    B  dbntab: Buffer STAB(hash header)  (addr: 0F7B0088, size: 536)
    B  dbntab: Buffer STAB(anchor array) (addr: 0F7B02A0, size: 160036)
    B  dbntab: Buffer STAB(item array)   (addr: 0F7D73C8, size: 180000)
    B  dbntab: Buffer STAB(data area)    (addr: 0F8032E8, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 108D0088, size: 1888)
    B  dbntab: Buffer TTAB(anchor array) (addr: 108D07E8, size: 160036)
    B  dbntab: Buffer TTAB(item array)   (addr: 108F7910, size: 480000)
    B  dbntab: Buffer TTAB(data area)    (addr: 1096CC10, size: 5840000)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 13, CON_ID = -1
    B  dbstat: TABSTAT buffer attached (addr: 12789C50)
    B  dbtbxbuf: Buffer TABL  (addr: 14D800C8, size: 30000000, end: 16A1C448)
    B  dbtbxbuf: Buffer TABLP (addr: 10F000C8, size: 10240000, end: 118C40C8)
    B  dbexpbuf: Buffer EIBUF (addr: 0FB000D0, size: 4194304, end: 0FF000D0)
    B  dbexpbuf: Buffer ESM   (addr: 118D00D0, size: 4194304, end: 11CD00D0)
    B  dbexpbuf: Buffer CUA   (addr: 11CE00D0, size: 3072000, end: 11FCE0D0)
    B  dbexpbuf: Buffer OTR   (addr: 11FD00D0, size: 4194304, end: 123D00D0)
    B  dbcalbuf: Buffer CALE  (addr: 0FF10040, size: 500000, end: 0FF8A160)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 1BDE47A0
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 200800A8
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 20080430
    S    using messages for server info
    S  size of spec char cache entry: 297028 bytes (timeout 100 sec)
    S  size of open spool request entry: 2236 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 19356kb, dir_size: 19300kb.
    A  Attached to PXA (address CDAB0040, size 300000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--


    A Mon Oct 13 11:50:04 2008
    A  ABAP ShmAdm attached (addr=FACFC000 leng=20955136 end=FC0F8000)
    A  >> Shm MMADM area (addr=FB15C4B0 leng=126848 end=FB17B430)
    A  >> Shm MMDAT area (addr=FB17C000 leng=16236544 end=FC0F8000)
    A  RFC Destination> destination kancorprd_PRD_00 host kancorprd system PRD systnr 0 (kancorprd_PRD_00)
    A  RFC Options> H=kancorprd,S=00,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 27042 bytes at 06940040
    N  SsfSapSecin: putenv(SECUDIR=E:\usr\sap\PRD\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is E:\usr\sap\PRD\DVEBMGS00\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...completed with return code 5.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [ORACLE:700.08]):
    B     max_blocking_factor =   5,  max_in_blocking_factor      =   5,
    B     min_blocking_factor =   5,  min_in_blocking_factor      =   5,
    B     prefer_union_all    =   0,  prefer_join                 =   0,
    B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   1,
    B     convert AVG         =   0,  alias table FUPD            =   0,
    B     escape_as_literal   =   1,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x0f,  character encoding          = STD / <none>:-,
    B     use_hints           = abap->1, dbif->0x1, upto->2147483647, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.180.20050900]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [17]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  VSI: WP init in ABAP VM completed with rc=0
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    M Mon Oct 13 11:50:05 2008
    M  SosICreateNewAnchorArray: sos_search_anchor_semantics = 1
    C  build_stmt: reallocating stmt buffer: 2000 -> 3002 characters
    B  table logging switched off for all clients

    M Mon Oct 13 11:50:06 2008
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 06180040
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 061807A8
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 061807E0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 061807EC

    M Mon Oct 13 11:50:13 2008
    M  rdisp/rb_cleaned_rfc = 0

    A Mon Oct 13 11:50:20 2008
    A  RFC FRFC> fallback on the central gateway kancorprd sapgw00 activ

    B Mon Oct 13 11:50:32 2008
    B  dbmyclu : info : my major identification is 3232235877, minor one 0.
    B  dbmyclu : info : Time Reference is 1.12.2001 00:00:00h GMT.
    B  dbmyclu : info : my initial uuid is DD98EF051FE9A8F1995C001E0BC20C50.
    B  dbmyclu : info : current optimistic cluster level: 0
    B  dbmyclu : info : pessimistic reads set to 2.
    Edited by: Juan Reyes on Oct 14, 2008 11:31 PM

    As a further input iam attaching Drwatson log files,please check and let me know is there any issue why workprocess is getting restarted and session terminated :
    Application exception occurred:
            App: E:\usr\sap\PRD\DVEBMGS00\exe\disp+work.EXE (pid=1056)
            When: 10/13/2008 @ 09:10:58.551
            Exception number: c0000005 (access violation)
    --> System Information <--
            Computer Name: KANCORPRD
            User Name: SAPServicePRD
            Terminal Session Id: 0
            Number of Processors: 8
            Processor Type: EM64T Family 6 Model 23 Stepping 6
            Windows Version: 5.2
            Current Build: 3790
            Service Pack: 1
            Current Type: Multiprocessor Free
            Registered Organization: Kancor
            Registered Owner: kancorprd
    --> Task List <--
       0 System Process
       4 System
    548 System
    612 System
    672 System
    716 System
    744 System
    916 System
    992 System
    248 System
    364 System
    380 System
    1160 System
    1188 System
    1292 System
    1304 cpqrcmc.exe
    1320 vcagent.exe
    1340 System
    1396 isqlplussvc.exe
    1616 TNSLSNR.exe
    1640 java.exe
    1660 ORACLE.EXE
    1732 System
    1808 saposcol.exe
    1928 sapstartsrv.exe
    1976 sapstartsrv.exe
    2024 System
    2036 System
    216 smhstart.exe
    596 System
    732 System
    140 System
    1096 System
    1028 hpsmhd.exe
    1544 System
    1360 rotatelogs.exe
    1668 rotatelogs.exe
    1680 hpsmhd.exe
    1820 rotatelogs.exe
    1828 rotatelogs.exe
    1184 System
    3244 System
    1084 System
    3380 System
    3388 jusched.exe
    3436 mmc.exe
    3592 msg_server.EXE
    3804 enserver.EXE
    1860 msg_server.EXE
    1736 disp+work.EXE
    3240 igswd.EXE
    3640 igsmux.exe
    3456 igspw.exe
    3468 igspw.exe
    3292 gwrd.EXE
    3960 icman.EXE
    440 jcontrol.EXE
    1056 disp+work.EXE
    1916 disp+work.EXE
    4020 disp+work.EXE
    4024 disp+work.EXE
    4036 disp+work.EXE
    4060 disp+work.EXE
    4056 disp+work.EXE
    4084 disp+work.EXE
    4072 disp+work.EXE
    4080 disp+work.EXE
    4064 disp+work.EXE
    4044 disp+work.EXE
    1864 disp+work.EXE
    5068 jlaunch.exe
    5076 jlaunch.exe
    5084 jlaunch.exe
    1088 System
    4188 drwtsn32.exe
    --> Module List <--
    0000000000400000 - 000000000517a000: E:\usr\sap\PRD\DVEBMGS00\exe\disp+work.EXE
    0000000006880000 - 00000000068d8000: E:\usr\sap\PRD\DVEBMGS00\exe\OCI.dll
    0000000009ae0000 - 000000000ac6e000: E:\usr\sap\PRD\DVEBMGS00\exe\OraOCIICUS10.dll
    0000000010000000 - 00000000104c5000: E:\usr\sap\PRD\DVEBMGS00\exe\dw_gui.dll
    00000000104d0000 - 0000000010520000: E:\usr\sap\PRD\DVEBMGS00\exe\dw_mdm.dll
    0000000010560000 - 000000001061c000: E:\usr\sap\PRD\DVEBMGS00\exe\dw_stl.dll
    0000000010620000 - 0000000010748000: E:\usr\sap\PRD\DVEBMGS00\exe\dw_xml.dll
    0000000010750000 - 0000000010898000: E:\usr\sap\PRD\DVEBMGS00\exe\dw_xtc.dll
    00000000108a0000 - 00000000108cb000: E:\usr\sap\PRD\DVEBMGS00\exe\libregex.dll
    0000000012500000 - 0000000012777000: E:\usr\sap\PRD\DVEBMGS00\exe\dboraslib.dll
    00000000201f0000 - 000000002030e000: E:\usr\sap\PRD\DVEBMGS00\exe\sapsecu.dll
    00000000224f0000 - 00000000225a5000: E:\usr\sap\PRD\DVEBMGS00\exe\dbghelp.dll
    000000005ccf0000 - 000000005ccff000: C:\WINDOWS\system32\SAMLIB.dll
    000000005f270000 - 000000005f2c9000: C:\WINDOWS\system32\hnetcfg.dll
    0000000071ae0000 - 0000000071ae8000: C:\WINDOWS\System32\wshtcpip.dll
    0000000071bf0000 - 0000000071bf8000: C:\WINDOWS\system32\WS2HELP.dll
    0000000071c00000 - 0000000071c17000: C:\WINDOWS\system32\WS2_32.dll
    0000000071c40000 - 0000000071c98000: C:\WINDOWS\syswow64\netapi32.dll
    0000000071e00000 - 0000000071e14000: C:\WINDOWS\system32\msapsspc.dll
    0000000071e20000 - 0000000071e70000: C:\WINDOWS\system32\msnsspc.dll
    0000000071f60000 - 0000000071f64000: C:\WINDOWS\system32\security.dll
    0000000075010000 - 00000000750a3000: E:\usr\sap\PRD\DVEBMGS00\exe\icuuc30.dll
    0000000075210000 - 0000000075a3d000: E:\usr\sap\PRD\DVEBMGS00\exe\icudt30.dll
    0000000075b10000 - 0000000075bb9000: E:\usr\sap\PRD\DVEBMGS00\exe\icuin30.dll
    0000000076190000 - 00000000761a2000: C:\WINDOWS\syswow64\MSASN1.dll
    00000000761b0000 - 0000000076243000: C:\WINDOWS\syswow64\CRYPT32.dll
    0000000076a80000 - 0000000076a92000: C:\WINDOWS\system32\ATL.DLL
    0000000076aa0000 - 0000000076acd000: C:\WINDOWS\system32\WINMM.dll
    0000000076b70000 - 0000000076b7b000: C:\WINDOWS\system32\PSAPI.DLL
    0000000076b80000 - 0000000076bae000: C:\WINDOWS\system32\credui.dll
    0000000076c10000 - 0000000076c39000: C:\WINDOWS\syswow64\imagehlp.dll
    0000000076c90000 - 0000000076cb7000: C:\WINDOWS\SysWOW64\msv1_0.DLL
    0000000076cf0000 - 0000000076d0a000: C:\WINDOWS\system32\iphlpapi.dll
    0000000076dc0000 - 0000000076de7000: C:\WINDOWS\system32\adsldpc.dll
    0000000076df0000 - 0000000076e23000: C:\WINDOWS\system32\activeds.dll
    0000000076ed0000 - 0000000076ef9000: C:\WINDOWS\system32\DNSAPI.dll
    0000000076f10000 - 0000000076f3e000: C:\WINDOWS\syswow64\WLDAP32.dll
    0000000076f70000 - 0000000076f77000: C:\WINDOWS\System32\winrnr.dll
    0000000076f80000 - 0000000076f85000: C:\WINDOWS\system32\rasadhlp.dll
    0000000077670000 - 00000000777a4000: C:\WINDOWS\syswow64\ole32.dll
    0000000077b90000 - 0000000077b98000: C:\WINDOWS\syswow64\VERSION.dll
    0000000077ba0000 - 0000000077bfa000: C:\WINDOWS\syswow64\msvcrt.dll
    0000000077d00000 - 0000000077d8c000: C:\WINDOWS\syswow64\OLEAUT32.dll
    0000000077da0000 - 0000000077df2000: C:\WINDOWS\syswow64\SHLWAPI.dll
    0000000077e00000 - 0000000077e22000: C:\WINDOWS\system32\NTMARTA.DLL
    0000000077f50000 - 0000000077fec000: C:\WINDOWS\syswow64\ADVAPI32.dll
    0000000078080000 - 0000000078091000: C:\WINDOWS\system32\MSVCRT40.dll
    000000007c340000 - 000000007c396000: C:\WINDOWS\system32\MSVCR71.dll
    000000007c3a0000 - 000000007c41b000: C:\WINDOWS\system32\MSVCP71.dll
    000000007c8d0000 - 000000007d0d3000: C:\WINDOWS\syswow64\SHELL32.dll
    000000007d4c0000 - 000000007d5f0000: C:\WINDOWS\syswow64\kernel32.dll
    000000007d600000 - 000000007d6f0000: C:\WINDOWS\system32\ntdll.dll
    000000007d800000 - 000000007d890000: C:\WINDOWS\syswow64\GDI32.dll
    000000007d8d0000 - 000000007d920000: C:\WINDOWS\system32\Secur32.dll
    000000007d930000 - 000000007da00000: C:\WINDOWS\syswow64\USER32.dll
    000000007da20000 - 000000007db00000: C:\WINDOWS\syswow64\RPCRT4.dll
    000000007db30000 - 000000007dbb0000: C:\WINDOWS\System32\mswsock.dll
    000000007dbd0000 - 000000007dcd3000: C:\WINDOWS\WinSxS\WOW64_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.1830_x-ww_0213CDC8\comctl32.dll
    --> State Dump for Thread Id 0x45c <--
    eax=293a5018 ebx=05fae09c ecx=07f8b827 edx=00000000 esi=09576f7c edi=06182000
    eip=7c342eee esp=0597b614 ebp=0597b61c iopl=0         nv up ei pl nz ac pe nc
    cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00010212
    ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\system32\MSVCR71.dll -
    function: MSVCR71!memcpy
            7c342ecf 3bfe             cmp     edi,esi
            7c342ed1 7608             jbe     MSVCR71!memcpy+0x20 (7c342edb)
            7c342ed3 3bf8             cmp     edi,eax
            7c342ed5 0f827b010000     jb      MSVCR71!memcpy+0x19b (7c343056)
            7c342edb f7c703000000     test    edi,0x3
            7c342ee1 7514             jnz     MSVCR71!memcpy+0x3c (7c342ef7)
            7c342ee3 c1e902           shr     ecx,0x2
            7c342ee6 83e203           and     edx,0x3
            7c342ee9 83f908           cmp     ecx,0x8
            7c342eec 7228             jb      MSVCR71!memcpy+0x5b (7c342f16)
    FAULT ->7c342eee f3a5            rep  movsd ds:09576f7c=00000000 es:06182000=????????
            7c342ef0 ff24950c30347c jmp dword ptr [MSVCR71!memcpy0x151 (7c34300c)edx*4]
            7c342ef7 8bc7             mov     eax,edi
            7c342ef9 ba03000000       mov     edx,0x3
            7c342efe 83e904           sub     ecx,0x4
            7c342f01 720c             jb      MSVCR71!memcpy+0x54 (7c342f0f)
            7c342f03 83e003           and     eax,0x3
            7c342f06 03c8             add     ecx,eax
            7c342f08 ff24851c2f347c  jmp dword ptr [MSVCR71!memcpy0x61 (7c342f1c)eax*4]
            7c342f0f ff248d1c30347c jmp dword ptr [MSVCR71!memcpy0x161 (7c34301c)ecx*4]
            7c342f16 ff248da02f347c  jmp dword ptr [MSVCR71!memcpy0xe5 (7c342fa0)ecx*4]
    --> Stack Back Trace <--
    ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\syswow64\kernel32.dll -
    ChildEBP RetAddr  Args to Child             
    WARNING: Stack unwind information not available. Following frames may be wrong.
    0597b61c 00659ac0 05fae09c 093a3018 20002000 MSVCR71!memcpy+0x33
    0597b64c 0065aff5 093a3014 093df950 0945a9a0 disp_work!DiagoWriteRow+0x68 (CONV: cdecl)
    0597b6b8 0065b441 208c31b0 0597b700 0000007c disp_work!DiagoTableLoop+0x2d5 (CONV: cdecl)
    0597b930 0065b652 208c31b0 05fab978 0597bab7 disp_work!DiagoTable+0x27b (CONV: cdecl)
    0597bab8 0065472d 05faa9f5 0597bf04 e03b00e8 disp_work!DiagoTableControl+0x1b8 (CONV: cdecl)
    0597baf4 00654583 05faa8ca 0597bf04 e03b00e8 disp_work!DiagoContainer+0x17b (CONV: cdecl)
    0597bb34 0065480f 05faa8ca 0597bf04 00000005 disp_work!DiagoDynpro+0x1f8 (CONV: cdecl)
    0597bb70 00654583 e03b00e8 0597bf04 e033e038 disp_work!DiagoContainer+0x25d (CONV: cdecl)
    0597bbb0 0065480f 05faa006 0597bf04 00000004 disp_work!DiagoDynpro+0x1f8 (CONV: cdecl)
    0597bbec 00654583 e033e038 0597bf04 e033c238 disp_work!DiagoContainer+0x25d (CONV: cdecl)
    0597bc2c 0065480f 05fa9a08 0597bf04 00000002 disp_work!DiagoDynpro+0x1f8 (CONV: cdecl)
    0597bc68 00654583 e033c238 0597bf04 e019c748 disp_work!DiagoContainer+0x25d (CONV: cdecl)
    0597bca8 0065480f 05fa97a8 0597bf04 00000001 disp_work!DiagoDynpro+0x1f8 (CONV: cdecl)
    0597bce4 00654583 e019c748 0597bf04 e00de140 disp_work!DiagoContainer+0x25d (CONV: cdecl)
    0597bd24 006548ad 05fa8a69 0597bf04 00000000 disp_work!DiagoDynpro+0x1f8 (CONV: cdecl)
    0597bf08 006478cc 0597cdf4 e00de140 0597bf2c disp_work!DiagoArea+0x86 (CONV: cdecl)
    0597bf7c 00648116 00000001 0597cdf4 0597c7e8 disp_work!DiagoDynproOrList+0xff (CONV: cdecl)
    0597c6e4 0064872a 00000001 0597cdf4 0597c7e8 disp_work!diagoutput+0x83d (CONV: cdecl)
    0597c7b8 006413ad e00de140 0597cdf4 0597c7e8 disp_work!diagmout+0x21c (FPO: [EBP 0x0597cd48] [4,44,0]) (CONV: cdecl)
    0597cd48 0059ac3a e00de140 0597cdf4 00000000 disp_work!diagmsgo+0x3a1 (CONV: cdecl)
    0597ce4c 005ccba6 01f9524c e00de140 00000003 disp_work!dytrcexit+0x417 (FPO: [EBP 0x0597fc78] [0,57,0]) (CONV: cdecl)
    0597ce68 0059dccd e00de140 00000003 00000001 disp_work!dynprctl+0x493 (FPO: [EBP 0x0597fc78] [1,1,0]) (CONV: cdecl)
    0597fcec 004957be 00000002 004a1f93 00000002 disp_work!dynpen00+0x285f (FPO: [EBP 0x0597fee0] [1,2971,3]) (CONV: cdecl)
    0597fcf4 004a1f93 00000002 00000000 00000003 disp_work!Thdynpen00+0x888 (FPO: [EBP 0x0597fee0] [2,0,0]) (CONV: cdecl)
    0597fee0 004a2510 00000001 00000000 00000000 disp_work!TskhLoop+0x3356 (CONV: cdecl)
    0597ff00 00423999 00000000 00000000 fffde000 disp_work!ThStart+0x2ae (CONV: cdecl)
    0597ff14 00401085 00000003 00306820 00000001 disp_work!DpMain+0x267 (CONV: cdecl)
    0597ff60 01264450 00000003 00306820 00307608 disp_work!nlsui_main+0x53 (CONV: cdecl)
    0597ffc0 7d4e6e1a 00000000 00000000 fffde000 disp_work!wmainCRTStartup+0x143 (CONV: cdecl)
    0597fff0 00000000 0126430d 00000000 00000000 kernel32!BaseProcessInitPostImport+0x8d
    --> Raw Stack Dump <--
    000000000597b614  04 bf 97 05 00 20 00 20 - 4c b6 97 05 c0 9a 65 00  ..... . L.....e.
    000000000597b624  9c e0 fa 05 18 30 3a 09 - 00 20 00 20 7b 00 00 00  .....0:.. . {...
    000000000597b634  fc a9 fa 05 e8 c7 97 05 - 8f e0 fa 05 09 00 00 00  ................
    000000000597b644  02 00 00 00 00 00 00 00 - b8 b6 97 05 f5 af 65 00  ..............e.
    000000000597b654  14 30 3a 09 50 f9 3d 09 - a0 a9 45 09 7b 00 00 00  .0:.P.=...E.{...
    000000000597b664  8c e0 fa 05 e8 c7 97 05 - 58 05 e1 c9 b0 31 8c 20  ........X....1.
    000000000597b674  04 bf 97 05 e8 c7 97 05 - 9f fb ff ff 01 00 00 00  ................
    000000000597b684  f6 d8 03 00 80 af 45 09 - 06 00 00 00 d3 b3 45 09  ......E.......E.
    000000000597b694  53 04 00 00 01 00 00 00 - 10 20 3a 09 a0 a9 45 09  S........ :...E.
    000000000597b6a4  50 f9 3d 09 e0 aa 45 09 - 01 00 00 00 00 00 00 00  P.=...E.........
    000000000597b6b4  04 bf 01 01 30 b9 97 05 - 41 b4 65 00 b0 31 8c 20  ....0...A.e..1.
    000000000597b6c4  00 b7 97 05 7c 00 00 00 - 81 e0 fa 05 04 bf 97 05  ....|...........
    000000000597b6d4  e8 c7 97 05 58 05 e1 c9 - b0 31 8c 20 00 b7 97 05  ....X....1. ....
    000000000597b6e4  7c 00 00 00 a0 22 00 00 - 04 bf 97 05 e8 c7 97 05  |...."..........
    000000000597b6f4  58 05 e1 c9 e8 00 3b e0 - 84 00 00 00 ff ff 01 00  X.....;.........
    000000000597b704  02 00 03 00 04 00 05 00 - 06 00 07 00 08 00 09 00  ................
    000000000597b714  0a 00 0b 00 0c 00 0d 00 - 0e 00 0f 00 10 00 11 00  ................
    000000000597b724  12 00 13 00 14 00 15 00 - 16 00 17 00 18 00 19 00  ................
    000000000597b734  1a 00 1b 00 1c 00 1d 00 - 1e 00 1f 00 20 00 21 00  ............ .!.
    000000000597b744  22 00 23 00 24 00 25 00 - 26 00 27 00 28 00 29 00  ".#.$.%.&.'.(.).
    --> State Dump for Thread Id 0xf68 <--
    eax=00000000 ebx=05d84a70 ecx=00000000 edx=00000000 esi=00000000 edi=0718ff3c
    eip=7d61cca4 esp=0718ff00 ebp=0718ff64 iopl=0         nv up ei pl nz na pe nc
    cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00000202
    ERROR: Symbol file could not be found.  Defaulted to export symbols for C:\WINDOWS\system32\ntdll.dll -
    function: ntdll!NtDelayExecution
            7d61cc7c 33c9             xor     ecx,ecx
            7d61cc7e 8d542404         lea     edx,[esp+0x4]
            7d61cc82 64ff15c0000000   call    dword ptr fs:[000000c0]
            7d61cc89 c21800           ret     0x18
            7d61cc8c 8d4900           lea     ecx,[ecx]
            ntdll!NtDelayExecution:
            7d61cc8f b831000000       mov     eax,0x31
            7d61cc94 b906000000       mov     ecx,0x6
            7d61cc99 8d542404         lea     edx,[esp+0x4]
            7d61cc9d 64ff15c0000000   call    dword ptr fs:[000000c0]
            7d61cca4 c20800           ret     0x8
            ntdll!ZwQueryDirectoryFile:
            7d61cca7 b832000000       mov     eax,0x32
            7d61ccac 33c9             xor     ecx,ecx
            7d61ccae 8d542404         lea     edx,[esp+0x4]
            7d61ccb2 64ff15c0000000   call    dword ptr fs:[000000c0]
            7d61ccb9 c22c00           ret     0x2c
            7d61ccbc 8d4900           lea     ecx,[ecx]
            ntdll!ZwQuerySystemInformation:
            7d61ccbf b833000000       mov     eax,0x33
            7d61ccc4 33c9             xor     ecx,ecx
    --> Stack Back Trace <--
    ChildEBP RetAddr  Args to Child             
    WARNING: Stack unwind information not available. Following frames may be wrong.
    0718ff64 7d4d14e3 000003e8 00000000 0718ffb8 ntdll!NtDelayExecution+0x15
    0718ff74 010ad95f 000003e8 00000000 003080a8 kernel32!Sleep+0xf
    0718ff84 7c349565 00000000 00000000 00000000 disp_work!AlarmThreadFunc+0x12 (FPO: [1,0,2]) (CONV: stdcall)
    0718ffb8 7d4e0729 05d84a70 00000000 00000000 MSVCR71!endthreadex+0xa0
    0718ffec 00000000 7c3494f6 05d84a70 00000000 kernel32!FlsSetValue+0x136
    --> Raw Stack Dump <--
    000000000718ff00  65 14 4d 7d 00 00 00 00 - 3c ff 18 07 00 00 00 00  e.M}....<.......
    000000000718ff10  e0 6f f9 04 70 4a d8 05 - 24 00 00 00 01 00 00 00  .o..pJ..$.......
    000000000718ff20  00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00  ................
    000000000718ff30  00 00 00 00 00 00 00 00 - 00 00 00 00 80 69 67 ff  .............ig.
    000000000718ff40  ff ff ff ff 00 00 00 00 - 3c ff 18 07 0c ff 18 07  ........<.......
    000000000718ff50  00 00 00 00 a8 ff 18 07 - 88 89 4d 7d e8 14 4d 7d  ..........M}..M}
    000000000718ff60  00 00 00 00 74 ff 18 07 - e3 14 4d 7d e8 03 00 00  ....t.....M}....
    000000000718ff70  00 00 00 00 b8 ff 18 07 - 5f d9 0a 01 e8 03 00 00  ........_.......
    000000000718ff80  00 00 00 00 a8 80 30 00 - 65 95 34 7c 00 00 00 00  ......0.e.4|....
    000000000718ff90  00 00 00 00 00 00 00 00 - 70 4a d8 05 00 00 00 00  ........pJ......
    000000000718ffa0  90 ff 18 07 00 00 00 00 - dc ff 18 07 0d 24 34 7c  .............$4|
    000000000718ffb0  08 f5 37 7c 00 00 00 00 - ec ff 18 07 29 07 4e 7d  ..7|........).N}
    000000000718ffc0  70 4a d8 05 00 00 00 00 - 00 00 00 00 70 4a d8 05  pJ..........pJ..
    000000000718ffd0  00 00 00 00 c4 ff 18 07 - 00 00 00 00 ff ff ff ff  ................
    000000000718ffe0  88 89 4d 7d 30 07 4e 7d - 00 00 00 00 00 00 00 00  ..M}0.N}........
    000000000718fff0  00 00 00 00 f6 94 34 7c - 70 4a d8 05 00 00 00 00  ......4|pJ......
    0000000007190000  00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00  ................
    0000000007190010  00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00  ................
    0000000007190020  00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00  ................
    0000000007190030  00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00  ................
    --> State Dump for Thread Id 0xc10 <--
    eax=00000000 ebx=00000000 ecx=00000000 edx=00000000 esi=05d84a70 edi=00000000
    eip=7d61cd1c esp=0798fec4 ebp=0798ff04 iopl=0         nv up ei pl nz na pe nc
    cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00000202
    function: ntdll!NtFsControlFile
            7d61ccf4 33c9             xor     ecx,ecx
            7d61ccf6 8d542404         lea     edx,[esp+0x4]
            7d61ccfa 64ff15c0000000   call    dword ptr fs:[000000c0]
            7d61cd01 c21400           ret     0x14
            7d61cd04 8d4900           lea     ecx,[ecx]
            ntdll!NtFsControlFile:
            7d61cd07 b836000000       mov     eax,0x36
            7d61cd0c b91b000000       mov     ecx,0x1b
            7d61cd11 8d542404         lea     edx,[esp+0x4]
            7d61cd15 64ff15c0000000   call    dword ptr fs:[000000c0]
            7d61cd1c c22800           ret     0x28
            ntdll!ZwWriteVirtualMemory:
            7d61cd1f b837000000       mov     eax,0x37
            7d61cd24 33c9             xor     ecx,ecx
            7d61cd26 8d542404         lea     edx,[esp+0x4]
            7d61cd2a 64ff15c0000000   call    dword ptr fs:[000000c0]
            7d61cd31 c21400           ret     0x14
            7d61cd34 8d4900           lea     ecx,[ecx]
            ntdll!ZwCloseObjectAuditAlarm:
            7d61cd37 b838000000       mov     eax,0x38
            7d61cd3c 33c9             xor     ecx,ecx
    --> Stack Back Trace <--
    ChildEBP RetAddr  Args to Child             
    WARNING: Stack unwind information not available. Following frames may be wrong.
    0798ff04 011a8c2b 0000026c 00000000 00000000 ntdll!NtFsControlFile+0x15
    0798ff84 7c349565 00000000 00000000 00000000 disp_work!SigIMsgFunc+0x90 (CONV: stdcall)
    0798ffb8 7d4e0729 00308010 00000000 00000000 MSVCR71!endthreadex+0xa0
    0798ffec 00000000 7c3494f6 00308010 00000000 kernel32!FlsSetValue+0x136
    --> Raw Stack Dump <--
    000000000798fec4  c1 01 53 7d 6c 02 00 00 - 00 00 00 00 00 00 00 00  ..S}l...........
    000000000798fed4  00 00 00 00 fc fe 98 07 - 08 00 11 00 00 00 00 00  ................
    000000000798fee4  00 00 00 00 00 00 00 00 - 00 00 00 00 94 f4 61 7d  ..............a}
    000000000798fef4  fc 01 53 7d 00 00 00 00 - fe ff ff ff fe ff ff ff  ..S}............
    000000000798ff04  84 ff 98 07 2b 8c 1a 01 - 6c 02 00 00 00 00 00 00  ....+...l.......
    000000000798ff14  00 00 00 00 70 4a d8 05 - 10 80 30 00 00 00 01 00  ....pJ....0.....
    000000000798ff24  6c fe 98 07 00 00 00 00 - 74 ff 98 07 f0 f1 61 7d  l.......t.....a}
    000000000798ff34  e8 f5 61 7d ff ff ff ff - e5 f5 61 7d 8a 21 34 7c  ..a}......a}.!4|
    000000000798ff44  00 00 30 00 00 00 00 00 - 8f 21 34 7c 00 00 00 00  ..0......!4|....
    000000000798ff54  70 4a d8 05 10 80 30 00 - 00 00 00 00 00 00 00 00  pJ....0.........
    000000000798ff64  00 00 00 00 00 00 00 00 - 14 ff 98 07 00 00 00 00  ................
    000000000798ff74  a8 ff 98 07 ac 42 26 01 - 98 f5 9a 01 00 00 00 00  .....B&.........
    000000000798ff84  b8 ff 98 07 65 95 34 7c - 00 00 00 00 00 00 00 00  ....e.4|........
    000000000798ff94  00 00 00 00 10 80 30 00 - 00 00 00 00 90 ff 98 07  ......0.........
    000000000798ffa4  00 00 00 00 dc ff 98 07 - 0d 24 34 7c 08 f5 37 7c  .........$4|..7|
    000000000798ffb4  00 00 00 00 ec ff 98 07 - 29 07 4e 7d 10 80 30 00  ........).N}..0.
    000000000798ffc4  00 00 00 00 00 00 00 00 - 10 80 30 00 00 00 00 00  ..........0.....
    000000000798ffd4  c4 ff 98 07 00 00 00 00 - ff ff ff ff 88 89 4d 7d  ..............M}
    000000000798ffe4  30 07 4e 7d 00 00 00 00 - 00 00 00 00 00 00 00 00  0.N}............
    000000000798fff4  f6 94 34 7c 10 80 30 00 - 00 00 00 00 00 00 00 00  ..4|..0.........
    --> State Dump for Thread Id 0xf20 <--
    eax=00000000 ebx=00308010 ecx=00000000 edx=00000000 esi=0000025c edi=00000000
    eip=7d61c824 esp=0818fef0 ebp=0818ff5c iopl=0         nv up ei pl nz na pe nc
    cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00000202
    function: ntdll!NtWaitForSingleObject
            7d61c7fd 0a00             or      al,[eax]
            7d61c7ff 0000             add     [eax],al
            7d61c801 8d542404         lea     edx,[esp+0x4]
            7d61c805 64ff15c0000000   call    dword ptr fs:[000000c0]
            7d61c80c c20c00           ret     0xc
            ntdll!NtWaitForSingleObject:
            7d61c80f b801000000       mov     eax,0x1
            7d61c814 b90d000000       mov     ecx,0xd
            7d61c819 8d542404         lea     edx,[esp+0x4]
            7d61c81d 64ff15c0000000   call    dword ptr fs:[000000c0]
            7d61c824 c20c00           ret     0xc
            ntdll!ZwCallbackReturn:
            7d61c827 b802000000       mov     eax,0x2
            7d61c82c 33c9             xor     ecx,ecx
            7d61c82e 8d542404         lea     edx,[esp+0x4]
            7d61c832 64ff15c0000000   call    dword ptr fs:[000000c0]
            7d61c839 c20c00           ret     0xc
            7d61c83c 8d4900           lea     ecx,[ecx]
            ntdll!NtReadFile:
            7d61c83f b803000000       mov     eax,0x3
            7d61c844 b91a000000       mov     ecx,0x1a
    --> Stack Back Trace <--
    ChildEBP RetAddr  Args to Child             
    WARNING: Stack unwind information not available. Following frames may be wrong.
    0818ff5c 7d4d8bb5 0000025c ffffffff 00000000 ntdll!NtWaitForSingleObject+0x15
    0818ff70 004304fd 0000025c ffffffff 00308430 kernel32!WaitForSingleObject+0x12
    0818ff84 7c349565 00000264 00000000 00000000 disp_work!WaitParentThread+0x65 (FPO: [1,0,0]) (CONV: stdcall)
    0818ffb8 7d4e0729 00308010 00000000 00000000 MSVCR71!endthreadex+0xa0
    0818ffec 00000000 7c3494f6 00308010 00000000 kernel32!FlsSetValue+0x136
    --> Raw Stack Dump <--
    000000000818fef0  46 8c 4d 7d 5c 02 00 00 - 00 00 00 00 00 00 00 00  F.M}\...........
    000000000818ff00  5c 02 00 00 30 84 30 00 - 10 80 30 00 24 00 00 00  \...0.0...0.$...
    000000000818ff10  01 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00  ................
    000000000818ff20  00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00  ................
    000000000818ff30  f0 f1 61 7d 51 cb 61 7d - 00 e0 fd ff 00 00 00 00  ..a}Q.a}........
    000000000818ff40  ff 0f 1f 00 00 ff 18 08 - 68 ff 18 08 a8 ff 18 08  ........h.......
    000000000818ff50  88 89 4d 7d 70 8c 4d 7d - 00 00 00 00 70 ff 18 08  ..M}p.M}....p...
    000000000818ff60  b5 8b 4d 7d 5c 02 00 00 - ff ff ff ff 00 00 00 00  ..M}\...........
    000000000818ff70  b8 ff 18 08 fd 04 43 00 - 5c 02 00 00 ff ff ff ff  ......C.\.......
    000000000818ff80  30 84 30 00 00 00 00 00 - 65 95 34 7c 64 02 00 00  0.0.....e.4|d...
    000000000818ff90  00 00 00 00 00 00 00 00 - 10 80 30 00 00 00 00 00  ..........0.....
    000000000818ffa0  90 ff 18 08 00 00 00 00 - dc ff 18 08 0d 24 34 7c  .............$4|
    000000000818ffb0  08 f5 37 7c 00 00 00 00 - ec ff 18 08 29 07 4e 7d  ..7|........).N}
    000000000818ffc0  10 80 30 00 00 00 00 00 - 00 00 00 00 10 80 30 00  ..0...........0.
    000000000818ffd0  00 00 00 00 c4 ff 18 08 - 00 00 00 00 ff ff ff ff  ................
    000000000818ffe0  88 89 4d 7d 30 07 4e 7d - 00 00 00 00 00 00 00 00  ..M}0.N}........
    000000000818fff0  00 00 00 00 f6 94 34 7c - 10 80 30 00 00 00 00 00  ......4|..0.....
    0000000008190000  00 00 00 00 00 00 00 00 - 53 48 4d 5f 45 59 45 5f  ........SHM_EYE_
    0000000008190010  43 41 54 43 48 45 52 00 - 00 00 00 00 00 00 00 00  CATCHER.........
    0000000008190020  03 00 00 00 40 00 99 07 - 80 44 c7 00 00 00 00 00  [email protected]......
    Please lety me know. Thansk in advance.

  • How can I export a still frame form a video in FCP X

    Hi all - I cannot see how to export a still from a video using FCP X. The Share option doesn't seem to offer a dialogue such as in Tom Wolski's book page 370
    Has it changed with 10.0.7
    Cheersand thanks

    [email protected] wrote:
    …  Has it changed with 10.0.7
    it has.
    Mark&Steve give some excellent (as usual) hints in their latest podcast:
    http://youtu.be/RlgeJJyFdXo

  • Why can't i still purchase form central subscription until it expires?

    I need the subscription just till May, but I can't find anywhere to renew my subscription.  I closed it back in October and need it open again. Please help.

    Hi Donna,
    Forms central is no more available for purchase since it is retiring on 28 july 2015. I would recommend you to refer this link for more details on Formscentral retirement : FormsCentral: Retirement FAQ
    Regards,
    Rahul

  • Is Webutil still in Forms 11?

    Or is there some more "Oracle" solutions? Is there someone who is working with Forms11 and is trying to use some other functions instead of Webutil?
    I can't find answer on this question on this site
    http://www.oracle.com/technology/products/forms/forms_modernization.html
    Message was edited by:
    marussig
    Edited by: marussig on Oct 8, 2008 3:41 PM

    Jacob up or down, open source or not open source - my last installation of webutil convinced me that webutil is a shame of Oracle! Two documentation is not the same, thanks for guys from service request I made installation otherwise I'd lost a lot, lot more time. I don't know why Oracle doesn't want to write some his own Jcode and give it to us?!? Or why Oracle doesn't want to spend some money to buy some code? The Forms are fact and not by-pass tools! A lot of application is made by forms and all of those applications will have long, long life - they will last! I've read a lot of complains about webutil here in this forum but not only here. So what is the reason not to invest some money and put some code into OUI?
    Interesting to hear...
    m.

Maybe you are looking for