Unable to view latest default trace in log viewer

Hello all,
We have NW 7.0 J2EE production server. We have a CI and two application servers.
Our SP level is SP18.
The DB is oracle and the operating system in RHEL 4.
I have a problem in viewing the default trace files in log viewer using the visual administrator.
I am able to view the old default trace but unable to view the latest trace data generated.
I am facing this problem when i try to view the logs of a particular application server.
Able to view the latest default trace properly for CI and the other application server. Problem lies only with a single application server.
I have also check the permissions in OS level for the trace files. Everything looks fine.
Could some one give me a clue on how to solve this issue.
Regards,
Chandru

Hello Joey,
The trace file isnt too big....
We have set the file size as 10 MB.
We have some 15 to 16 default trace files for each of the server process and we have 3 server process in that application server.
The ForceSingleTraceFile parameter is set as YES in visual admin.
So the logs will be displayed in visual admin as a single default trace file.
Hope I had provided the inputs you have asked...
Regards,
Chandru

Similar Messages

  • Workflow Daemon is stuck in E sourcing CLM and documents are not flowing to approvers.which place should i check for this issue related information i have already checked default traces and Logs

    Hi Guys,
    We have a situation in our landscape where workflow daemon service is stuck  and we have to restart the Esourcing system.
    Could you please help here where should i check the cause of the issue.
    i have already checked the Default traces and Esourcing traces.
    Could you help in identifying the cause.
    Regards
    Tarun

    Hi Tarun,
    Open the Document for e.g. Contract Document, on the Document Tab there is an option for Phase Information open that page this will give you all the information related to the phase and where it is stuck, with which user it is pending etc.
    Now since the workflow is stuck, either you can restart the Demon Registration via background Task Status. or else Cancel the Workflow so it can be restarted. by doing the below steps.
    1) goto Setup
    2) open Workflow Definition Under Workflow.
    3) now choose the phase at which your Workflow is stuck.
    4) open that phase.
    5) under Reports Tab there is option for " Current Workflow Processes"
    6) open the Current Workflow Processes
    7) search the document which is stuck
    8) click on the "X" mark  = Cancel the workflow process option
    9) it will take you to the workflow cancel wizard screen. give the comment why you need to cancel this and click on Finish
    10 ) once the Workflow is canceled the phase will go to the Requester review phase and form here you will have to manully move to the next phase. so the workflow can be restarted. once done refresh it.
    11) before doing this take Approval from the customer.
    If the above does not work and still there is an issue then please check the Pre- Phase script.
    Let me know if this works.
    Thanks
    kanchan

  • Set Weekly View as default in Record Working time

    Hi,
    Please let me know in ESS (Time Management) how can I set Weekly View as default instead of Daily view under Record Working time in EHP5?
    1> If Personalization could only be applied on JAVA Web Dynpro iVews, what can be done in case of WD4A?
    2> Can the view changes be done in Content Administration or the changes could only be done in "Component configuration/enhancement" to achieve the requirement? If it could only be done using "Component configuration/enhancement" can you please help me with the same.
    Thanks for your help!

    Hi,
    In R3, goto PM - PA - ESS - Service specific settings - Woring time - Record working time - Set up data entry profile - Select the data entry profile which is assigned to the employees in their CVR Parameters(ex.ess sf) - Maintain the PERIOD SETTING as 2 (which is the weekly view).
    Regards
    Priya

  • Remote Standalone Log Viewer

    Hi!
    My question is about log viewing.
    There is a log viewer to view logs on XI system :
    <path of J2EE installation>/<SysID>/JC<nr>/j2ee/admin/logviewer-standalone/logviewer.bat
    It works fine.
    My problem is that I want to view the logs on a remote machine.
    How can I do that ? Has anyone a step - by - step solution?
    I have already downloaded the standalone_logviewer.zp file at the SAP Service Marketplace, but I don't know how it works.  Do I have to execute the batch file logviewer.bat or the remoteserver.bat ? Which configuration do I have to do?
    Thanks in advance,
    Laurence

    Hi,
    I had already read the pdf. 
    Now it's all right, without executing remoteserver.bat.
    I have executed the logviewer.bat on my desktop and in File -> Configuration I added a J2EE connection to my XI server with port <P4> (50000 + SystemNr. * 100 +4), and it works.
    Thanks everybody for the responses,
    Laurence

  • Unable to see custom Trace messages in Log Viewer which were defined in UDF

    Hello Experts, I am not able to see my trace messages in Log Viewer. I have a small user defined fuction which takes a variable and returns its uppercase and while do that it writes few warning level trace messages in the trace file. I've tried changing the levels from Warning to Info but I still don't see anything in my Log Viewer. At this point I am not even sure if I am looking at right place. When I test my mapping in Message Mapping's Test tab it works fine and shows me all my trace messages. But when I do end to end it is not writing anything to the trace file. I've tried to use instructions from following blogs:
    1. /people/michal.krawczyk2/blog/2007/04/30/xipi-personalized-logging-tracing(logging and tracing)
    2. /people/michal.krawczyk2/blog/2005/05/10/xi-i-cannot-see-some-of-my-messages-in-the-sxmbmoni (logging and tracing)
    3. /people/michal.krawczyk2/blog/2005/02/25/simple-java-code-in-graphical-mapping--xi(for my UDF)
    but I still don't see traces in my Log Viewer. Please let me know if I am doing anything wrong here.
    Thanks in advance!!
    ==============================================================
    public String TraceVar(String var1, Container container) throws StreamTransformationException{
    AbstractTrace importanttrace; //create an instace of AbstractTrace
    importanttrace = container.getTrace(); //get trace
    importanttrace.addWarning("FiletoFileMP:MyUdflibrary: " + var1); //write first message to the trace
    // fix the naming conventions later
    String SenderName; // declare multiple vars to store infos
    String ReceiverName;
    String interface_name;
    String message_ID;
    String time_Sent;
    java.util.Map map;
    map = container.getTransformationParameters();
    //get interface info into the variables
    time_Sent = (String) map.get(StreamTransformationConstants.TIME_SENT);
    message_ID = (String) map.get(StreamTransformationConstants.MESSAGE_ID);
    interface_name = (String) map.get(StreamTransformationConstants.INTERFACE);
    SenderName = (String) map.get(StreamTransformationConstants.SENDER_NAME);
    ReceiverName = (String) map.get(StreamTransformationConstants.RECEIVER_NAME);
    //post interface info to the trace
    importanttrace.addWarning("Time Sent: " + time_Sent);
    importanttrace.addWarning("Message ID: " + message_ID);
    importanttrace.addWarning("Interface Name: " + interface_name);
    importanttrace.addWarning("Sender Name: " + SenderName);
    importanttrace.addWarning("Receiver Name: " + ReceiverName);
    //convert var1 to uppercase to make sure this function has be executed
    return var1.toUpperCase();
    Edited by: Mayur Patel on May 5, 2009 11:03 PM

    Thank you Prateek for a quick response.
    Yes I was able to see my trace messages in SXMB_MONI. Below is my the info... This is great. I am still not sure why this info is not showing up in Log Veiwer's (default trace) window. Any ideas? Since this XML file contains lots of other information I was wondering how to put my trace messages into the log viewer.
    Thanks!!
      <Trace level="1" type="T">*** START APPLICATION TRACE ***</Trace>
      <Trace level="2" type="T">FiletoFileMP:MyUdfLibrary: Honda</Trace>
      <Trace level="1" type="T">FiletoFileMP:MyUdfLibrary: Honda</Trace>
      <Trace level="1" type="T">Time Sent: 2009-05-05T16:16:39Z</Trace>
      <Trace level="1" type="T">Message ID: 366CEAF14D3B410033AFDDB71CD2AF73</Trace>
      <Trace level="1" type="T">Interface Name: SIC_Car_Outbound</Trace>
      <Trace level="1" type="T">Sender Name: SIC_Car_Outbound</Trace>
      <Trace level="1" type="T">Receiver Name: SI_Car_Inbound</Trace>
      <Trace level="1" type="T">*** END APPLICATION TRACE ***</Trace>

  • Logging Format like in default trace

    Hi all,
    When using log-viewer service in visual admin I want my logs to be formatted as it is in default trace (defaultTrace.trc)
    The message is separately displayed in its own column whereas location/severity/date etc. is shown in its own column, but not contained in the message itself.
    When I use my own location, destination(file) and formatter(trace) I cannot achieve the same. I get date and time in the right columns, but in the message column I get all the stuff that is in the file: date, severity, location. Let's say its not getting filtered.
    Any idea what's so special about default trace?
    regards
    stefan
    Edited by: Stefan Bungert on Apr 21, 2008 4:16 PM

    Hi,
    I think you change the format as you using TraceFormatter class.
    According to the pattern you give in the constructor your format will change.
    It is that pattern that determines.
    Regards,
    Srinivasan Subbiah

  • NWA logs and trace does not show the content of Default trace

    Hi All,
    The content which i see in /usr/sap/SID/DV*/j2ee/cluster/server0/log/default trace
    i am unable to see the same in default trace in NWA logs and traces,
    It is a 7.0 system..
    Coudl you please suggest.
    Rgds
    S

    Hello,
    Is it newly built system? Please compare log and trace levels with other java systems in your landscape.
    You can give a try as following..
           1.      Goto NWA and click on Log Configurator service.
           2.      Switch to advanced mode.
           3.      Select the Location tab page.
           4.      Choose the location of default.trc file.
           5.      Save the configuration
           6.      Restart JAVA and see.
    Thanks,
    Siva Kumar
    Edited by: Siva Kumar Arivinti on Jan 12, 2012 3:36 PM

  • Separated trace file which I can read with the log viewer

    Hi All,
    I 'd like to write trace infomation.
    I know I can use the default trace.
    But I 'm looking for a way to write my application information in a separated file,
    which I can read with the log viewer.
    Can someone help me with this
    Thnaks
    Steve

    Hi epexpert,
    thaks for your reply.
    I tried it with the Filelog.
    The Problem is that it logs to the file (its not problematically) but also to the defaulttrace
    and thats not my preferred solution.
    Do you have any other ideas?
    Bye Steve

  • Error Logs in the Default Trace

    Hi All,
    Iam getting following eror for every second in the Default Trace log but no users are effected with this log. Can anybody tell me what this error is about .
    Date : 12/20/2006
    Time : 11:18:43:702
    Message : Exception in method: com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Path to object does not exist at jmsfactory, the whole lookup name is jmsfactory/default/QueueConnectionFactory.
    [EXCEPTION]
    com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Path to object does not exist at jmsfactory, the whole lookup name is jmsfactory/default/QueueConnectionFactory.
         at com.sap.engine.services.jndi.implserver.ServerContextImpl.getLastContainer(ServerContextImpl.java:261)
         at com.sap.engine.services.jndi.implserver.ServerContextImpl.lookup(ServerContextImpl.java:624)
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:344)
         at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:254)
         at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:271)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging$JMSPolling.startRunning(RTMFMessaging.java:1093)
         at com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging$JMSPolling.run(RTMFMessaging.java:1037)
         at java.lang.Thread.run(Thread.java:534)
    Severity : Error
    Category :
    Location : com.sap.ip.collaboration.rtc.class com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging.JMSPolling.startRunning()
    Application : sap.com/irj
    Thread : Thread[Thread-37,5,SAPEngine_Application_Thread[impl:3]_Group]
    Datasource : 34368150:/usr/sap/PP1/JC03/j2ee/cluster/server0/log/defaultTrace.trc
    Message ID : 0003BA4DBF04001100003473000012530004250B918DE14E
    Source Name : com.sap.ip.collaboration.rtc
    Argument Objs : com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Path to object does not exist at jmsfactory, the whole lookup name is jmsfactory/default/QueueConnectionFactory.
         at com.sap.engine.services.jndi.implserver.ServerContextImpl.getLastContainer(ServerContextImpl.java:261)
         at com.sap.engine.services.jndi.implserver.ServerContextImpl.lookup(ServerContextImpl.java:624)
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:344)
         at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:254)
         at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:271)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging$JMSPolling.startRunning(RTMFMessaging.java:1093)
         at com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging$JMSPolling.run(RTMFMessaging.java:1037)
         at java.lang.Thread.run(Thread.java:534)
    Arguments : com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Path to object does not exist at jmsfactory, the whole lookup name is jmsfactory/default/QueueConnectionFactory.
         at com.sap.engine.services.jndi.implserver.ServerContextImpl.getLastContainer(ServerContextImpl.java:261)
         at com.sap.engine.services.jndi.implserver.ServerContextImpl.lookup(ServerContextImpl.java:624)
         at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:344)
         at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:254)
         at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:271)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging$JMSPolling.startRunning(RTMFMessaging.java:1093)
         at com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging$JMSPolling.run(RTMFMessaging.java:1037)
         at java.lang.Thread.run(Thread.java:534)
    Dsr Component :
    Dsr Transaction :
    Dsr User :
    Indent : 0
    Level : 0
    Message Code :
    Message Type : 1
    Relatives :
    Resource Bundlename :
    Session : 0
    Source : com.sap.ip.collaboration.rtc
    ThreadObject : Thread[Thread-37,5,SAPEngine_Application_Thread[impl:3]_Group]
    Transaction :
    User : j2ee_guest
    Thanks,
    Master

    I am having this same issue as well.  I upgraded our BI and BI Portal to SP12.  Everything worked fine.  Then I started the BI integration as outlined in OSS note 917950 -> Setting up BEx Web - Problem analysis.doc and restarted the J2EE engine and now I have this same error in the default trace and I can't log into the visual admin as the j2ee_admin user.  I get "error while connecting".   But I can connect to the visual admin as myself.  If I login to the BI portal as my self and click on user administration I get this error "A required service for the identity management user interface is not available. Contact your system administrator"
    Here's the error as seen in the default trace file that keeps repeating.
    #1.#0003BA21A6F5005C000000590000595B000439DE957600B4#1189528059902#com.sap.ip.collaboration.rtc#sap.com/irj#com.sap.ip.collaboration
    .rtc.class com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging.JMSPolling.startRunning()#J2EE_GUEST#0####d71a1250608111dcbcf70
    003ba21a6f5#Thread[Thread-57,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Java###Exception in method: com.sap.engine.se
    rvices.jndi.persistent.exceptions.NameNotFoundException: Path to object does not exist at jmsfactory, the whole lookup name is jmsfa
    ctory/default/QueueConnectionFactory.
    [EXCEPTION]
    #1#com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Path to object does not exist at jmsfactory, the wh
    ole lookup name is jmsfactory/default/QueueConnectionFactory.
            at com.sap.engine.services.jndi.implserver.ServerContextImpl.getLastContainer(ServerContextImpl.java:261)
            at com.sap.engine.services.jndi.implserver.ServerContextImpl.lookup(ServerContextImpl.java:624)
            at com.sap.engine.services.jndi.implclient.ClientContext.lookup(ClientContext.java:344)
            at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:254)
            at com.sap.engine.services.jndi.implclient.OffsetClientContext.lookup(OffsetClientContext.java:271)
            at javax.naming.InitialContext.lookup(InitialContext.java:347)
            at javax.naming.InitialContext.lookup(InitialContext.java:347)
            at com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging$JMSPolling.startRunning(RTMFMessaging.java:1238)
            at com.sap.ip.collaboration.core.api.rtmf.core.RTMFMessaging$JMSPolling.run(RTMFMessaging.java:1182)
            at java.lang.Thread.run(Thread.java:534)
    Also, at the very beginning of the default trace file I see this error:
    ##0#0#Error##Java###A SecurityException was caught while attempting to retrieve user with Administrator rights in the fallback attem
    pt. The performed attempt was userCtx.getUserInfo(role.getRunAsIdentity(true)) but it ended with the following security exception :
    [EXCEPTION]
    #1#com.sap.security.core.server.userstore.UserstoreException: Could not get user null
    ##0#0#Error##Java###A SecurityException was caught while attempting to retrieve user with Administrator rights in the fallback attem
    pt. The performed attempt was userCtx.getUserInfo(role.getRunAsIdentity(true)) but it ended with the following security exception :
    [EXCEPTION]
    #1#com.sap.security.core.server.userstore.UserstoreException: Could not get user null

  • Unable to view latest instance in BO Infoview XIR2

    Hi,
    I am unable to view latest instance in BO Infoview XIR2. Can any one please let me know general procedure to cross check in Infoview or Consol
    Thanks in Aadvance
    Regards
    Sweety

    Hi Sweety,
    What happens if you login as the Enterprise Adminstrator account,  do you get the option to View Latest Instance?
    - What do you mean exactly when you say you cannot view the latest instance? 
    - Are you missing the option/context menu or is the incorrect report displaying?
    I would suggest working with your Enterprise Administrator to ensure you have sufficient rights to View the latest instances.  However,  if you're not able to select the option check out this SAP Note:
    https://bosap-support.wdf.sap.corp/sap/support/notes/1202260
    Regards,
    Wallie

  • Write  logs in different location instead of default trace

    I need to write a logs in different location other than default trace. I don't want to write logs in default trace. what setting i need to do in portal so that i can able to write at other location instead of default trace.

    Hi,
    Check this thread.
    Log for J2EE Web Services?
    Regards,
    Harini S

  • Log Viewer: Unable to obtain a valid configuration - BAMRuntimeException

    Hi All,
    We have problems working with the Visual Administrator -> Log Viewer
    tool.
    excuting the Visual Administrator -> F:\usr\sap\<SID>\J(XXX)\j2ee\admin>go.bat
    Login with the user Administrator.
    Click On: Cluster -> PEP -> Server X X_XXXXX -> Services -> Log Viewer.
    Them you get the following error:
    Unable To Obtain a Valid Configuration ->
    com.sapmarkets.bam.util.BAMRuntimeException
    The Problem is in all our Portals System Landscape: DEV, QA, PRD.
    Best Regards,
    Erick Ilarraza

    Hi All,
    We solved the problem. You have to deleted the old archive files. **J2ee/Cluster/Server<n>/log/archive.
    Them the Log Viewer works.
    Best Regards,
    Erick Ilarraza

  • InfoView - Default view latest instance possible?

    Hi,
    I have an issue with InfoView, and the opening/viewing of Desktop Intelligence reports.
    The report I am talking about is scheduled on a daily basis (each night) so users don't have to refresh it every time they open it.
    To view it via InfoView, they have 2 options:
    a) The most usual and logical is to press the main hyperlink, the one which shows the name of the report. This is always showing you the report with the data from when you did a last refresh of it (report is set to not refresh data on open). Seemingly totally ignoring the scheduled instances!
    b) Users can also open via 'View Latest Instance'. This shows the last result(instance) of the last successful schedule of the report.
    This is confusing, since I would of course like the users to view the latest version(instance or whatever) of the report in both scenarios a and b.
    Is it possible to make the main hyperlink with the name of the report point to the latest instance of the report also?? Or am I wanting too much here???
    Thanks for any help!
    Frode

    Hi Frode,
    Yes you can... In the CMC, goto to BusinessObjects Enterprise Applications --> InfoView and the Object Listing property set (1) View the Object or (2) View the latest successful instance of the object.
    This is a global setting and affects all users so changing this setting here will make it the default setting for all users. No individual setting is available for a user.
    Regards
    Jacques

  • "View Latest Instance" as Default in BOE XI 4.0

    Dear all,
    I am using a BO BI Platform 4.0 to deploy Crystal Reports in my organization. These reports are scheduled daily, users are viewing these reports via the BI Launch Pad.
    Now I want to protect my users from the need to click first on the document and then on the "View Latest Instance" as this would most likely be asking to much of them. So - I would like to make the "View Latest Instance" the default behavior when users click on a document.
    I read a couple of forums and it seems up to XI3.1 this was possible. However, is seems that the feature is gone with BIP4.0.
    Or is there still a method to achive what I want?
    Thanks & best reagrds
    Wolfgang

    HI Wolfgang - not sure it's possible. You'd probably have to leverage an alternate scheduling 'destination', i.e. if for instance you schedule to a users Inbox, then they should see the latest instance in their inbox - no right-clicking required to open that. Possibly impractical if separate instance is created for each user - though I'd hope this wouldn't be the case if the report contents are the same for everyone.
    Cheers, Ferdie.

  • Unable to Add/Edit Trace or Log Configurations in SOAMANAGER

    Hi everyone!
    When users try to Add or Edit Configurations for Trace and Log they get the following error message:
    "User doesn't have authorization for activity Configuration"
    Please, anyone can tell me what authorization should I assign to that user?
    What is the object that grant this access?
    I tried to track the error by SU53 and system trace but no records are found.
    Hope I can find the answer in this forum,
    Thanks for your help.

    Hi,
      Check for the below standard authorizations.
    ●      SAP_BC_WEBSERVICE_SERVICE_USER
    Role for background users of the Web service runtime
    ●      SAP_BC_WEBSERVICE_ADMIN_TEC
    Role for technical administrator of Web services
    Monitoring sequences, messages, logging, tracing
    Monitoring of payload for component SAP_BASIS
    Administration of tracing and logging, RFC
    Defining, executing Web Services
    Administration of the Internet Communication Framework
    Administration of the RFC destination
    Administration of the Task Watcher and the Event Handler
    ●      SAP_BC_WEBSERVICE_ADMIN_BIZ
    Roles for the Business Administrator
    ●      SAP_BC_WEBSERVICE_CONSUMER
    Web Service user
    ●      SAP_BC_WEBSERVICE_OBSERVER
    User role for viewing all information on Web Services
    ●      SAP_BC_WEBSERVICE_DEBUGGER
    With debugging authorization
    ●      SAP_BC_WEBSERVICE_ADMIN
    Administration authorizations for Web Services in AS ABAP, out of date, but still valid
    Regards,
    Sudha S.

