Strange behavior of flex4 service call

Hi Techies, I am stuck with strange behavior of flex4 service call. Our is a dashboard application where i have four modules(separae file for each) in a page. when page renders all these modules makes separate service call through remote objects. Though destination file is same but methods are separate for each modules. db+java takes 5 second for 1 and 3 module, 9 seconds for third module and 15 seconds for 4th module. Sinch LCDS calls are asynchronous ideally after 5 seconds module 1 and 2 should display data. similarly for 3rd module after 9seconds. For my wonder it doesnt go this way. data for all the modules appears simultaneously after 15-16 seconds.  It behaves like when data for all the modules is available then only it populates charts and grids. Looks like call is being made in sequence and once maximum taking method is done then control returns back to flex. Any pointer will be helpful to improvise this.
Thanks,
Rohit

Hi Techies, I am stuck with strange behavior of flex4 service call. Our is a dashboard application where i have four modules(separae file for each) in a page. when page renders all these modules makes separate service call through remote objects. Though destination file is same but methods are separate for each modules. db+java takes 5 second for 1 and 3 module, 9 seconds for third module and 15 seconds for 4th module. Sinch LCDS calls are asynchronous ideally after 5 seconds module 1 and 2 should display data. similarly for 3rd module after 9seconds. For my wonder it doesnt go this way. data for all the modules appears simultaneously after 15-16 seconds.  It behaves like when data for all the modules is available then only it populates charts and grids. Looks like call is being made in sequence and once maximum taking method is done then control returns back to flex. Any pointer will be helpful to improvise this.
Thanks,
Rohit

