CFolders Thumbnails strange behavior on calling an refreshing a site

I'm trying to use Thumbnails in cFolder Objects or Folders, but they behave strange when using IE6
When loading a site with Thumbnails, it seems that it lasts very long to load the Thumbs. For example, a site with 3Thumbnails shows them after 2Minutes. If i klick "Stop" or choose a link, the pics appear after earlier. What can i do to solve that?
This behavior can not be reproduced in FireFox!

During the LOGOUT of cFolders too you might face a similar problem.
NOTE: 986073 suggest a way to handle this.
-Murugesh

Similar Messages

  • Strange behavior in apps/monitor refreshing after theme installation

    Good times of the day everyone!
    I'm very new to archlinux and ArchLinux community (as you can see, this is my 1st post here).
    I use dwm and was playing around with themes.
    I found a GTK Theme - Moka which really suited my taste and installed it.
    But for some reason, after the installation, applications started showing stuff strangely (or maybe monitor refreshing is going strange, i don't really have an idea of what's happening).
    -Change in behavior of applications
    ---Midori:
    ------ Every time i switch between tags, strange big black box appears on the page. To get rid of it I have to scroll down-n-back the page;switch back-n-forth between workspaces; select all and deselect all in the page; click to adress bar.
    ------ When Opening links/sites|Refreshing the pages - big black box shows up and goes away/sometimes doesn't go away.
    ---Pidgin:
    ------ Every time I receive a new message, the text turns into a box of strange mix of colors
    Here are the pictures:
    Would appreciate it if anybody would help me to solve this problem.
    Last edited by theimpaler (2010-03-07 08:54:12)

    Update:
    I've noticed one more strange thing, in Midori if I have only one tab opened, no black box appears.
    EDIT:
    Never mind.. I guess it was the error in theme itself.
    Last edited by theimpaler (2010-03-07 12:07:23)

  • Strange behavior - icon thumbnail instead of image - CC@OSX10.10

    Hi,
    my CC (@OS X 10.10.3) showing a strange behavior using vanishing point filter.
    After defining grid and try to paste the image OS X paste the icon thumbnail instead of the image,
    Many thanks in advance!!
    br
    Joachim

    It is probably related to the fact that you are setting the tables row height in the renderer this will fire a render message when the height changes. One height is applied to all rows of a table. This means that is you have images of different heights you are continually changing the tables row height and therefore continually rendereing.
    My approach would be to have all the images fit into a set size ( say 64*64 ( with scaling if neccesary ) you could then have a popup show the full size image if required.

  • 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

  • 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 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 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

  • JDEV Team: Strange behavior in TOMCAT using DATATAGS (VERY CRITICAL)

    I am encountering some strange behavior when I deploy my application to TOMCAT.
    If I run in JDeveloper (webtogo) everything works fine but the behavior changes completely in TOMCAT.
    Let me try and explain my situation here.
    I have 3 jsps :
    1.iss_listApps.jsp which is used to browse all the available records, allows the user to navigate to a specific record and edit or delete.
    2. app_edit.jsp which is used to edit/delete a specific row passed from iss_listApps.jsp.
    3. app_edit_post.jsp which is used to save the changes.
    Note that I use an anchor ">Edit</a> to pass a row from the browser page to the edit page.
    For your convenience I have listed all the source files below.
    Now here are my problems:
    Problem 1. If I run it in JDeveloper, I am able to browse the records and go to a specific record to edit and delete by clicking on the "Edit" anchor provided in the browser page.
    I can also go to the edit page and backout out of it by not saving the changes. In that case I am back in my browser page and I can again click on the "Edit" anchor to a specific record.
    However if I am in TOMCAT, I am able to browse and go to a specific record so long as I make changes to it and save it. If for any reason, I do not save a record and I go back to my browser
    page then any subsequent calls to to edit a specific record goes to the same OLD RECORD that I did not save.
    I fail to understand why? Maybe the "webtogo" server automatically refreshes when I click on the "back tab". If so, how do I automatically refresh a jsp page when I click on the "back tab" in TOMCAT.
    I would sincerely appreciate any help on this.
    Problem 2. I have an include jsp tag in my browser page. defined as
    <jsp:include page="Message.jsp" flush="true">
    <jsp:param name="colspan" value="2"/>
    </jsp:include>.
    This section of the code is currently commented out because if I uncomment it then it runs ok in JDeveloper but in Tomcat it causes the browser page to always navigate to the first record if I want to edit a specific record.
    I would sincerely appreciate any answer on this.
    Here are my source files:
    1. iss_ListApps.jsp (browser page). Please see how the anchor is formed. It causes no problems
    in JDeveloper.
    <%@ page contentType="text/html;charset=WINDOWS-1252"%>
    <HTML>
    <base target="contentsframe">
    <head>
    </head>
    <body>
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <jbo:ApplicationModule id="NewBC4J.NewBC4JModule" configname="NewBC4J.NewBC4JModule.NewBC4JModuleLocal" username="issue" password="issue"/>
    <jbo:RollBack appid="NewBC4J.NewBC4JModule" />
    <jbo:DataSource id="app_vo" appid="NewBC4J.NewBC4JModule" viewobject="ApplicationsView" ></jbo:DataSource>
    <jbo:RefreshDataSource datasource="app_vo" />
    <table width="100%" bgcolor="tan" border="0" align="center" cellpadding="3" cellspacing="0">
    <%--
    <jsp:include page="Message.jsp" flush="true">
    <jsp:param name="colspan" value="2"/>
    </jsp:include> --%>
    <form name="list" target="body" action="app_edit.jsp" method="post">
    <tr><th colspan="4">List of Valid Applications</th></tr>
    <tr>
    <th> </th>
    <th align="left"><u>Code</u></th>
    <th align="left"><u>Name</u></th>
    <th align="left"><u>Description</u></th>
    </tr>
    <tr>
    <jbo:RowsetIterate datasource="app_vo">
    <td>
    <a href="app_edit.jsp?RowKeyValue=<jbo:ShowValue datasource="app_vo" dataitem="RowKey"/>">Edit</a>
    </td>
    <td>
    <jbo:ShowValue datasource="app_vo" dataitem="Code" />
    </td>
    <td>
    <jbo:ShowValue datasource="app_vo" dataitem="Name" />
    </td>
    <td>
    <jbo:ShowValue datasource="app_vo" dataitem="A ppDesc" />
    </td>
    </tr>
    </jbo:RowsetIterate>
    </form>
    </table>
    <table width="100%" bgcolor="skyblue" align="center" cellpadding="10" cellspacing="0" >
    <tr>
    <form NAME="AddForm" action="app_add.jsp">
    <td>
    <input type = "submit" name="submit" value="Add" align="center" >
    </td>
    </form>
    </tr>
    </table>
    </body>
    <jbo:ReleasePageResources releasemode="Stateful" appid="NewBC4J.NewBC4JModule" />
    </html>
    2. Second Source File: app_edit.jsp (Allows editing of a record)
    <%@ page contentType="text/html;charset=WINDOWS-1252"%>
    <HTML>
    <base target="contentsframe">
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=WINDOWS-1252">
    <META NAME="GENERATOR" CONTENT="Oracle JDeveloper">
    <TITLE>
    </TITLE>
    </HEAD>
    <BODY>
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <jbo:ApplicationModule id="NewBC4J.NewBC4JModule" configname="NewBC4J.NewBC4JModule.NewBC4JModuleLocal" />
    <jbo:DataSource id="app_vo" appid="NewBC4J.NewBC4JModule" viewobject="ApplicationsView" />
    <jbo:Row id="myrow" datasource="app_vo" rowkeyparam="RowKeyValue" action="Find">
    <jbo:SetAttribute dataitem="*"/>
    </jbo:Row>
    <table width="100%" bgcolor="skyblue" border="0" align="center">
    <tr>
    <td>
    <table width="100%" bgcolor="tan" border="0" align="center" cellpadding="3" cellspacing="0">
    <form NAME="iForm" action="app_edit_post.jsp">
    <tr>
    <th colspan="2">
    "Edit/Delete Applications"
    </th>
    </tr>
    <jsp:include page="Message.jsp" flush="true">
    <jsp:param name="colspan" value="2"/>
    </jsp:include>
    <tr>
    <td align="right"><b><font color="red"> Name:</font></b></td>
    <td> <jbo:InputText datasource="app_vo" dataitem="Name" cols="50" />
    </td>
    </tr>
    <tr>
    <td align="Right"><b><font color="red"> Description: </font></b></td>
    <td> <jbo:InputTextArea datasource="app_vo" dataitem="AppDesc" cols="50" rows="5" />
    </td>
    </tr>
    </table>
    <!-- Create a table for the save and Delete Buttons -->
    <table width="100%" bgcolor="skyblue" align="center" cellpadding="10" cellspacing="0" >
    <tr>
    <input name="RowKeyValue" type="hidden" value="<jbo:ShowValue datasource="app_vo" dataitem="RowKey"/>" />
    <td>
    <input type = "submit" name="submit" value="Save">
    </td>
    </form>
    <form NAME="DelForm" action="app_del_post.jsp">
    <input name="RowKeyVal" type="hidden" value="<jbo:ShowValue datasource="app_vo" dataitem="RowKey"/>" />
    <td>
    <input type = "submit" name="submit" value="Delete">
    </td>
    </form>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>
    <jbo:ReleasePageResources releasemode="Stateful" />
    3. Third source file app_edit_post.jsp (ALlows saving the changes made to a specific record)
    <%@ page contentType="text/html;charset=ISO-8859-1"%>
    <HTML>
    <BODY>
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <jbo:ApplicationModule id="NewBC4J.NewBC4JModule" configname="NewBC4J.NewBC4JModule.NewBC4JModuleLocal" />
    <jbo:DataSource id="app_vo" appid="NewBC4J.NewBC4JModule" viewobject="ApplicationsView" ></jbo:DataSource>
    <%
    try
    %>
    <jbo:Row id="row3" datasource="app_vo" rowkeyparam="RowKeyValue" action="Update" >
    <jbo:SetAttribute dataitem="*" />
    </jbo:Row>
    <jbo:Commit appid="NewBC4J.NewBC4JModule" />
    <p><font face="Arial, Helvetica, sans-serif"><b><font color="006699">Application Successfully Updated</b></font></font> </p>
    <%
    catch(Exception exc)
    out.println("<pre> ");
    exc.printStackTrace(new java.io.PrintWriter(out));
    out.println("</pre>");
    %>
    <br>
    <br>
    <form action="app_ListApps.jsp" method="post"><input type="submit" value="Click to Continue"></form
    <jbo:ReleasePageResources releasemode="Stateful" />
    </BODY>
    </HTML>
    null

    I would not expect the 'back' button to automatically refresh the page. This button basically traverses the history of pages. Since Tomcat is caching your pages, you can try to control it's interaction with the browser by:
    1. Adding cache control pragmas to the returned content so it doesn't get cached.(look at www.w3c.org at the HTTP spec)
    2. dont rely on the back button, place a link on your pages to go back to the list page.
    3. change your cache control settings in your browser to check for a new page every time a url is visited.

  • 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)

  • E6 Key Lock Strange Behavior

    My E6-00 is running Belle.  The key lock switch displays very strange behavior.  When I slide it to lock the phone, there will be two or three vibrations and the phone will momentarily lock and then unlock again.  I have to slide it three or four times to actually get it to lock and stay locked.  Behavior when unlocking is identical - sliding the switch will make the phone vibrate two or three times, and the phone will unlock for a split second before re-locking itself.  I have to slide the switch three or four times to actually unlock it.
    The flashlight works fine.  It seems like the switch engages once when it is pushed, and then somehow engages again at the top of its movement.
    This is incredibly annoying.  Is it a known problem?  A software defect?  Hardware?  Or something else?

    I dont have that problem.
    Have you tried to do a soft reset?
    meny-settings-phone-phone management-fabric settings-restore
    Otherwise a hard reset (wipe the c and d comparment and sdhc card, After that, a reinstallment of Belle through Nokia Suite.
    Dont reinstall backups of apps and a lots of old material...only contacts and the most important I think could be the solution. This goes for many people who having problem after Belle update. I call it spring cleaning.
    Nokia 808 again (delight Belle), Nokia E7 and X7 ( again, all on Delight Belle...after some time on Nokia Lumia 925 (retired), 1020 (not that great)and Lumia 820 (Replaced my router at home, great for internet sharing).., N9 The best device ever (use it as much as Lumia 1020), Nokia 700 (Sport Phone/My Love :-) ) Nokia 701, Nokia E6 (Should have a follow-up from Nokia among with larger screen, NFC, Autofocus), Lumia 800 (Retired After 6 weeks), -Sports Tracker-Nokia Internet Radio-Handy Safe-Skype-Bambuser-Screenshot app pro-fMobi-ComingNext-Manual TaskSwitcher-jagiTimer-Easy StopWatch-Boldbeast-Equalizer-Financial Calculator-WiMP Music-YTasks-Davi-Thumbnail Folders-BizCalendar-Tiny7-Situations-nn reeder-Sport Timer-CameraLover-CameraPro-GrabRadio-LiveScore-Poddi-Gravity-SkyFilesPro

  • 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

  • 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 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

  • Strange Behavior In IE 8

    First off I would like to say how happy I am to find an active comunity of GoLive users. I had lost my copy of GoLive during a computer change. I tried several times to make the transition to DreamWeaver and hated it with a passion. It literally sucked all the joy out of creatinyg websites for me. I have been inactive for that reason for quite sometime.
    Just recently I decided to start a new project and was thrilled when I was able to aquire a legal copy of GoLive CS2 from a coworker who had upgraded to CS5 and no longer had a use for CS2.
    So here is my problem. I just finished designing and building a small site as a corporate identity site. I am very happy with the design but when it first loads it exhibits some strange behavior. In IE8 the logo on the index page on first load comes up out of place. I have to refresh to make it come together correctly. Then the page transitions are the ugliest thing I've ever seen. Going from one page to the next produces a hidious flash. Everything looks and works fine in FireFox.
    My first thought is that it has something to do with the encoding.
    Here is the URL:
    http://www.ffdminc.com
    Any suggestions would be greatly appreciated.
    Thanks
    Ron

    rcates00 wrote:
     ... thrilled when I was able to aquire a legal copy of GoLive CS2 from a coworker who had upgraded to CS5 and no longer had a use for CS2....
    If the license of CS2 was used to upgrade, then your co-worker had no right to pass off CS2 or any part of it. You may not really be legal. But if you used their media to install your own license, you are fine.
    Your problems might be due to the table-based design you have used. You may do much better by moving forward with CSS and reusing images instead of pushing an entirely new set of image files with each page.
    The flicker/transitions may appear in any browser where the images are not yet cached.

  • Strange behavior with Firefox

    Hi Team,
    I am using HTMLDB V2.0 and Firefox V1.5.0.1. I used wizard to create a report/form application. However, when I press a button to update the form all the buttons line up in a vertical row and I then have to press the same button again.
    My application is 30412 at htmldb.oracle.com. The problem is occurring at page 4. Go to page 3 (2nd tab) and select any record. You will be directed to page 4. Then when you press any button (cancel, create, delete, apply changes) on page 4, page 4 is refreshed and the buttons strangely line up in a vertical column. I then have to press the same button again before the update occurs.
    I have the same report/form setup on pages 1 and 2 and it is working fine on those pages.
    This strange behavior is not occurring in IE. I also notice that the font size is bigger in IE .
    I would appreciate any help you might offer.
    I really enjoy working with HTMLDB.
    Thanks, Andy

    Sorry about that. I removed all the authorization schemes from the application. I also changed the authentication scheme to HTMLDB. Let me know if I need to do something more for you to get access.
    Thanks for looking at it.
    I think it may have something to do with the "button, alternative 3" template from theme 3 that I am using. When I switch to the "button" template from theme 3 then the strange behavior goes away in Firefox.
    Andy

Maybe you are looking for

  • How to find Screen element names in a program programatically

    Hi Experts,   I have to find out all the table control names in a program. I am able to find all the screen numbers for a program from the table D020S. Is there any functionality to find out the table controls in a program or atleast screen elements

  • Delta loading master data errors in source system Message RSM340 quality

    Hi, I'm trying to load with delta  master data for standard data sources. In dev, everything seems fine. I' ve transported the same elements to QA. I've done init, it is ok. I do delta, I get red status: Errors in source system, message no. RSM340. I

  • Safari 5.0.2 doesn't hide menu bar with flash full screen mode

    I have scoured these forums and others for an answer. I have deleted every little bit of Safari and Adobe/Macromedia/Flash preference file. I even tried using an older backup, which worked until I updated Safari on it. The menu bar won't go away! Is

  • Fortnightly utilisation of CIN

    Dear Friends, I am not getting the RG registers updated, what could be the causes for this, i have configured all cin customizations, also please guide me how to carryour fortnightly utilisation Regards Ramesh

  • Adobe Flash Pro CC incompatible with windows 8.1

    Hi, I've installed adobe Flash Pro CC on windows 8.1 and it doesn't work  ! The program crashes...Does Adobe will correct this with a fix ?