Maybe you are looking for

  • Accessing time capsule with osx server and vpn

    i have apple server and a time capsule that i use as harddisk. Now I want to access the time capsule by VPN. I cannot make an accesspoint of my time capsule. When I turn off file sharing on the time capsule and turn it on on the server then i cannot

  • How can I prevent rogue software from installing itself via Firefox on my system?

    I don't know if this malware is exploiting a hole in Win7 or Firefox or both. So bear with me in my description. I am trying to ascertain if there are Win 7 security settings or configuration changes I can make to eliminate this. Or are there Firefox

  • "Worry free guarantee" issue

    An addition problem with Worry Free Guarantee is START DATE I received 2 smartphones that (after much Tech Support) they decided were DAO. They sent 2 new phones - same problem - not phones rather NETWORK. I asked at least a half dozen Customer Servi

  • How can I stop the mail app from downloading old messages and marking them as new.... repetedly

    I have just bought myself my first ever mac, and i've been having a little trouble with the mail function that comes with it. The first time i connected my mail app to my hotmail adress, all my old mails started coming in and they were all marked as

  • Can I change resolution and embed font in cloud acrobat?

    I need to be able to change resolution on one manuscript pdf, so I purchased the monthly cloud acrobat, but now I'm not seeing the capability to change resolution on the document. I don't have an ongoing need for high resolution pdfs, so my normal MS