Overview of Leave : Message Display possible as of 07.10.2008 only

Hi ,
In ESS / Leave request / Show overview of Leave in the field "Leave Since" we try to put a date in the past and we receive the following message : Display possible as of 07.10.2008 only .
Is that due to configuration ? Is that standard SAP to display only "future" Leave ?
Thank you .

Thanks. Prompt reply!
Iu2019ll give it a go. That does seem to be missing from the system I have found this problem.

Similar Messages

  • While raising Leave Request on ESS: getting warning message displayed

    Hi All,
    When i am trying to raise a leave request from ESS i am getting the warning message displayed on the page  as follows:
    "Customizing for employee 00001153 does not exist"
    I want this message to be removed.
    Is this problem from R/3 end or any configuration needs to be done on ESS ?
    Pls let me know how to remove this message.
    Regards
    Vijay

    this message ensues when there is a missing customisation for the pernr, For example :
    message is being displayed due to rule group customizing is missing
    for a leave '0560' for which a leave record exists on the date
    '14th March 2008'.
      One possible solution would be to create a record in the customizing or delete the record from the application.
    So please check the customisation of the absences, Quotas, rule group etc for this particular employee

  • Statistics (overview) for Synchronous messages processed via AAE

    Hello,
    We are on PI 7.11
    Is there any way to get synchronous messages processed via AAE displayed on RWB Message Monitor Overview view?
    Maybe there is some parameter available similar to messaging.syncMessageRemover.removeBody for persisting payloads for sync messages.
    Thanks!
    Best Regards,
    Artsiom Anichenka

    Mark,
    But I think there is already (PI 7.11) a possibility to persist payloads for java-only sync messages. I was mentioning this parameter in my original post:
    messaging.syncMessageRemover.removeBody
    this parameter is true by default and if you set it to false payloads will not be deleted, but this is not our aim. We want payloads to be deleted from sync messages, but we also want to see those messages on RWB MessageMonitor for overview.
    For me this is somekind of frustrating that the overview page doesn't really give you overview of what is happening on your system, like what and how many messages where processed...
    So can you please specify what is really planned for 7.31. Did you meant that parameter I am mentioning above or we will really get sync java-only messages to overview?
    Best Regards,
    Artsiom Anichenka

  • HT2500 After my last software update I can no longer access my mail.  message displayed says "you have mail version 4.5 this cannot be used on  Mac OS X Version 10.6.8 .  How do I fix this???

    After my last software update I can no longer access my mail.  message displayed says "you have mail version 4.5 this cannot be used on  Mac OS X Version 10.6.8 .  How do I fix this???

    See possible fixes here.
    https://discussions.apple.com/message/19760703#19760703
    https://discussions.apple.com/thread/4311280?tstart=0
    https://discussions.apple.com/message/19710911#19710911
    Some have reported success simply by reinstalling the update.
    http://support.apple.com/kb/DL1586
    Or download and apply, or reapply, the 10.6.8 Combo update first, then apply the Security Update again.
    http://support.apple.com/kb/DL1399
    I'd suggest starting with the simplest of these fixes, so look them over first.

  • Constraints / limitations of af:message for inline message display ?

    Using JDev 11.1.1.3; reading the help content, it seems very simple to drop an af:message component onto the page, and associate with a component for validation message display. Trying it inside a popup belonging to a jspx page works fine, but when I try and use it inside a popup contained within a bounded task flow / fragment, the validation framework appears to be ignoring the message component, and using the balloon hint message display instead. Thinking maybe the For/edit property selection isn't properly handling the nesting of components, I've located the message components closer/next to the source component, but no change ...
    <af:panelFormLayout id="pfl2" labelAlignment="top">
    <af:panelLabelAndMessage id="pgl3" label="#{bindings.CtFlag.label}">
    <af:panelGroupLayout id="pgl5" layout="horizontal">
    <af:selectOneRadio value="#{bindings.CtFlag.inputValue}" required="#{bindings.CtFlag.hints.mandatory}"
    shortDesc="#{bindings.CtFlag.hints.tooltip}" id="sorct" autoSubmit="true"
    layout="horizontal" simple="true"
    valueChangeListener="#{backingBeanScope.ClaimMedical.setConditionCtFlag}">
    <f:selectItems value="#{bindings.CtFlag.items}" id="si2"/>
    </af:selectOneRadio>
    <af:spacer width="10" height="3" id="s3b"/>
    <af:inputDate value="#{bindings.CtFromDate.inputValue}" label="#{bindings.CtFromDate.hints.label}"
    required="#{backingBeanScope.ClaimMedical.ctPeriodRequired}" shortDesc="#{bindings.CtFromDate.hints.tooltip}"
    id="idctf" columns="10" partialTriggers="sorct" disabled="#{!backingBeanScope.ClaimMedical.ctPeriodRequired}"> <<<<<<<<<<
    <f:validator binding="#{bindings.CtFromDate.validator}"/>
    <af:convertDateTime type="date" pattern="#{Constants.dateFormat}"/>
    </af:inputDate>
    <af:spacer width="5" height="3" id="s3c"/>
    <af:inputDate value="#{bindings.CtThruDate.inputValue}" label="#{bindings.CtThruDate.hints.label}"
    required="#{backingBeanScope.ClaimMedical.ctPeriodRequired}" shortDesc="#{bindings.CtThruDate.hints.tooltip}"
    id="idctt" columns="10" partialTriggers="sorct" disabled="#{!backingBeanScope.ClaimMedical.ctPeriodRequired}"> <<<<<<<<<<
    <f:validator binding="#{bindings.CtThruDate.validator}"/>
    <af:convertDateTime type="date" pattern="#{Constants.dateFormat}"/>
    </af:inputDate>
    <af:message id="m3" for="idctf"/> <<<<<<<<<<<<
    </af:panelGroupLayout>
    </af:panelLabelAndMessage>
    </af:panelFormLayout>
    <af:message id="m4" for="idctt"/> <<<<<<<<<<<<
    Doesn't seem to matter where I put them inside the popup, they don't display. I've used/removed the immediate/auto-submit properties on the inputDate, but no change.
    Are there constraints in when/how these can be used, or if not, what is it that I'm missing ?
    Thanks,

    Hi Srikavi,
    to achieve a Validation of an item when leaving the field you'll have to use some javascript code (as ApexLib does internally).
    What do you need:
    - onChange - Event on your Item
    - some Javascript code which is called in the onChange Event (you can put this code either in your page html header or, if it is used more often in your application, in a seperate js File)
    - call the ApexLib method apexlib.error.showError to display your error
    I actually never tried it myself, but i'm pretty sure that this will work (according to what i've seen in the ApexLib code).
    Have fun and tell us how it went,
    Peter
    Edited by: peter_raganitsch on Sep 5, 2008 11:56 AM

  • Hp2175xi printer Remove and check cartridge. error message displayed on printer.

    Remove and check cartridge error message displayed on printer. I have removed and inspected cartridges and no problems were evident. Shut down printer and restarted, unplugged and restarted same error displayed. Please help with any suggestions or solutions.
    Thanks John

    Hi
    If the cartridge isn't empty and you've tried the usual troubleshooting (which includes cleaning the contacts on the cartridge and in the printer) then it's probably best to contact Phone Support for a possible replacement.
    You can check if the cartridge is still within warranty by checking the warranty ends date here
    Best Regards
    Ciara
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • Show Overview of Leave - ERROR

    When an employee clicks on "Show Overview of Leave" in the leave
    applications the line items are displayed in the Table below.
    As soon as the person clciks on any of the line items to perform
    certains action (may be Delete) the application dumps.
    DUMP IS AS FOLLOWS
    The initial exception that caused the request to fail, was
       com.sap.tc.webdynpro.progmodel.context.ContextException: Node(FcSelectionList.SelectList): cannot fill a ModelNode automatically. Change the cardinality or use a supply function.
        at com.sap.tc.webdynpro.progmodel.context.Node.doSupplyElements(Node.java:452)
        at com.sap.tc.webdynpro.progmodel.context.Node.supplyElements(Node.java:406)
        at com.sap.tc.webdynpro.progmodel.context.Node.getElementList(Node.java:345)
        at com.sap.tc.webdynpro.progmodel.context.Node.createMappedElementList(Node.java:498)
        at com.sap.tc.webdynpro.progmodel.context.Node.supplyElements(Node.java:393)
    com.sap.tc.webdynpro.progmodel.context.ContextException: Node(FcSelectionList.SelectList): cannot fill a ModelNode automatically. Change the cardinality or use a supply function.
         at com.sap.tc.webdynpro.progmodel.context.Node.doSupplyElements(Node.java:452)
         at com.sap.tc.webdynpro.progmodel.context.Node.supplyElements(Node.java:406)
         at com.sap.tc.webdynpro.progmodel.context.Node.getElementList(Node.java:345)
         at com.sap.tc.webdynpro.progmodel.context.Node.createMappedElementList(Node.java:498)
         at com.sap.tc.webdynpro.progmodel.context.Node.supplyElements(Node.java:393)
         at com.sap.tc.webdynpro.progmodel.context.Node.getElementList(Node.java:345)
         at com.sap.tc.webdynpro.progmodel.context.Node.createMappedElementList(Node.java:498)
         at com.sap.tc.webdynpro.progmodel.context.Node.supplyElements(Node.java:393)
         at com.sap.tc.webdynpro.progmodel.context.Node.getElementList(Node.java:345)
         at com.sap.tc.webdynpro.progmodel.context.Node.createMappedElementList(Node.java:498)
         at com.sap.tc.webdynpro.progmodel.context.Node.supplyElements(Node.java:393)
         at com.sap.tc.webdynpro.progmodel.context.Node.getElementList(Node.java:345)
         at com.sap.tc.webdynpro.progmodel.context.Node.validate(Node.java:593)
         at com.sap.tc.webdynpro.clientserver.data.DataContainer.validate(DataContainer.java:644)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.validateDataContainer(ClientComponent.java:688)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.validateDataContainer(ClientComponent.java:692)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.retrieveData(WebDynproWindow.java:364)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.retrieveData(AbstractClient.java:318)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.retrieveData(HtmlClient.java:267)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRetrieveData(WindowPhaseModel.java:595)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:156)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
         at com.sap.tc.webdynpro.portal.pb.impl.localwd.LocalApplicationProxy.sendDataAndProcessAction(LocalApplicationProxy.java:77)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1257)
         at com.sap.portal.pb.PageBuilder.SendDataAndProcessAction(PageBuilder.java:325)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:826)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    PLEASE HELP

    Hi Jack,
    Please let me know if your issue is resolved as Im facing a similar issue where my Team Calendar and Leave Request has this problem in Development Portal.
    Thanks in Advance.
    Regards
    Sairam Maharaj S

  • Profit Center message display in MV45AFZZ

    In include MV45AFZZ  USEREXIT_SAVE_DOCUMENT_PREPARE I have added code to display information message if profit centre is initial/blank for any line item.
    Suppose there are 3 line items for a sales order with line item 20 & 30 having profit centers as initial/blank. I get my information message displayed as Profit centre not maintained for line items: 20, 30. Then I press enter and it allows me to add profit centers for the missing line items.
    I assign profit centre for line item 20 only and for line item 30 I want it to be blank. Then I save it.
    Here comes my issue :
    Again information message displays as u201C Profit centre not maintained for line item 30u201D. Unless I enter profit center value in line item 30 the message displays. If I enter some value and save it then document is saved.
    I need the message to be displayed only once and user can enter missing profit centre for any line item & save it. Now its mandatory to enter profit center for all line items.
    IF FLAG IS INITIAL.
    LOOP AT xvbap.
      IF xvbap-prctr IS INITIAL.
         lv_posnr = xvbap-posnr.
         CONDENSE lv_posnr.
         CALL FUNCTION 'BKK_DELETE_LEADING_ZERO'
            CHANGING
              c_field       = lv_posnr.
          IF lv_text IS NOT INITIAL.
            CONCATENATE  lv_text lv_posnr into lv_text SEPARATED BY ','.
          ELSE.
            lv_text = lv_posnr.
          ENDIF.
      ENDIF.
      CLEAR lv_posnr .
    ENDLOOP.
    IF lv_text IS NOT INITIAL.
          fcode = 'ENT1'.
          CONCATENATE zmsg_txt lv_text INTO zmsg.
          message i000(ZZ) WITH zmsg.
             FLAG = 1.
             fcode = 'ENT1'.
             LEAVE TO SCREEN 4001.
       ENDIF.
    ENDIF.
    ~Arya
    Edited by: arya soumya on Feb 1, 2012 10:36 AM

    Hi Soumya,
    Giving a thought about the scenario you have explained, you need Message if profit centre is initial/blank for any line item.
    I would suggest you another approach i do not know how far will it suffice your requirement,
    Taking your example Suppose there are 3 line items for a sales order with line item 10, 20 & 30 having profit centers as initial/blank.
    You want to assign profit centre for line item 20 only but not for line item 30 since you want it to be blank.
    When you code anything with respect to the Profit Center of the Line Item, it will check for
    if PC is not initial immaterial whether you want it to be blank or not and in all cases it will give you the message
    Instead, create a program which will capture the Line Item number.
    1) Give the Line Item numbers to the new Z program, and inside the program export the values to a memory id.
    2) Import the same value in MV45AFZZ and then in XVBAP you already have the POSNR for which you want to SAVE inspite it is BLANK
    3) if xvbap-posnr = g_import_posnr
        then dont give the error message.
        else.
        give the error message.
        endif
    Revert for further clarification or is there any mistake in my understanding.
    Thanks
    Sri
    endif.

  • Errors in Message Display tool in Integration engine in Message Moni in RWB

    Hi,
    We are facing issues with the Message Monitoring in RWB.
    When we are selecting the Integration Engine and selecting the message and then clinking on details.
    We are able to see 4 tabs :
    1. Message Data
    2. Message Content
    3. Inbound Adapter
    4. Queue Monitor
    Is it right to display these 4 tabs for Integration engine ?
    Where will be this setting ? What tabs shud be there ?
    We are using XI 7.0 SP10.
    When we are selecting the Adapter Engine in Message Monitoring then we are getting Page cannot be displayed.
    Please provide your precious inputs to resolve this issue.
    Thanks
    Ramesh

    Hi Krishna,
    We have restarted the system but its not working.
    Adapter engine is working fine without any issues.
    Only the issues are unable to view the Message monitoring as it shud be.
    In Message Monitoing => Integartion Engine => Message Selected =>Click Details=> Message Display tool => Message Data Tab is fine.
    Message Content Tab => if we open we are getting the following error with SAP screen.
    **************************SSO logon not possible; browser logon ticket cannot be accepted
    Choose "Logon" to continue A dialog box appears in which you can enter your user and password
    No switch to HTTPS occurred, so it is not secure to send a password ****************************
    Please suggest us.
    Thanks,
    Ramesh

  • HT201210 Synching iPhone after factory restore and restore from backup; synching appears stuck on Step 5 of 5, "waiting for items to copy."  That message displays for hours with no apparent progress.

    Synching iPhone after factory restore and restore from backup; synching appears stuck on Step 5 of 5, "waiting for items to copy."  That message displays for hours with no apparent progress.

    I never had this problem, but just noticed it happening.. Please note it's a BUG. I went out and bought a 128GB  iPhone just to hold all my songs. It wouldn't work. This never happened with the iPhone 3/3s/4/5/5s but started happening with the iPhone 6. After 40 hours of working through all possible solutions on the web and with Apple cares support (supposedly senior level) They finally suggested what the problem was. I had "Convert higher bit songs to 128  aac" Checked. This does not work One more thing when I unchecked that, the sync took like 3.5 hours instead of the 9-12 hours is usually took even on the smaller iphones. I have 98.7GB of music. Before I was just syncing a list of specific songs.
    The syncing seems to be random when it has the problem though.

  • I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4.  However, I cannot record voice memos with my Bluetooth mic.

    I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4, so it appears my headset mic is fine.  I can also use voice activated dialing, although it fails miserably interpreting numbers.  However, I cannot record voice memos with my Bluetooth mic.   I just get barely audible static.  Any suggestions?   Thanks.

    Hello, did you ever get an answer to your question? I just picked up a Jawbone Era and using on an iPhone 4s running 5.0.1. Seems to work fine on regular calls, but not on the built in Voice memos application. It worked fine on my older Jawbone Icon, but haven't tested on the 4s or iOS 5.
    Thanks!

  • Text Message display on Curve 9360

    Hi...just got a new Curve 9360. The default text message display shows all messages i.e. if I've sent a text most recently that is what I see at the top. What I want it to do is show the SMS Inbox (which I can navigate to via the folder options, but I can't find a way to set it as a default). Can't work out how to do it either on the device or when connected to the PC. Any suggestions...?...R

    Do you mean that currently ALL of your email messages and SMS text messages are mixed in one folder when you view, and you want to see a folder on your homescreen of ONLY your SMS text messages? And your email messages in another folder?
    If so, on your device, open that Messages folder > press the Menu key > Options > Inbox Management and check the box on "Text Messages", and save. That will put an SMS Text message folder on your screen.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Unity Issue in leaving message

    Hi Guys,
    i have a problem with unity connection 8.5
    I configured one users with voice mail box.
    I performed registration by entering name,pin...etc
    When i call and forwarded to voice mail system prompt me to leave a mmessage but when i leave message no MWI on and no message in user mail box.
    If i call MWI DN from phone i have light on/off.
    Any Idea?
    tjx

    If the issue is with all the users then it could be an issue with the locale also. Make sure the version of the locale matches the version of Unity Connection server installed.
    http://www.cisco.com/web/software/282074314/49311/851su1cucrm.pdf
    Regards
    Manjunath

  • Voicemail not working - Callers can't leave messages

    Hi,
    I've had my iPhone a couple of weeks but i've only just realised that my voicemail isn't working. I've done the password set-up and can access my voicemail settings by dialling and holding 1 but people calling my phone do not get the opportunity t leave messages. The phone just rings and rings until the line eventually goes dead. Is there a setting in the phone that i've missed?
    BTW, i'ma UK O2 iPhone user.
    Thanks,
    Neil

    Neil Atkinson,
    O2 in the UK supports visual voicemail.
    I would recommend contacting O2 and seeing if they can reset or reprovision your voicemail.
    Thank you,
    Nathan C.

  • In Mail 3.6 remote images in HTML messages display as blue squares with ? even though checked in viewing references.

    In Mail 3.6 remote images in HTML messages display as blue squares with ? even though checked in viewing references.

    Nurit,
    The point is that that button should not be there, if the preference setting is as you say. This indicates the preference setting is stuck, and that is what I was trying to help you resolve.
    The full purge is done as follows:
    Quit Mail, and in the Finder open Home/Library and locate the Mail folder. Control-click over the Mail folder, and choose Duplicate -- then drag the resulting copy to the Desktop for temporary backup. Next, open Home/Library/Preferences and find the com.apple.mail.plist file and drag it to the desktop.
    Relaunch Mail, which will open as though new, and when prompted to import anything DECLINE. Instead, re-enter your account info, and Mail will re-discover the account folders for your accounts, and all should be well, after setting preferences as you desire.
    Ask any needed questions, and keep us posted.
    Ernie

Maybe you are looking for

  • How can I print in black and white?

    I have asked friends how to print in black and white and they show me how to do it on their computers. They do it by just switching the colorysync profile to black and white or greyscale but when I go to print and go to the same drop down menu for co

  • SAX Parser: ArrayIndexOutOfBoundsException

    Attachments: "1|type=text/xml|desc=test xml file|16821|file=test.xml|" I am using your Java XML parser v2.0.0.2. With some XML files the SAX parser raises an ArrayIndexOutOfBoundsException: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsEx

  • How To Turn Off Zen Micro

    i tried holding the play button like the ipod for 4 seconds and it doesnt turns off. can someone help me?Message Edited by Money_King on 07-4-2005 04:47 PM

  • How to open .dat files

    How do i open files that have extension .DAT coming as attachements in my email? i downloaded a utility from App Store called Winmail Dat viewer but still i could not open the files I need to know which utility should i get to open this kind of files

  • Selection screen to retain in put values

    hi frnd, i want to retain my selection screen after giving some errror message means for example  there are lotof select options r there but after entering all end executing at 1 select option the in put value is wrong then it will  give error messag