Spry Blind Effect - Initial state closed

Hi,
I was wondering if its possible to have the Blind effect, set to be closed initially and then "Blind down"?  I've tried setting the "Blind from" fields but it doesn't seem to work.  The div container is always open initially then toggles up and down properly, I'd just like to be able to set it to be 'closed' initially. Is there a way to do this?
Note: I have a table inside the container div, not sure if it affects it but it does seem to work when I toggle so, my issue is simple to have it on that closed state initially.
Thanks for your help!
Al

Hi Ben,
Thanks for your reply, yup I already saw that page but didn't seem to work
with my case, so I just decided to use several "colapsable" widgets and that
seemed to work, but was interested in knowing if there existed a way to have
the Blind behavior start with the initial state being closed.
Frank

Similar Messages

  • How set an initial state for Slide effects

    Hi everyone, I would like to use the slide effect like the
    collapsable panels, with an initial state "closed".
    I used Spry Pre-Release 1.5 Preview
    In my first attempt
    <a
    onclick="Spry.Effect.Slide('MoreOptionSlide',{duration:1000,from:'0%',
    to:'100%',toggle:true})" >More Options</a>
    The DIV is always "open" and after click it closes and
    performes the slide animation.
    Also i tried to change some style attributes of the DIV and
    restore or change them in the "setup" function of the
    spy.Effect.Slide constructor, I thought this function is executed
    before animation, but it is executed even without be triggered the
    animation.
    Thanks,
    Richard

    Hello Richard,
    After you design the page and adjust the element dimensions
    as if the element would be in page without the animation to show it
    you'll have to set the 'display:none' CSS property on that element.
    In this situation the element will remain in page but will simply
    be invisible. Something like this:
    <div id="MoreOptionSlide" style="width: 300px; height:
    200px; border: 1px solid black; overflow: auto;display:none;">
    </div>
    Now using Spry 1.5 effects you can make this element appear
    after the More Options link is clicked:
    <a href="#" onclick="effect.start(); return false;"
    >More Options</a>
    <script type="text/javascript">
    var effect = new
    Spry.Effect.Slide('MoreOptionSlide',{duration:1000,from:'0%',
    to:'100%',toggle:true});
    </script>
    Regards,
    Cristian MARIN

  • Spry Validation-text field shows the "required" text even in initial state

    Hi,
    I'm having trouble with spry validation.
    I insert my spry textfied and go to the properties inspector where  I choose validate on "Blur" and "submit" for the Required state. I check the required box for the "required state" but the initial state will also have the "a value is required" text. If I try to delete the "a value is required" text from the initial state, the required state won't show this error.
    What should I do?
    Any help is much appreciated.
    Thank you.

    Hi, thanks so much for the reply
    Well the javascript came with the spry file that I downloaded from the adobe site.
    Here is my statement:
      <label for="name"><span class="style87">Name:</span></label>
                      <span id="sprytextfield1">
                      <input name="name" type="text" class="textInput" id="name" />
                      <span class="textfieldRequiredMsg">A value is required.</span>                  </span></p>
                  <p> <span class="style87">
                      <label for="email">Email:</label>
                      </span><span id="sprytextfield2">
                      <input name="email" type="text" class="textInput" id="email" />
                      <span class="textfieldRequiredMsg">A value is required.</span></span></p>
    This is the statement for the submit button:
      <span class="clearIt">
                      <input name="send" type="submit" id="send" onclick="MM_validateForm('username','','R','password','','R','name','','R','email','','R' ,'comments','','R');return document.MM_returnValue" value="Send comments" />
                    </span><span class="clearIt">
                    <input type="hidden" name="MM_insert" value="form1" />
    This is the javascript
    <script type="text/javascript">
    <!--
    function MM_validateForm() { //v4.0
      if (document.getElementById){
        var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
        for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=document.getElementById(args[i]);
          if (val) { nm=val.name; if ((val=val.value)!="") {
            if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
              if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
            } else if (test!='R') { num = parseFloat(val);
              if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
              if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
                min=test.substring(8,p); max=test.substring(p+1);
                if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
          } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
        } if (errors) alert('The following error(s) occurred:\n'+errors);
        document.MM_returnValue = (errors == '');
    //-->
    </script>
    This is at the bottom of the page:
    <script type="text/javascript">
    <!--
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none");
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "none", {validateOn:["blur"]});
    //-->
    </script>
    Thank you for your help.

  • Spry Slide Effect problem in IE 7 only

    I am using the Spry Slide Effect as a way of initially hiding
    a drop down menu:
    Click on menu of products:
    http://www.adelantedesign.co.uk/clients/showpiece/menu.asp
    I use:
    .hideInitially{
    display: none;
    as recommended here though there is no working example using
    display: none; only visibility: hidden
    http://labs.adobe.com/technologies/spry/samples/effects/slide_sample.html
    Using initial state of dispay: none it displays NOTHING! Is
    this a bug in IE 7?
    Anyone come across this problem.
    Anyone got a fix?
    Thanks
    Rich

    High Rich,
    You were on the right track with EPM. Here's how it works:
    http://www.projectseven.com/testing/customers/pow32/
    All you do is insert a single panel EPM inside TopMenuWrapper
    set to have
    all panels close and with gradual stop animation and using
    the basic style
    theme.
    Then you set the trigger DIV to display: none !important; and
    to remove all
    borders.
    .p7EPM05 .p7epm_trigs {
    overflow: hidden;
    margin-bottom: 12px;
    display: none !important;
    Then "un-style" the EPM content DIV so it picks up your
    colors and
    attributes:
    .p7EPM05 .p7epm_content {
    padding: 12px 24px;
    line-height: 1.5em;
    border: 0;
    Then select your "Menu of Products" link and use the built-in
    EPM control
    behaviors (available GUI in behaviors panel) to assign an EPM
    Trigger
    Control to the link, which will then look like this:
    <a href="#"
    onclick="P7_EPMctl('p7EPMtrg1_1','trigger')">Menu of
    Products</a>
    That's it.
    Al Sparber - PVII
    http://www.projectseven.com
    The Finest Dreamweaver Menus | Galleries | Widgets
    http://www.projectseven.com/go/pop
    The Ultimate DW Menu System
    "RICH POW" <[email protected]> wrote in
    message
    news:gms1c0$rpj$[email protected]..
    >I am using the Spry Slide Effect as a way of initially
    hiding a drop down
    >menu:
    >
    > Click on menu of products:
    >
    http://www.adelantedesign.co.uk/clients/showpiece/menu.asp
    >
    > I use:
    > .hideInitially{
    > display: none;
    > }
    > as recommended here though there is no working example
    using display:
    > none;
    > only visibility: hidden
    >
    >
    http://labs.adobe.com/technologies/spry/samples/effects/slide_sample.html
    >
    > Using initial state of dispay: none it displays NOTHING!
    Is this a bug in
    > IE
    > 7?
    > Anyone come across this problem.
    >
    > Anyone got a fix?
    >
    > Thanks
    > Rich
    >

  • Spry slide effect problem

    Hi
    i have a div with the slide effect, it works but it start as
    showing and i want it to be "shrinked" when the page is loading.
    what should i do?
    ron

    High Rich,
    You were on the right track with EPM. Here's how it works:
    http://www.projectseven.com/testing/customers/pow32/
    All you do is insert a single panel EPM inside TopMenuWrapper
    set to have
    all panels close and with gradual stop animation and using
    the basic style
    theme.
    Then you set the trigger DIV to display: none !important; and
    to remove all
    borders.
    .p7EPM05 .p7epm_trigs {
    overflow: hidden;
    margin-bottom: 12px;
    display: none !important;
    Then "un-style" the EPM content DIV so it picks up your
    colors and
    attributes:
    .p7EPM05 .p7epm_content {
    padding: 12px 24px;
    line-height: 1.5em;
    border: 0;
    Then select your "Menu of Products" link and use the built-in
    EPM control
    behaviors (available GUI in behaviors panel) to assign an EPM
    Trigger
    Control to the link, which will then look like this:
    <a href="#"
    onclick="P7_EPMctl('p7EPMtrg1_1','trigger')">Menu of
    Products</a>
    That's it.
    Al Sparber - PVII
    http://www.projectseven.com
    The Finest Dreamweaver Menus | Galleries | Widgets
    http://www.projectseven.com/go/pop
    The Ultimate DW Menu System
    "RICH POW" <[email protected]> wrote in
    message
    news:gms1c0$rpj$[email protected]..
    >I am using the Spry Slide Effect as a way of initially
    hiding a drop down
    >menu:
    >
    > Click on menu of products:
    >
    http://www.adelantedesign.co.uk/clients/showpiece/menu.asp
    >
    > I use:
    > .hideInitially{
    > display: none;
    > }
    > as recommended here though there is no working example
    using display:
    > none;
    > only visibility: hidden
    >
    >
    http://labs.adobe.com/technologies/spry/samples/effects/slide_sample.html
    >
    > Using initial state of dispay: none it displays NOTHING!
    Is this a bug in
    > IE
    > 7?
    > Anyone come across this problem.
    >
    > Anyone got a fix?
    >
    > Thanks
    > Rich
    >

  • My iphone is stucked and  I forget my icloud password so how can I restore  my phone to the initial state?

    - Product name: i phone 4G
    - Memory:32GB
    - Operating System: i OS 7.0.0 (Not sure)
    Dear Sir,
    I forget my icloud password and my e-mail has been closed and I tried to recover it but it looks that I also lose my e-mail data and my phone is stacked so could you please help me to return my iphone to it's initial state...
    I Thank you too much...

    Sorry, not understanding what it is you are asking. Your iCloud password is the same as your Apple ID password. If you are attempting to restore the device and you are on the Activation Lock screen, you must supply the iCloud/Apple ID password before you can proceed:
    ACTIVATION LOCK
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account - Apple Support
    Cheers,
    GB

  • Error "No operations Allowed after statement closed"

    Hi,
    I have a little program that I want to grab a list of names out of MySQL (it does) and when I click on the name I want it to display some information about the person. This is where I run into the error, when I click on a name in the list box it gives me the error "No operations allowed after statement closeed". I'm not sure where my statement is being closed, in my listSelectionListerner I never close the statement so I'm not sure whats heppening. Heres the code:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.sql.*;
    import java.util.*;
    public class Gifts extends JFrame
         static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
         static final String DATABASE_URL = "jdbc:mysql://localhost/test?user=root&password=root";
       private JList nameList;
         private JTextArea statList;
         private JButton add;
       private Container container;
         private JPanel nameListPanel, statListPanel, buttonPanel;
         private Connection conn;
         private Statement stat;
       public Gifts()
              super( "Spiritual Gift Database" );
              try
                   Class.forName(JDBC_DRIVER);
                   conn = DriverManager.getConnection(DATABASE_URL);
                   stat = conn.createStatement();
                   ResultSet rs = stat.executeQuery("SELECT heading1 FROM demo");
                   Vector vector1 = new Vector();
                   while(rs.next()) vector1.add(rs.getObject(1));
                   container = getContentPane();
               container.setLayout( new FlowLayout() );
                   nameListPanel = new JPanel();
                   statListPanel = new JPanel();
                   buttonPanel = new JPanel();
               nameList = new JList(vector1);
               nameList.setVisibleRowCount( 9 );
                   nameList.setPrototypeCellValue("XXXXXXXXXXXX");
                   nameList.addListSelectionListener(
                        new ListSelectionListener()
                             public void valueChanged(ListSelectionEvent event)
                                  try
                                       ResultSet resultSet = stat.executeQuery("SELECT * FROM demo");
                                       StringBuffer results = new StringBuffer();
                                       ResultSetMetaData metaData = resultSet.getMetaData();
                                       int numberOfColumns = metaData.getColumnCount();
                                       for(int i = 1; i<=numberOfColumns; i++)
                                       results.append(metaData.getColumnName(i) + "\t");
                                       results.append("\n");
                                       while (resultSet.next())
                                            for(int i = 1; i<= numberOfColumns; i++)
                                            results.append(resultSet.getObject(i) + "\t");
                                            results.append("\n");
                                  catch(SQLException sqlException)
                                       JOptionPane.showMessageDialog(null,sqlException.getMessage(),
                                       "Database Error1", JOptionPane.ERROR_MESSAGE);
                                       System.exit(1);
                   statList = new JTextArea(10,20);
                   add = new JButton("Add Entry");
               nameList.setSelectionMode( ListSelectionModel.SINGLE_SELECTION );
                   statListPanel.add(new JScrollPane(statList));   
               nameListPanel.add( new JScrollPane(nameList));
                   buttonPanel.add(add);
                   container.add(nameListPanel, BorderLayout.EAST);
                   container.add(statListPanel, BorderLayout.WEST);
                   container.add(buttonPanel);
               setSize( 400, 300 );
               setVisible( true );
              }//end try block
              catch(SQLException sqlException)
                   JOptionPane.showMessageDialog(null,sqlException.getMessage(),
                   "Database Error1", JOptionPane.ERROR_MESSAGE);
                   System.exit(1);
              catch (ClassNotFoundException classNotFound)
                   JOptionPane.showMessageDialog(null, classNotFound.getMessage(),
                   "Driver Not Found", JOptionPane.ERROR_MESSAGE);
                   System.exit(1);
              finally
                   try
                        stat.close();
                        conn.close();
                   catch (SQLException sqlException)
                        JOptionPane.showMessageDialog(null,
                        sqlException.getMessage(), "Database Error2",
                        JOptionPane.ERROR_MESSAGE);
                        System.exit(1);
         }//end Gifts()
       public static void main( String args[] )
          Gifts application = new Gifts();
          application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    }

    The fact is,
    the finally statement is reached after the whole object is initialized,
    that means that your statement is closed, before you make an action
    with you ListSelectionListener.
    Try working with a connect and disconnect method, or something like that,
    which are called during your valueChangeg() method!

  • How to keep track of the status of a spry slide effect from page to page.

    Hi All,
    I'm using a spry slide effect on a simple menu system.
    Lets say I have a home, gallery and about us page.
    I currently have the spry effect occurring with "body onload" only on the Gallery page to slide down extra sub menus only when the user lands on that page.
    My problem is that I would like the slide effect to close when having left the page and landed on either of the other two pages. I can close the slide with body onload again but obviously it will close every time regardless of whether the effect was open or closed to begin with.
    I know nothing about Javascript or the Spry Framework and therefore would like to know if there is a simple way to track whether the effect was open or closed from page to page?
    Ideally I would like the effect to only open when landing on the gallery page and closing only if the previous page was the gallery page and the effect was open. For all other instances the effect should not be actioned.
    I thought that there would be a way seeing as there is a toggle option with this effect. How does the effect know when it was previously open/closed and is there a way of parsing that in the URL so that the next page knows what to do?
    Any help would really be appreciated.
    Thanks

    Sorry, but what you wish to do, will require you to at least have a basic understanding of JavaScript and setting/unsetting cookies.
    For a basic introduction to using JavaScript try:    http://www.adobe.com/devnet/dreamweaver/articles/js_for_designers.html
    HTH
    PZ

  • Initial State of Navigation Panel

    Hi all,
    I have an issue with an SAP portal ivew linked to a guided procedure. When the user clicks on it the navigation panel on the left is closed. We have to tried to set the proposerty "Initial State of Navigation Panel" to "Open"  but it did not work (although we tried another iView and it did work). Can you please indicate what could be the possible reason for overriding this property? Thank you in advance.

    Hi SAPer,
    Did you try looking at the "Initial State of Navigation Panel" value of your iView in question in the Portal role? Assuming this is a delta-link copy, this property might have its delta-link inheritance broken through modification prior to this.
    Cheers.
    Best Regards,
    Zhi Liang

  • Blind Effect not working with Tables?

    I am notsure what is going on, but heres my problem:
    I have some blind effects inside a table. In FF it
    opens/closes fine, when i try in IE6 or 7, the effect doesn't work.
    When i take out the tables it works fine. Any suggestions?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <title>title</title>
    <link href="/themes/default/css/default.css"
    rel="stylesheet" type="text/css" />
    <link href="/themes/default/css/effects.css"
    rel="stylesheet" type="text/css" />
    <script src="/themes/default/js/SpryEffects.js"
    type="text/javascript"></script>
    </head>
    <body>
    <table>
    <tr>
    <td >email address:</td>
    <td>
    <span>
    <span class="italic">[email protected]</span>
    <span class="small"><a href="#"
    onclick="theSlideEmail.start();"> (change)</a><br
    /></span>
    </span>
    <div id="theSlideEmail" class="hideInitially">
    <span id="sprytextfield2"><input type="text"
    name="email" size="30" value="" class="textField"
    /></span>
    </div>
    <script type="text/javascript">
    <!--
    var theSlideEmail = new Spry.Effect.Blind('theSlideEmail',
    {duration: 500, from: '0%', to: '100%', toggle: true});
    //-->
    </script>
    </td>
    </tr>
    </table>
    </body>
    </html>

    Try this :
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <title>title</title>
    <link href="/themes/default/css/default.css"
    rel="stylesheet" type="text/css" />
    <link href="/themes/default/css/effects.css"
    rel="stylesheet" type="text/css" />
    <script src="/themes/default/js/SpryEffects.js"
    type="text/javascript"></script>
    </head>
    <body>
    <table>
    <tr>
    <td >email address:</td>
    <td>
    <span>
    <span class="italic">[email protected]</span>
    <span class="small"><a href="#"
    onclick="theSlideEmail.start();"> (change)</a><br
    /></span>
    </span>
    <div id="theSlideEmail" class="hideInitially">
    <span id="sprytextfield2"><input type="text"
    name="email" size="30" value="" class="textField"
    /></span>
    </div>
    </td>
    </tr>
    </table>
    <script type="text/javascript">
    <!--
    var theSlideEmail = new Spry.Effect.Blind('theSlideEmail',
    {duration: 500, from: '0%', to: '100%', toggle: true});
    //-->
    </script>
    </body>
    </html>

  • How to get the initial state of JSF PAGE IN ORACLE ADF

    Hi everybody
    my Jdeveloper version is 12.1.3
    I'm building my JSF pages based on a template that has a navigation pane which contains command navigation items , every one of them (command navigation items) appears as a link at runtime and calls a JSF page , I wish to get the initial state for any page when leaving it then entering such page again , and I would like to know what is the suitable place to write the code to do this task.
    many thanks !

    Clear the cache by adding the following to each jsf page.
    <%
    response.setHeader("Cache-Control","no-cache"); 
    response.setHeader("Pragma","no-cache");
    %>

  • Adding spry fade effect to thumbnail gallery??

    Hi,
    I have a gallery page with a set of thumbnail images each linking to a main image.
    I would like to add a simple javascript fade in for each main image. So when the user clicks on the thumbnail, the main image will fade in.
    I took a look at the spry effects page (http://labs.adobe.com/technologies/spry/samples/effects/fade_sample.html) but this uses an onclick event and my code already has some onclick events:
    <a onclick=\"document.images.galPic.src='$imgSRC'; document.getElementById('$captionDIV').innerHTML='$imgTITLE';return false;\" title=\"$imgTITLE\">
    ...so i'm not sure if i can add the onclick events for the fade which is:
    onclick="firstFade.start();"
    Any ideas how i can get this to work?
    Thanks for any help
    B

    hi, thanks for the reply.
    This just applies a fade to whatever is being clicked i.e. i add this to the div container where my big image will appear and when I click on this image the main image fades out. However i want the big image to fade in when the thumbnails are clicked.
    Here's the html:
    <div id="left">
                    <img src="images/jpg25.jpg"  title="kawasakigreen">
    </div>
    <div id="right-gallery">
                        <div class="gallery">  
    <a onclick=\"document.images.galPic.src='$imgSRC'; document.getElementById('$captionDIV').innerHTML='$imgTITLE';return false;\" >
    <img src="/images/gallery/thumb_1.jpg" alt=""/>
    </a>
    <a onclick=\"document.images.galPic.src='$imgSRC'; document.getElementById('$captionDIV').innerHTML='$imgTITLE';return false;\" >
    <img src="/images/gallery/thumb_2.jpg" alt=""/>
    </a>
    <a onclick=\"document.images.galPic.src='$imgSRC'; document.getElementById('$captionDIV').innerHTML='$imgTITLE';return false;\" >
    <img src="/images/gallery/thumb_3.jpg" alt=""/>
    </a>
    <a onclick=\"document.images.galPic.src='$imgSRC'; document.getElementById('$captionDIV').innerHTML='$imgTITLE';return false;\" >
    <img src="/images/gallery/thumb_4.jpg" alt=""/>
    </a>
                     </div>
    </div>
    So each thumbnail references a bigger image dynamically. I think i may need to add an onclick event to the thumbnail but I don't know how.
    Is there any other way to achieve a fade in on the bigger image when a thumbnail is clicked?
    Thanks
    B

  • Statement Closed Error

    Hi Friends,
    I have two queries to run from one class.I send the queries to another class,which send me back the resultset to cook.For one query its running fine,but i don't know why for two queries ,its throwing error as "statement closed".Can you please tell me where i am going wrong???
    In first method i have:
    ResSet qt = new ResSet();
    ResultSet rs=qt.getResultSet(query);
    2nd method:
    ResSet qt1 = new ResSet();
    ResultSet rs1=qt1.getResultSet(query1);
    public class ResSet
      private Connection con;
      private Statement st;
      ResultSet results;
      private DataSource ds;
      int count = 0;
    public void getResults()
        try{
          Context init = new InitialContext();
           if(init == null )
              throw new Exception("No Context");
           Context ctx = (Context) init.lookup("java:comp/env");
           ds = (DataSource) ctx.lookup("jdbc/con");
           con.close();
          }catch(Exception e){e.printStackTrace();}
    public ResultSet getResultSet(String Query)throws Exception
       if (ds != null) {
         con = ds.getConnection();
         if (con != null) {
           st = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
                                    ResultSet.CONCUR_READ_ONLY);
       results = st.executeQuery(Query);
       return results;
    public void close()
      try { results.close(); } catch (Exception ex) {}
      try { st.close(); } catch (Exception ex) {}
      try { con.close(); } catch (Exception ex) {}
    }

    No,I am calling close() after I display the results in my jsp,that's the end line of my project.I even tried commenting it,but that didn't worked either.Please help me..cause i have no clue where i am goin wrong.

  • Gray/blue/purple screen with faint blinds effect during use, how to fix it?

    Hi, I have a 20'' iMac (2009) running Snow Leopard and sometimes during use the entire screen goes gray (or purple or blue) with a faint "blinds" effect (vertical stripes). It doesn't do anything and I don't seem to be able to leave it, there are no visible menus, buttons or anything, nor does it show 'loading' or anything but the gray and the stripes, forcing me to forcibly restart the system. Does anyone know what it could be and why?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar              

  • Data warehouse monitor initial state data synchronization process failed to write state.

    Data Warehouse monitor initial state data synchronization process failed to write state to the Data Warehouse database. Failed to store synchronization process state information in the Data Warehouse database. The operation will be retried.
    Exception 'SqlException': Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
    One or more workflows were affected by this. 
    Workflow name: Microsoft.SystemCenter.DataWarehouse.Synchronization.MonitorInitialState
    Instance name: Data Warehouse Synchronization Service
    Instance ID: {0FFB4A13-67B7-244A-4396-B1E6F3EB96E5}
    Management group: SCOM2012R2BIZ
    Could you please help me out of the issue?

    Hi,
    It seems like that you are encountering event 31552, you may check operation manager event logs for more information regarding to this issue.
    There can be many causes of getting this 31552 event, such as:
    A sudden flood (or excessive sustained amounts) of data to the warehouse that is causing aggregations to fail moving forward. 
    The Exchange 2010 MP is imported into an environment with lots of statechanges happening. 
    Excessively large ManagedEntityProperty tables causing maintenance to fail because it cannot be parsed quickly enough in the time allotted.
    Too much data in the warehouse staging tables which was not processed due to an issue and is now too much to be processed at one time.
    Please go through the links below to get more information about troubleshooting this issue:
    The 31552 event, or “why is my data warehouse server consuming so much CPU?”
    http://blogs.technet.com/b/kevinholman/archive/2010/08/30/the-31552-event-or-why-is-my-data-warehouse-server-consuming-so-much-cpu.aspx
    FIX: Failed to store data in the Data Warehouse due to a Exception ‘SqlException': Timeout expired.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for

  • How can I set Paul to be the default TTS voice?

    Is there a way to set a TTS voice as the default so that it is always selected by default as the voice to use? I have all the voices installed and it currently defaults to Bridget - I guess because that is the first voice in the list. I normally use

  • Officejet Pro L7590 linefeed?

    Hi all, I have been tasked the job of servicing a printer for a family member as the printer seems to have a strange problem regarding linefeed / black print head. Please find a scanned pdf : http://dl.dropbox.com/u/15814094/scan0001.pdf The problem

  • How to create Sales order and Invoice in Foreign Currency

    Dear All, What are the procedures I have to do to create the sale order and Invoice in Foreign currency. Is it enough if I maintain the currency in the Customer Master and Excahge rate OBBS. or We have to do someting in the Sales order (Change the cu

  • Java2 SDK SEv1.4.1_01-Win Install Failure - remote procedure call

    Whenever I try to install the J2 SDK 1.4.1 on Windows XP Pro, everything works til the actual install is supposed to start. It just hangs there. When I hit the Cancel button, nothing happens; so I have to use task manager to cancel it. Afterward a sm

  • Reading a copy 'end-of-file' marker using TEXT_IO

    Hi I am using TEXT_IO to read a file, but the in the file there are special characters such as ,' ' which I think are "end of file marker" 1A hex, which 'COPY' adds to the end of and ascii copy. I'm using Oracle forms 6i, and when reading the above c