EREC: Stars disappear when assigment page is refreshed.

Hi Experts,
I am really stuck on this and hope someone guides me.
I am facing problem in Assignment page for the requisition. Where ranking details are displayed and stars are visible for the listed candidates. When assignment page is refreshed, stars which were visible earlier will disappear.
Why refreshing making the ranking stars to disappear? Is there any note to address this issue? Please help out.
Regards
Savitha
Edited by: SAPHCMRR on Aug 4, 2011 12:46 PM
Edited by: SAPHCMRR on Aug 5, 2011 9:18 AM

Hello Savitha,
Note 1124565 originally had a correction instruction for EHP4 although this was not necessary (because the changes have been implemented before EHP4 was shipped). One of my colleagues came across this fact and we deleted the correction instruction for EHP4.
It seems like someone tried to reapply the note in your system after it has been changed and that during this the LOOP-statement got lost. I had a look at the version history of GET_AUTO_SRCH_LST_BY_CDCY_LST and to me it seems like the coding had been there correctly (in the initial version 1), most probably because it was part of the initial shipment of EHP4.
the code should be like this :
method get_auto_srch_lst_by_cdcy_lst.
  data: lt_hit_list             type rcf_t_hitlist_with_rankv,
        ls_srch_mtch            type rcf_s_hitlist_with_rankv,
        lt_cdcy_list            type rcf_t_assignments,
        ls_cdcy_list            type rcf_s_assignments,
        ls_hidden_info          type rcf_s_name_value,
        lt_hidden_info          type rcf_t_name_value,
        lo_ex                   type ref to cx_hrrcf,
        lv_is_ranking_supported type boole_d.
  field-symbols: <ls_cdcy_slct> type rcf_s_mass_proc_activities,
                 <ls_hit_list>  type rcf_s_hitlist_with_rankv.
  clear pt_srch_mtch_list_slct.
check if attribute ranking is supported
  if cl_hrrcf_switch_check=>hrerc_sfws_ui_enh_03( ) eq true.
    call function 'HR_RCF_CHECK_TREX_VERSION'
      importing
        ev_ranking_supported = lv_is_ranking_supported.
  endif.
  ls_hidden_info-fieldname  = 'REQUISITION'.
  ls_hidden_info-fieldvalue = ps_req_hrobject.
  append ls_hidden_info to lt_hidden_info.
  loop at pt_cdcy_list_slct assigning <ls_cdcy_slct>.
    ls_cdcy_list-cdcy_object = <ls_cdcy_slct>-hrobject.
    append ls_cdcy_list to lt_cdcy_list.
  endloop.
  unassign <ls_cdcy_slct>.
  try.
      call method cl_hrrcf_search_match_bl=>get_auto_srch_lst
        exporting
          p_search_compid    = p_search_compid
          ps_hrobject        = ps_req_hrobject
          pt_hidden_info_tab = lt_hidden_info
        importing
          pt_hit_list        = lt_hit_list
        changing
          pt_cdcy_list       = lt_cdcy_list.
      if lv_is_ranking_supported eq false.
        sort lt_hit_list by hrobject.
        loop at pt_cdcy_list_slct assigning <ls_cdcy_slct>.
          ls_srch_mtch-hrobject = <ls_cdcy_slct>-hrobject.
          read table lt_hit_list assigning <ls_hit_list>
            with key hrobject = <ls_cdcy_slct>-hrobject
            binary search.
          if sy-subrc eq 0.
            ls_srch_mtch-rankv = <ls_hit_list>-rankv.
          endif.
          append ls_srch_mtch to pt_srch_mtch_list_slct.
          clear: ls_srch_mtch.
        endloop.
      else.
        pt_srch_mtch_list_slct = lt_hit_list.
      endif.
    catch cx_hrrcf into lo_ex.
      raise exception type cx_hrrcf
        exporting
          previous = lo_ex.
  endtry.
endmethod.

