Populating an inputtext after immediate action

I'm having a problem trying to implement this functionality:
I have one page on which I have a data table with (for example) cars. Underneath I have a panel grid with outputtext (labels) and inputtext fields which allow the user enter all the details necessary to add a new car.
But what I'm trying to do is have the data table entries (car names) be links, which when clicked will populate all of the inputtext fields with the values of the car details, and then allow the user to edit the details.
How I've tried to do this, is to value bind the inputtext values to a car object that is in my backing bean class. The car links are set to immediate (so that the empty inputtext fields won't validate), and the method that is called sets the car object which the fields are value bound to, to populate based on the row data of the selected row in the data table (the car).
Debugging shows that the car object IS populated correctly with all the values, but when the page re-renders, all of the inputtext fields are blank, they are not populated with the values of the car object they are bound to.
Does someone know what I'm missing, or how this is supposed to be done?
Thanks.
Edit: I should specify that I'm using JSF 2.0
Edited by: a-rex on Feb 25, 2010 6:25 AM

I hope this code will solve your problem
import java.io.*;
import java.util.*;
public class ReadDVDFile
    String MName;
     String Gener;
     String Actor;
     ReadDVDFile(String m, String g, String a){
          MName = m;
           Gener = g;
           Actor = a;
     public static void main(String[] args){
            ArrayList al = new ArrayList();
     try{
        File dvd = new File("e:\\DVDInfo.txt");
        BufferedReader br = new BufferedReader(new FileReader(dvd));
        String s;
        while((s = br.readLine()) != null){
        String[] result = s.split("/");
           al.add(new ReadDVDFile(result[0],result[1],result[2]));
          }  // end of while
     catch(Exception e){
           System.out.println(e);
       Iterator i = al.iterator();
       int j = 1;
        System.out.println("printing contents of ArrayList");
        while(i.hasNext()){
             ReadDVDFile rd = (ReadDVDFile) i.next();
          System.out.println(j + " " + rd.MName + ";" + rd.Gener + ";" + rd.Actor );
           j++;
}

Similar Messages

  • After J1IIN Creation of Excise Invoice, wat is the next immediate actions

    after J1IIN Creation of Excise Invoice, wat is the next immediate actions/activities with respective to SD Point of view.
    In each level wat r the things of updations happen upto end of Excise process in SD
    WAT R THE THINGS R TO BE CHECKED IN EACH LEVEL

    Hi,
    for SD point of view we only do the RG1 extraction and printing only.
    If u want to see the Updation of RG1 check the Table:  j_1irg1. Here u can find the values that are updated.This can be updated only after the Extraction of the RG1.
    Printing the RG1 go to T.Code : J2I6
    Prininting of the Excise Invoice : J1IP.
    I hope this will clarify u r doubts.
    regards.

  • Updating InputText after a validation error

    Hi everyone,
    I am having problems updating InputText after a validation error.
    Im using jdeveloper 11.1.1.1.0
    Steps without error validation works correctly
    1.-I put 3 in the component "value" (second InputText)
    2 .- validation begins, and rightly
    3 .- I put the value 1 component "optional" (first imputtext)
    4 .- Click the button "move"
    5 .- The componte "value" modify its contents appearing 1
    Steps with error validation not working properly
    1.-I put 4 in the component "value" (second InputText)
    2 .- validation begins, and it is wrong. Errror message appears
    3 .- I put the value 1 component "optional" (first imputtext)
    4 .- Click the button "move"
    5 .- The componte "value" does not alter its contents.
    Why not change its value after validation error?
    I included an example with two and a button InputText
    <af:inputText label="Optional" id="it1" autoSubmit="true" />
    <af:commandButton text="commandButton 1" id="cb1" immediate="true" actionListener="#{inputExample.move}"/>
    <af:inputText label="Value" id="it2" immediate="true" autoSubmit="true" validator="#{inputExample.validatorExample}" value="#{inputExample.targetValue}"/>
    public void validatorExample(FacesContext facesContext, UIComponent uIComponent, Object object) {
    Number number = null;
    try {
    number = new Number(object);
    } catch (SQLException e) {
    if ((number.longValue() % 2) == 0) {
    FacesMessage message = new FacesMessage(FacesMessage.SEVERITY_ERROR, "ES PAR", "ES PAR");
    ((RichInputText)uIComponent).setValid(false);
    throw new ValidatorException(message);
    public void move(ActionEvent actionEvent) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    UIComponent x = facesContext.getViewRoot().findComponent("it1");
    RichInputText input1 = (RichInputText)x;
    String value = (String)input1.getValue();
    UIComponent x2 = facesContext.getViewRoot().findComponent("it2");
    RichInputText input2 = (RichInputText)x2;
    input2.setValue(value);
    RequestContext.getCurrentInstance().addPartialTarget(input2);
    }

    Yes but the action will be executed with invalid data.
    After validation fails the new (invalid) value is not set so when you get the value you get the previous (valid) one.
    If you want the validation just to warn the user but allow him to continue with executing actions with the new values then you should not use a validator.
    You could instead use a valueChangeListener were you can display a message to the user allowing the value to be set normaly.
    Gabriel.

  • H:inputText and immediate="true" not updating cached backing bean value

    Hi,
    I am having a problem with h:inputText and immediate="true" when
    returning back to the same page.I looked through the forums but the
    only solution to remove the page from the session works only if I
    don't have to change any button label names in the page I am going back
    to.Unfortunately, I have to change a button name when I go back to the
    same page.The button name change works if i don't remove the page from
    session but then h:inputtext has stale values in it from the backing
    bean.I also need to avoid validation as it is a huge form.
    I have tried looking through the JSF forums but they didn't have any
    answers for a very similar question.
    I am not sure how exactly to use component binding for the input text and update the model values using an actionListener.I have tried puting a binding on an input text field and then used an actionListener instead of immediate="true' in the h:commandLink.But, putting context.renderResponse() in the actionListener method results in the model values not getting updated.
    I have also tried using component.processUpdates(facesContext) as in the UpdateModelValuePhase class -that too doesn't work.
    Thanks for any help,
    Vijay
    Details:
    The <h:inputText ..> does not populate the values back from a backing
    bean when immediate="true" is used when an action is called.
    <h:commandLink id="selectPrincipalId"
    action="#{application.selectPrincipal}" immediate="true">
    Only <h:inputText has the cached values from the first entry.
    <h:inputText id="principalLastName1Id"
    value="#{application.currentPrincipal.lastName}" size="10"/><== this
    has the cached value from the backing bean application.
    <h:outputText gets the new values from the backing bean when the same
    page is reentered.
    <h:outputText value="#{application.currentPrincipal.lastName}"></h:outputText><==
    this refreshes with the new value from the backing bean application.
    Here is the solution to rectify the problem:
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExternalContext externalContext = facesContext.getExternalContext();
    Map sessionMap = externalContext.getSessionMap();
    sessionMap.remove("/jsp/befg/tc/apply/enterCreditApplication.jsp");
    <== this is the name of the jsf page as defined in the
    faces-config.xml.

    Hi,I have encountered the same problem as you,and I find a solution myself,which is shown as follows,but I don't know if these is any hidden trouble in the code.
    <h:form>
    <h:commandLink action="#{app.action}" immediate="true" actionListener="#{app.update}">xxxx</h:commandLink>
    <h:inputText id="_id" value="#{app.val}" immediate="true"/> //must set immediate="true" else the model will be not updated
    <h:message for="_id"/>
    </h:form>
    public class App{
    public void update(ActionEvent event){
         FacesContext c = FacesContext.getCurrentInstance();
         UIViewRoot root =c.getViewRoot();
         root.processUpdates(c);//to update model and short-circuit the validators
    in such circumstance,the UIViewRoot's processUpdates method will be called in the actionlistener,and the back bean who titled to immediate(true)'s inputText will be updated, but the one who titled to immdiate(false)'s inputText will not be updated,Why?
    Can anyone tell me way?and how to solve?
    Thanks a lot!

  • Immediate  actions

    Hi all,
    Ok this is my problem.
    i have a cancel button on my page that should bypass validation and refresh all the data on the page.
    So i know immediate actions occur after the apply request values phase
    but it seems that the getter values arn't called when an immediate action is invoked so my immediate method which refreshes the local data doesn't work as the local data is never called to repopulate the model.
    What approach can i take to bypass the validation phase but still do all the rest?

    I have the same type of problem but its little different In my case. I need to
    skip the PROCESS_VALIDATION phase.
    Please help. My post is
    http://forum.java.sun.com/thread.jspa?threadID=708758&tstart=0
    My problem is when the items in a selectiononelistbox is empty and if i click the back button on the browser and then click a command button. The validation phase is trying to do something and i dont understand what is happening.
    I have reproducible example here.
    http://forum.java.sun.com/thread.jspa?threadID=708758&tstart=0
    Please help.
    Thanks
    --Aron                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Custom field data is lost or not available after any action

    I added a custom field on ERP_H component and I made this field available through getter methods. I brought this field in to header view and the field looks ok but after I enter the data in that field, the value enter doesn't get retained. I saw the setter method and the data is set correctly. After any action like enter or save, data is lost or the value is not available, any clue?
    below are the details:
    1) We have created an append structure to CRMST_ADMINH_ERPIL and activated the getter and setter methods, I tried with AET tool too(ofcourse the Zfield are not available withe field names we need).
    2) Data binding is happening in the context create note.
        model = owner->create_model(
            class_name     = 'ZL_ERP_H_HEADERDETAIL_CN03'
            model_id       = 'ERPAdminH' ).                     "#EC NOTEXT
        ERPAdminH ?= model.
        CLEAR model.
    bind Context Node to controller to my enhaced context.
        owner->do_context_node_binding(
        iv_controller_type = CL_BSP_WD_CONTROLLER=>CO_TYPE_COMPONENT
        iv_target_node_name = 'ERPADMINH'
        iv_node_2_bind = ERPADMINH  ).
    3) In get_p_xxx field is changed to check box
    4) In Get_I_XXX method rv_diabled is changed = 'FALSE'.
    5) In set property the value is set correctly.
        IF <nval> <> <oval>.
          current->set_property(
                          iv_attr_name = 'ZFREEF' "#EC NOTEXT
                          iv_value     = <nval> ).
          clear dref.
          dref = current->get_property( 'ZFREEF' ). "data is retreived correctly
        ENDIF.
    6) When I check the get_property right afer the set_property the attribute is empty.
    7) when I try to check the value in getter method, the value is empty.
    Any help is appreciated.

    Hi Sumit,
    At first I tried to create the fields using AET tool. I was successfully able to add field in the model but when I did different issues came with it.
    1) I was still not able to hold my data in custom additional fields added through AET tool. So no big difference between AET addition and append structure.
    2) In ERP order system is going to call the ERP system through RFC in which the field name should be same as what you send from CRM. It doesn't have a option of mapping intermediately like BDOC structure or something . It calls the LORD API's and post the data. There are bunch of LORD function modules maintained in SAP.
    3) to call the function module I have to maintain the same field names in my ERPAdminH structure. So I have no choice but add append structure manually with SAP ECC field name.
    4) to your question regarding set property, the data is properly assigned to BOL object and very nex line t I tried to access it and it is there. So that confirmed that I was able to update the BOL structure.
    Any suggestion would be appreciated.

  • Incident/Accident log - Immediate Action taken

    Hi,
    can anyone explain me where to record immediate actions taken against an incident or accident.
    thanks in advance
    kavi

    Hi Ravi,
    You can use the following methods to  solve your problem:
    1. In the Investigation tab, u will find the Root cause tree.. For each node, you can link the Safety Measures.
    2. Provide the Action details in More accident data tab
    3. If you need a new tab, create a new Value assignment type in the Customizing, assign it to Object type "IAL - Incident/ Accident Log entry" and then you can provide Free text or assign phrases as Immediate actions taken (If you opt for Phrase Management).
    Hope it Helps,
    Raghu

  • HT4623 After updating my iPhone5 with latest iOS7, the rear camera became blurry. Anyone can advise to correct this problem that happened on updating of iOS7??? This was really a mesh of APPLE and they have to take immediate action...

    I tried reset of my iPhone5 but the same problem happened... Paging APPLE Support please help us with this problem of your software/hardware....

    Do you have a case on your device?

  • ActionListener  for commandButton not being called after Immediate='true"

    I have a form with multiple Boolean buttons. The inputText under these fields need to be validated. I am using
    <af:selectBooleanRadio
    group="OMSHostType" id="radio1"
    text="#{ad4jRscBundle.SAMEHOST} "
    autoSubmit="true" immediate="true"
    valueChangeListener="#{viewScope.emas_view_ad4jMngrDeploy_Ad4jMngrDeployHomeView.setSameHost}"
    shortDesc="#{ad4jRscBundle.SAMEHOSTHELPTEXT}"
    selected="#{viewScope.emas_pagemodel_ad4jMngrDeploy_Ad4jMngrDeployHomePageModel.sameHost}"/>
    I am using an explicit valueChangeListener to update the radio button values. I have multiple such radio buttons and each field have some exclusively mandatory attributes.
    My CommandButton Deploy has stopped calling the actionListener after i made the above changes.It calls the listener if I set immediate="true" in the commandButton also but that bypasses the validation phase, a result which is not desired.
    <af:commandButton id="submitCommandButton1"
    text="#{ad4jRscBundle.DEPLOY}"
    partialSubmit="true"
    immediate="true"
    action="goto_deployProgress"
    actionListener="#{viewScope.emas_view_ad4jMngrDeploy_Ad4jMngrDeployHomeView.submit_Ad4jMngrJob}"
    />
    Any idea why immediate attribute is capable of changing the commandButton's properties?

    Hi,
    without setting immediate=true, the command button action listener executes in teh InvokeApplication phase. Setting it to true invikes it in the earier ApplyRequestValue phase. Buttons that have immediate=true set skip all model updates and validation and instead directly render the response. My suggestion is to set immedatiate=false on the selectBooleanRadio - or is there are reason why you want to have this executing early in teh lifecycle?
    Frank

  • How to update an HTMLSelectManyCheckbox from an immediate action

    We are creating a News system where the news entries contain tags to identify the contents.
    The entry form contains:
    * "Title" - a required text field
    * "Tags" - an HtmlSelectManyCheckbox that displays the already selected Tags and allows the user to deselect Tags.
    * "Tag Name" - a text field for the user to enter the name of a tag to be added.
    * "Add Tag" - a button that calls a method on my managed bean to add the tag to the entry
    When I added the "required" attribute to the title the "add tag" button would no longer work when the title was null. I fixed this by binding the "tag name" to a HTMLInputText component on my managed bean and marking both the "add tag" button and "Tag Name" field as "immediate". This introduced problems that I have yet been unable to solve.
    First, since the "immediate" flag is set, the HtmlSelectManyCheckbox does not get updated and the newly added checkboxes are not selected.
    Second, it would be useful to have the htmlSelectManyCheckbox component updated when the "Add Tag" button is clicked. This way the unselected checkboxes would be removed.
    Is there anything I can do to make the "tags" HTMLSelectManyCheckbox act as though the form was submitted and update normally (without having the title component processed) so no validation error is thrown?
    Any help would be appreciated, Thanks!
    Relavant Portions of my ManagedBean
    public class NewsEntryFacade implements JSFReturnCodes {
         @EJB
         TagManagerLocal tagManager;
         private Long id;
         private String title;
         private HtmlInputText tagNameInput;
         private List<Tag> tags;
          * <p>
          * Add a tag to the list and then redraw the page.
          * </p>
         public String addTag() {
              String lTagName = (String) tagNameInput.getValue();
              if (lTagName != null && lTagName.trim().length() > 0) {
                   Tag lTag = tagManager.getTagForName(lTagName.trim());
                   /* Add the tag to the collection */
                   ArrayList<Tag> lTags = new ArrayList<Tag>();
                   lTags.addAll(tags);
                   lTags.add(lTag);
                   setTags(lTags);
                   /* Sort the Collection of Tags */
                   Collections.sort(tags);
                   /* Clear the tagName field */
                   tagNameInput.setValue("");
              return RETURN_TO_PAGE;
    }Relavant portions of the facelets xhtml file.
    <h:messages showDetail="true" />
    <h:form>
         <h:inputHidden value="#{newsEntryFacade.id}" />
         <p>
              <h:outputLabel for="title" value="Title" styleClass="formElementLabel" />
              <h:inputText value="#{newsEntryFacade.title}" id="title" required="#{true}" styleClass="formElementTextInput" />
         </p>
         <fieldset>
              <legend>Tags</legend>
              <h:outputLabel for="tagName" value="Tag Name" styleClass="formElementLabel" />
              <h:inputText immediate="#{true}" value="#{newsEntryFacade.tagName}" id="tagName" />
              <h:commandButton immediate="#{true}" action="#{newsEntryFacade.addTag}" value="AddTag" />
              <h:selectManyCheckbox value="#{newsEntryFacade.tags}" converter="tagConverter" layout="pageDirection">
                   <c:forEach var="tag" items="#{newsEntryFacade.tags}">
                        <f:selectItem itemLabel="#{tag.name}" itemValue="#{tag}" />
                   </c:forEach>
              </h:selectManyCheckbox>
         </fieldset>
         <h:commandButton action="#{newsEntryFacade.save}" value="Submit"></h:commandButton>
    </h:form>

    You may find this article useful: http://balusc.blogspot.com/2007/12/action-dependent-requireness.html

  • How can I put a message in a page after an action in another page?

    Hi everybody, I know that what I try to explain is a bit difficult to understand without know all the context but I try to do it the same:). I have a datatable that contains a list of student. In another page I insert a new student. When I click on "save" button I save the new student and I return to the page with the datatable. The problem is: when I add a student I must notify the user that the student is added correctly with a message in the 1st page like "The student is added correctly". This message must display only after I added the student not when I see for the first time the page with the datatable. How can i do this? Thanks to all.

    I use your suggestion but it doesn't work. I create a bean named MessageHandler with scope request. In its constructor i put an empty value for the variable addStudent_message, and in the page that the message should be I have this line of code:
    <h:outputText rendered="#{!empty messageHandler.addStudent_message}" value="#{messageHandler.addStudent_message}"/>
    In the bean I used to add a student I have a MessageHandler object and in the method that add a student, before the return statement, I put this:
    handler.setAddStudent_message("Studente aggiunto correttamente");
    When I run, it gives me this error:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Error calling action method of component with id _idJsp1:save
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
    root cause
    javax.faces.FacesException: Error calling action method of component with id _idJsp1:save
         org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:74)
         javax.faces.component.UICommand.broadcast(UICommand.java:106)
         javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:94)
         javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:168)
         org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:343)
         org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:137)
    root cause
    javax.faces.el.EvaluationException: Exception while invoking expression #{addStudentBean.save}
         org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:153)
         org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:63)
         javax.faces.component.UICommand.broadcast(UICommand.java:106)
         javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:94)
         javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:168)
         org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:343)
         org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:137)
    root cause
    java.lang.NullPointerException
         beanDomain.AddStudentBean.save(AddStudentBean.java:68)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:129)
         org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:63)
         javax.faces.component.UICommand.broadcast(UICommand.java:106)
         javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:94)
         javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:168)
         org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:343)
         org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:137)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.23 logs.
    It seems that it doesn't find the MessageHandler object. What do you think?

  • How to restrict change/creation of Infotype record after termination action

    Hi All,
    Based on my client requirement, we have to restrict any change or creation of certain infotypes after performing termination action.
    For Ex:- Suppose termination date is 01.01.2008. End user should not able to change or create any new record for infotype 0001, 0008 and 0016 after 01.01.2008.
    This is very critical. Request your valid input ASAP.
    Thanks in advance.
    Regards,
    Purnima

    Hi Sreenu,
    Thanks for your valid input.
    I tried by giving "EDQ". Then I got below mentioned error while performing termination action.
    Error:- "Status EDQ of the user interface MP000100 missing"
    Can you help please?
    Regards,
    Purnima

  • BI 7.6 Latest Trail version after RSA1 action MaxDB stopped

    Hi,
    BI 7.6 latest trail version i installed after RSA1 activation once system restarted my DISP+WORK.EXE got stopped, please tel me how to resolve when i see log stated below;
    trc file: "dev_ms", trc level: 1, release: "700"
    [Thr 2560] Thu Dec 27 22:17:56 2007
    [Thr 2560] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    94
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2556
    [Thr 2560] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 2556) [msxxserv.c   1824]
    [Thr 2560] MsInitAclInfo: acl file D:\SAP\NSP\SYS\global\ms_acl_info.DAT not found, unrestricted access
    [Thr 2560] MsGetOwnIpAddr: my host addresses are :
    [Thr 2560]   1 : [200.200.200.201] jagadesh (HOSTNAME)
    [Thr 2560]   2 : [127.0.0.1] jagadesh (LOCALHOST)
    [Thr 2560]   3 : [192.168.0.100] jagadesh.hsd1.nj.comcast.net. (NILIST)
    [Thr 2560] MsHttpInit: full qualified hostname = jagadesh
    [Thr 2560] HTTP logging is switch off
    [Thr 2560] set HTTP state to LISTEN
    [Thr 2560] ms/icf_info_server : deleted
    [Thr 2560] *** I listen to port sapmsNSP (3600) ***
    [Thr 2560] *** I listen to internal port 3900 (3900) ***
    [Thr 2560] *** HTTP port 8100 state LISTEN ***
    [Thr 2560] CUSTOMER KEY: >R1490247412<
    [Thr 2560] Thu Dec 27 22:19:09 2007
    [Thr 2560] *** ERROR => MsSClientHandle: no server provides service ENQ  (4), requested from jagadesh_NSP_00 [msxxserv.c   4679]
    [Thr 2604] Thu Dec 27 22:19:14 2007
    [Thr 2604] MsSExit: received SIGINT (2)
    [Thr 2604] ***LOG Q02=> MsSHalt, MSStop (Msg Server 2556) [msxxserv.c   5944]
    ++++++++++++++++++++++++++++++
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        NSP
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    95
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2564
    Thu Dec 27 22:17:57 2007
    kernel runs with dp version 224(ext=109) (@(#) DPLIB-INT-VERSION-224)
    length of sys_adm_ext is 360 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 2564) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 95 successfully loaded
         shared lib "dw_xtc.dll" version 95 successfully loaded
         shared lib "dw_stl.dll" version 95 successfully loaded
         shared lib "dw_gui.dll" version 95 successfully loaded
         shared lib "dw_mdm.dll" version 95 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Thu Dec 27 22:18:02 2007
    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  5355]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >jagadesh_NSP_00                         <
    DpShMCreate: sizeof(wp_adm)          6328     (904)
    DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    DpShMCreate: sizeof(wp_ca_adm)          1200     (60)
    DpShMCreate: sizeof(appc_ca_adm)     1200     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    DpShMCreate: sizeof(comm_adm)          528048     (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     (1280)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 04F20040, size: 4205552)
    DpShMCreate: allocated sys_adm at 04F20040
    DpShMCreate: allocated wp_adm at 04F21A28
    DpShMCreate: allocated tm_adm_list at 04F232E0
    DpShMCreate: allocated tm_adm at 04F23310
    DpShMCreate: allocated wp_ca_adm at 052935A0
    DpShMCreate: allocated appc_ca_adm at 05293A50
    DpShMCreate: allocated comm_adm at 05293F00
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 05314DB0
    DpShMCreate: allocated gw_adm at 05314DF0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 05314E20
    DpShMCreate: allocated wall_adm at 05314E28
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    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> Memory Reset disabled as NT default
    <ES> 127 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( jagadesh) [dpxxdisp.c   11663]
    DpStartStopMsg: send start message (myname is >jagadesh_NSP_00                         <)
    DpStartStopMsg: start msg sent
    Thu Dec 27 22:18:03 2007
    CCMS: alert/MONI_SEGM_SIZE = 0   monitoring and alerting switched off.
    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 95
    Release check o.K.
    Thu Dec 27 22:18:42 2007
    ERROR => W0 (pid 2640) died [dpxxdisp.c   14318]
    ERROR => W1 (pid 2648) died [dpxxdisp.c   14318]
    ERROR => W2 (pid 2656) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x9f --> 0x9e
    ERROR => W3 (pid 2664) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x9e --> 0x9c
    ERROR => W4 (pid 2672) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x9c --> 0x98
    ERROR => W5 (pid 2680) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x98 --> 0x90
    ERROR => W6 (pid 2688) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x90 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:18:52 2007
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Fri Dec 28 03:18:52 2007
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     2640 Ended         no      1   0             0                                                             
    1 DIA     2648 Ended         no      1   0             0                                                             
    2 DIA     2656 Ended         no      1   0             0                                                             
    3 UPD     2664 Ended         no      1   0             0                                                             
    4 ENQ     2672 Ended         no      1   0             0                                                             
    5 BTC     2680 Ended         no      1   0             0                                                             
    6 SPO     2688 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Fri Dec 28 03:18:52 2007
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    2
    2000
    6
    6
    --------++++--
    +
    DIA
    4
    4
    2000
    4
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          11
    wake_evt_udp_now     0
    wake events           total     7,  udp     7 (100%),  shm     0 (  0%)
    since last update     total     7,  udp     7 (100%),  shm     0 (  0%)
    Dump of tm_adm structure:               Fri Dec 28 03:18:52 2007
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Fri Dec 28 03:18:52 2007
    =============================
    Slots: 20, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:18:57 2007
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >jagadesh_NSP_00                         < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (2624) (SOFT_KILL)
    Stop icman
    killing process (2632) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:2624  HANDLE:1636)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:18:58 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:2624  HANDLE:1636)
    wait for end of icman
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:18:59 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:00 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:01 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:02 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:03 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:04 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:05 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:06 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:07 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:08 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:09 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:2632  HANDLE:1644)
    DpStartStopMsg: send stop message (myname is >jagadesh_NSP_00                         <)
    NiIMyHostName: hostname = 'jagadesh'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 2 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    Thu Dec 27 22:19:10 2007
    NiIPeek: peek for hdl 2 timed out (r; 1000ms)
    NiIRead: read for hdl 2 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   11976]
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 2 in set0
    SiSelNSet: set events of sock 1600 to: ---
    NiBufISelRemove: remove hdl 2 from set0
    SiSelNRemove: removed sock 1600 (pos=2)
    SiSelNRemove: removed sock 1600
    NiSelIRemove: removed hdl 2
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/20/7
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 14)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 1600
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 2564) [dpxxdisp.c   10333]
    Good Bye .....
    +++++++++++++++++++++++++++++
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Thu Dec 27 22:18:03 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' ...
    B  Library 'D:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' loaded
    B  Version of 'D:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' is "700.08", patchlevel (0.95)
    B  New connection 0 created
    M sysno      00
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    95
    M intno      20050900
    M make:      multithreaded, ASCII, optimized
    M pid        2640
    M
    M  kernel runs with dp version 224(ext=109) (@(#) DPLIB-INT-VERSION-224)
    M  length of sys_adm_ext is 360 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2640) [dpxxdisp.c   1301]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          6328     (904)
    M  DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    M  DpShMCreate: sizeof(wp_ca_adm)          1200     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     1200     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (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     (1280)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 04F20040, size: 4205552)
    M  DpShMCreate: allocated sys_adm at 04F20040
    M  DpShMCreate: allocated wp_adm at 04F21A28
    M  DpShMCreate: allocated tm_adm_list at 04F232E0
    M  DpShMCreate: allocated tm_adm at 04F23310
    M  DpShMCreate: allocated wp_ca_adm at 052935A0
    M  DpShMCreate: allocated appc_ca_adm at 05293A50
    M  DpShMCreate: allocated comm_adm at 05293F00
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 05314DB0
    M  DpShMCreate: allocated gw_adm at 05314DF0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 05314E20
    M  DpShMCreate: allocated wall_adm at 05314E28
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Thu Dec 27 22:18:04 2007
    M  ThInit: running on host jagadesh
    M  calling db_connect ...

    C  DBSDBSLIB : version 700.08, patch 0.095 (Make PL 0.95)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.095) MaxDB DBSL patch collection 1 2007 (note 1014270)
    C    (0.082) MaxDB DBSL patch collection 3 2006 (note 991258)
    C    (0.079) MaxDB DBSL patch collection 2 2006 (note 984406)
    C    (0.068) MaxDB DBSL patch collection 1 2006 (note 962708)
    C    (0.051) DB50 perm block defect (note 934194)
    C    (0.046) ADBC: invalid data when fetching cursor with hold (note 925337)
    C    (0.045) Signal 11 during creation of BIA index (note 920743)
    C    (0.038) MaxDB DBSL patch collection 2 2005 (note 908602)
    C    (0.034) Livecache unicode connect (use SDK 7.6.0 b11) (note 901576)
    C    (0.028) Disable LVC codepage checking (note 882788)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC SDK Version : SQLDBC.H  7.6.0    BUILD 002-121-083-965
    C  SQLDBC Library Version : libSQLDBC 7.6.2    BUILD 014-123-152-175
    C  SQLDBC client runtime is MaxDB 7.6.2.014 CL 152175
    C  SQLDBC supports new DECIMAL interface : 0
    C  SQLDBC supports VARIABLE INPUT data : 1
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...

    C Thu Dec 27 22:18:05 2007
    C  *** ERROR => Connect to database failed, rc = -10709 (Connection failed (RTE:database not running))
    [dbsdbsql.cpp 136]
    B  ***LOG BV3=> severe db error -10709    ; work process is stopped [dbsh#2 @ 1199] [dbsh    1199 ]
    B  ***LOG BY2=> sql error -10709 performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> Connection failed (RTE:database not running) [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1426]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10240]

    M  Info for wp 0

    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server jagadesh_NSP_00 on host jagadesh (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu Dec 27 22:18:05 2007
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10439
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2640) [dpnttool.c   327]
    +++++++++++++++++++++++
    Regards
    Jack

    Hi,
    BI 7.6 latest trail version i installed after RSA1 activation once system restarted my DISP+WORK.EXE got stopped, please tel me how to resolve when i see log stated below;
    trc file: "dev_ms", trc level: 1, release: "700"
    [Thr 2560] Thu Dec 27 22:17:56 2007
    [Thr 2560] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    94
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2556
    [Thr 2560] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 2556) [msxxserv.c   1824]
    [Thr 2560] MsInitAclInfo: acl file D:\SAP\NSP\SYS\global\ms_acl_info.DAT not found, unrestricted access
    [Thr 2560] MsGetOwnIpAddr: my host addresses are :
    [Thr 2560]   1 : [200.200.200.201] jagadesh (HOSTNAME)
    [Thr 2560]   2 : [127.0.0.1] jagadesh (LOCALHOST)
    [Thr 2560]   3 : [192.168.0.100] jagadesh.hsd1.nj.comcast.net. (NILIST)
    [Thr 2560] MsHttpInit: full qualified hostname = jagadesh
    [Thr 2560] HTTP logging is switch off
    [Thr 2560] set HTTP state to LISTEN
    [Thr 2560] ms/icf_info_server : deleted
    [Thr 2560] *** I listen to port sapmsNSP (3600) ***
    [Thr 2560] *** I listen to internal port 3900 (3900) ***
    [Thr 2560] *** HTTP port 8100 state LISTEN ***
    [Thr 2560] CUSTOMER KEY: >R1490247412<
    [Thr 2560] Thu Dec 27 22:19:09 2007
    [Thr 2560] *** ERROR => MsSClientHandle: no server provides service ENQ  (4), requested from jagadesh_NSP_00 [msxxserv.c   4679]
    [Thr 2604] Thu Dec 27 22:19:14 2007
    [Thr 2604] MsSExit: received SIGINT (2)
    [Thr 2604] ***LOG Q02=> MsSHalt, MSStop (Msg Server 2556) [msxxserv.c   5944]
    ++++++++++++++++++++++++++++++
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        NSP
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    95
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2564
    Thu Dec 27 22:17:57 2007
    kernel runs with dp version 224(ext=109) (@(#) DPLIB-INT-VERSION-224)
    length of sys_adm_ext is 360 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 2564) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 95 successfully loaded
         shared lib "dw_xtc.dll" version 95 successfully loaded
         shared lib "dw_stl.dll" version 95 successfully loaded
         shared lib "dw_gui.dll" version 95 successfully loaded
         shared lib "dw_mdm.dll" version 95 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Thu Dec 27 22:18:02 2007
    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  5355]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >jagadesh_NSP_00                         <
    DpShMCreate: sizeof(wp_adm)          6328     (904)
    DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    DpShMCreate: sizeof(wp_ca_adm)          1200     (60)
    DpShMCreate: sizeof(appc_ca_adm)     1200     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    DpShMCreate: sizeof(comm_adm)          528048     (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     (1280)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 04F20040, size: 4205552)
    DpShMCreate: allocated sys_adm at 04F20040
    DpShMCreate: allocated wp_adm at 04F21A28
    DpShMCreate: allocated tm_adm_list at 04F232E0
    DpShMCreate: allocated tm_adm at 04F23310
    DpShMCreate: allocated wp_ca_adm at 052935A0
    DpShMCreate: allocated appc_ca_adm at 05293A50
    DpShMCreate: allocated comm_adm at 05293F00
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 05314DB0
    DpShMCreate: allocated gw_adm at 05314DF0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 05314E20
    DpShMCreate: allocated wall_adm at 05314E28
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    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> Memory Reset disabled as NT default
    <ES> 127 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( jagadesh) [dpxxdisp.c   11663]
    DpStartStopMsg: send start message (myname is >jagadesh_NSP_00                         <)
    DpStartStopMsg: start msg sent
    Thu Dec 27 22:18:03 2007
    CCMS: alert/MONI_SEGM_SIZE = 0   monitoring and alerting switched off.
    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 95
    Release check o.K.
    Thu Dec 27 22:18:42 2007
    ERROR => W0 (pid 2640) died [dpxxdisp.c   14318]
    ERROR => W1 (pid 2648) died [dpxxdisp.c   14318]
    ERROR => W2 (pid 2656) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x9f --> 0x9e
    ERROR => W3 (pid 2664) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x9e --> 0x9c
    ERROR => W4 (pid 2672) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x9c --> 0x98
    ERROR => W5 (pid 2680) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x98 --> 0x90
    ERROR => W6 (pid 2688) died [dpxxdisp.c   14318]
    my types changed after wp death/restart 0x90 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:18:52 2007
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Fri Dec 28 03:18:52 2007
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     2640 Ended         no      1   0             0                                                             
    1 DIA     2648 Ended         no      1   0             0                                                             
    2 DIA     2656 Ended         no      1   0             0                                                             
    3 UPD     2664 Ended         no      1   0             0                                                             
    4 ENQ     2672 Ended         no      1   0             0                                                             
    5 BTC     2680 Ended         no      1   0             0                                                             
    6 SPO     2688 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Fri Dec 28 03:18:52 2007
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    2
    2000
    6
    6
    --------++++--
    +
    DIA
    4
    4
    2000
    4
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          11
    wake_evt_udp_now     0
    wake events           total     7,  udp     7 (100%),  shm     0 (  0%)
    since last update     total     7,  udp     7 (100%),  shm     0 (  0%)
    Dump of tm_adm structure:               Fri Dec 28 03:18:52 2007
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Fri Dec 28 03:18:52 2007
    =============================
    Slots: 20, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:18:57 2007
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >jagadesh_NSP_00                         < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (2624) (SOFT_KILL)
    Stop icman
    killing process (2632) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:2624  HANDLE:1636)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:18:58 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:2624  HANDLE:1636)
    wait for end of icman
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:18:59 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:00 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:01 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:02 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:03 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:04 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:05 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:06 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:07 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:08 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2632  HANDLE:1644)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1665
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Dec 27 22:19:09 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:2632  HANDLE:1644)
    DpStartStopMsg: send stop message (myname is >jagadesh_NSP_00                         <)
    NiIMyHostName: hostname = 'jagadesh'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 2 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    Thu Dec 27 22:19:10 2007
    NiIPeek: peek for hdl 2 timed out (r; 1000ms)
    NiIRead: read for hdl 2 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   11976]
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 2 in set0
    SiSelNSet: set events of sock 1600 to: ---
    NiBufISelRemove: remove hdl 2 from set0
    SiSelNRemove: removed sock 1600 (pos=2)
    SiSelNRemove: removed sock 1600
    NiSelIRemove: removed hdl 2
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/20/7
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 14)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 1600
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 2564) [dpxxdisp.c   10333]
    Good Bye .....
    +++++++++++++++++++++++++++++
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Thu Dec 27 22:18:03 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' ...
    B  Library 'D:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' loaded
    B  Version of 'D:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' is "700.08", patchlevel (0.95)
    B  New connection 0 created
    M sysno      00
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    95
    M intno      20050900
    M make:      multithreaded, ASCII, optimized
    M pid        2640
    M
    M  kernel runs with dp version 224(ext=109) (@(#) DPLIB-INT-VERSION-224)
    M  length of sys_adm_ext is 360 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2640) [dpxxdisp.c   1301]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          6328     (904)
    M  DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    M  DpShMCreate: sizeof(wp_ca_adm)          1200     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     1200     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (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     (1280)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 04F20040, size: 4205552)
    M  DpShMCreate: allocated sys_adm at 04F20040
    M  DpShMCreate: allocated wp_adm at 04F21A28
    M  DpShMCreate: allocated tm_adm_list at 04F232E0
    M  DpShMCreate: allocated tm_adm at 04F23310
    M  DpShMCreate: allocated wp_ca_adm at 052935A0
    M  DpShMCreate: allocated appc_ca_adm at 05293A50
    M  DpShMCreate: allocated comm_adm at 05293F00
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 05314DB0
    M  DpShMCreate: allocated gw_adm at 05314DF0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 05314E20
    M  DpShMCreate: allocated wall_adm at 05314E28
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Thu Dec 27 22:18:04 2007
    M  ThInit: running on host jagadesh
    M  calling db_connect ...

    C  DBSDBSLIB : version 700.08, patch 0.095 (Make PL 0.95)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.095) MaxDB DBSL patch collection 1 2007 (note 1014270)
    C    (0.082) MaxDB DBSL patch collection 3 2006 (note 991258)
    C    (0.079) MaxDB DBSL patch collection 2 2006 (note 984406)
    C    (0.068) MaxDB DBSL patch collection 1 2006 (note 962708)
    C    (0.051) DB50 perm block defect (note 934194)
    C    (0.046) ADBC: invalid data when fetching cursor with hold (note 925337)
    C    (0.045) Signal 11 during creation of BIA index (note 920743)
    C    (0.038) MaxDB DBSL patch collection 2 2005 (note 908602)
    C    (0.034) Livecache unicode connect (use SDK 7.6.0 b11) (note 901576)
    C    (0.028) Disable LVC codepage checking (note 882788)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC SDK Version : SQLDBC.H  7.6.0    BUILD 002-121-083-965
    C  SQLDBC Library Version : libSQLDBC 7.6.2    BUILD 014-123-152-175
    C  SQLDBC client runtime is MaxDB 7.6.2.014 CL 152175
    C  SQLDBC supports new DECIMAL interface : 0
    C  SQLDBC supports VARIABLE INPUT data : 1
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...

    C Thu Dec 27 22:18:05 2007
    C  *** ERROR => Connect to database failed, rc = -10709 (Connection failed (RTE:database not running))
    [dbsdbsql.cpp 136]
    B  ***LOG BV3=> severe db error -10709    ; work process is stopped [dbsh#2 @ 1199] [dbsh    1199 ]
    B  ***LOG BY2=> sql error -10709 performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> Connection failed (RTE:database not running) [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1426]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10240]

    M  Info for wp 0

    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server jagadesh_NSP_00 on host jagadesh (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu Dec 27 22:18:05 2007
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10439
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2640) [dpnttool.c   327]
    +++++++++++++++++++++++
    Regards
    Jack

  • Populator not working after deleting model and items from Oracle cofigurator.

    I had created a ATO model, and populated it to the Configurator, worked with it, created UIs, tested with OM (and BOM) worked alright.
    But, I had to delete the items and models in the Configurator as my playing around had messed it up. Now I populated it again from Oracle Apps, it is not bringing in the items (none at all) and it is not bringing in the options for option classes more then two level deep. Also, weirdly only the descriptions keep appearing in the Model tree node not the name, even if I choose it in the tree. I tried running purge configuraotr tables.
    Do you have any idea why this is happening. Any help would be appreciated.
    Thank you again.

    First, back up your Mac. To learn how to do that read Mac Basics: Time Machine backs up your Mac
    Then:
    Launch the Console app - it is in your Utilities folder. You can find it by selecting Utilities from the Finder's Go menu.
    If the log list column on the left is not already displayed, show the log list by selecting Show Log List from Console's View menu. Select Show Toolbar if it is not already shown.
    Locate system.log in the list and select it. Many date and time-stamped entries will appear, hundreds of them, and you must find the entries relevant to your Mac's problem.
    To do that click the Clear Display button in the Toolbar. All previously displayed log entries will reappear.
    Next: Perform whatever actions cause the Mac to exhibit the slow behavior. If the problem is caused by errors logged by the system, the Console window will show them being recorded in system.log.
    One or more of them, along with their time stamps, may reveal the reason for the problem you describe.
    Copy and paste those log entries in a reply. If hundreds of the same repetitive messages appear, please edit them before posting. There should be no need for more than 100 or so total log entries.
    Most of the entries will be cryptic but will contain information you might consider personal such as your Mac's name. If you do not want that information to appear, delete or obscure it when posting your reply. Leave enough information so that the entries can be deciphered.

  • Macbook Pro medio 2012 keeps lagging & showing beachballs after every action

    I have a MacBook Pro medio 2012 for a few months now, it always worked good for me but since a few days all my actions make it to lagg and after a while I get beachballs every several seconds and all for all actions I have to wait a few seconds for it even to respond at all.
    It runs on an i7 processor and has 8 GB RAM so that cannot be the issue, besides that has it always been a fast laptop.
    I also run boothcamp on it with windows on that participation, when i use that it does not lagg. So is has something to do with the MACOSX part, since windows runs fine on it.
    The lagg came out of nothing, I just run a webbrowser (FireFox) and Spotify, mail and iCal are on the background, but those can't be the problem.
    I hope any one has a solution for me.

    I have followed them and I noted that at his step about RAM he says: 'If the page outs value is too high – more than 10% of the page ins value – then that is an indication that you could benefit from more RAM.  If it isn’t that high, adding more RAM won’t help.'
    Here is an image with my stats:
    As you can see the page-outs are far higher than 10% of the page ins, and I am currently just running light programs, with the only exeption maybe of FireFox, but that should not make the diffence.
    The problem I have now is: How can this be? Since I have 8GB RAM and it used to be no problem. Also note that I have no problems running Windows, windows runs just fine, via boothcamp.