Similar Messages

  • Strange behavior: action method not called when button submitted

    Hello,
    My JSF app is diplaying a strange behavior: when the submit button is pressed the action method of my managed bean is not called.
    Here is my managed bean:
    package arcoiris;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.model.SelectItem;
    public class SearchManagedBean {
        //Collected from search form
        private String keyword;
        private String country;
        private int[] postcode;
        private boolean commentExists;
        private int rating;
        private boolean websiteExists;
        //Used to populate form
        private List<SelectItem> availableCountries;
        private List<SelectItem> availablePostcodes;
        private List<SelectItem> availableRatings;
        //Retrieved from ejb tier
        private List<EstablishmentLocal> retrievedEstablishments;
        //Service locator
        private arcoiris.ServiceLocator serviceLocator;
        //Constructor
        public SearchManagedBean() {
            System.out.println("within constructor SearchManagedBean");
            System.out.println("rating "+this.rating);
        //Getters and setters
        public String getKeyword() {
            return keyword;
        public void setKeyword(String keyword) {
            this.keyword = keyword;
        public String getCountry() {
            return country;
        public void setCountry(String country) {
            this.country = country;
        public boolean isCommentExists() {
            return commentExists;
        public void setCommentExists(boolean commentExists) {
            this.commentExists = commentExists;
        public int getRating() {
            return rating;
        public void setRating(int rating) {
            this.rating = rating;
        public boolean isWebsiteExists() {
            return websiteExists;
        public void setWebsiteExists(boolean websiteExists) {
            this.websiteExists = websiteExists;
        public List<SelectItem> getAvailableCountries() {
            List<SelectItem> countries = new ArrayList<SelectItem>();
            SelectItem si_1 = new SelectItem();
            SelectItem si_2 = new SelectItem();
            SelectItem si_3 = new SelectItem();
            si_1.setValue("2");
            si_1.setLabel("ecuador");
            si_2.setValue("1");
            si_2.setLabel("colombia");
            si_3.setValue("3");
            si_3.setLabel("peru");
            countries.add(si_1);
            countries.add(si_2);
            countries.add(si_3);
            return countries;
        public void setAvailableCountries(List<SelectItem> countries) {
            this.availableCountries = availableCountries;
        public List<SelectItem> getAvailablePostcodes() {
            List<SelectItem> postcodes = new ArrayList<SelectItem>();
            SelectItem si_1 = new SelectItem();
            SelectItem si_2 = new SelectItem();
            SelectItem si_3 = new SelectItem();
            si_1.setValue(75001);
            si_1.setLabel("75001");
            si_2.setValue(75002);
            si_2.setLabel("75002");
            si_3.setValue(75003);
            si_3.setLabel("75003");
            postcodes.add(si_1);
            postcodes.add(si_2);
            postcodes.add(si_3);
            return postcodes;
        public void setAvailablePostcodes(List<SelectItem> availablePostcodes) {
            this.availablePostcodes = availablePostcodes;
        public List<SelectItem> getAvailableRatings() {
            List<SelectItem> ratings = new ArrayList<SelectItem>();
            SelectItem si_1 = new SelectItem();
            SelectItem si_2 = new SelectItem();
            SelectItem si_3 = new SelectItem();
            si_1.setValue(1);
            si_1.setLabel("1");
            si_2.setValue(2);
            si_2.setLabel("2");
            si_3.setValue(3);
            si_3.setLabel("3");
            ratings.add(si_1);
            ratings.add(si_2);
            ratings.add(si_3);
            return ratings;
        public void setAvailableRatings(List<SelectItem> availableRatings) {
            this.availableRatings = availableRatings;
        public int[] getPostcode() {
            return postcode;
        public void setPostcode(int[] postcode) {
            this.postcode = postcode;
        public List<EstablishmentLocal> getRetrievedEstablishments() {
            return retrievedEstablishments;
        public void setRetrievedEstablishments(List<EstablishmentLocal> retrievedEstablishments) {
            this.retrievedEstablishments = retrievedEstablishments;
        //Business methods
        public String performSearch(){
            System.out.println("performSearchManagedBean begin");
            SearchRequestDTO searchRequestDto = new SearchRequestDTO(this.keyword,this.country,this.postcode,this.commentExists,this.rating, this.websiteExists);
            SearchSessionLocal searchSession = lookupSearchSessionBean();
            List<EstablishmentLocal> retrievedEstablishments = searchSession.performSearch(searchRequestDto);
            this.setRetrievedEstablishments(retrievedEstablishments);
            System.out.println("performSearchManagedBean end");
            return "success";
        private arcoiris.ServiceLocator getServiceLocator() {
            if (serviceLocator == null) {
                serviceLocator = new arcoiris.ServiceLocator();
            return serviceLocator;
        private arcoiris.SearchSessionLocal lookupSearchSessionBean() {
            try {
                return ((arcoiris.SearchSessionLocalHome) getServiceLocator().getLocalHome("java:comp/env/ejb/SearchSessionBean")).create();
            } catch(javax.naming.NamingException ne) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
                throw new RuntimeException(ne);
            } catch(javax.ejb.CreateException ce) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ce);
                throw new RuntimeException(ce);
    }Here is my jsp page:
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
             <html>
                 <head>
                     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
                     <META HTTP-EQUIV="pragma" CONTENT="no-cache">
                     <title>JSP Page</title>
                 </head>
                 <body>
                     <f:view>
                         <h:panelGroup id="body">
                             <h:form id="searchForm">
                                 <h:panelGrid columns="2">
                                     <h:outputText id="keywordLabel" value="enter keyword"/>   
                                     <h:inputText id="keywordField" value="#{SearchManagedBean.keyword}"/>
                                     <h:outputText id="countryLabel" value="choose country"/>   
                                     <h:selectOneListbox id="countryField" value="#{SearchManagedBean.country}">
                                         <f:selectItems id="availableCountries" value="#{SearchManagedBean.availableCountries}"/>
                                     </h:selectOneListbox>
                                     <h:outputText id="postcodeLabel" value="choose postcode(s)"/>   
                                     <h:selectManyListbox id="postcodeField" value="#{SearchManagedBean.postcode}">
                                         <f:selectItems id="availablePostcodes" value="#{SearchManagedBean.availablePostcodes}"/>
                                     </h:selectManyListbox>
                                     <h:outputText id="commentExistsLabel" value="with comment"/>
                                     <h:selectBooleanCheckbox id="commentExistsField" value="#{SearchManagedBean.commentExists}" />
                                     <h:outputText id="ratingLabel" value="rating"/>
                                     <h:selectOneListbox id="ratingField" value="#{SearchManagedBean.rating}">
                                         <f:selectItems id="availableRatings" value="#{SearchManagedBean.availableRatings}"/>
                                     </h:selectOneListbox>
                                     <h:outputText id="websiteExistsLabel" value="with website"/>
                                     <h:selectBooleanCheckbox id="websiteExistsField" value="#{SearchManagedBean.websiteExists}" />
                                     <h:commandButton value="search" action="#{SearchManagedBean.performSearch}"/>
                                 </h:panelGrid>
                             </h:form>
                         </h:panelGroup>
                     </f:view>
                 </body>
             </html>
         here is my faces config file:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
        <managed-bean>
            <managed-bean-name>SearchManagedBean</managed-bean-name>
            <managed-bean-class>arcoiris.SearchManagedBean</managed-bean-class>
            <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
        <navigation-rule>
           <description></description>
            <from-view-id>/welcomeJSF.jsp</from-view-id>
            <navigation-case>
            <from-outcome>success</from-outcome>
            <to-view-id>index.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>
    </faces-config>The problem occurs when the field ratingField is left blank (which amounts to it being set at 0 since it is an int).
    Can anyone help please?
    Thanks in advance,
    Julien.

    Hello,
    Thanks for the suggestion. I added the tag and it now says:
    java.lang.IllegalArgumentException
    I got that from the log:
    2006-08-17 15:29:16,859 DEBUG [com.sun.faces.el.ValueBindingImpl] setValue Evaluation threw exception:
    java.lang.IllegalArgumentException
         at sun.reflect.GeneratedMethodAccessor118.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.faces.el.PropertyResolverImpl.setValue(PropertyResolverImpl.java:178)
         at com.sun.faces.el.impl.ArraySuffix.setValue(ArraySuffix.java:192)
         at com.sun.faces.el.impl.ComplexValue.setValue(ComplexValue.java:171)
         at com.sun.faces.el.ValueBindingImpl.setValue(ValueBindingImpl.java:234)
         at javax.faces.component.UIInput.updateModel(UIInput.java:544)
         at javax.faces.component.UIInput.processUpdates(UIInput.java:442)
         at javax.faces.component.UIComponentBase.processUpdates(UIComponentBase.java:935)
         at javax.faces.component.UIForm.processUpdates(UIForm.java:196)
         at javax.faces.component.UIComponentBase.processUpdates(UIComponentBase.java:935)
         at javax.faces.component.UIComponentBase.processUpdates(UIComponentBase.java:935)
         at javax.faces.component.UIViewRoot.processUpdates(UIViewRoot.java:363)
         at com.sun.faces.lifecycle.UpdateModelValuesPhase.execute(UpdateModelValuesPhase.java:81)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
         at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
         at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
         at java.lang.Thread.run(Thread.java:595)
    2006-08-17 15:29:16,875 DEBUG [com.sun.faces.context.FacesContextImpl] Adding Message[sourceId=searchForm:ratingField,summary=java.lang.IllegalArgumentException)Do you see where the problem comes from??
    Julien.

  • Strange behavior for volume in calls.

    I have some users with a strange problem, this do not apply to all my users. This is the problem reported from the local admin:
    Symptoms:
    When a user is called internally or by an external party, the call volume will sometimes start off quiet, and may continue to be quiet for the whole call or may jump in volume suddenly during the call.
    Cause:
    I have not determined the cause, and It is not re-creatable at will, but I have experienced it myself on several occasions. The users affected are using Lync certified headsets or handsets, it happens on both. By troubleshooting I am fairly certain this is
    software related and its either Lync or the interaction between Lync and the Windows sound mixer/drivers.
    Resolution:
    I cannot resolve this issue, but have discovered a temporary work around. When receiving a call that is quiet in volume if you open Lync and click on the settings icon, the volume jumps up to normal levels at this point, usually you only have to do this once
    and calls during the rest of the day are ok, but you have to do this every day.
    Conclusion:
    I cannot be certain if this is a Polycomm driver issue, a Microsoft driver or software issue or something else but users have complained about it on and off since they migrated to Lync EV.
    Anyone having ideas on this one?

    Right click volume icon in taskbar, select Sounds, click Communications tab, check the option “Mute all other sounds” is not selected.
    Lisa Zheng
    TechNet Community Support

  • Strange Behavior of program while using BAPI_PO_CREATE1

    Hello SAP GURUs,
    I've created an Upload Program using BAPI_PO_CREATE1 for Mass Service PO Creation.
    When I execute the program and Specify the File for uploading, It Gives me errors as
    E     BAPI     1     No instance of object type PurchaseOrder has been created. External reference:
    E     MEPO     0     Purchase order still contains faulty items
    E     6     436     In case of account assignment, please enter acc. assignment data for item
    But when I come back to Selection Screen of the Program and specify the SAME FILE AGAIN and Execute,
    The Program runs successfully and generates the PO number.
    I have never seen such strange behavior in any BAPIs before.
    Pls help..

    PERFORM refresh_tables.
      PERFORM fill_tables.
    END-OF-SELECTION.
    Display the Summary as an ALV Grid Display
      IF NOT ig_mymssg[] IS INITIAL.
        PERFORM display_basic_list . "Grid Display
      ELSE.
        MESSAGE s000 WITH 'No data exists'(051).
        STOP.
      ENDIF.
    *&      Form  refresh_tables
          text
    -->  p1        text
    <--  p2        text
    FORM refresh_tables .
      REFRESH:   ig_fieldcat,
                 ig_mymssg,
                 poitem,
                 poitemx,
                 poaccount,
                 poaccountx,
                 poservices,
                 ig_return.
                wt_itab,  record,  record2 .
    ENDFORM.                    " refresh_tables
    *&      Form  fill_tables
          text
    -->  p1        text
    <--  p2        text
    FORM fill_tables .
      record2[] = record[].
      record3[] = record[].
      DELETE ADJACENT DUPLICATES FROM record COMPARING id_no.
      DELETE ADJACENT DUPLICATES FROM record2 COMPARING id_no po_item.
      SELECT MAX( packno ) FROM esll INTO wrk_packno.
      LOOP AT record.
        CLEAR : poheader, poheaderx, wa_poitem, wa_poitemx, wa_poservices, wa_poaccount, wa_poaccountx, wa_poschedulex, wa_poschedule.
        REFRESH: poitem, poitemx, poaccount, poaccountx, poservices, ig_return,  posrvaccessvalues, poschedule, poschedulex.
        PERFORM po_header.
        LOOP AT record2 WHERE id_no = record-id_no.
          wrk_packno = wrk_packno + 1.
          PERFORM po_item.
          PERFORM po_scheudle.
          PERFORM acc_assignment.
          PERFORM po_services.
        ENDLOOP.
        PERFORM create_po.
      ENDLOOP.
    ENDFORM.                    " fill_tables
    *&      Form  display_basic_list
          text
    -->  p1        text
    <--  p2        text
    FORM display_basic_list .
      g_repid = sy-repid.
      PERFORM f2000_fieldcat_init .
      PERFORM display_alv_grid_1.
    ENDFORM.                    " display_basic_list
    *&      Form  f2000_fieldcat_init
          text
    -->  p1        text
    <--  p2        text
    FORM f2000_fieldcat_init .
      REFRESH ig_fieldcat.
      PERFORM fill_fields_of_fieldcatalog USING 'IG_MYMSSG'
                                                  'STATUS'
                                                    c_x
                                                    'Status'
                                                    '10'.
      PERFORM fill_fields_of_fieldcatalog USING 'IG_MYMSSG'
                                                'RECORD'
                                                c_x
                                                'Record'
                                                '20'.
      PERFORM fill_fields_of_fieldcatalog USING 'IG_MYMSSG'
                                                'ERRMSG'
                                                'Message'
                                                '100'.
    ENDFORM.                    " f2000_fieldcat_init
    *&      Form  display_alv_grid_1
          text
    -->  p1        text
    <--  p2        text
    FORM display_alv_grid_1 .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = g_repid
          i_structure_name   = 'IG_MYMSSG'
          i_grid_title       = 'LOG'
          is_layout          = wg_layout
          it_fieldcat        = ig_fieldcat[]
          i_save             = c_save
        TABLES
          t_outtab           = ig_mymssg
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " display_alv_grid_1
    *&      Form  fill_fields_of_fieldcatalog
          text
         -->P_0626   text
         -->P_0627   text
         -->P_C_X  text
         -->P_0629   text
         -->P_0630   text
    FORM fill_fields_of_fieldcatalog  USING    p_tabname TYPE slis_tabname
                                               p_field TYPE slis_fieldname
                                               p_key TYPE c
                                               p_name
                                               len.
    To fill in the fields of the table fieldcatalog depending on the field
      CLEAR wg_fieldcat.
      wg_fieldcat-fieldname = p_field. " The field name and the table
      wg_fieldcat-tabname = p_tabname.. " name are the two minimum req
      wg_fieldcat-key = p_key. " Specifies the column as a key
      wg_fieldcat-seltext_l = p_name. " Column Header
      wg_fieldcat-outputlen = len.
      APPEND wg_fieldcat TO ig_fieldcat.
    ENDFORM.                    " fill_fields_of_fieldcatalog
    *&      Form  create_po
          text
    -->  p1        text
    <--  p2        text
    FORM create_po .
      CLEAR : wg_return.
      REFRESH : ig_return.
      CALL FUNCTION 'BAPI_PO_CREATE1'
        EXPORTING
          poheader          = poheader
          poheaderx         = poheaderx
        IMPORTING
          exppurchaseorder  = po_no
        TABLES
          return            = ig_return
          poitem            = poitem
          poitemx           = poitemx
          poschedule        = poschedule
          poschedulex       = poschedulex
          poaccount         = poaccount
          poaccountx        = poaccountx
          poservices        = poservices
          posrvaccessvalues = posrvaccessvalues.
      SORT ig_return BY type.
      READ TABLE ig_return INTO wg_return WITH KEY type = 'S'.
      IF sy-subrc EQ 0.
        CLEAR : wg_return.
        REFRESH : ig_return.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
        CLEAR wg_errmsg.
        WRITE icon_green_light AS ICON TO wg_errmsg-status.
        CONCATENATE record-id_no po_no INTO wg_errmsg-record SEPARATED BY '/'.
       wg_errmsg-record = po_no.
        wg_errmsg-errmsg = 'PO created'.
        APPEND wg_errmsg TO ig_mymssg.
      ELSE.
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
        READ TABLE ig_return INTO wg_return WITH KEY type = 'E' TRANSPORTING message.
        CLEAR wg_errmsg.
        WRITE icon_red_light AS ICON TO wg_errmsg-status.
        wg_errmsg-record = record-id_no.
        wg_errmsg-errmsg = wg_return-message.
        APPEND wg_errmsg TO ig_mymssg.
      ENDIF.
    ENDFORM.                    " create_po
    *&      Form  po_header
          text
    -->  p1        text
    <--  p2        text
    FORM po_header .
      poheader-comp_code   = record-comp_code.
      poheader-doc_type    = record-doc_type.
      poheader-vendor      = record-vendor.
      poheader-purch_org   = 'SERV'.
      poheader-pur_group   = record-pur_group.
      poheader-currency    = 'INR'.
      poheaderx-comp_code   = 'X'.
      poheaderx-doc_type    = 'X'.
      poheaderx-vendor      = 'X'.
      poheaderx-purch_org   = 'X'.
      poheaderx-pur_group   = 'X'.
      poheaderx-currency    = 'X'.
    ENDFORM.                    " po_header
    *&      Form  po_item
          text
    -->  p1        text
    <--  p2        text
    FORM po_item .
    DATA : days TYPE num2.
    DATA : final_dt TYPE datum.
    DATA : is_ok TYPE boole_d.
    DATA : msg_hndlr TYPE REF TO if_hrpa_message_handler.
    days = 20.
    CALL FUNCTION 'HR_ECM_ADD_PERIOD_TO_DATE'
       EXPORTING
         orig_date       = sy-datum
         num_days        = days
         signum          = '+'
         message_handler = msg_hndlr
       IMPORTING
         result_date     = final_dt
         is_ok           = is_ok.
      CLEAR: wa_poitem,wa_poitemx.
      wa_poitem-po_item      = record2-po_item.
      wa_poitem-short_text   = record2-short_text.
      wa_poitem-plant        = record2-plant.
      wa_poitem-matl_group   = 'S001'.
      wa_poitem-tax_code     = 'LA'.
      wa_poitem-item_cat     = item_cat.
      wa_poitem-pckg_no      = wrk_packno.
      wa_poitem-acctasscat   = acctasscat.
    wa_poitem-gr_to_date   = final_dt.
      APPEND wa_poitem TO poitem.
      wa_poitemx-po_item      = record2-po_item.
      wa_poitemx-po_itemx      = 'X'.
      wa_poitemx-short_text   = 'X'.
      wa_poitemx-plant        = 'X'.
      wa_poitemx-tax_code     = 'X'.
      wa_poitemx-item_cat     = 'X'.
      wa_poitemx-acctasscat   = 'X'.
      wa_poitemx-pckg_no      = 'X'.
      wa_poitemx-matl_group   = 'X'.
      wa_poitem-gr_to_date    = 'X'.
      APPEND wa_poitemx TO poitemx.
    ENDFORM.                    " po_item
    *&      Form  PO_SERVICES
          text
    -->  p1        text
    <--  p2        text
    FORM po_services .
      CLEAR: wa_poservices, wa_posrvaccessvalues.
      wa_poservices-pckg_no = wrk_packno.
      wa_poservices-line_no  = '0000000001'.
      wa_poservices-outl_ind = 'X'.
      wa_poservices-subpckg_no = wa_poservices-pckg_no + 1.
      wa_poservices-from_line = '000001'.
      APPEND wa_poservices TO poservices.
      CLEAR wa_poservices.
      wrk_packno = wrk_packno + 1.
      wa_poservices-pckg_no = wrk_packno.
      wa_poservices-line_no  = '0000000002'.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = record2-service
        IMPORTING
          output = record2-service.
      wa_poservices-ext_line = '0000000010'.
      wa_poservices-service  = record2-service.
      wa_poservices-quantity = record2-quantity.
      wa_poservices-gr_price = record2-gr_price.
      wa_posrvaccessvalues-pckg_no = wrk_packno.
      wa_posrvaccessvalues-line_no = '0000000002'.
      wa_posrvaccessvalues-serial_no = '01'.
      wa_posrvaccessvalues-serno_line = '01'.
    wa_posrvaccessvalues-quantity = record2-quantity.
    wa_posrvaccessvalues-net_value = record2-gr_price.
      APPEND wa_poservices TO poservices.
      APPEND wa_posrvaccessvalues TO posrvaccessvalues.
    ENDFORM.                    " PO_SERVICES
    *&      Form  ACC_ASSIGNMENT
          text
    -->  p1        text
    <--  p2        text
    FORM acc_assignment .
      DATA : tmp_gl LIKE bapimepoaccount-gl_account.
      tmp_gl = '400265'.
      CLEAR : wa_poaccount, wa_poaccountx.
      wa_poaccount-po_item      =  record2-po_item.
      wa_poaccount-serial_no    = '01'.
      wa_poaccount-co_area      = '1000'.
      wa_poaccount-quantity     = record2-quantity.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = tmp_gl
        IMPORTING
          output = wa_poaccount-gl_account.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = record2-orderid
        IMPORTING
          output = wa_poaccount-orderid.
      APPEND wa_poaccount TO poaccount.
      wa_poaccountx-po_item      = record2-po_item.
      wa_poaccountx-serial_no    = '01'.
      wa_poaccountx-co_area      = 'X'.
      wa_poaccountx-quantity     = 'X'.
      wa_poaccountx-gl_account   = 'X'.
      wa_poaccountx-orderid      = 'X'.
      APPEND wa_poaccountx TO poaccountx.
    ENDFORM.                    " ACC_ASSIGNMENT
    *&      Form  PO_SCHEUDLE
          text
    -->  p1        text
    <--  p2        text
    FORM po_scheudle .
      CLEAR : wa_poschedule, wa_poschedulex.
      wa_poschedule-po_item = record2-po_item.
      wa_poschedule-sched_line = '0001'.
    wa_poschedule-del_datcat_ext = 'D'.
      wa_poschedule-delivery_date = sy-datum.
      wa_poschedule-quantity = record2-quantity.
      APPEND wa_poschedule TO poschedule.
      wa_poschedulex-po_item = record2-po_item.
      wa_poschedulex-sched_line = '0001'.
      wa_poschedulex-po_itemx = 'X'.
      wa_poschedulex-sched_linex = 'X'.
    wa_poschedulex-del_datcat_ext = 'X'
      wa_poschedulex-delivery_date = 'X'.
      wa_poschedulex-quantity = 'X'.
      APPEND wa_poschedulex TO poschedulex.
    ENDFORM.                    " PO_SCHEUDLE

  • Strange behavior of entourage with shared IMAP folders

    Hi the list,
    I have a strange behavior with entourage 11.2.5 with shared IMAP folders. Here's what I'd like to do :
    All this has to do with spamassassin and spamtrainer. Some of our mails accounts are IMAP ones, but most are POP only and I don't want them to be IMAP. But I also want both IMAP and POP users to have some IMAP access to shared mailboxes for spam and ham to be learned. For those who are using IMAP accounts, that's not a problem with shared mailboxes. But, considering those with only POP accounts, I decided to create a dedicated user called anti_spam, using IMAP access, with two mail boxes that are spam and non_spam, so that all POP users could share this account.
    Using SirAdmin, I set l/p/i ACL rights for anyone and the same for anti-spam user so that mail can't be read back with this shared account. Everything just works fine with Mail, but it doesn't work with Entourage. I set up an IMAP account for anti_spam to get an access to shared mailboxes even if main account is a POP one. Everything's fine except I can't write anything on mailboxes : I get an error 1025 and a denied access for writing. The only way to get write access to these mailboxes is to add "r" ACL to them with SirAdmin, which is NOT the solution as it would allow anybody to read mails. It's obvious it has more to do with Entourage than OS X mail service, all the more trying the same conf in Thunderbird is OK as expected.
    I was just wondering if somebody here would have some idea of what could be wrong ...

    I'd be interested to hear if anyone has a solution too as am having the same problem of not being able to write to IMAP mailboxes.
    JJJ

  • Strange behavior after suspend.

    Hi,
    For some time I have a strange behavior of my system after I awake my computer(after suspend). This problem don't disappear after update.
    Ok, so if I suspend my computer, and awake him I can't run any program. Even if i was open some application, this application crashes. I have to restart my machine.
    Somebody had similar problem or know how help?
    I'm using Arch Linux x64, kernel 3.8, openbox. Suspend by "systemctl suspend".

    OK, maybe good idea is paste here my output journal:
    # journalctl --since=today | tac | sed -n '/-- Reboot --/{n;:r;/-- Reboot --/q;p;n;b r}' | tac
    -- Logs begin at Mon 2012-09-10 20:20:07 CEST, end at Thu 2013-03-28 10:17:18 CET. --
    Mar 28 10:10:36 localhost kernel: Freezing user space processes ... (elapsed 0.01 seconds) done.
    Mar 28 10:10:36 localhost systemd[1]: Time has been changed
    Mar 28 10:10:36 localhost systemd[1]: systemd-tmpfiles-clean.timer: time change, recalculating next elapse.
    Mar 28 10:10:36 localhost kernel: Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    Mar 28 10:10:36 localhost dhcpcd[1435]: eth1: carrier lost
    Mar 28 10:10:36 localhost kernel: PM: Entering mem sleep
    Mar 28 10:10:36 localhost kernel: Suspending console(s) (use no_console_suspend to debug)
    Mar 28 10:10:36 localhost kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Mar 28 10:10:36 localhost kernel: sd 0:0:0:0: [sda] Stopping disk
    Mar 28 10:10:36 localhost kernel: cfg80211: Calling CRDA for country: PL
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] IRQ 46 Disabled
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Preparing suspend fglrx in kernel.
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Suspending fglrx in kernel completed.
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Power down the ASIC .
    Mar 28 10:10:36 localhost kernel: PM: suspend of devices complete after 1126.292 msecs
    Mar 28 10:10:36 localhost kernel: PM: late suspend of devices complete after 0.263 msecs
    Mar 28 10:10:36 localhost kernel: r8169 0000:09:00.0: System wakeup enabled by ACPI
    Mar 28 10:10:36 localhost kernel: ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
    Mar 28 10:10:36 localhost kernel: PM: noirq suspend of devices complete after 52.988 msecs
    Mar 28 10:10:36 localhost kernel: ACPI: Preparing to enter system sleep state S3
    Mar 28 10:10:36 localhost kernel: PM: Saving platform NVS memory
    Mar 28 10:10:36 localhost kernel: Disabling non-boot CPUs ...
    Mar 28 10:10:36 localhost kernel: smpboot: CPU 1 is now offline
    Mar 28 10:10:36 localhost kernel: smpboot: CPU 2 is now offline
    Mar 28 10:10:36 localhost kernel: smpboot: CPU 3 is now offline
    Mar 28 10:10:36 localhost kernel: Extended CMOS year: 2000
    Mar 28 10:10:36 localhost kernel: ACPI: Low-level resume complete
    Mar 28 10:10:36 localhost kernel: PM: Restoring platform NVS memory
    Mar 28 10:10:36 localhost kernel: Extended CMOS year: 2000
    Mar 28 10:10:36 localhost kernel: CPU0: Thermal monitoring handled by SMI
    Mar 28 10:10:36 localhost kernel: Enabling non-boot CPUs ...
    Mar 28 10:10:36 localhost kernel: smpboot: Booting Node 0 Processor 1 APIC 0x4
    Mar 28 10:10:36 localhost kernel: CPU1: Thermal monitoring handled by SMI
    Mar 28 10:10:36 localhost kernel: CPU1 is up
    Mar 28 10:10:36 localhost kernel: smpboot: Booting Node 0 Processor 2 APIC 0x1
    Mar 28 10:10:36 localhost kernel: CPU2: Thermal monitoring handled by SMI
    Mar 28 10:10:36 localhost kernel: CPU2 is up
    Mar 28 10:10:36 localhost kernel: smpboot: Booting Node 0 Processor 3 APIC 0x5
    Mar 28 10:10:36 localhost kernel: CPU3: Thermal monitoring handled by SMI
    Mar 28 10:10:36 localhost kernel: CPU3 is up
    Mar 28 10:10:36 localhost kernel: ACPI: Waking up from system sleep state S3
    Mar 28 10:10:36 localhost kernel: ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
    Mar 28 10:10:36 localhost kernel: sdhci-pci 0000:07:00.0: MMC controller base frequency changed to 50Mhz.
    Mar 28 10:10:36 localhost kernel: sdhci-pci 0000:07:00.0: proprietary Ricoh MMC controller disabled (via firewire function)
    Mar 28 10:10:36 localhost kernel: sdhci-pci 0000:07:00.0: MMC cards are now supported by standard SDHCI controller
    Mar 28 10:10:36 localhost kernel: PM: noirq resume of devices complete after 133.780 msecs
    Mar 28 10:10:36 localhost kernel: PM: early resume of devices complete after 0.127 msecs
    Mar 28 10:10:36 localhost kernel: ehci-pci 0000:00:1a.0: setting latency timer to 64
    Mar 28 10:10:36 localhost kernel: mei 0000:00:16.0: irq 43 for MSI/MSI-X
    Mar 28 10:10:36 localhost kernel: snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
    Mar 28 10:10:36 localhost kernel: pci 0000:00:1e.0: setting latency timer to 64
    Mar 28 10:10:36 localhost kernel: ehci-pci 0000:00:1d.0: setting latency timer to 64
    Mar 28 10:10:36 localhost kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Mar 28 10:10:36 localhost kernel: snd_hda_intel 0000:02:00.1: irq 45 for MSI/MSI-X
    Mar 28 10:10:36 localhost kernel: r8169 0000:09:00.0: System wakeup disabled by ACPI
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Power up the ASIC
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Preparing resume fglrx in kernel.
    Mar 28 10:10:36 localhost kernel: Extended CMOS year: 2000
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Resuming fglrx in kernel completed.
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] IRQ 46 Enabled
    Mar 28 10:10:36 localhost kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Mar 28 10:10:36 localhost kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Mar 28 10:10:36 localhost kernel: ata2.00: configured for UDMA/100
    Mar 28 10:10:36 localhost kernel: usb 2-1.3: reset low-speed USB device number 3 using ehci-pci
    Mar 28 10:10:36 localhost kernel: sdhci-pci 0000:07:00.0: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 28 10:10:36 localhost kernel: firewire_core 0000:07:00.3: rediscovered device fw0
    Mar 28 10:10:36 localhost kernel: usb 1-1.4: reset high-speed USB device number 3 using ehci-pci
    Mar 28 10:10:36 localhost kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Mar 28 10:10:36 localhost kernel: ata1.00: configured for UDMA/133
    Mar 28 10:10:36 localhost kernel: sd 0:0:0:0: [sda] Starting disk
    Mar 28 10:10:36 localhost kernel: PM: resume of devices complete after 2478.795 msecs
    Mar 28 10:10:36 localhost kernel: PM: Finishing wakeup.
    Mar 28 10:10:36 localhost kernel: Restarting tasks ... done.
    Mar 28 10:10:36 localhost kernel: video LNXVIDEO:00: Restoring backlight state
    Mar 28 10:10:36 localhost slim[806]: Conky: can't open /sys/class/power_supply/BAT0/uevent: No such file or directory
    Mar 28 10:10:36 localhost slim[806]: Conky: can't open /proc/acpi/battery/BAT0/state: No such file or directory
    Mar 28 10:10:36 localhost systemd-sleep[4208]: System resumed.
    Mar 28 10:10:36 localhost dbus-daemon[800]: dbus[800]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
    Mar 28 10:10:36 localhost dbus[800]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
    Mar 28 10:10:36 localhost su[4307]: (to root) root on none
    Mar 28 10:10:36 localhost su[4307]: pam_unix(su:session): session opened for user root by (uid=0)
    Mar 28 10:10:36 localhost systemd[1]: Starting Daemon for power management...
    Mar 28 10:10:36 localhost su[4307]: pam_unix(su:session): session closed for user root
    Mar 28 10:10:36 localhost su[4328]: (to root) root on none
    Mar 28 10:10:36 localhost su[4328]: pam_unix(su:session): session opened for user root by (uid=0)
    Mar 28 10:10:36 localhost su[4328]: pam_unix(su:session): session closed for user root
    Mar 28 10:10:36 localhost systemd[1]: Started Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Service sleep.target is not needed anymore. Stopping.
    Mar 28 10:10:36 localhost systemd[1]: Stopping Sleep.
    Mar 28 10:10:36 localhost systemd[1]: Stopped target Sleep.
    Mar 28 10:10:36 localhost systemd[1]: Starting Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Reached target Suspend.
    Mar 28 10:10:36 localhost systemd-logind[796]: Operation finished.
    Mar 28 10:10:36 localhost laptop-mode[4441]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4446]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost logger[4463]: ACPI action undefined: ACPI0003:00
    Mar 28 10:10:36 localhost laptop-mode[4501]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4509]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost laptop-mode[4534]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4539]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost laptop-mode[4554]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4557]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost laptop-mode[4562]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4563]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost dbus-daemon[800]: dbus[800]: [system] Successfully activated service 'org.freedesktop.UPower'
    Mar 28 10:10:36 localhost dbus[800]: [system] Successfully activated service 'org.freedesktop.UPower'
    Mar 28 10:10:36 localhost systemd[1]: Started Daemon for power management.
    Mar 28 10:10:37 localhost ntpd[1442]: Deleting interface #3 eth1, 192.168.1.6#123, interface stats: received=135, sent=135, dropped=1, active_time=4197 secs
    Mar 28 10:10:37 localhost ntpd[1442]: 149.156.70.60 interface 192.168.1.6 -> (none)
    Mar 28 10:10:37 localhost ntpd[1442]: 149.156.24.40 interface 192.168.1.6 -> (none)
    Mar 28 10:10:37 localhost ntpd[1442]: 46.250.172.2 interface 192.168.1.6 -> (none)
    Mar 28 10:10:37 localhost ntpd[1442]: peers refreshed
    Mar 28 10:10:38 localhost su[4624]: (to root) root on none
    Mar 28 10:10:38 localhost su[4624]: pam_unix(su:session): session opened for user root by (uid=0)
    Mar 28 10:10:38 localhost laptop-mode[4653]: Laptop mode
    Mar 28 10:10:38 localhost laptop-mode[4654]: enabled, active [unchanged]
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: carrier acquired
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: sending IPv6 Router Solicitation
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: rebinding lease of 192.168.1.6
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: acknowledged 192.168.1.6 from 192.168.1.1 `TP-LINK'
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: checking for 192.168.1.6
    Mar 28 10:10:38 localhost su[4624]: pam_unix(su:session): session closed for user root
    Mar 28 10:10:38 localhost su[4660]: (to root) root on none
    Mar 28 10:10:38 localhost su[4660]: pam_unix(su:session): session opened for user root by (uid=0)
    Mar 28 10:10:38 localhost su[4660]: pam_unix(su:session): session closed for user root
    Mar 28 10:10:38 localhost kernel: EXT4-fs (sda6): re-mounted. Opts: commit=0
    Mar 28 10:10:38 localhost kernel: EXT4-fs (sda7): re-mounted. Opts: commit=0
    Mar 28 10:10:38 localhost laptop-mode[4694]: Laptop mode
    Mar 28 10:10:38 localhost laptop-mode[4695]: enabled, active [unchanged]
    Mar 28 10:10:38 localhost logger[4698]: ACPI action undefined: ACPI0003:00
    Mar 28 10:10:38 localhost slim[806]: tint2 : invalid option "task_margin",
    Mar 28 10:10:38 localhost slim[806]: upgrade tint2 or correct your config file
    Mar 28 10:10:38 localhost slim[806]: tint2 : nb monitor 1, nb monitor used 1, nb desktop 1
    Mar 28 10:10:38 localhost slim[806]: X Error of failed request: BadWindow (invalid Window parameter)
    Mar 28 10:10:38 localhost slim[806]: Major opcode of failed request: 21 (X_ListProperties)
    Mar 28 10:10:38 localhost slim[806]: Resource id in failed request: 0x18000b0
    Mar 28 10:10:38 localhost slim[806]: Serial number of failed request: 12
    Mar 28 10:10:38 localhost slim[806]: Current serial number in output stream: 12
    Mar 28 10:10:40 localhost slim[806]: you have no weather alerts
    Mar 28 10:10:40 localhost slim[806]: processing complete
    Mar 28 10:10:40 localhost slim[806]: gathering data with curl
    Mar 28 10:10:40 localhost slim[806]: % Total % Received % Xferd Average Speed Time Time Time Current
    Mar 28 10:10:40 localhost slim[806]: Dload Upload Total Spent Left Speed
    Mar 28 10:10:40 localhost slim[806]: 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: (nil); Unknown error
    Mar 28 10:10:40 localhost slim[806]: not checking for alerts
    Mar 28 10:10:40 localhost slim[806]: curl attempt timed out, trying again
    Mar 28 10:10:40 localhost slim[806]: % Total % Received % Xferd Average Speed Time Time Time Current
    Mar 28 10:10:40 localhost slim[806]: Dload Upload Total Spent Left Speed
    Mar 28 10:10:40 localhost slim[806]: 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: (nil); Unknown error
    Mar 28 10:10:42 localhost dhcpcd[1435]: eth1: sending IPv6 Router Solicitation
    Mar 28 10:10:43 localhost dhcpcd[1435]: eth1: leased 192.168.1.6 for 259200 seconds
    Mar 28 10:10:45 dhcppc4 ntpd[1442]: Listen normally on 6 eth1 192.168.1.6 UDP 123
    Mar 28 10:10:45 dhcppc4 ntpd[1442]: peers refreshed
    Mar 28 10:10:45 dhcppc4 ntpd[1442]: new interface(s) found: waking up resolver
    Mar 28 10:10:45 dhcppc4 slim[806]: Traceback (most recent call last):
    Mar 28 10:10:45 dhcppc4 slim[806]: File "/home/rlk120/.scripts/gmail.py", line 9, in <module>
    Mar 28 10:10:45 dhcppc4 slim[806]: msg=temp.read()
    Mar 28 10:10:45 dhcppc4 slim[806]: File "/usr/lib/python3.3/encodings/ascii.py", line 26, in decode
    Mar 28 10:10:45 dhcppc4 slim[806]: return codecs.ascii_decode(input, self.errors)[0]
    Mar 28 10:10:45 dhcppc4 slim[806]: UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position 375: ordinal not in range(128)
    Mar 28 10:10:45 dhcppc4 slim[806]: not checking for alerts
    Mar 28 10:10:45 dhcppc4 slim[806]: curl attempt timed out, trying again
    Mar 28 10:10:45 dhcppc4 slim[806]: % Total % Received % Xferd Average Speed Time Time Time Current
    Mar 28 10:10:45 dhcppc4 slim[806]: Dload Upload Total Spent Left Speed
    Mar 28 10:10:46 dhcppc4 slim[806]: [234B blob data]
    Mar 28 10:10:46 dhcppc4 dhcpcd[1435]: eth1: sending IPv6 Router Solicitation
    Mar 28 10:10:50 dhcppc4 dhcpcd[1435]: eth1: sending IPv6 Router Solicitation
    Mar 28 10:10:50 dhcppc4 dhcpcd[1435]: eth1: no IPv6 Routers available
    Mar 28 10:11:03 dhcppc4 slim[806]: No protocol specified
    Mar 28 10:11:03 dhcppc4 slim[806]: (chromium:4750): Gtk-WARNING **: cannot open display: :0.0
    Mar 28 10:11:31 dhcppc4 systemd-logind[796]: System is rebooting.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Sound Card.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Sound Card.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Daemon for power management...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Authorization Manager...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Graphical Interface.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Graphical Interface.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Multi-User.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Multi-User.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping ACPI event daemon...
    Mar 28 10:11:32 dhcppc4 ntpd[1442]: ntpd exiting on signal 15
    Mar 28 10:11:32 dhcppc4 acpid[793]: exiting
    Mar 28 10:11:32 dhcppc4 dhcpcd[4810]: sending signal 1 to pid 1435
    Mar 28 10:11:32 dhcppc4 dhcpcd[4810]: waiting for pid 1435 to exit
    Mar 28 10:11:32 dhcppc4 dhcpcd[1435]: received SIGHUP, releasing
    Mar 28 10:11:32 dhcppc4 dhcpcd[1435]: eth1: releasing lease of 192.168.1.6
    Mar 28 10:11:32 dhcppc4 dhcpcd[1435]: eth1: removing interface
    Mar 28 10:11:33 dhcppc4 slim[806]: Conky: received SIGHUP or SIGUSR1. reloading the config file.
    Mar 28 10:11:33 dhcppc4 slim[806]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
    Mar 28 10:11:33 dhcppc4 slim[806]: after 200200 requests (200197 known processed) with 0 events remaining.
    Mar 28 10:11:33 dhcppc4 slim[806]: Conky: received SIGHUP or SIGUSR1. reloading the config file.
    Mar 28 10:11:33 dhcppc4 slim[806]: XIO: fatal IO error 4 (Interrupted system call) on X server ":0.0"
    Mar 28 10:11:33 dhcppc4 slim[806]: after 226 requests (226 known processed) with 0 events remaining.
    Mar 28 10:11:33 dhcppc4 slim[806]: real transparency off.... depth: 24
    Mar 28 10:11:33 dhcppc4 slim[806]: xRandr: Found crtc's: 4
    Mar 28 10:11:33 dhcppc4 slim[806]: xRandr: Linking output LVDS with crtc 0
    Mar 28 10:11:33 dhcppc4 slim[806]: real transparency off.... depth: 24
    Mar 28 10:11:33 dhcppc4 slim[806]: xRandr: Found crtc's: 4
    Mar 28 10:11:33 dhcppc4 slim[806]: xRandr: Linking output LVDS with crtc 0
    Mar 28 10:11:33 dhcppc4 slim[806]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
    Mar 28 10:11:33 dhcppc4 slim[806]: after 534585 requests (534585 known processed) with 0 events remaining.
    Mar 28 10:11:33 dhcppc4 slim[806]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
    Mar 28 10:11:33 dhcppc4 slim[806]: after 163909 requests (163909 known processed) with 0 events remaining.
    Mar 28 10:11:33 dhcppc4 slim[806]: you have no weather alerts
    Mar 28 10:11:33 dhcppc4 slim[806]: processing complete
    Mar 28 10:11:33 dhcppc4 kernel: cfg80211: Calling CRDA to update world regulatory domain
    Mar 28 10:11:33 dhcppc4 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
    Mar 28 10:11:33 dhcppc4 netcfg-daemon[4777]: :: siec_domowa down [done]
    Mar 28 10:11:33 dhcppc4 slim[806]: Server terminated successfully (0). Closing log file.
    Mar 28 10:11:33 dhcppc4 laptop-mode[4865]: Laptop mode
    Mar 28 10:11:33 dhcppc4 laptop-mode[4866]: enabled, active [unchanged]
    Mar 28 10:11:34 dhcppc4 systemd[1]: slim.service: main process exited, code=exited, status=1/FAILURE
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped SLiM Simple Login Manager.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Unit slim.service entered failed state
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Permit User Sessions...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Permit User Sessions.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Basic System.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target Basic System.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Dispatch Password Requests to Console Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Forward Password Requests to Wall Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Daily Cleanup of Temporary Directories.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Daily Cleanup of Temporary Directories.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Sockets.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target Sockets.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping LVM2 metadata daemon socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed LVM2 metadata daemon socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Device-mapper event daemon FIFOs.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed Device-mapper event daemon FIFOs.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Syslog Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed Syslog Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping ACPID Listen Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed ACPID Listen Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping D-Bus System Message Bus Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed D-Bus System Message Bus Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping System Initialization.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target System Initialization.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Load Kernel Modules...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Load Kernel Modules.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Apply Kernel Variables...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Apply Kernel Variables.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Setup Virtual Console...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Setup Virtual Console.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Set Up Additional Binary Formats...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Set Up Additional Binary Formats.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Encrypted Volumes.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Encrypted Volumes.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Swap.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Swap.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounting /home...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounting /tmp...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remote File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Remote File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounted /tmp.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounted /home.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remount Root and Kernel File Systems...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Remount Root and Kernel File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Save Random Seed...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Update UTMP about System Shutdown...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Save Random Seed.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Update UTMP about System Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Reboot...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Shutting down.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Hardware watchdog 'iTCO_wdt', version 0
    Mar 28 10:11:35 dhcppc4 systemd[1]: Set hardware watchdog to 10min.
    Mar 28 10:11:35 dhcppc4 kernel: watchdog watchdog0: watchdog did not stop!
    Mar 28 10:11:35 dhcppc4 systemd-journal[131]: Journal stopped
    Somebody probably find interesting things in this code.
    And here is some fail slim:
    # journalctl /usr/lib/systemd/systemd --since=today
    -- Logs begin at Mon 2012-09-10 20:20:07 CEST, end at Thu 2013-03-28 10:37:18 CET. --
    Mar 28 10:10:36 localhost systemd[1]: Time has been changed
    Mar 28 10:10:36 localhost systemd[1]: systemd-tmpfiles-clean.timer: time change, recalculating next elapse.
    Mar 28 10:10:36 localhost systemd[1]: Starting Daemon for power management...
    Mar 28 10:10:36 localhost systemd[1]: Started Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Service sleep.target is not needed anymore. Stopping.
    Mar 28 10:10:36 localhost systemd[1]: Stopping Sleep.
    Mar 28 10:10:36 localhost systemd[1]: Stopped target Sleep.
    Mar 28 10:10:36 localhost systemd[1]: Starting Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Reached target Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Started Daemon for power management.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Sound Card.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Sound Card.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Daemon for power management...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Authorization Manager...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Graphical Interface.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Graphical Interface.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Multi-User.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Multi-User.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping ACPI event daemon...
    Mar 28 10:11:34 dhcppc4 systemd[1]: slim.service: main process exited, code=exited, status=1/FAILURE
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped SLiM Simple Login Manager.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Unit slim.service entered failed state
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Permit User Sessions...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Permit User Sessions.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Basic System.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target Basic System.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Dispatch Password Requests to Console Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Forward Password Requests to Wall Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Daily Cleanup of Temporary Directories.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Daily Cleanup of Temporary Directories.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Sockets.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target Sockets.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping LVM2 metadata daemon socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed LVM2 metadata daemon socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Device-mapper event daemon FIFOs.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed Device-mapper event daemon FIFOs.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Syslog Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed Syslog Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping ACPID Listen Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed ACPID Listen Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping D-Bus System Message Bus Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed D-Bus System Message Bus Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping System Initialization.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target System Initialization.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Load Kernel Modules...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Load Kernel Modules.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Apply Kernel Variables...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Apply Kernel Variables.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Setup Virtual Console...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Setup Virtual Console.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Set Up Additional Binary Formats...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Set Up Additional Binary Formats.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Encrypted Volumes.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Encrypted Volumes.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Swap.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Swap.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounting /home...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounting /tmp...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remote File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Remote File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounted /tmp.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounted /home.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remount Root and Kernel File Systems...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Remount Root and Kernel File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Save Random Seed...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Update UTMP about System Shutdown...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Save Random Seed.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Update UTMP about System Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Reboot...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Shutting down.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Hardware watchdog 'iTCO_wdt', version 0
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remount Root and Kernel File Systems...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Remount Root and Kernel File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Save Random Seed...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Update UTMP about System Shutdown...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Save Random Seed.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Update UTMP about System Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Reboot...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Shutting down.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Hardware watchdog 'iTCO_wdt', version 0
    Mar 28 10:11:35 dhcppc4 systemd[1]: Set hardware watchdog to 10min.
    Last edited by xorgx3 (2013-03-28 10:52:08)

  • Strange Behavior with gMSA in Server 2012 R2

    Greetings,
    I have been doing some testing with gMSA Accounts in a Server 2012 R2 environment (two separate environments, actually), and I have noticed something very strange that occurred in both environments, which does not appear to be occurring in one of our customer's
    self-managed environments.
    We created a Group Managed Service Account using the following article:
    http://blogs.technet.com/b/askpfeplat/archive/2012/12/17/windows-server-2012-group-managed-service-accounts.aspx
    Everything went smoothly, and the account installs/tests successfully on both of the hosts that we are testing on. I am able to set my services to run under the account, and most of them appear to work fine. I am having some issues with a few of my services,
    and I believe that the strange behavior I am seeing may have something to do with this - described below: 
    As soon as I set the service's Log On Account (via the Log On Tab under the Service's Properties), the entirety of the "Log On" tab changes to "greyed out," and I am unable to change the Log On account back via the GUI (Screenshot
    attached).
    I found that I am able to successfully change the account via Command Line using sc.exe, but the Log On tab remains greyed out! So far, I have found nothing to remedy this, but confirmed that it happens for any service I set to use the gMSA as the Logon
    Account, and that it happens in 2 separate test environments, but not in a Customer's production environment - very strange.
    All servers in this environment are running Server 2012 R2, and domain Functional Level is currently Server 2012.
    I have been unable to find any information online about this behavior, so I am hoping someone has seen this before, and can explain why this is happening.
    Nick

    VIvian,
    Yes, we used the Install-AdServiceAccount gMSA command on each host using the gMSA account, and then ran Test-AdServiceAccount gMSA, which returned "True."
    However, one thing I noticed is that if I run Test-ADServiceAccount gMSA as a Local Administrator, it fails with the following:
    PS C:\Users\Administrator> Test-AdServiceAccount gMSA$
    Test-AdServiceAccount : The server has rejected the client credentials.
    At line:1 char:1
    + Test-AdServiceAccount gMSA$
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : SecurityError: (:) [Test-ADServiceAccount], AuthenticationException
        + FullyQualifiedErrorId : ActiveDirectoryCmdlet:System.Security.Authentication.AuthenticationException,Microsoft.A
       ctiveDirectory.Management.Commands.TestADServiceAccount
    If I run Test-ADServiceAccount gMSA as Domain Administrator, it returns true:
    PS C:\Users\Administrator.<domainname>> Test-AdServiceAccount gMSA$
    True
    Is this normal?
    Overall, I think the issue I am running into is at the Application Level, and not a problem with the gMSA, as it appears to be working. (Can Start/Stop services without any issues). I will be investigating my issue further with 3rd-party vendors, unless
    you think there is something wrong with my gMSA accounts based on the information I have provided.
    Nick

  • Report FP_TEST_00 - Strange behavior

    Hello Gurus,
    A strange behavior with report FP_TEST_00 occurs:
    SA38 --> FP_TEST_00 --> select a device --> execute --> print preview then and error or popup is show:
    Adobe Reader
    Error initializing the font server module
    Then the SAP GUI is closed, I check the ST22 and no dump is generated and in transaction SM21 only appear:
    DP  Q0  4 Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    DP  Q0  I Operating system call recv failed (error no. 232 )
    The #1 log entry: *
    Details Page 2 Line 28 System Log: Local Analysis of sapdev                   1
    Time     Type Nr Clt User TCode Grp N Text
    11:37:20 DP                     Q0  4 Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    Details
    Recording at local and central time........................ 25.02.2010 11:37:20
    Task...... Process    User...... Terminal Session TCode Program Cl Problem cl         Package
    11092      Dispatcher                                           K  SAP Web AS Problem STSK
    Further details for this message type
    Module nam Line Error text..........              Caller.... Reason/cal
    dpxxdisp   1223 551  ADMIN       86  HUSVP-SAP-BA DpRTmPr    NiBufRe
    Documentation for system log message Q0 4 :
    The SAP Dispatcher (part of the application server) has lost the
    connection to a terminal process.  For example, this happens when the
    terminal program (GUI) terminates without correctly logging off the
    application server.  More detailed information about the error
    context is not available here.
    Technical details
    File Offset RecFm System log type             Grp N variable message data
       21 254340 m     Error (Function,Module,Row) Q0  4 551  ADMIN       86  HUSVP-SAP-BA     DpRTmPrNiBufRedpxxdisp1223
    The #2 Log show: *
    Details Page 2 Line 29 System Log: Local Analysis of sapdev                   1
    Time     Type Nr Clt User TCode Grp N Text
    11:37:20 DP                     Q0  I Operating system call recv failed (error no. 232 )
    Operating system call recv failed (error no. 232 )
    Details
    Recording at local and central time........................ 25.02.2010 11:37:20
    Task...... Process    User...... Terminal Session TCode Program Cl Problem cl         Package
    11092      Dispatcher                                           K  SAP Web AS Problem STSK
    Further details for this message type
    Module nam Line Error text        Caller.... Reason/cal
    nixxi.cp   4435           recv232 NiIRead    recv
    Documentation for system log message Q0 I :
    The specified operating system call was returned with an error.
    For communication calls (receive, send, etc) often the cause of errors
    are network problems.
    It could also be a configuration problem at operating system level.
    (file cannot be opened, no space in the file system etc.).
    Additional specifications for error number 232
    Name for errno number ECONNRESET
    No documentation available for error ECONNRESET
    Technical details
    File Offset RecFm System log type             Grp N variable message data
      21 254520 m     Error (Function,Module,Row) Q0  I           recv232                     NiIReadrecv   nixxi.cp4435
    Edited by: Hernando Polania Cadena on Feb 25, 2010 8:36 PM

    Hello All,
    I applied the solution in page
    http://wiki.sdn.sap.com/wiki/display/PLM/Adobe%209%20-%20SAPGUI%20crash
    Works OK
    Thanks
    Hernando

  • WD Service Call ABAP program generation error in 2004s

    Hi,
    I create a 'service call' by using the wizard and I select my existing 'component controller' as a controller. The service type I use is a (custom) function module. The function module has 1 import parameter, an export structure and 6 tables.
    In the 'adapt context' step I choose all fields and structures to be stored in the context. Then I generate the code.
    After generating the code there is a syntax error in the code of the created method. The method code under comment 'store output to context' binds the rfc structure to the context BUT it seems to think that it is a table instead of a structure.
    the code:
    node_Contract->bind_Structure(Stru_C_Contract[] )
    Of course I can remove the '[]' signs manually but I think it is strange that the wizard produces wrong code.
    Please let me know if this is a bug or something else.

    Values in variants are not converted.  You can use the same variant in your ABAP program, but you need to change the value in the parameter for logical system in each system you transport the change to.  The only alternative is to create a logical system name in SM59 that is the same in all your BW systems but it refers to the local R/3 system.
    In other words, you will have two logical systems in your BWD system pointing to your R/3 Dev.  Let's call them R3DCLNT100 and R3SYSTEM, where R3DCLNT100 is also the source system (in RSA1).  You can use R3SYSTEM in your variant for your ABAP program.  In your BWQ (test system), you will have two logical systems also, R3QCLNT100 and R3SYSTEM, where R3QCLNT100 is also your source system.
    Does this help.

  • Connection Reset while making http web service call to remote server

    Hello guys,
    Our environment details are as follows:
    WebLogic version: 10.3.3
    Cluster: yes
    Database: Oracle
    Web service server: Remote application
    When our WebLogic server makes a http Web service call to another remote application which runs on IIS server for creating a record. The record gets created in remote application but WebLogic server log says java.net.SocketException: Connection reset and the same record doesn't get created in WebLogic application. We have confirmed that remote application is running and it is behaving as expected. Also, we installed web service client on our WebLogic machine just to isolate any network related issues, when we make a same request through this client it works fine and we get answer. At this point in time, it looks like it could be WebLogic or application which is behaving goofy. we are running out of ideas, it would be nice if someone have any thoughts on it like turning on any flags or any other troubleshooting steps. Please, let me know.
    Here is the stack trace:
    ####<Sep 18, 2011 12:31:40 AM MDT> <Info> <com.blah.blah> <server1> <WLSserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Defaul
    t (self-tuning)'> <user> <BEA1-69D606DA85BDB1A0A7D5> <> <1316327500388> <BEA-000000> <ERROR com.blah.blah - Error during creating a order remoteappja
    va.net.SocketException: Connection reset
    com.sun.jersey.api.client.ClientHandlerException: java.net.SocketException: Connection reset
    at com.sun.jersey.api.client.Client.handle(Client.java:569)
    at com.sun.jersey.api.client.WebResource.handle(WebResource.java:556)
    at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:69)
    at com.sun.jersey.api.client.WebResource$Builder.get(WebResource.java:451)
    Caused by: java.net.SocketException: Connection reset
    at java.net.SocketInputStream.read(SocketInputStream.java:173)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
    at weblogic.net.http.MessageHeader.isHTTP(MessageHeader.java:220)
    at weblogic.net.http.MessageHeader.parseHeader(MessageHeader.java:143)
    at weblogic.net.http.HttpClient.parseHTTP(HttpClient.java:462)
    at weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:364)
    at weblogic.net.http.SOAPHttpURLConnection.getInputStream(SOAPHttpURLConnection.java:37)
    at weblogic.net.http.HttpURLConnection.getResponseCode(HttpURLConnection.java:952)
    at com.sun.jersey.client.urlconnection.URLConnectionClientHandler._invoke(URLConnectionClientHandler.java:215)
    at com.sun.jersey.client.urlconnection.URLConnectionClientHandler.handle(URLConnectionClientHandler.java:126)
    ... 58 more
    >
    thanks a lot for your help in advance
    Regards,

    Here's what the issue was for us:
    When the web service was initializing, Weblogic? was trying to retrieve the WSDL first before initializing the service.
    Though the web service URL was proper, the WSDL itself was unresolvable. This led to this strange connection reset error.
    So, if you're experiencing this consistently, check your WSDL URL.
    We used "strace" to discover this problem by running it for a brief time while the web service initialization was attempted - and it very clearly showed that the code was attempting to laod something from a bogus address / IP

  • Unable to create the service call usage entry. Exception details: System.ObjectDisposedException: Message is closed.

    Hello Community
    my ULS-logs are flooded with entries like
    w3wp.exe SharePoint Foundation Topology ajczh High Unable to create the service call usage entry. Exception details: System.ObjectDisposedException: Message is closed. at System.ServiceModel.Channels.BufferedMessage.get_Headers() at Microsoft.SharePoint.Administration.SPServiceCallUsageEntry.Create(Message message) at Microsoft.SharePoint.SPServiceContextBehavior.System.ServiceModel.Dispatcher.IClientMessageInspector.BeforeSendRequest(Message& request, IClientChannel channel)
    Searching for solutions did not succeed, as the EventID of ajczh is not found on the web. Anyone had this problem already?
    Best Regards
    Michael

    Hi Linda
    thanks a lot for help.
    I modified the ULS-logging to include verbose entries. The problem is correlated to Excel Services, which are functioning quite well on our side. Our Topology consists of an application server, 2 WFE and an office app server. We are using the BI features
    of PowerPivot via an additional BI-SQL-server in SharePoint-mode.
    Right before the strange entry in the logs we are getting these:
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Web Front End 145c Verbose ServerSession.ExecuteWithSecurityContext: Before issuing a new request to server http://XXXXX028:32843/[guid]/ExcelService*.asmx ServerRequestCount: 1, AllServersRequestCount: 2, workerThreads: 395, completionPortThreads: 400
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Web Front End 8k3v Verbose ServerInfo.AcquireHealthCheckPriviliges: Acquired HealthCheck priviliges for server 'http://XXXXX028:32843/[guid]/ExcelService*.asmx'
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Excel Calculation Services d51n Medium MossHost.GetEndpointAddress: Server endpoint Uri: http://XXXXX028:32843/[guid]/ExcelService.asmx.
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Excel Calculation Services d51b Verbose MossHost.CreateServiceChannel<IExcelServiceSoap>: About to create service channel in Claims mode.
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Excel Calculation Services d51c Verbose MossHost.CreateServiceChannel<IExcelServiceSoap>: Service channel created.
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Web Front End abpw Verbose ServerSession.GetHealthScoreCallback: About to send a GetHealthScore call to server http://XXXXX028:32843/[guid]/ExcelService*.asmx
    02.26.2014 10:42:45.02 w3wp.exe SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://XXXXX028:32843/[guid]/ExcelService.asmx' Channel: 'Microsoft.Office.Excel.Server.CalculationServer.Proxy.IExcelServiceSoap' Action: 'http://schemas.microsoft.com/office/Excel/Server/WebServices/ExcelServerInternalService/ExcelServiceSoap/GetHealthScore' MessageId: 'urn:uuid:61212e7d-cf02-41ad-9876-2adf17ec2807'
    02.26.2014 10:42:45.02 w3wp.exe SharePoint Foundation Topology ajczh High Unable to create the service call usage entry. Exception details: System.ObjectDisposedException: Message is closed. at System.ServiceModel.Channels.BufferedMessage.get_Headers() at Microsoft.SharePoint.Administration.SPServiceCallUsageEntry.Create(Message message) at Microsoft.SharePoint.SPServiceContextBehavior.System.ServiceModel.Dispatcher.IClientMessageInspector.BeforeSendRequest(Message& request, IClientChannel channel)
    that's it, unfortunately. These entries are repeating every 15 seconds.
    Best Regards
    Michael

  • Strange Behavior connecting to Oracle

    Hi to All,
    On Server Windows 2003 I have installed Oracle 10g R2. On this Server run Toad for Oracle.
    If I run Oracle console, all work fine; running Toad the ORA-12154 error is displayed.
    I have tried to connect to DB with Toad from a client and all works.
    Have someone an idea on this strange behavior ?
    Thank You and Best Regards
    Gaetano

    This may be a problem?NO!
    12154, 00000, "TNS:could not resolve the connect identifier specified"
    // *Cause:  A connection to a database or other service was requested using
    // a connect identifier, and the connect identifier specified could not
    // be resolved into a connect descriptor using one of the naming methods
    // configured. For example, if the type of connect identifier used was a
    // net service name then the net service name could not be found in a
    // naming method repository, or the repository could not be
    // located or reached.
    // *Action:
    //   - If you are using local naming (TNSNAMES.ORA file):
    //      - Make sure that "TNSNAMES" is listed as one of the values of the
    //        NAMES.DIRECTORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA)
    //      - Verify that a TNSNAMES.ORA file exists and is in the proper
    //        directory and is accessible.
    //      - Check that the net service name used as the connect identifier
    //        exists in the TNSNAMES.ORA file.
    //      - Make sure there are no syntax errors anywhere in the TNSNAMES.ORA
    //        file.  Look for unmatched parentheses or stray characters. Errors
    //        in a TNSNAMES.ORA file may make it unusable.
    //   - If you are using directory naming:
    //      - Verify that "LDAP" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Verify that the LDAP directory server is up and that it is
    //        accessible.
    //      - Verify that the net service name or database name used as the
    //        connect identifier is configured in the directory.
    //      - Verify that the default context being used is correct by
    //        specifying a fully qualified net service name or a full LDAP DN
    //        as the connect identifier
    //   - If you are using easy connect naming:
    //      - Verify that "EZCONNECT" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Make sure the host, port and service name specified
    //        are correct.
    //      - Try enclosing the connect identifier in quote marks.
    //   See the Oracle Net Services Administrators Guide or the Oracle
    //   operating system specific guide for more information on naming.This error is clear.
    SQL*Net is being asked to resolved TNS_ALIAS & it reports that it can not find the requested name.
    EITHER
    1) the requested name is not correct
    or
    2) SQL*Net is looking in the wrong tnsnames.ora file & still not finding the requested name.
    Good Luck solving your mystery

  • I get a strange behavior of the tab bar and of the location bar in Firefox 29.0 for Mac.

    I have just installed Firefox 29.0 for Mac.
    I get a strange behavior of the tab bar and of the location bar with this new version.
    Instead of the location bar, I get two rows of symbols. And it's impossible to write anything in the location bar.
    (I'd like to add a screenshot, but I cannot find a way to do it.)

    Thank you for your tip.
    I found the culprit: it was an extension called RSS Icon 1.0.6.
    I removed it and now Firefox 29.0 is working perfectly.
    Now I'll have to find a replacement for that extension.
    Thank you once again. Your tip was essential.

  • Strange behavior in HTMLDB

    Greetings,
    We've been running HTMLDB since 1.5 and are currently at 2.2.1.00.04, but within the last two weeks we have been seeing some very strange behavior. Form submissions or moving from one page to the next in either the Development GUI or within any application will result in either blank pages (although in most cases a reload [refresh] will bring up the page that was expected) or the following errors:
    Error Workspace 741023382320307 has no privileges to parse as schema.
    or
    Access denied by Application security check (this one will only allow us to logout, refresh doesnt work).
    or
    ORA-0000: normal, successful completion
    Error Unable to fetch authentication_scheme in application 4000. (a refresh brings the page up normally)
    We've made no major changes to hardware/operating system/software.
    We have ruled out our load balancer by accessing htmldb by FQDN and port number, and have disabled webcache. Its almost as if our session variables in memory will just suddenly disappear.
    [EDIT]
    These pages and errors are absolutely random. I could experience 20 of them in an hour or 1 in the next week. We have done extensive log checking, but can find nothing that would explain the behavior.
    [EDIT]
    Has anyone experienced these issues. We are currently running a number of applications in production and this is already starting to affect them.
    Thanks in Advance,
    Clifford Moon
    Message was edited by:
    cjmoon
    Message was edited by:
    cjmoon

    Hi Earl.
    I just confirmed from one of the developers that it
    happens either way...
    Any ideas?
    cliffDid you happen to change browsers recently, like IE7 perhaps?
    I'm not really sure what's happening but this sounds like what I call 'browser confusion'. Basically, like what you mentioned, that the current session state gets dropped, either in the browser or the server. Don't know which.
    Earl

  • Strange behavior in updating and standbying

    Hi,
    In the last 4 weeks I've been facing some strange behavior from my iPhone 4. First, sometimes when I pick it up its screen is already on (dimmed) and showing the lock screen (with some elements missing though). Secondly, and more annoying yet, when I try to update the apps via app store the initial process occurs normally but after loading the first app it begins installing it and keeps in it forever. I have to soft reset the phone. After that, the app (that kept installing) seems ok. So, I repeat the process of update from the beginning (app after app).
    I've already tried to hard reset the device without any luck with any of the problems. Any suggestions about what is going on?
    Thanks
    Adriano

    Hi,
    I'm not clear on the distinction you're making for type of access.
    Well, to be honest, now that I've re-read that this morning I'm not completely sure what I had in mind either. I think I was thinking about using the collection in what I believe the documentation calls "slices". However, given the other information you've posted it doesn't seem like that would be a feasible alternative in any case.
    I understand what you mean about varray and nested-table with the upper-bound limit for the varray's... I've not actually compared the two for performance so my idea that there may be a difference could be completely incorrect. Beyond that, creating code that only works in batches (or slices) may be less performant than what you currently have.
    I hope I've not detracted from the thread and maybe someone else with more experience will have an "ah ha!" sort of observation.
    Regards,
    Mark

Maybe you are looking for