Buttons to Page Destination Disappear after clicking

I have a column of headers on the left side of my document that upon clicking, take me to the appropriate page. I click on the first two and it work beautifully. But I click on any others and the list and although it takes me to right page, all of the buttons disappear. Anyone know why this might be and how I can fix it?
Thanks,
Lauren

The next time you have the problem, note the exact times when it starts and ends: hour, minute, second.
Launch the Console application in any of the following ways:
☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
Scroll back in the log to the time you noted above. Post any messages timestamped during that interval – the text, please, not a screenshot.
When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
Please do not indiscriminately dump thousands of lines from the log into a message.
Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

Similar Messages

  • Submenu disappears after click in Firefox only

    I have created a horizontal spry menu which is working fine, but in Firefox the submenu disappears after clicking a submenu item - you then have to roll over the parent menu item to make the submenu visible again. In Safari the submenu remains visible even after clicking an item. I would prefer the menu to behave as it does in Safari. A link to the site is www.jakeharris.ca if anyone can help - look at it in Safari and Firefox to see the differences (not sure how it is in IE!)
    Many thanks,
    Hillary

    That is how the submenu is programmed to work...to hide when you get to the page you call.
    Although my Safari did not work the way yours did (I am on XP), I think what you are actually asking about is what I would call "local page indicators." That is, a kind of 'sign' that you are on a specific page.
    In your case, for each page, you would show an "open" menu with the appropriate menu list item highlighted with your normal hover color.
    There may be a way in the javascript to allow the submenu on a page to be always "on" or open, but I don't know much about javascript, so I can't help with that.
    If you have not used a Template to build the pages, it is even easier than fiddling with the javascript, if a tiny bit timeconsuming.
    Locally-significant styling is pretty straightforward, in theory.
    On each page, replace the class on the top menu item (on the main bar) for that page (right now it will say something like <li><a class="MenuBarItemSubmenu" href="#">Item 1</a> with a new class (you might call it "localpage") so you can make descendant selectors that apply to showing the submenu. Then write styles that cancel the 'hide' technique...get rid of the left: -1000em; for instance. I haven't gone through and worked this through, but it should work. Let me know if you need code; I need to go to breakfast right now, though!
    Then make another class to style the individual items for their pages, for instance .local that can be grouped with the hover styles that change the item color when you hover over them:
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible, .local
        background-color: #33C;
        color: #FFF;
    On each page, add this class to the menu item that pertains to that page:
    <a href="#" class="local">Chasing Wild Horses</a>
    on the "Chasing Wild Horses" page, for instance.
    This is a pretty subtle and elegant solution to what most people use <h1> heads for. Keep in mind, though, that if you want SEO to understand your page, without a hierarchical text indicator, it might be too subtle, as h1, h2, etc. heads help to indicate levels of importance of content for search engines and screen readers.
    But it will look great, nonetheless.
    Beth

  • JpopupMenu disappear after click one it.

    Hi , I have a problem with a 3rd party library. by the way. please help,
    Applet contain Panel name "Chooser"
    "Chooser" contain a button "open"
    After click on the "open" button it will invoke Jpopupmenu
    JpopupMnu have another panel inside
    Some people overridden setVisible() method
    I seem that when i click on any area on anything this panel on Jpopupmenu Jpopupmanu will be diappear.
    someone HINT that :
    have to do something with the popup's overriden setVisible method. Tell the "Chooser" from applet that the application is an applet, so it doesn't set the "popup" window non-visible.

    no ..... is it?
    This is my code......
    when i deploy applet i can't click any button on Jpopupmenu it will disappear before
    someone said to overridden setvisible method to said that the application is an applet ...........??!?!?!?! any body understand what does that mean ....
    package test;
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JApplet;
    import javax.swing.JButton;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JPopupMenu;
    public class JChooser extends JApplet implements ActionListener{
    private JPopupMenu m_objJPopupMenu;
    private boolean m_bInitialized;
    protected boolean m_bDateSelected;
    private JButton m_objXButton;
    public JChooser(){
    public void init(){
    JLabel test = new JLabel();
    test.setText("Test");
    getContentPane().add(test);
    getContentPane().add(getXButton(), BorderLayout.EAST);
    m_objJPopupMenu = new JPopupMenu()
    public void setVisible(boolean bVisibleP)
    Boolean isCanceled =
    (Boolean) getClientProperty("JPopupMenu.firePopupMenuCanceled");
    if (bVisibleP
    || (!bVisibleP && m_bDateSelected)
    || ((isCanceled != null) && !bVisibleP && isCanceled.booleanValue()))
    super.setVisible(bVisibleP);
    m_objJPopupMenu.setLightWeightPopupEnabled(true);
    m_objJPopupMenu.add(getXPanel());
    m_bInitialized = true;
    * @return
    private JButton getXButton() {
    if (m_objXButton == null)
    m_objXButton = new JButton();
    m_objXButton.addActionListener(this);
    return m_objXButton;
    public void actionPerformed(ActionEvent e)
    int x =
    getXButton().getWidth() - (int) m_objJPopupMenu.getPreferredSize().getWidth();
    int y = getXButton().getY() + getXButton().getHeight();
    m_objJPopupMenu.show(getXButton(), x, y);
    * @return
    private JPanel getXPanel() {
    JPanel aPanel = new JPanel();
    aPanel.setLayout(new GridLayout(5,2));
    aPanel.add(one_btn);
    aPanel.add(two_btn);
    aPanel.add(three_btn);
    aPanel.add(four_btn);
    aPanel.add(five_btn);
    aPanel.add(six_btn);
    aPanel.add(seven_btn);
    aPanel.add(eight_btn);
    aPanel.add(nine_btn);
    aPanel.add(ten_btn);
    aPanel.add(eleven_btn);
    aPanel.add(twelve_btn);
    aPanel.setSize(100,100);
    twelve_btn.addActionListener(new Eavesdropper());
    return aPanel;
    private JButton one_btn = new JButton();
    private JButton two_btn = new JButton();
    private JButton three_btn = new JButton();
    private JButton four_btn = new JButton();
    private JButton five_btn = new JButton();
    private JButton six_btn = new JButton();
    private JButton seven_btn = new JButton();
    private JButton eight_btn = new JButton();
    private JButton nine_btn = new JButton();
    private JButton ten_btn = new JButton();
    private JButton eleven_btn = new JButton();
    private JButton twelve_btn = new JButton();
    class Eavesdropper implements ActionListener {
    public void actionPerformed(ActionEvent e) {
    one_btn.setText("aaaa");
    }

  • Since Firefox v34, after zooming text on a page Google Search took me to, the Google search page is blank after clicking 'Back' to it. Is this a v34 glitch?

    Since Firefox v34, the Google Search results page is blank after, 1) Clicking on a link in a Google Search results page and loading the linked page, 2) Zooming in on the text on the page Google took me to, and then without resetting text zoom, 3) Clicking the Firefox 'Back' arrow to return to the Google search results. If at that point I either reload the Google results page, or click back a page and then forward again, the full search results are then displayed again.
    This happens on my Windows 7 PC as well as my Vista Notebook. Is this a glitch with text zooming and Google in Firefox version 34?

    '''>>Type about:preferences#advanced<Enter> in the address bar.<'''
    Setting that made no difference. I ran 30-40 test searches on Google with that set and Firefox restarted in Safe Mode with all add-ons disabled. The problem persists on the vast majority of searches. However backing up to Google search results after following some links doesn't result in the problem.
    For instance when I do a Google search from www.google.com (USA) on [https://www.google.com/?gws_rd=ssl#q=%22Steve+Gibson%22+ "Steve Gibson"] and click the first result, which for me is his Wikipedia page: [http://en.wikipedia.org/wiki/Steve_Gibson_%28computer_programmer%29 "Steve Gibson (computer programmer) - Wikipedia"]. If I hit CTRL/+ a couple times to zoom text after the page loads, and then click Firefox's 'Back" icon, the previous Google search result page will be empty.
    However if I click on the 2nd result in Google's search results, which for me is [https://www.grc.com/stevegibson.htm "GRC | Steve Gibson's WebZone:"], I can zoom the text several times and then click back to the Google search results and find them all displayed fine.
    But I've been having this problem when backing up to Google search results probably 70-90% of the time since I updated from Firefox v33 to v34.
    It's frustrating because Firefox seems to remember the text zoom level for entire domains. So if I zoom on one Wikipedia page, Firefox will display all Wikipedia pages I visit subsequently at that zoom level. I used to love this feature. But it's become a real pain now when I back up to Google.
    BTW: If in the 1st example above, I first reset the text zoom level while I'm still on the Steve Gibson Wiki page, all the Google search results are displayed fine after I click Firefox's 'Back" icon. I don't have this problem in Chrome or Opera.

  • In FF 7.0.1, the New Tab button on the Tab Strip disappeared after clicking the Tab Group icon and trying to return, so I'm looking for advice on how to get the New Tab to reappear on the Tab Strip.

    In Windows Vista, FF 7.0.1, I selected the Tab Group button to try it out. However, when I selected the Tab Group button again to close that view, the New Tab button in the Tab Strip no longer appears. I'm requesting help to restore the New Tab button (has the "+" sign on it) on the Tab Strip just to the right of the currently open tabs.

    You can find the New Tab button showing as a '+' on the Tab bar.
    You can open the Customize window and drag the New Tab button that shows as a plus sign (+) from the Tab bar on another toolbar and it will become a regular toolbar button like the New Tab button that you have in Firefox 3 versions.<br />
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    If you can't find the New Tab button then click the "Restore Default Set" button in the Customize window.
    If you want the New Tab button at the far right end of the Tab bar then place a flexible space to the left of it.

  • Scroll bar of Detail table disappears after clicking on other Detail table.

    I am using JDeveloper 11.1.1.0.2 and JHeadstart 11g TP1.
    I have 1 master table with 3 detail tables.
    Master table: Layout style = Table-form --> inline, Stack Groups on same page = Detail Groups Only (Tabbed)
    Detail tables: Layout style = Table-form --> inline, Same Page = Yes, Below Parent Group
    If I click on my first Detail table (which has a lot of columns) I see a horizontal scrollbar. Then I click on the other tabs. But when I go back to the first tab the horizontal scrollbar has disappeared so I cannot see the last columns.
    How can I solve this problem?

    Can you upgrade to the latest TP2 version that can be downloaded from cso.oracle.com and see whether the problem is still there?
    Steven Davelaar,
    JHeadstart Team.

  • Button rollover state plays again after click

    Hello, I have made a portfolio in Flash 8 using Presentation
    Screens. The intro and all the navigation buttons are on the first
    parent screen. I have a rollover label animation on each button,
    which plays fine on the first rollover, but also plays again after
    a button click takes the user down to another screen. This seems to
    be a glitch in the Screens feature, as my tests show that this is
    not the case within a regular FLA document. Has anyone come across
    this??
    You can see the buttons in action at:
    www.opcarto.com
    Thanks

    I had a similar problem whereby I had built my own "frame" - complete with custom "minimize" and "close" roll-over buttons at the top right corner. The problem was that when you minimized the frame, then re-maximized it, the "minimize" button stayed in its "rolled-over" state, for the same reason yours does - the mouse never officially "leaves" the button.
    My workaround, which may or may not help you, was to call the processMouseEvent() method of the Component class (which is a parent of AbstractButton), whenever the frame is minimized. This seems to do the trick.
    Note that processMouseEvent() is a protected method, so I had to override it and make it public in a subclass, so I could go ahead and call it.
    You could do the same thing, but you would need to decide what event you would use to trigger the call (i.e. my event was minimizing the frame - your event might be mouseOver for your overlapping frame?? Might get a bit messy.... ;-)
    Hope this helps!
    M

  • Help - index page has disappeared after removing code that was recommended regarding Flash

    After inserting some conditional comments regarding earlier versions of IE not displaying bulleted lists properly. I received a message about Javascript code that should be removed regarding my Flash element.
    When I removed the code that was indicated, my index page changed to a gray screen that had some copy about needing to update the Flash player, so I thought I'd totally take out the code relating to the Flash element and I would reinsert the Flash movie. However when I preview it everything is gone except a gray background. In Live View the original page is there. When I try to look at in in design view preview or view it in a IE browser it is just a gray background.
    I'm attaching the code for the page to see if I accidently removed some element that needed to be in to display the page. Please advise ASAP. Thank you.
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Total Care Nursing Services</title>
    <link href="css/twoColFixRtHdr.css" rel="stylesheet" type="text/css" /><!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { width: 190px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 10px; }
    .twoColFixRtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <!--[if lte IE 7]>
    <style>
    .twoColFixRtHdr #container #sidebar1 ul {
    margin-left: 25px
    </style>
    <! [endif]-->
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    body {
    background-color: #242D80;
    margin-right: 0px;
    a:link {
    color: #DC3505;
    text-decoration: none;
    a:visited {
    text-decoration: none;
    color: #4A6FBB;
    a:hover {
    text-decoration: none;
    color: #038F0E;
    a:active {
    text-decoration: none;
    h1,h2,h3,h4,h5,h6 {
    font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    font-weight: bold;
    -->
    </style>
    <link href="css/global.css" rel="stylesheet" type="text/css" /><style type="text/css">
    <!--
    a {
    font-weight: bold;
    -->
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="twoColFixRtHdr">
    <a href="tcns_members.html"></a>
    <div id="container">
      <div class="twoColFixRtHdr" id="header">
    <!-- end #header -->
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a href="index.html">Home</a>    </li>
      <li><a href="about_us.html">About Us</a></li>
      <li><a href="staffing.html">Staffing Services</a>    </li>
      <li><a href="join_us.html">Join Us</a></li>
      <li><a href="contact_us.html">Contact Us</a></li>
      <li><a href="nursing_news.html">Nursing News</a></li>
      <li><a href="tcns_members.html">TCNS Members</a></li>
    </ul>
      </div>
      <div class="twoColFixRtHdr" id="sidebar1">
        <h3 class="sidebarTitle"><span class="sidebarTitle">TCNS MEDICAL PROFESSIONALS</span></h3>
        <ul>
          <li class="spacedList">Registered Nurses</li>
          <li class="spacedList">Licensed Practical Nurses</li>
          <li class="spacedList">Certified Nursing Assistants</li>
          <li class="spacedList">Radiological Technicians</li>
          <li class="spacedList">Physical Therapists</li>
          <li class="spacedList">Respiratory Therapists</li>
          <li class="spacedList">Home Health Assistants</li>
        </ul>
    <p class="sidebarCopy">Interested in a career at TCNS? <a href="contact_us.html">Contact us</a> to learn more today!</p>
        <p class="sidebarCopy">Are you a facility looking for health care staffing in South Florida? <a href="staffing.html">Click here</a>.</p>
      </div>
      <div id="mainContent">
        <h1>
      Offering Compassionate Care with a Committment to Excellence</h1>
        <p><span class="company">
        </span><span class="company">TOTAL CARE NURSING SERVICES</span> was founded as a bridge  between health care professionals and the many institutions in the health-care  industry, with the primary objective of promoting the patient’s well being and  satisfaction.</p>
    <p>With a nationwide nurse shortage approaching 800,000 and  projected to worsen as the baby boomer generation enters retirement age, the  need for skilled nurses and other health care professionals is rapidly  increasing. However, the greater challenge for health care facilities is to  recruit and retain motivated, dedicated professionals who will help deliver the  quality care that is demanded of them by every aspect of the industry. <span class="company">TOTAL  CARE NURSING SERVICES</span> has the vision to answer this challenge and provide the  needed personnel to its clients at reasonable cost.
      <!-- end #mainContent -->
    </p>
      </div>
    <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
      <div id="footer">
        <p><span class="spaceFooter"><a href="index.html">Home</a></span>l <span class="spaceFooter"><a href="mailto:[email protected]">E-Mail</a></span>l <span class="spaceFooter"><a href="links.html">Links</a></span>l <span class="spaceFooter"><a href="search.html">Search</a></span><br />
          Copyright 2009 - Total Care Nursing Services, LLC
    <!-- end #footer -->
        </p>
    </div>
    <!-- end #container -->
    </div>
    </body>
    </html>

    2.
    Deleting and getting the file should solve this problem.
    3.
    You should only require 2 IE conditional statement (for css code), one for less than IE 8 and one for less than IE 7.
    Both or just one of these should be inside the <head> </head> tags not anywhere else.
    The conditional statment in flash are for <object> code.
    Here is an example of how the flash code should look for your webpage:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="250" height="204" id="FlashID" title="name of your swf file here without .swf">
            <param name="movie" value="link to your swf file here" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="8.0.35.0" />
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="../Scripts/expressInstall.swf" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="link to your swf file here" width="250" height="204">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="8.0.35.0" />
              <param name="expressinstall" value="../Scripts/expressInstall.swf" />
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash
                  Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object>
    The width and height values to be changed to what you require.
    NO other code is required.
    PZ

  • Trip Number gets disappeared after clicking the UWL work item

    Hi All,
    When i click on work item in UWL to make a decision on it, a pop up gets opened trip form(there is error on trip formu201D Error while initiating travel form") . When i close this popup & return to UWL , trip number of that item gets disappeared.
    Similarly when i launch UWL , some trip numbers do not appeared.
    Please help.
    Regards,
    Amit S

    Hi Piyush,
    Thanks for replying.
    I already tried it. it is not useful . following is XML file for tsk TS20000118. I think there is problem inside code.since i am not able to locate Action & view in Content folder. Please see the bold texts.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN' 'uwl_configuration.dtd'
      >
    <UWLConfiguration version="1.0">
      <ItemTypes>
        <ItemType name="uwl.task.webflow.decision.TS20000118" connector="WebFlowConnector" defaultView="com.sap.pct.erp.mss.tra.view.RequestApprovalView" defaultAction="com.sap.pct.erp.mss.tra.action.DisplayRequestForm" executionMode="default">
          <ItemTypeCriteria externalType="TS20000118" connector="WebFlowConnector"/>
          <CustomAttributes>
            <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalId" objectType="WebflowContainer" cacheValidity="final">
              <Attribute name="TripNumber" type="string" displayName="Trip Number"/>
              <Attribute name="EmployeeNumber" type="string" displayName="Employee Number"/>
            </CustomAttributeSource>
          </CustomAttributes>
          <Actions>
            <Action name="com.sap.pct.erp.mss.tra.action.DisplayRequestForm" groupAction="" handler="SAPAppLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="toolbar=no,menubar=no">
              <Properties>
                <Property name="SAPIntegrator" value="ROLES://portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.roles/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_travel_expenses/com.sap.pct.erp.ess.tripform"/>
                <Property name="sap.xss.tra.TripComponent" value="R"/>
                <Property name="sap.xss.tra.PersNo" value="${item.EmployeeNumber}"/>
                <Property name="display_order_priority" value="10"/>
                <Property name="sap.xss.tra.TripNo" value="${item.TripNumber}"/>
              </Properties>
              <Descriptions default="com.sap.pct.erp.mss.tra.action.DisplayRequestForm"/>
            </Action>
          </Actions>
        </ItemType>
      </ItemTypes>
      <Views>
        <View name="com.sap.pct.erp.mss.tra.view.PlanApprovalView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.decision.TS01000124" columnOrder="TripNumber, statusIcon, subject, priority, creatorId, createdDate, dueDate, processor, forwardedDate, attachmentCount, detailIcon, APPROVE, REJECT, SENDBACK" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="com.sap.pct.erp.mss.tra.PlanApproval">
          <DisplayAttributes>
            <DisplayAttribute name="REJECT" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.RejectPlan" referenceBundle="com.sap.pct.erp.mss.tra.Reject" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="SENDBACK" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.SendBackPlan" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="APPROVE" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.ApprovePlan" referenceBundle="com.sap.pct.erp.mss.tra.Approve" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="TripNumber" type="string" width="" sortable="yes" format="default" referenceBundle="com.sap.pct.erp.mss.tra.TripNumber" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
          </DisplayAttributes>
          <Actions>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.ApprovePlan" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Approve" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="decisionKey" value="0001"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.SendBackPlan" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0002"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.RejectPlan" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Reject" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0003"/>
              </Properties>
            </Action>
            <Action reference="submitUserDecisions"/>
            <Action reference="com.sap.pct.erp.mss.gotoWorkcenter"/>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
            <Action reference="removeFromNavigation"/>
          </Actions>
        </View>
        <View name="com.sap.pct.erp.mss.tra.view.RequestApprovalView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.decision.TS20000118" columnOrder="TripNumber, statusIcon, subject, priority, creatorId, createdDate, dueDate, processor, forwardedDate, attachmentCount, detailIcon, APPROVE, REJECT, SENDBACK" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="com.sap.pct.erp.mss.tra.RequestApproval">
          <DisplayAttributes>
            <DisplayAttribute name="REJECT" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.RejectRequest" referenceBundle="com.sap.pct.erp.mss.tra.Reject" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="SENDBACK" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.SendBackRequest" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="APPROVE" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.ApproveRequest" referenceBundle="com.sap.pct.erp.mss.tra.Approve" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="TripNumber" type="string" width="" sortable="yes" format="default" referenceBundle="com.sap.pct.erp.mss.tra.TripNumber" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
          </DisplayAttributes>
          <Actions>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.ApproveRequest" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Approve" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="decisionKey" value="0001"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.SendBackRequest" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0002"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.RejectRequest" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Reject" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0003"/>
              </Properties>
            </Action>
            <Action reference="submitUserDecisions"/>
            <Action reference="com.sap.pct.erp.mss.gotoWorkcenter"/>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
            <Action reference="removeFromNavigation"/>
          </Actions>
        </View>
        <View name="com.sap.pct.erp.mss.tra.view.TravelApproverWOC" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.decision.TS20000131, uwl.task.webflow.decision.TS01000124, uwl.task.webflow.decision.TS20000118, uwl.task.webflow.decision.TS20000135" columnOrder="TripNumber, statusIcon, subject, dueDate, priority, creatorId, createdDate, processor, forwardedDate, attachmentCount, detailIcon" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="top" referenceBundle="com.sap.pct.erp.mss.tra.Travel">
          <DisplayAttributes>
            <DisplayAttribute name="TripNumber" type="string" width="" sortable="yes" format="default" referenceBundle="com.sap.pct.erp.mss.tra.TripNumber" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
          </DisplayAttributes>
          <Actions>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
            <Action reference="removeFromNavigation"/>
            <Action name="viewDetail" groupAction="" handler="uwlExcludeAction" returnToDetailViewAllowed="yes" launchInNewWindow="no">
              <Descriptions default="viewDetail"/>
            </Action>
            <Action reference="com.sap.pct.erp.mss.gotoWorkcenter"/>
          </Actions>
        </View>
        <View name="com.sap.pct.erp.mss.tra.view.TripApprovalView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.decision.TS20000131" columnOrder="TripNumber, statusIcon, subject, priority, creatorId, createdDate, dueDate, processor, forwardedDate, attachmentCount, detailIcon, APPROVE, REJECT, SENDBACK" sortby="priority:descend, dueDate:ascend, createdDate:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" refresh="300" dueDateSevere="0" dueDateWarning="0" emphasizedItems="none" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" referenceBundle="com.sap.pct.erp.mss.tra.TripApproval">
          <DisplayAttributes>
            <DisplayAttribute name="REJECT" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.RejectTrip" referenceBundle="com.sap.pct.erp.mss.tra.Reject" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="SENDBACK" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.SendBackTrip" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="APPROVE" type="checkbox" width="" sortable="no" format="default" actionRef="com.sap.pct.erp.mss.tra.action.approver.ApproveTrip" referenceBundle="com.sap.pct.erp.mss.tra.Approve" hAlign="CENTER" vAlign="MIDDLE" maxTextWidth="0" headerVisible="yes"/>
            <DisplayAttribute name="TripNumber" type="string" width="" sortable="yes" format="default" referenceBundle="com.sap.pct.erp.mss.tra.TripNumber" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes"/>
          </DisplayAttributes>
          <Actions>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.ApproveTrip" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Approve" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="decisionKey" value="0001"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.SendBackTrip" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.SendBack" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0002"/>
              </Properties>
            </Action>
            <Action name="com.sap.pct.erp.mss.tra.action.approver.RejectTrip" groupAction="yes" handler="UserDecisionHandler" referenceBundle="com.sap.pct.erp.mss.tra.Reject" returnToDetailViewAllowed="no" launchInNewWindow="no">
              <Properties>
                <Property name="UserDecisionNote" value="true"/>
                <Property name="decisionKey" value="0003"/>
              </Properties>
            </Action>
            <Action reference="submitUserDecisions"/>
            <Action reference="com.sap.pct.erp.mss.gotoWorkcenter"/>
            <Action reference="refresh"/>
            <Action reference="defaultGlobalWizard"/>
            <Action reference="addToNavigation"/>
      Regards,
    Amit

  • Tomcat 4 - value of URL param disappear after calling sendRedirect()

    Environment:
    Tomcat 4.0.1
    Windows 2000
    XSQLServlet (xdk_java_9_0_1_2_0)
    Problem: The test2002.xsql page (converted with test2002XSL.xsl)
    call utility servlet test2002Servlet.java to prepare
    page parameters for SQL query and redirect (sendRedirect)
    back to the same page (test2002.xsql) after click on
    search button on the appropriate form.
    If the search condition is "Search Name" (the string column
    MP01_NAME in database table SYSADM.MP01) everything is OK
    If the search condition is Search ID (the NUMBER column MP01_TYP
    in the database table SYSADM.MP01) the value of returned
    parameters disappear.
    The same piece of code works OK on Tomcat 3.3
    (I know that this version of XSQLServlet is certified with
    Tomcat 3.2, but I do
    want to know what is the reason of this problem)
    Here are the source codes:
    1. TABLE MP01 with two columns; MP01_TYP NUMBER and MP01_NAME
    STRING
    2. test2002.xsql (the XSQL page)
    <?xml version="1.0" encoding="WINDOWS-1252"?>
    <?xml-stylesheet type="text/xsl" href="test2002XSL.xsl" ?>
    <page connection="mer" p= "" query=" " select="*" search=""
    xmlns:xsql="urn:oracle-xsql">
         <search>
              <xsql:include-param name="search"/>
              <xsql:include-param name="select"/>
         </search>
         <resultset>
              <xsql:query tag-case="upper">
    SELECT mp01_typ, mp01_name
    FROM sysadm.mp01
    {@query}
    </xsql:query>
         </resultset>
    </page>
    3. test2002XSL.xsl (the XSL transform page)
    <?xml version="1.0"?>
    <xsl:stylesheet
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html" ident="no"/>
    <!-- Root template -->
    <xsl:template match="/">
    <html>
    <head>
    <title>TITLE</title>
    </head>
    <body>
    <xsl:apply-templates select="page/search"/>
    <xsl:apply-templates select="page/resultset"/>
    </body>
    </html>
    </xsl:template>
    <!--
    + RESULTSET TEMPLaTE
    -->
    <xsl:template match="page/resultset">
    <!-- Resultset Column Titles -->
    <table width ="100%">
    <tr>
    <td width = "30%">ID</td>
    <td width = "70%">NAME</td>
    </tr>
    <xsl:apply-templates/>
    </table>
    </xsl:template>
    <!-- ResultSet Data -->
    <xsl:template match="resultset/ROWSET/ROW">
    <tr>
    <td><xsl:value-of select="MP01_TYP"/></td>
    <td><xsl:value-of select="MP01_NAME"/></td>
    </tr>
    </xsl:template>
    <!--
    + END RESULTSET
    -->
    <!-- SEARCH -->
    <xsl:template match="search">
    <b>
    <form action="servlet/test2002Servlet"
    method="post" name="search" >
    <input type="hidden" name="h_returnTo"
    value="test2002.xsql"/>
    <input type="hidden" name="h_table" value="mp01"/>
    <table>
    <tr>
    <td >
    <select name="select" size="1">
    <xsl:choose>
    <xsl:when test="/page/search/select
    = 's_mp01_name'" >
    <option value="n_mp01_typ">Search ID
    =   </option>
    <option value="s_mp01_name" selected
    = "">Search Name Like:   </option>
    </xsl:when>
    <xsl:otherwise>
    <option value="n_mp01_typ" selected
    = "">Search ID =   </option>
    <option value="s_mp01_name">Search Name
    Like:   </option>
    </xsl:otherwise>
    </xsl:choose>
    </select>
    </td>
    <td>
    <input type="text" name="search"
    value="{search}" size="35" maxlength="35"/>
    </td>
    <td>
    <input type="image" SRC="images/go.gif"
    ALT="Search_now" width="21" height="21"/>
    </td>
    </tr>
    </table>
    </form>
    </b>
    </xsl:template>
    <!--
    + END of SEARCH
    -->
    </xsl:stylesheet>
    4. test2002Servlet.java
    // chage /galiot/ to your context
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class test2002Servlet extends HttpServlet {
    * Initialize global variables
    public void init(ServletConfig config) throws ServletException
    super.init(config);
    * Process the HTTP Get request
    public void doGet(HttpServletRequest req, HttpServletResponse
    res)
    throws ServletException, IOException {
    doPost(req, res);
    * Process the HTTP Post request
    public void doPost(HttpServletRequest req, HttpServletResponse
    res) throws ServletException, IOException {
    String r_returnTo = "";
    String r_table = "";
    String r_conditionBefore = "";
    String r_conditionAfter = "";
    String r_column = "";
    String r_search= "";
    String r_searchType = "";
    String r_returnString = "";
    String r_select = "";
    Enumeration paramNames = req.getParameterNames();
    // Get Param Names
    while(paramNames.hasMoreElements()) {
    String paramName = (String)paramNames.nextElement();
    // Look at paramNames to create return Params
    // First the XSQL page to redirect
    if(paramName.equals("h_returnTo")) {
    String[] paramValues = req.getParameterValues
    (paramName);
    r_returnTo = paramValues[0];
    //Second name of the table in database
    } else if (paramName.equals("h_table")) {
    String[] paramValues = req.getParameterValues
    (paramName);
    r_table = paramValues[0];
    //Search conditions
    } else if (paramName.equals("search")) {
    String[] paramValues = req.getParameterValues
    (paramName);
    r_search = paramValues[0];
    // If search is string than to UpperCase
    if (r_searchType.equals("s")) {
    r_search = r_search.toUpperCase();
    //Create search conditions in the SQL Statement
    } else if (paramName.equals("select")) {
    String[] paramValues = req.getParameterValues
    (paramName);
    r_select = paramValues[0];
    r_column = paramValues[0].substring(2);
    r_searchType = paramValues[0].substring(0,1);
    if (r_searchType.equals("s")) {
    r_search = r_search.toUpperCase();
    r_conditionBefore = " LIKE '%25";
    r_conditionAfter = "%25'";
    } else if (r_searchType.equals("n")) {
    r_conditionBefore = " = ";
    r_conditionAfter = " ";
    // WORNING cahnge my context galiot to your
    r_returnString = "/galiot/" +
    r_returnTo +
    "?" +
    "query=" +
    " WHERE " +
    r_column +
    r_conditionBefore +
    r_search +
    r_conditionAfter +
    "&" +
    "search=" +
    r_search +
    "&" +
    "select=" +
    r_select;
    try {
    System.out.println("SendRedirect: " + r_returnString);
    res.sendRedirect(r_returnString);
    } catch (Exception e) {
    System.out.println("Error " + e.toString());

    Hi
    how do you let your user log in from your page ?
    It's easy to write you own login form instead of the seeded one and give the p_back_url the correct value including the parameters of the current page (retrieved via javascript for instance)
    L.

  • Mapping-source column(for the measure)disappears after pressing apply

    I am using AWM 11.2.0.2.0B and Oracle 11.2.
    I have successfully mapped my dimensions. Then I defined a stored measure, say DISTANCE and I want to map it to a column in my database. When I click the "apply" button, the mapping disappears! And I can not find any error messages. I have tried mapping another column to it (defining a different measure), still the mapping disappears after applying.
    The type of the data(measure) is number(22) in my database, so I choose Data type: Number, Precision:22 and Scale=0 in my cube(storage section) and I check "use compression", therefore the measure will inherit the mentioned data type (of cube). I also tried using integer as the data type, no success. I first doubted that it expects some different type of data to be mapped, but seems that is not the problem. Every column I put there as my source column disappears after clicking on apply!
    Any idea what the problem is or where I should find a log?
    Edited by: 903009 on Dec 17, 2011 10:03 PM
    Edited by: 903009 on Dec 17, 2011 10:05 PM

    Hi Veeresh,
    As per my understanding, this error happens when the OLE DB Source component cannot find the corresponding source column in the database table. Possible reason is the the column name in the external database table has changed or
    the column has been removed.
    To verify this issue, please go to the Advanced Editor for OLE DB Source Input and Output Properties tab to see the External columns and Output columns. To fix it, please refresh the data or recreate the Source.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Creating Page Layout Problem : Page Content Disappears

    Hello,
    I am a recent grad and new to the world of Sharepoint and ASP.
    I created a Page Layout with 3 columns and I implemented the 'Page Content' in each column.
    When I enter anything ( Text or HTML)  in the Page Content and save, it immediately discards what I entered and saved.
    What am I doing wrong? 
    Thanks in advance.

    Hi,
    According to your post, my understanding is that Page Content Disappears after you save the created Page Layout.
    The issues is caused by that Page Layout is not assocaited with the content type.
    Please make sure you create Page Layout correctly. You can refer to:
    How to: Create a page layout in SharePoint 2013
    Here is a similar thread for you to take a look at:
    http://islamkhattab.blogspot.in/2013/04/publishing-page-layout-image-field.html#!/2013/04/publishing-page-layout-image-field.html
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Some Maisl recieved diappear after clicking on email. ONLY with some emails

    Some Mails recieved disappear after clicking theml. This happens ONLY with some emails, inconsistant. Anyone experienced this als well? Solution available? Txs

    HI,
    We had a similar problem while creating a NCR.You can give this one a shot. Just see whats the "Tax Code' for the supplier that you have entered while creating the NCR.Try changing the tax code for that particular supplier and see if it is working fine.
    Subbu

  • I'm trying to install itunes on new laptop but after clicking install button it jumps straight to thank you page!

    i'm trying to install itunes on laptop but after clicking install button it jumps straight to thank you page!

    Hello hate_technology,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    If you are having trouble installing iTunes or QuickTime for Windows, follow the troubleshooting steps in this article.
    Best of luck,
    Mario

  • Show Top of the Page after Click Save button

    Hi all,
     i have requirement i want show top of the page after click of save button.if you know answer please give reply.
    Regards
    VeerendraNadh

    Hi,
    Would you mind providing more details(screenshot would be better) about your requirement? It would make others easier to find a solution for you.
    Suppose that there is a scenario like this: Edit a page, when content grows too large, page will scroll to the bottom of the page. When clicking “Save” button in the
    ribbon, by default, page will scroll to the top just like it is first loaded in the browser.
    Feel free to reply if this is not what you really mean.
    Best regards
    Patrick Liang
    TechNet Community Support

Maybe you are looking for

  • Mpas or lack of

    Hi can any one Help I removed the memory card to upgrade maps in larger memory card map loader did not work it down loaded the maps but did not install. I replace original memory card it says after trying to reinstall maps on phone unable to complete

  • My (saved) book totally disappeared from the Book module in Lightroom

    Dear +Adobe Photoshop Lightroom, I have been working for the past 100 hours or so on a 200+ page book in the book module in LR4. Went to work on a second book that I had just begun to organize and came back to a full filmstrip (including the usage nu

  • Why can I not get the green widget to activate on messaging?

    On my i pad mine when messaging the green widget will not activate so I can only do i messaging which means my non apple friends are not contatctable.

  • Digital cameras

    I am looking to buy a new digital camera and need some help.  I need an all around durable and highly functional camera for my family.  We are very active and I will need to be able to have this camera in many situations.  I don't need an SLR as far

  • Adapter Exchange Program Request/Shipment Status Support or Contact Info

    If I submitted an adapter exchange request online on 14 October 2008 and have not yet received the new adapter and return shipment info for the old adapter, how do I request follow-up assistance/support using the Online Assistant or directly via e-ma