Stms Import Refresh Display Screen

Hello,
I want to automatically refresh diplay screen of stms import screen. i made a configuration extras personal settings update
display automatically but nothing changed. how can i do?

what exactly you are looking for? do you want to know whether the transport imported or not? instead of refreshing the queue? If this is the case then I suggest you can use synchronous option while importing the transport.

Similar Messages

  • Problem with ALV Grid Display screen Back Button

    Dear Friends ,
    I have an ALV Grid Display,Here am facing a problem for my 'Back' button,i haven't defined any PF Status and is using the standard one.But after the Display when i press Back Button a blank Screen is appearing n then again i have to press back button to go to my Selection Screen.
    Please Suggest if i have to take care of something else.
    I want my Selection Screen when i press Back on my Display Screen.
    DATA:  IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
             I_BYPASSING_BUFFER          =
             I_BUFFER_ACTIVE             =
             I_INTERFACE_CHECK           = ' '
                 I_CALLBACK_PROGRAM          = 'ZRMMPD01A'
             I_CALLBACK_PF_STATUS_SET    = ' '
             I_CALLBACK_USER_COMMAND     = ' '
             I_CALLBACK_TOP_OF_PAGE      = ' '
             I_CALLBACK_HTML_TOP_OF_PAGE = ' '
             I_CALLBACK_HTML_END_OF_LIST = ' '
             I_STRUCTURE_NAME            =
             I_BACKGROUND_ID             = ' '
             I_GRID_TITLE                =
             I_GRID_SETTINGS             =
               IS_LAYOUT                     =  I_LAYOUT
               IT_FIELDCAT                 =  IT_FIELDCAT
             IT_EXCLUDING                =
             IT_SPECIAL_GROUPS           =
             IT_SORT                     =
             IT_FILTER                   =
             IS_SEL_HIDE                 =
             I_DEFAULT                   = 'X'
             I_SAVE                      = ' '
             IS_VARIANT                  =
             IT_EVENTS                   =
             IT_EVENT_EXIT               =
             IS_PRINT                    =
             IS_REPREP_ID                =
             I_SCREEN_START_COLUMN       = 0
             I_SCREEN_START_LINE         = 0
             I_SCREEN_END_COLUMN         = 0
             I_SCREEN_END_LINE           = 0
        IMPORTING
             E_EXIT_CAUSED_BY_CALLER     =
             ES_EXIT_CAUSED_BY_USER      =
             TABLES
                  T_OUTTAB                    = IT_FINAL
            EXCEPTIONS
                 PROGRAM_ERROR               = 1
                 OTHERS                      = 2
    Thanks and Regards,
    Ashwini

    Hi Vijay ,
    No i dont have any write statement in my proggram.
    Here it is
    REPORT ZRMMPD01A  NO STANDARD PAGE HEADING.
    TABLES : EQUI,SER03,MKPF,OBJK.
    TYPE-POOLS : SLIS.
    DATA  IT_EQUI LIKE EQUI OCCURS 0 WITH HEADER LINE.
    DATA  IT_OBJK LIKE OBJK OCCURS 0 WITH HEADER LINE..
    DATA  IT_SER03 LIKE SER03 OCCURS 0 WITH HEADER LINE.
    DATA  IT_MKPF LIKE MKPF OCCURS 0 WITH HEADER LINE .
    DATA : BEGIN OF IT_DISPLAY OCCURS 0,
                MATNR LIKE EQUI-MATNR,
                SERNR LIKE EQUI-SERNR,
                BWART LIKE SER03-BWART,
                WERK LIKE SER03-WERK,
                CHARGE LIKE SER03-CHARGE,
                LAGERORT LIKE SER03-LAGERORT,
                MBLNR LIKE SER03-MBLNR,
                MJAHR LIKE SER03-MJAHR,
                ZEILE LIKE SER03-ZEILE,
                BUDAT LIKE MKPF-BUDAT,
                BKTXT LIKE MKPF-BKTXT,
                USNAM LIKE MKPF-USNAM,
                XBLNR LIKE MKPF-XBLNR,
            END OF IT_DISPLAY.
    DATA : WA_DISPLAY LIKE IT_DISPLAY.
    DATA  IT_FINAL LIKE IT_DISPLAY OCCURS 0 WITH HEADER LINE.
    DATA  IT_TEMP LIKE IT_DISPLAY OCCURS 0 WITH HEADER LINE.
    DATA:  IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    DATA :I_LAYOUT TYPE SLIS_LAYOUT_ALV,
          I_EVENTS TYPE SLIS_T_EVENT.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS : S_MATNR FOR EQUI-MATNR MATCHCODE OBJECT MCD,"OBLIGATORY
                    S_SERNR FOR EQUI-SERNR, "MATCHCODE OBJECT MCD OBLIGATORY
                    S_MBLNR FOR SER03-MBLNR MATCHCODE OBJECT MCD,
                    S_BWART FOR SER03-BWART MATCHCODE OBJECT MCD,
                    S_WERK FOR SER03-WERK MATCHCODE OBJECT MCD,
                    S_LAGET FOR SER03-LAGERORT MATCHCODE OBJECT MCD,
                    S_BUDAT FOR MKPF-BUDAT MATCHCODE OBJECT MCD,
                    S_XBLNR FOR MKPF-XBLNR MATCHCODE OBJECT MCD.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
    PARAMETERS : R1 RADIOBUTTON GROUP G1 DEFAULT 'X',
                 R2 RADIOBUTTON GROUP G1.
    SELECTION-SCREEN END OF BLOCK B2.
    START-OF-SELECTION.
    *Fetch Data.
      PERFORM GET_DATA.
    *Fill Display Fields.
      PERFORM FILL_TABLE.
    *Segregate data according to radio button selection.
      PERFORM SELECT_CONDITION.
    *Fill The Feild catalog.
      PERFORM FIELD_CATALOG.
    *Display Output.
      PERFORM OUTPUT_DISPLAY..
    *&      Form  GET_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM GET_DATA.
      SELECT * FROM EQUI INTO TABLE IT_EQUI
        WHERE MATNR IN S_MATNR
        AND SERNR IN S_SERNR.
      SELECT * FROM OBJK INTO TABLE IT_OBJK
      FOR ALL ENTRIES IN IT_EQUI
      WHERE EQUNR = IT_EQUI-EQUNR.
      SELECT * FROM SER03 INTO TABLE IT_SER03
      FOR ALL ENTRIES IN IT_OBJK
      WHERE OBKNR = IT_OBJK-OBKNR
      AND MBLNR IN S_MBLNR
      AND BWART IN S_BWART
      AND WERK IN S_WERK
      AND LAGERORT IN S_LAGET.
      SELECT * FROM MKPF INTO TABLE IT_MKPF
      FOR ALL ENTRIES IN IT_SER03
      WHERE MBLNR = IT_SER03-MBLNR
      AND BUDAT IN S_BUDAT
      AND XBLNR IN S_XBLNR.
    ENDFORM.                    " GET_DATA
    *&      Form  FILL_TABLE
          text
    -->  p1        text
    <--  p2        text
    FORM FILL_TABLE.
      LOOP AT IT_EQUI.
        LOOP AT IT_OBJK.
          IF IT_OBJK-EQUNR <> IT_EQUI-EQUNR.
            SKIP.
          ELSE.
            READ TABLE IT_SER03 WITH KEY OBKNR = IT_OBJK-OBKNR.
            IF SY-SUBRC = 0.
              WA_DISPLAY-MATNR = IT_EQUI-MATNR.
              WA_DISPLAY-SERNR = IT_EQUI-SERNR.
              WA_DISPLAY-BWART = IT_SER03-BWART.
              WA_DISPLAY-WERK = IT_SER03-WERK.
              WA_DISPLAY-CHARGE = IT_SER03-CHARGE.
              WA_DISPLAY-LAGERORT = IT_SER03-LAGERORT.
              WA_DISPLAY-MBLNR = IT_SER03-MBLNR.
              WA_DISPLAY-MJAHR = IT_SER03-MJAHR.
              WA_DISPLAY-ZEILE = IT_SER03-ZEILE.
             READ TABLE IT_MKPF WITH KEY MBLNR = IT_SER03-MBLNR.
              IF SY-SUBRC = 0.
                WA_DISPLAY-BUDAT = IT_MKPF-BUDAT.
                WA_DISPLAY-BKTXT = IT_MKPF-BKTXT.
                WA_DISPLAY-USNAM = IT_MKPF-USNAM.
                WA_DISPLAY-XBLNR = IT_MKPF-XBLNR.
              ENDIF.
            ENDIF.
          ENDIF.
          IF NOT WA_DISPLAY IS INITIAL.
            APPEND WA_DISPLAY TO IT_DISPLAY.
            CLEAR WA_DISPLAY.
          ENDIF.
        ENDLOOP.
      ENDLOOP.
    ENDFORM.                    " FILL_TABLE
    *&      Form  FIELD_CATALOG
          text
    -->  p1        text
    <--  p2        text
    FORM FIELD_CATALOG.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'MATNR'.
      FIELDCAT-SELTEXT_M = 'Material Number'.
      FIELDCAT-OUTPUTLEN =  18.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'SERNR'.
      FIELDCAT-SELTEXT_M = 'Serial number'.
      FIELDCAT-OUTPUTLEN =  18.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'MBLNR'.
      FIELDCAT-SELTEXT_L = 'Number of material document'.
      FIELDCAT-OUTPUTLEN =  18.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'BWART'.
      FIELDCAT-SELTEXT_M = 'Movement type'.
      FIELDCAT-OUTPUTLEN =  18.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'WERK'.
      FIELDCAT-SELTEXT_M = 'Plant'.
      FIELDCAT-OUTPUTLEN =  5.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'CHARGE'.
      FIELDCAT-SELTEXT_M = 'Batch number'.
      FIELDCAT-OUTPUTLEN =  18.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'LAGERORT'.
      FIELDCAT-SELTEXT_M = 'Storage Location'.
      FIELDCAT-OUTPUTLEN =  18.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'MJAHR'.
      FIELDCAT-SELTEXT_M = 'Material doc. year'.
      FIELDCAT-OUTPUTLEN =  18.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'ZEILE'.
      FIELDCAT-SELTEXT_L = 'Item in material document'.
      FIELDCAT-OUTPUTLEN =  18.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'BUDAT'.
      FIELDCAT-SELTEXT_L = 'Posting date in the document'.
      FIELDCAT-OUTPUTLEN =  10.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'BKTXT'.
      FIELDCAT-SELTEXT_L = 'Document header text'.
      FIELDCAT-OUTPUTLEN =  25.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'USNAM'.
      FIELDCAT-SELTEXT_M = 'User name'.
      FIELDCAT-OUTPUTLEN =  15.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME = 'IT_DISPLAY'.
      FIELDCAT-FIELDNAME = 'XBLNR'.
      FIELDCAT-SELTEXT_L = 'Reference document number'.
      FIELDCAT-OUTPUTLEN =  25.
      APPEND FIELDCAT TO IT_FIELDCAT.
      CLEAR FIELDCAT.
    ENDFORM.                    " FIELD_CATALOG
    *&      Form  DISPLAY_OUTPUT
          text
    -->  p1        text
    <--  p2        text
    FORM OUTPUT_DISPLAY.
      IF R1 = 'X'.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
              I_CALLBACK_PROGRAM          = 'ZRMMPD01A'
              IS_LAYOUT                   =  I_LAYOUT
              IT_FIELDCAT                 = IT_FIELDCAT
          TABLES
              T_OUTTAB                    = IT_DISPLAY
            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.
        REFRESH IT_DISPLAY.
        CLEAR IT_DISPLAY.
      ELSEIF R2 = 'X'.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
                 I_CALLBACK_PROGRAM          = 'ZRMMPD01A'
                 IS_LAYOUT                     =  I_LAYOUT
                 IT_FIELDCAT                 =  IT_FIELDCAT
             TABLES
                  T_OUTTAB                    = IT_FINAL
            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.
        REFRESH IT_DISPLAY.
        CLEAR IT_DISPLAY.
      ENDIF.
    ENDFORM.                    " DISPLAY_OUTPUT
    *&      Form  SELECT_CONDITION
          text
    -->  p1        text
    <--  p2        text
    FORM SELECT_CONDITION.
      IF R2 = 'X'.
        CLEAR WA_DISPLAY.
        SORT IT_DISPLAY BY MATNR SERNR MBLNR ZEILE.
        DELETE ADJACENT DUPLICATES FROM IT_DISPLAY.
        LOOP AT IT_DISPLAY WHERE ZEILE = '0002'.
          READ TABLE IT_DISPLAY WITH KEY MATNR = IT_DISPLAY-MATNR
          SERNR = IT_DISPLAY-SERNR ZEILE = '0001'.
          IF SY-SUBRC = 0.
            DELETE IT_DISPLAY.
          ENDIF.
        ENDLOOP.
        SORT IT_DISPLAY BY MATNR SERNR BWART MBLNR.
        DELETE ADJACENT DUPLICATES FROM IT_DISPLAY.
        LOOP AT IT_DISPLAY.
          IF WA_DISPLAY IS INITIAL.
            WA_DISPLAY =  IT_DISPLAY.
          ENDIF.
          LOOP AT IT_DISPLAY WHERE MATNR = WA_DISPLAY-MATNR
          AND SERNR = WA_DISPLAY-SERNR.
            IF IT_DISPLAY-BUDAT > WA_DISPLAY-BUDAT.
              WA_DISPLAY = IT_DISPLAY.
            ELSE.
              DELETE IT_DISPLAY.
            ENDIF.
          ENDLOOP.
          APPEND WA_DISPLAY TO IT_TEMP.
          CLEAR WA_DISPLAY.
        ENDLOOP.
        DELETE ADJACENT DUPLICATES FROM IT_TEMP.
        IF NOT IT_TEMP[] IS INITIAL.
          IT_FINAL[] = IT_TEMP[].
        ENDIF.
      ENDIF.
    ENDFORM.                    " SELECT_CONDITION
    Regards,
    Ashwini

  • I18n of Swing for multilingual feature of a already displayed screen

    I have java Swing appication.Each screen has got number of buttons, labels, tool bar etc.It also have DateFormat, SimpleDateFormat, and DateFormatSymbols used for the i18n.Each screen has got a combobox listing diffrent languages.From each screen the user can select a language and that particular screen should change to this selected language.ie, suppose I have displayed the screen in English and if the user select a language french, then this particular screen should change to French.Can you please give me a way to solve this problem? My requirement are I have to iterate through each component of this container and set the labels for each component by getting the key(But I don't know how to get the key dynamically?).Then my next problem is I have used SimpleDateFormat by passing the Locale to its instantiate method.So if I am changing the language from the combobox should I have to recreate all the components in this screen? If anybody ever met this kind of requirement can you please give a sugestion or code snippet?If I know the language before showing the screen then it is OK. But converting a displayed screen to other languages....

    Hi,
    my solution is to create any GUI on JPanels and only switch between them by some central Switcher (The Frame in my example). Any GUI only must be implemented one time and you do not need any loop to change texts.
    Switching Interface:
    import java.util.Locale;
    public interface Switcher {
         public void doSwitch(Locale l);
    }Main class:
    import java.util.Locale;
    import javax.swing.JFrame;;
    public class SwitchingFrame extends JFrame implements Switcher{
         public SwitchingFrame(){
              super("Switchit");
              add(new SwitchingPanel(this));
         public void doSwitch(Locale l) {
              Locale.setDefault(l);
              getContentPane().removeAll();
              getContentPane().add(new SwitchingPanel(this));
              getContentPane().validate();
         public static void main(String args[]){
              SwitchingFrame f = new SwitchingFrame();
              f.setVisible(true);
    }GUI Panel:
    import java.awt.FlowLayout;
    import java.awt.event.ActionListener;
    import java.awt.event.ItemEvent;
    import java.awt.event.ItemListener;
    import java.util.Locale;
    import java.util.ResourceBundle;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JPanel;
    public class SwitchingPanel extends JPanel {
         private Switcher switcher;
         public SwitchingPanel(Switcher s){
              switcher = s;
              setLayout(new FlowLayout());
              ResourceBundle b = ResourceBundle.getBundle("i18n.Texts");
              JButton b1 = new JButton(b.getString("Button1"));
              JButton b2 = new JButton(b.getString("Button2"));
              JComboBox bx = new JComboBox(new String[]{"de", "en"});
              bx.setSelectedItem(b.getString("Selection"));
              add(bx);
              bx.addItemListener(new ItemListener(){
                   public void itemStateChanged(ItemEvent e) {
                        if(e.getStateChange() == ItemEvent.SELECTED){
                             switcher.doSwitch(new Locale((String)e.getItem()));
              add(b1);
              add(b2);
    }And two Bundles for Testing:
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.ResourceBundle;
    public class Texts extends ResourceBundle {
         private HashMap<String, String> map = new HashMap<String, String>();
         public Texts(){
              map.put("Button1", "Switch");
              map.put("Button2", "Cancel");
              map.put("Selection", "en");
         @Override
         protected Object handleGetObject(String key) {
              return map.get(key);
         @Override
         public Enumeration<String> getKeys() {
              return new Enumeration <String>(){
                   Iterator <String>it = map.keySet().iterator();
                   public boolean hasMoreElements() {
                        return it.hasNext();
                   public String nextElement() {
                        return it.next();
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.ResourceBundle;
    public class Texts_de extends ResourceBundle {
         private HashMap<String, String> map = new HashMap<String, String>();
         public Texts_de(){
              map.put("Button1", "Wechseln");
              map.put("Button2", "Abbrechen");
              map.put("Selection", "de");
         @Override
         protected Object handleGetObject(String key) {
              return map.get(key);
         @Override
         public Enumeration<String> getKeys() {
              return new Enumeration <String>(){
                   Iterator <String>it = map.keySet().iterator();
                   public boolean hasMoreElements() {
                        return it.hasNext();
                   public String nextElement() {
                        return it.next();
    }hope this helps,
    Lars.

  • What is the best method to refresh display content (possibly push refresh)?

    We are using Coldfusion 9.0, and our issue is simple.  We were asked to make a few display screens to put up a schedule of events.  So we created a quick backend HTML publisher and made the client refresh every 30 seconds using meta refresh that displays the screen that is published.  Works wonderful.  A change is made, the screens update quickly in 30 seconds or less.
    Over the weekend we had an update push out to the server that openend up a larger issue.  The update shut down the webserver temporarily and that caused the display to go to the standard site cannot be reached (diagnose connection, etc).  At that point the refresh is killed, the display screens are dead in the water until someone hits f-5.  That made us think that everytime we have anykind of blip, the screens will have to be touched.  This is a small project, we wanted something simple and we got it.  I'm concerned now we just created a techsupport monitoring situation unintentionally.
    So that brings me to the real question.  What is the best practice to do this?  After doing a google search there seems to be all kinds of directions to go in.  I don't want a complex solution because the decision to not outsource was based on how quick of a project this was.  I am hoping to get some guidance on how to make a simple push of HTML to a screen in a Coldfusion environment.
    Thanks in advance for any help offered.

    Dolfan Alex wrote:
    If that was implied, I did not mean for that to be.  The sentence before explains that you are at the diagnose internet connection screen.  At that point, refresh no longer occurs, the content is not even on the screen to be cached.  Thanks for taking the time to respond.
    Ah, I see. Sounds to me like something for websockets. ColdFusion 10 implements websockets. Earlier versions of ColdFusion may use Nathan Mische's websocket gateway.

  • STMS import queue

    HI all,
                 Think some body deleted TR request (or something happend in the import queue) from the import queue, from that day onwards there was no transports are going on from development to quality systems. is there any chance to rebuild import queues, it was a problem in STMS imports.
    pls help me.
    cheers,

    Did you refresh the list with refresh button?
    If yes, check release log of that particular transport.
    Hope it helps.
    Regards

  • EOS 70D display screen not working because of humidity - Canon cutomer service totally unhelpful

    Hi!
    I have purchased an EOS 70D last October. Everything was working perfectly until I took it to the Caribbean, where on the second day the display screen stopped working. I could still take photos, but nothing was shown on the screen. I currently live in Canada. I took the camera to the store, where they told me that I have to send the camera (that still has warranty on it) at my own cost to the official repair centre. After a week, i got a letter from them, saying the following:
    "We have received your equipment for evaluation and repair. Upon further examination it was determined that we are unable to repair your equipment therefore
    Canon has suggested a replacement product to you in exchange for your original unit at the cost detailed below. Please respond to this estimate promptly to
    avoid having your equipment returned.
    We will replace your equipment with a EOS 70D. The new serial number is not yet available.
    Upon inspection, technician found unit is beyond repair due to moisture damage. Estimate has been adjusted to reflect replacement suggestion."
    I am furious. They are offering me to buy a new camera for the same price. I called customer service and asked them to explain the letter. They said they will send me photos of the inside of the camera, where they have found mositure. I asked them to re-check it, as I didn't misuse it, I didn't drop it in the water, or anything of that kind. They said the camera must have been used in a very humid/or very cold place. Can they be serious? Is that really my fault? I mean, I bought the camera to be able to take pictures anywhere I go. I didn't do anything extra to it or with it. I will take this as far as I can, I just don't find this a normal response. Any suggestions??? Anyone had the same problem before?

    Every post ought to have a learning opportunity so I am attaching a list compiled by a Canon technical advisor addressing the problem of handling photographic equipment in hot weather.
    Hot Weather Photo Equipment Handling Tips 
    Compiled by Chuck Westfall, Technical Advisor/Canon U.S.A., Inc.
    1.) Avoid Condensation:
    This is a biggie. If temperature and humidity differentials are high enough, condensation may occur when moving photo equipment from a relatively cool environment such as an air-conditioned vehicle, to a warmer one. When condensation forms inside a lens, for instance, internal elements can fog up, preventing clear images. When condensation gets bad enough inside a camera body, it can cause short circuits resulting in unexpected shutdowns. Worse yet, when equipment temperatures finally equalize to the warmer environment, water droplets on glass surfaces inside a lens may dry out and leave spots, mildew or fungus that can’t be cleaned by the photographer.
    Similarly, when condensation dries up inside a camera, fungus, mildew, rust or corrosion may be left behind on printed circuit boards, viewfinder eyepieces, shutter curtains, or other internal components. If any of this happens, the equipment may be permanently damaged.
    Incidentally, no matter how good it is, ‘weather sealing’ cannot prevent condensation, nor was it ever intended to do so. Damage caused by condensation is considered a user error, and it will void warranty coverage. One of the best methods to avoid condensation is to allow photo equipment to warm up gradually before exposing it to a hot environment. If this is not practical, consider placing the equipment in an airtight, resealable plastic bag with silica gel packets inside before exposing it to heat. (Don’t forget to squeeze as much air as possible out of the bag before you seal it, otherwise this technique may not work.) Using this method, the condensation will form on the bag instead of the equipment. Once the condensation on the bag has dried out, it should be safe to remove the equipment and start using it.
    On a related matter, in hot and humid conditions, perspiration may cause condensation to form on your camera’s viewfinder eyepiece. Some camera manufacturers including Canon offer anti-fog eyepieces to prevent condensation from forming.
    2.)  What To Do When Condensation Has Occurred:
    Use a soft, dry clean cloth to remove moisture from exterior surfaces. If possible, place the equipment in a dry, well-ventilated area to prevent further condensation from occurring.
    3.)  Cover Equipment When Not In Use:
    If you must leave your camera equipment exposed to high heat and/or humidity conditions for long periods of time, consider covering it with a dry white towel when it’s not in use. Even when condensation is not an issue, heat absorption is another big concern for professional cameras and lenses, and especially digital SLRs. Cameras are designed to operate within a specific range of temperature and humidity conditions. For instance, the EOS-1D Mark IV professional camera has a high-end temperature rating of 45C/113F and a humidity rating of 85% or less. Since most camera bodies are black, internal temperatures can exceed this limit even when the ambient temperature is below it.
    4.)  Avoid or Limit the Use of Camera Settings that Generate Heat:
    Heat build-up caused by ambient temperatures is one problem, but the other side of the coin is heat build-up caused by the camera itself. This has become more of an issue recently with professional digital SLRs due to the incorporation of new features such as Live View and HD video recording. These features generate heat from several camera components including battery packs, image sensors and LCD screens. If you plan on using Live View or recording video outdoors in high-temperature environments with your digital SLR, there are a couple of things you can do to minimize heat build-up inside the camera:
    Limit the use of Live View for still shots. This will minimize heat build-up from the image sensor and LCD screen. 
    Use an external monitor when recording video. This will shut off the camera’s LCD screen. 
    Use an AC Adapter Kit. This will reduce heat build-up by eliminating battery packs. 
    Set the camera’s Auto Power Off setting to a reasonably short interval. Let the camera help to minimize heat build-up by allowing it to shut down automatically after a minute or two of inactivity. This will also conserve battery power.
     5.)  Storing Equipment in Hot Weather:
    In high temperature environments with ambient humidity over 80%, use silica gel packets in your gadget bag or equipment case to absorb excessive moisture and protect your camera gear. Silica gel packets can be purchased in quantity from professional camera dealers and chemical supply houses, and are available in clear or moisture-indicating varieties. For long-term storage, consider storing camera equipment in Tupperware or similar sealable plastic containers with silica gel packets to absorb moisture and prevent fungus and mildew. In severely humid environments, even silica gel packets may be insufficient; so-called “camera dry cabinets” from manufacturers such as Toyo Living are available for such conditions.  No matter what kind of storage container you use, ideally the humidity level should be less than 60% for maximum protection. Relatively inexpensive hygrometers of the type used for cigar thermidors are available to monitor humidity levels inside the containers.  Remember to test hygrometers at least once a year, and recalibrate them if necessary.
    6.)  Store Battery Packs Separately and Keep Equipment Clean:
    To prevent corrosion of your camera’s electrical contacts, remove battery packs prior to long-term storage. Also, as a matter of good housekeeping, clean cameras and lenses regularly and thoroughly. This is especially important in hot and humid weather, or after your camera equipment has been exposed to rain or condensation, to prevent mildew and fungus from forming.
    © August, 2010 by Chuck Westfall
    http://blog.photoshelter.com/2010/08/keeping-your-camera-gear-safe-in-the-heat/

  • Have to keep refreshing the screen

    When I start up various applications under Firefox, the username and password are not always completed for me despite being stored. If I refresh the screen, then it works. Also, when using the back button in google, it takes me to a completely blank page instead of the list of returned items - again, if I refresh the screen, the correct list is displayed. This has only been happening in the last 2 weeks and it's driving me nuts.
    I've looked on this forum for answers but there aren't any that explain why this is only happening with Firefox. I left IE because of problems, don't tell me I have to now abandon Firefox too? Has anyone got a reliable platform out there for goodness sake?

    Ok. I think safe mode should be the next step then.
    I should have been more clear above. I didn't mean Windows Safe Mode. I was referring to Firefox's Safe Mode. See the article below:
    [[Troubleshoot Firefox issues using Safe Mode]]
    This basically starts Firefox up with all add-ons disabled and with a couple of changes to basic settings. If the problem doesn't occur in Safe Mode then it is a good bet that some setting or add-on is causing the problem. You can then follow the instructions in that article to enable them one by one to identify the culprit.
    If the problem still occurs in Safe Mode then I suggest doing a Firefox Reset. See the article below. This will return Firefox to its defult settings. Your history, bookmarks etc will be saved but you will need to reinstall all your add-ons.
    [[Reset Firefox – easily fix most problems]]
    I hope that helps. Let me know if not.

  • STMS - Import Queue not updating

    Hi,
    I'm hoping for a little guidance to track down a problem.
    We have a simple 3 system configuration (DEV > QAS > PROD) and we're currently about 2 months away from going live with the Production box.
    However, the STMS import queue for Production hasn't updated since 13/09. It's status is "Data obsolete or missing".
    Being a bit of a novice, I'm not sure where to start to try track down why, after 12 months, this queue has stopped updating.
    Any help would be appreciated.
    Thanks

    If the queue is not been updated the most likely scenario is that it can't read the trasnport directory or the STMS config is not maintained properly... what happen when you try to refresh the queue?... any errors?, Check the system status in the domain controller if theres an issue try to redistribute.
    Regards
    Juan

  • Refreshing Of Screen.

    Hi all,
    I have an ALV report in which i am display a list in that if i select a record by checking a check box, and when i am saying delete, the record is getting deleted. But the problem is i am getting the record displayed on the screen after pressing delete. But when i am refreshing the program it is not display. So can an one help me out in refreshing the screen immediate after deleting.
    Thanks
    Murthy

    Use ur own pointer reference.
    CALL METHOD gp_alv_grid_prod->set_table_for_first_display
          EXPORTING
            i_buffer_active               = 'X'
            is_variant                    = ls_variant
            i_save                        = 'A'
            is_layout                     = ls_layout
            it_toolbar_excluding          = lt_toolbar
          CHANGING
            it_outtab                     = gt_product
            it_fieldcatalog               = gt_fieldcat_prod
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error                 = 2
            too_many_lines                = 3
            OTHERS                        = 4.
    so u use this Object .

  • Adobe reader xi i am running 2 display screens and when i have a file open and go to print the print page opens on my second screen.  How can I get adobe reader to just display on one screen?

    adobe reader xi i am running 2 display screens and when i have a file open and go to print the print page opens on my second screen.  How can I get adobe reader to just display on one screen?
    I want the capability of adobe reader to just run on one screen.

    I had the same problem.
    Try this.
    https://igppwiki.ucsd.edu/groups/publichelpwiki/wiki/a1538/Howto_Disable_Acrobat _as_the_Safari_PDF_Viewer.html

  • When using rogers.yahoo mail, I need to refresh my screen after every 2-3 actions.

    While using Rogers.yahoo mail in FireFox, the screen freezes after every 2-3 actions (read email, delete email, respond to email, move email to folder etc.). I have to refresh the screen and then it goes along for another 2-3 actions and I have to refresh again. Very frustrating. I opened the same email account in Google Chrome and IE and it works fine there. This started happening yesterday.
    In perhaps an unrelated thing, I get this error message every day, once, when I start up my PC for the past 2 months:
    Microsoft.NET Framework
    Unhanded exception has occurred in your application If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately. Unable to load DLL 'hppatusg01.dll': The specified module could not be found (Exception from HRESULT:0x8007007E)

    No problem.
    If the above does not fix the issue, '''try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • How can I get more of my persona to show at the top of the display screen?

    Before downloading the newest Firefox, my persona at the top of the display screen showed at least 1/2 of the firefox. Now it's only the ears. How do I show more of it? Stupid question, I know, but it's bugging me.

    You can add extra empty toolbars if you want to see more of the persona.
    You can create extra toolbars to get extra space via "View > Toolbars > Customize" or "Firefox > Options > Toolbar Layout"
    You have to put something on a toolbar (drag a Space item onto it) before closing the Customize window because empty toolbars are automatically removed.

  • How to increase "brightness" of Display Screen on ...

    Hi I have just up-graded to to a Nokia 5800 XM which seems the "bees knees" to me as I have never had such an all singing and dancing mobile phone before (had a 6230i about 5 years as my up-grades usually went to daughters or not taken but 6230i lost it's life a couple of weeks ago when it toook an accidental dip in the washing up bowl  *)   )
    I like lots about the new phone , especially the QWERTY keyboard - I can actually do texts now as the old way on key pad took me forever!  Oh and handwriting tablet is great - can even write texts!
    The only down side is the "display screen" seems rather dim in average to bright daylight ( I am not visually impaired not particularly mentally impaired either as a teacher) SO DOES ANYONE KNOW HOW TO MAKE THE SCREEN BRIGHTER?
    Thanks Bri

    menu | Settings | Phone | Display | Light sensor | slide the slider to "Maximum"

  • Mac mini and a 30 in display screen questions

    Hi everyone .
    I wanted to no if anyone out there knows if the Apple Mac mini will run a apple 30 inch screen . I want to run my dell 30 inch screen on it at full resolution of 2560 x 1600 . Thats what my display runs at like the apple one . But before I buy one of these mac mini machines . I want to no if it will handle dual link for the 30 inch display .
    Also I what to run the sims 3 game on it . I see that some of the older mac mini will not run with gma -950 series graphic card thats built in to the older ones . Only the newer made mac mini machines . I see that apple dont have any newer style mac mini left for sale right now . So ether I have to spend 600.00 dolars at the apple store off the shelf . But I dont want to do that right now . so I have to wait for now .
    But what I really want to no is if The mac mini is wort the money . I see some people say that the imac is better . But I dont want not use my 24 inch dell display screen . I payed close to 600.00 new with a 5 year warranty for it . Plus the mac mini has built in bluetooth and airport card for it .So I dont have to buy it extra .
    If you have any reviews on it , I would like to hear what you have to say about it .
    Thank You
    duckland23

    Thanks for responding to my post but Thats somewhat what I was looking for . The Main question I wanted to no Did anyone out there Have a mac mini hooked up to a 30 inch screen. I need to no if the screen will have the same resolution as my power mac g5 1.8 dual with a Nvivia 6800 GT with duallink video card . The card I have from nvivia has a max resolution of 2560 x 1600 at it maxed out .
    My game graphics look very good on my power pc g5 dual 1.8 with the dualink card from nvivia .I would buy a new mac pro but I dont have money coming out of my a*s. I'm fine with my regular g5 but the only reason I want to buy a mac mini is to play the sims 3 .Me and my wife are really mad that maxius the maker of the game , will not wright a new program for mac . The only one they are making is not a true mac software or program under os x . What I have learned at the sims 3 web forum is that the current game for mac os x is a windows game with a mac emulator . The people that are also playing it under a power book like 2007 model with gma 950 graphics . It wont play at all . Nice going apple on this one you really want the people with powerpc g5 to buy new macs .I think apple and maxis the game maker had there hand in on this .Apple dont you get enough money you have squeeze every bit of money out of us you can .
    But back I'm done lashing out at apple for now .So as it stands I buy a apple mac mini or a dell hybrid small computer windows based by dell 499.00 us dollars . or a apple for 599.00 dollars at the apple store .But the downside is that in the future it may not be able to play the new games in three years or so and be out of date . WE waist more electronics in this country than any country in the world . But I'm not the first person encounter this problem . There's many more people that still have the g5 line and like there true mac computer not this fake intel machine . Why did apple do this in the first place start with a intel chip in there computers in the past not goto IBM to buy there chips ?. If this was done in the first place we would be better off right now .
    So back to me buying a mac mini this is were i'm at right now stuck not able to play the sims 3 because it not a true mac written game under unix like all the games in the past . I had game from my windows machine that were written for windows 98se and the games played fine under windows xp no problems at all .I did not have to shell out hundreds of dollars to play a game like this ? . I think apple and maxis is taking us for a ride and riping us off . Maybe some of you people dont think so . Me my self dont think that and am very mad at this .
    so that all i mave to say for now .

  • In the view of Web Dynpro- "Page cannot be displayed screen"

    Dear All,
    In se80,During ABAP Webdynpro development,in the View "Page cannot be displayed screen" is appearing.....In SICF i have activated almost all services.....can anyone please  help me out,so that i can develop webdynpros plsssss...........
    Regards
    Sajid
    Edited by: shaik sajid on Feb 10, 2009 7:32 AM

    Check Your internet Explorer connection settings Internet Option->Connection->LAN settings.
    Try playing around with it. We had the same problem in the past.
    Greetings
    Prashant
    P.S- Points welcome

Maybe you are looking for