Similar Messages

  • How can I make firefox highlight new unread items on Drudge when the page auto-refreshes

    So I read Drudge Report and checkit a few times a day. It would be nice to have the unread news items highlighted. The new items that appear after the page auto refreshes. It just occurred to me whilst writing this that I would have to open every link on the page to make the task of highlighting new content easier. I don't know but if there's a way to have the new unread items highlighted it would save time scanning the whole page for new stuff.
    Thanks,
    Mark

    Have you tried to subscribe to the page?
    '''https://support.mozilla.org/en-US/kb/how-subscribe-news-feeds-and-blogs?esab=a&s=subscribe&r=0&as=s'''

  • How to prevent applet from InterruptedException when the page is refreshed

    Hi Guys,
    Is there a way we can prevent an applet from being interrupted when the user navigates away or refreshes the page ?
    I am getting the below error whenever the user invokes the applet and navigates away or refreshes the frame.
    My requirement is the make the applet complete it action before it is destroyed or stopped.
    I am not sure if this problem is due to new java life cycle. I tried setting the legacy_lifetime=true and I got the same error or java.io.IOException when legacy_lifecycle=true
    java.lang.NullPointerException
         at java.awt.EventQueue.isDispatchThread(EventQueue.java:1005)
         at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.runOnEDT(Unknown Source)
         at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.start(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:780)
    Ignored exception: java.lang.NullPointerException
    java.lang.InterruptedException
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:196)
         at sun.plugin2.message.Queue.waitForMessage(Unknown Source)
         at sun.plugin2.message.Pipe$2.run(Unknown Source)
         at com.sun.deploy.util.Waiter$1.wait(Unknown Source)
         at com.sun.deploy.util.Waiter.runAndWait(Unknown Source)
         at sun.plugin2.message.Pipe.receive(Unknown Source)
         at sun.plugin2.main.client.MessagePassingExecutionContext.doCookieOp(Unknown Source)
         at sun.plugin2.main.client.MessagePassingExecutionContext.getCookie(Unknown Source)
         at sun.plugin2.main.client.PluginCookieSelector.getCookieFromBrowser(Unknown Source)
         at com.sun.deploy.net.cookie.DeployCookieSelector.getCookieInfo(Unknown Source)
         at com.sun.deploy.net.cookie.DeployCookieSelector.get(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.setCookieHeader(HttpURLConnection.java:1192)
         at sun.net.www.protocol.http.HttpURLConnection.writeRequests(HttpURLConnection.java:624)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1332)
         at com.sun.deploy.net.HttpUtils.followRedirects(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doRequest(Unknown Source)
         at com.sun.deploy.net.BasicHttpRequest.doGetRequestEX(Unknown Source)
         at com.sun.deploy.cache.ResourceProviderImpl.checkUpdateAvailable(Unknown Source)
         at com.sun.deploy.cache.ResourceProviderImpl.isUpdateAvailable(Unknown Source)
         at com.sun.deploy.cache.DeployCacheHandler.get(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:888)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:861)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1311)
         at sun.plugin.PluginURLJarFileCallBack.downloadJAR(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.access$000(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(AccessController.java:280)
         at sun.plugin.PluginURLJarFileCallBack.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(URLJarFile.java:217)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(URLJarFile.java:83)
         at sun.net.www.protocol.jar.JarFileFactory.get(JarFileFactory.java:95)
         at sun.net.www.protocol.jar.JarURLConnection.connect(JarURLConnection.java:135)
         at sun.net.www.protocol.jar.JarURLConnection.getJarFile(JarURLConnection.java:102)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.access$1000(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(AccessController.java:280)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.ensureOpen(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.<init>(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(AccessController.java:280)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(AccessController.java:314)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:689)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:780)
    Thanks
    Sunny
    Edited by: user10728422 on Feb 26, 2013 1:42 AM

    An applet cannot access the client's filesystem. So there's no worry. All the .class files come from the server, unless you're using a ClassLoader to explicitly load from a certain location in clients hd with all the necessary security permissions.

  • Auto-sleep won't work when web pages auto-refresh

    Dear Apple,
    Around 4 years ago, I noticed that my computer stopped going to sleep. I first noticed it shortly after adopting Gmail for my email platform and was subsequently able to isolate the issue down to Gmail and other websites, such as Huffington Post, which auto-refresh. Apparently, any website that auto-refreshes at shorter intervals than the auto-sleep is set to kick in, prevent the computer's auto-sleep function from activating.
    I have spoken at length with AppleCare about this issue and understand that this is "by design." For instance, we wouldn't want the computer to constantly go to sleep while watching a movie or downloading and conversely, if we are actively working at our computers it's nice that Gmail auto-refreshes and keeps us appraised of incoming mail. However, since the vast majority of users now leave their browsers with multiple tabs open and due to the fact that more and more websites now auto-refresh, the auto-sleep function has become outdated and non-functional. While users can always manually put their computers to sleep, everyone at some time or another forgets to do so. This is exactly why computers are supposed to auto-sleep in the first place. Aggregated across millions of users, this results in a huge waste of electricity.
    I've been writing/calling Apple (through AppleCare and the online feedback form) about this issue for 4 years now. I keep hoping that with each operating system release, some sort of "smart auto-sleep" function will be incorporated that will recognize when websites auto-refresh and still allow auto-sleep to kick in. Unfortunately, this does not appear to be the case in Lion.
    I work in the energy efficiency field, specifically in lighting, and care deeply about this issue. I consider Apple to be an industry leader on this issue as well. I'm not familiar with the technical side of this issue, but I assume that with the right type of programming, the operating system could override a webpage's auto-update feature and activate auto-sleep, while not interfering with functions where a user would not want the computer to go to sleep, such as watching a movie. With Lion, Apple has focused its energy on making the computer adjust to the user,rather than the user adjusting to the computer. Yet, in this case, it appears to be the other way around.
    It is time for Apple to update the auto-sleep function so that it takes into account websites that auto-refresh. When I set my computer to auto-sleep after so many minutes, I want it to do so, regardless of whether I have a browser with auto-updating websites open. Apple must take this issue seriously, as the wasted electricity is too important to ignore any longer.
    Sincerely,
    An Energy-Conscious User

    I am obviously talking to Apple AND I posted this letter here, because a lot users seem confused about why their computers won't sleep. Even most AppleCare reps are confused. In the past, I couldn't find much in the way of explanations pointing to this issue, so I thought I post it here in case other people are looking for an explanation.
    The auto-sleep function was built before websites auto-updated and needs to be updated to accomodate them. For the average user, it doesn't make sense for the computer not to sleep just because Gmail is open. Just because some website auto-refreshes in my browser, doesn't mean I never want my computer to sleep. By the same token, if I wanted to turn off auto-sleep I could easily do so from within Energy Saver Preferences. The two should be independent, so the user has the choice.
    Why should I have to close my browser every time I walk away from my computer in order for it to sleep? I've acknowledged that in certain circumstance it makes sense for the computer not to auto-sleep: watching a movie, uploading, etc, but Apple has already accounted for those instances because the computer does not auto-sleep when those programs are running. All I'm suggesting is making the auto-sleep mechanism more sophisticated so that it isn't overridden by websites auto-refreshing. 
    Why the negative attitude, dwb? Based on the amount of time you spend in these discussion forums, you obviously never turn your computer off, so this doesn't really affect you. Maybe it's time to step outside and get some fresh air?

  • Do stars disappear when I send a file from Bridge to Bridge?

    What sounds like a bad line in a bad song means this. My client works thru his/her foto-files on a Mac or PC with the Adobe Bridge, marks them with stars categories, burns it to a disc, and I want to find all the markings when I open them on my Bridge. Does that work? My second q would be: Why is there no stand-alone Adobe Bridge, for Mac and PC?

    Forgot to comment on first part of question.  The ratings should transfer as believe they are written to the image file.  If the person is editing RAW files make sure the XMP file is also burned to disk as that file contains the edits.  The labels may show up with a with label as that indicates the name is different from one location to the other.

  • Problems with safari when the page is refreshing constantly

    Hi Everyone!!!
    I have a problem develoing an application in .Net. that is working in MAC with Safari 2.0.4. The application have a page that is refeshing every 3 sec. and over 40 min later the safari stop working, don´t responds and when you try to open an other safaris window, they close in that moment (all the safaris windows).
    Does anyone have the same problem and know how to fix it?
    Have any sugestion?
    Are "setInterval" or "clearInterval" the problem?
    <Script language="javascript">
    <!--
    if (window.refrescarAhoraPrin)
    clearInterval(refrescarAhoraPrin);
    refrescarAhoraPrin = setInterval("Timer1()",3000);
    function Timer1()
    if (LeerCookie("Refresco")== "1")
    parent.TimerPrincipal.location = "TimerPrincipal.aspx";
    else
    if (window.refrescarAhoraPrin)
    clearInterval(refrescarAhoraPrin);
    refrescarAhoraPrin = setInterval("Timer1()",3000);
    thanks a lot for your help!
    Rene Rmz

    Your ciphertext is corrupt. Print it out just before you return from the encryption method and just inside the decryption method. I bet they are not the same.
    Note - these lines worry me
    try {
                    result = new sun.misc.BASE64Decoder().decodeBuffer(msg);
                } catch (IOException ex) {
                    Logger.getLogger(LogInPanel.class.getName()).log(Level.SEVERE, null, ex);
                }If you get an IOException here then it does not make sense to carry on with the decryption process. Any exception here is fatal and should be chained to an Error so the whole decryption process is aborted.

  • Guides disappear when a page is duplicated

    Duplication of a page in thumbnails removes all the guides that were put in on the original page for object alignment and location.  Older version of Pages kept guides on duplicated page.

    anyone knows how to invoke a jsf logic onpage load w/o doing anything?
    In servlet, we can just use goGet or doPost to execute some tasks as user sends a request through url...
    how do i do this in jsf..?

  • SP 2010 Publishing - Rollup and Page Images not visible when entering page edit mode

    All:
    Hello, I have an odd issue recently appearing after installation of FEB 2013 CU install. When users select to Edit a Publishing Page the Rollup Image and also Page Image(Article Page Layout) are not visible. Only the "Click here to insert Image from
    SharePoint" link is visible.
    The issue has be confirmed in 5 servers across two farms
    DEV, QA, and PROD on client recently updated
    DEV and PROD in a completely separate client farm
    I have confirmed the issue does not exist in two separate farms running April 2012 CU. In both of those environments the image appears with issue even in Edit page mode.
    In the farms where the issue exists you can click the insert image link and simply hit OK to see the image again. An easy enough work around for tech savvy but my client's content admins are very confused/frustrated by.
    Is this a bug? I have confirmed in two separate farms including brand new web applications using out of the box publishing site templates.

    Hi.
    We have been facing the same issue in a 2013-environment (SP1), but in this case an upgraded 2010 Solution, which still runs in 2010-mode. Because of this, SharePoint still use resource-files in the 14-hive (as we have not performed an upgrade of Master
    Pages etc.) The problem is also reproduced on a clean 2010 Site Collection in the same 2013-environment.
    I have managed to find the cause of the problem (at least in our environment), and that is that as long as the selected picture/image has
    not defined an "AltText"/"Alternate Text" the problem seems to occur.
    In other words, try to define an Alternate Text and click OK in the "Edit Image Properties" Dialog.
    I don't know if this may be the case for everyone else, but give it a try.
    From this, I've further discovered (after hours of js-debugging) that there is a minor change (from 2010 to 2013) in a js-file called "SelectorControls.js" which is responsible for updating the various controls used in Page Layouts etc.
    The problem exist in a method called ASO_UpdateButtonsAndPanels(), which checks whether the Image Control in question has content or not (Url). The local variable "hasContent" is then determined of an if statement, if(this.AssetData.ManageLinkDisplayText)
    which in 2010 (14-hive) seems to be "true" regardless whether the Control is of type Image or Hyperlink. Further the code checks for AssetText (Alternate Text) which on an Image may be left empty.
    In 2013 (15-hive) however, this if statement has been changed to, if(this.SelectorType==ConstLinkSelectorType), which clearly states "Image" or "Link" depending on the type of control.
    I don't know if this is the cause of the problem in 2013, but in 2010 it seems to be exactly that.
    Pending a solution from Microsoft, we have modified SelectorControls.js to overcome this issue until the customer decides to do a Visual Upgrade to 2013.
    This is by all means not a supported nor a a permanent solution to the problem, as future Hotfixes, Service Pack etc. may "reset" our fix.
    Below is a copy of the working solution:
    function ASO_UpdateButtonsAndPanels()
    {ULSuBa:;
    var hasContent=!!this.AssetData.AssetUrl;
    //SharePoint 2010: ManageLinkDisplayText is always "True"
    //var hasContent=!!this.AssetData.AssetUrl;
    //if(this.AssetData.ManageLinkDisplayText)
    //hasContent=hasContent && !!this.AssetData.AssetText;
    //SharePoint 2013
    //var a=!!this.AssetData.AssetUrl;
    //if(this.SelectorType==ConstLinkSelectorType) a = a && !!this.AssetData.AssetText;
    //Fix for preventing existing selected image to disappear when saving page and/or editing a page with existing image.
    if(this.SelectorType!=ConstImageSelectorType)
    if(this.AssetData.ManageLinkDisplayText)
    hasContent=hasContent && !!this.AssetData.AssetText;
    if( hasContent )
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.EnableButton();
    this.GetAssetSelectedPanel().style.display="inline";
    this.GetEmptyPanel().style.display="none";
    else
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.DisableButton();
    this.GetAssetSelectedPanel().style.display="none";
    this.GetEmptyPanel().style.display="inline";
    I hope this helps anyone else struggling with the same problem.
    Thanks!
    Øyvind

  • ValueChangeListener not firing when iterator set to refresh=never

    I have an iterator that I have recently added a child node to. This child node is tied to a view object without a backing entity. The fields in that view can contain user supplied data that I persist through a stored procedure. This mechanism works great accept when the page is refreshed. When that happens the fields in the child node are lost due to the view being reexecuted.
    To fix this problem, I thought I could set the iterator to refresh=”never” and then programmatically refresh it when I need to. This solution appears to work but with one small problem, a valueChangeListener in one of the parent iterator fields fails to execute when it is supposed to.
    It is very weird. I can remove the refresh=”never” from the iterator and the valueChangeListener functions properly, but if I add it back, it fails to get called. I have compared the html source on the browser and the element is generated the same in both instances, so it is definitely some issue on the server side.
    Anyone ever run into a similar problem?
    <af:table rows="#{bindings.ItemCountrySystemsVO.rangeSize}"
              emptyText="#{bindings.ItemCountrySystemsVO.viewable ? \'No rows yet.\' : \'Access Denied.\'}"
              var="row"
              value="#{bindings.ItemCountrySystemsVO.treeModel}">
       <af:selectBooleanCheckbox  id="selectDesc"
                                  value="#{row.CheckBox}"
                                  autoSubmit="true"
                                  immediate="true"
                                  valueChangeListener="#{itemItemCountryDataActionBean.onChangeSystemDescCheckBox}" />
    <iterator id="ItemCountrySystemsVOIterator" RangeSize="10"
                  Binds="ItemCountrySystemsVO" DataControl="RMSItemAMDataControl" Refresh="never"/>
    <tree id="ItemCountrySystemsVO" IterBinding="ItemCountrySystemsVOIterator">
          <AttrNames>
            <Item Value="Item"/>
            <Item Value="CountryId"/>
            <Item Value="SystemCd"/>
            <Item Value="Status"/>
            <Item Value="StatusDate"/>
            <Item Value="PrimarySupp"/>
            <Item Value="CheckBox"/> 
          </AttrNames>
          <nodeDefinition DefName="od.adf.mp.datamodel.views.item.ItemCountrySystemsVO"
                          id="ItemCountrySystemsVONode">
            <AttrNames>
              <Item Value="Item"/>
              <Item Value="CountryId"/>
              <Item Value="SystemCd"/>
              <Item Value="Status"/>
              <Item Value="StatusDate"/>
              <Item Value="PrimarySupp"/>
              <Item Value="CheckBox"/> 
            </AttrNames>
            <Accessors>
              <Item Value="ItemCountrySystemsLangVO"/>
            </Accessors>
          </nodeDefinition>
          <nodeDefinition DefName="od.adf.mp.datamodel.views.item.ItemCountrySystemsLangVO"
                          id="ItemCountrySystemsLangVONode">
            <AttrNames>
              <Item Value="Item"/>
              <Item Value="System"/>
              <Item Value="Lang"/>
              <Item Value="LangDescription"/>
              <Item Value="CountryId"/>
              <Item Value="ItemDescription"/>
              <Item Value="OrigItemDescription"/>
            </AttrNames>
          </nodeDefinition>
        </tree>

    Using the refresh condition was definitely the better approach and it worked great. Unfortunately not refreshing the parent iterator did not prevent the reexecuting of the child node. I am at a loss on how to prevent this from happening. I am at a loss to explain why the reexecuting of the child view object happens at all when the parent hasn't changed.
    Any help is appreciated.

  • Background Image Disappear When Refreshing

    Hi,
    Recently, I encounter a problem for building my application. I define my own background for my application in formsweb.cfg. The background load the first time I access the page, but it disappears when I press refresh button. So, can anyone tell me why and how can I going to fix it? Thank you.
    Ramon

    Ramon,
    you don't specify a Forms version number, which makes it harder for us to help. It could be a problem in a Forms version that may be fixed in a subsequent patch. Without Forms release numer however, I cant tell. I suggest you contact customer support at metalink.oracle.com
    Frank

  • How can I make a table cell extend beyond the page?  The text disappears when the cell becomes larger than the page.

    How can I make a table cell extend beyond a page?  The text disappears when the cell becomes bigger than the page.  I want the table to continue to the next page.

    As a student, you might be able to get Office for Mac from the college bookstore at a substantial discount. Otherwise, I think your best option for documents that need to be shared with Office users is to get one of the free Office clones such as LibreOffice.

  • Why the window setting the printing disappeared when I try to select the page number of pdf file

    When I send the pdf file to the printer and try to select the page number to be printed by entering (e.g., 4-10), the page for setting up printing work suddenly disappeared.   As a result, I could only print pdf files from page 1 to the end, if I want to print any document.   I have no problem with printing word documents.  Thus, it should not be problems related to printer, right ?
    Your help is highly appreciated !

    What is your operating system?  Reader version?
    You mean the Print panel completely disappears when you enter some page numbers?

  • When using Pages, I can't seem to print an envelope.  I use file, then print, and see the printer icon come up in the dock showing it received the info but then quickly disappears and nothing gets printed. When I check the printer queue there is nothing

    Bear with me, I've not done this before.  I can't seem to reliably print an envelope when using Pages.  I go to "file" click "print", click "ok", see the printer icon flash in the dock with a red "1" (indicating a printing job), but then the icon disappears and nothing gets printed.  I checked the printers queue and there is nothing there.  The funny thing is, after many times hitting "print", twice I've had envelopes printed.  ???  What's the secret?

    Have you tested it from other software, such as TextEdit to establish that it is in fact Pages that is the problem?
    Step us through Print Setup... and what you select when you send it off to print.
    Peter
    From the
    Brother MFC-6800 Printer's User Guide:
    How Can I load envelopes:
    You can load envelopes from the multi-purpose sheet feeder. Your appliaction software must be set up to print the envelope size you are using. This is usually done in the Page Setup or Document Setup mebnu of your software. Refer to your appliaction manual
    It also mentions an issue with paper thickness.

  • Pages layout disappears when scrolling

    When using pages, after i select the template i want to use, i begin to edit the template. but if i scroll down, even just a little, the entire template vanishes. It is only when i scroll all the way up that the template is visible in the work space.
    What is going on? I dont understand. How can I work on a template when I can't even see it?
    Somebody please help, this is getting quite annoying.

    Hi Dennis,
    Thanks for your reply, however I do not think it is the document that has the problem. It is the program itself. Here is a detailed description of what happens:
    1. I open pages
    2. I pick out a template
    3. Template opens and I want to edit it
    4. I scroll down to view the lower part of the template (zoomis on 125%)
    5. Template disappears as soon as i start scrollng down. When I scroll back up to the top the template re-appears.
    If i change the zoom setting to "fit to page" everything is ok, but I have a hard time editing because what I see is too small.
    This is a strange problem is is really getting quite annoying becaus I cant use pages for anything because of this.

  • Validating items when page is refreshed

    Hi all,
    I have a page that contains a select list, two date pickers and a classic report. The page items are all used for filtering on the report.
    When any of the items has their values changed, a dynamic action fires and refreshes the report region, without submitting the page. This currently works as required.
    However, I want to validate the date pickers, ie. End Date cannot be before Start Date. This seems easy to do with the validation section when the page is being submitted, but I cant work out how to do this when the region is being refreshed dynamically.
    Can anyone offer a suggestion?
    Apex version 4.0
    Regards
    ~P

    Implement PRG pattern. After finishing of the POST processing, but before sending anything to the response, immediately invoke a Redirect to a new GET request on the same URL. Then refreshing won't resend the POST request, but only the GET request.

Maybe you are looking for