Maybe you are looking for

  • Mac Pro 2.66 powers itself up after shutdown

    Hi, Just wondering if any other mac pro users out there have encountered an issue where by your machine powers up of its own accord after shutting down. I have switched off the wake for ethernet access and restart after power failure tick boxes in th

  • Photoshop Elements 12 Organizer will not open on Apple 10.6.8.

    I downloaded Photoshop Elements 12 two days ago and opened and ran the program successfully. I've downloaded nothing new to the computer since then, made no updates. but today it will not open at all, giving me a message that Adobe Elements 12 Organi

  • Function module does not exist in ECC 6.0

    Hi All, These two below function module does not exist in ECC 6.0 but exist in 4.6.Could you please let me know replacement of these two's. FI_DOCUMENT_ARCH_READ_SINGLE CHECK_IBAN_ACTIVE Thanks Mohit

  • TEXT_IO in forms

    Hi I am using TEXT_IO in Forms 6i client/server. 1. I get the location of a particular directory by using: tool_env.getvar('TEMP', v_tmp_file_loc); This returns C:\DOCUME~1\TEST~1.TST\LOCALS~1\Temp into variable v_tmp_file_loc 3. Then concatenate thi

  • Server 2008R2 and Exchange on Same server

    Hello Everyone, I have taken over the IT Department for a small County Government and have found that the prior contractor installed Exchange 2010 on the same server that is running Active Directory. This machine is also acting as the DC. I would rea