Third party application forcing java stack to restart when logged in through SSO

Hi
We have APW Third party application installed on Enterprise portal  7.4.
When we tried to login APW portal through SSO it forces Java stack services to restart.If we use APW directly without SSO it works fine.
Can you help me tto resolve the issue.

Hi Manish,
Please check  the configuration once agian about the third party connection  and  the portal.
Also provide the "dev_server0" which under in directory /usr/sap/SID/J00/work and default trace which under in “/usr/sap/SID/J00/j2ee/cluster/server0/log" to analyze the issue. There is some other tool as well to check the issue using "httpwatch" log tool. But, mostly issue can be identified in dev_server0 or defalut trace".
Thanks,
Brindavan

Similar Messages

  • Provisioning on third party apps with java handlers

    Hello,
    I am trying to configure OID to enable provisioning against third party applications like an J2EE app who use MySQL )
    I want to develop a Java plugin for handling events on OID and propagate on other DBMS.
    I saw on the following page (http://download-uk.oracle.com/docs/cd/B14099_14/idmanage.1012/b14087/prov_plug.htm#BCGJFHEB
    ) a sample of Java code who could help me. The, I tried to apply the Grocery demo with a JAVA plugin but unsuccessfully.
    Thats my configuration issues:
    1 ) In oidadmin
    I have created the following entries:
    cn=ApplicationsCCIP,cn=Products,cn=OracleContext
    cn=Plugins,cn=Training,cn=Applications,cn=Provisioning,cn=Directory Integration Platform,cn=Products,cn=OracleContext
    2) With ldapmodify
    dn: cn=Plugins, cn=Training, cn=Applications, cn=Provisioning,cn=Directory Integration Platform,cn=Products,cn=OracleContext
    changetype: add
    add: orclODIPPluginExecData
    orclODIPPluginExecData: path to jar addressbook-oidplugin-2.1.1.jar
    objectclass:orclODIPPluginContainer
    dn: cn=PRE_DATA_ENTRY_CREATE, cn=Plugins, cn=Training, cn=Applications,cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext cn=Provisioning
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PreDataPlugin
    orclODIPPluginAddInfo: Pre Data Entry Plugin for CREATE operation
    dn: cn=PRE_DATA_ENTRY_MODIFY, cn=Plugins, cn=Training, cn=Applications,cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PreDataPlugin
    orclODIPPluginAddInfo: Pre Data Entry Plugin for MODIFY operation
    dn: cn=POST_DATA_ENTRY_CREATE, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PostDataPlugin
    orclODIPPluginAddInfo: Post Data Entry Plugin for CREATE and modify operations
    dn: cn=POST_DATA_ENTRY_MODIFY, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PostDataPlugin
    orclODIPPluginAddInfo: Post Data Entry Plugin for MODIFY and CREATE operation
    dn: cn=DATA_ACCESS, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.DataAccessPlugin
    orclODIPPluginAddInfo: Data Access Plugin
    dn: cn=EVENT_DELIVERY_OUT, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.DeliveryOutEvent
    orclODIPPluginAddInfo: Event Delivery Plugin for Outbound
    dn: cn=EVENT_DELIVERY_IN, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.DeliveryInEvent
    orclODIPPluginAddInfo: Event Delivery Plugin for Inbound
    3) I have uploaded the jar in /oas/infra/ldap/jlib
    4 ) With oidprovisioning tool
    oidprovtool operation=create ldap_host=dev-orainfra.ccip.fr ldap_port=389 ldap_user_dn="cn=orcladmin" ldap_user_password=password1 organisation_dn=ccip application_dn="orclapplicationcommonname=Training,cn=ApplicationsCCIP,cn=Products,cn=OracleContext" organization_dn="dc=ccip,dc=fr" event_subscription="USER:ccip:ADD(uname)" event_subscription="USER:ccip:DELETE" event_subscription="GROUP:ccip:MODIFY(cn,uniquemember)" interface_type=JAVA interface_name=PORTAL.WWSEC_OID_SYNC interface_version=3.0 application_type=Addressbook profile_debug=debug
    5) Restart OID
    I have previously uploaded a jar with some plugins
    Thas my code
    import java.io.FileOutputStream;
    import java.io.PrintStream;
    import oracle.idm.provisioning.event.Event;
    import oracle.idm.provisioning.event.EventStatus;
    import oracle.idm.provisioning.plugin.EventDeliveryException;
    import oracle.idm.provisioning.plugin.EventPluginInitException;
    import oracle.idm.provisioning.plugin.IEventsFromOID;
    import oracle.idm.provisioning.plugin.PluginException;
    import oracle.ldap.util.UtilDebug;
    public class OIDToAddressbookEvent implements IEventsFromOID {
    static {
    try {
    UtilDebug.setPrintStream(new PrintStream(new FileOutputStream("/tmp/oidtoaddressbookevent.log")));
    UtilDebug.setDebugMode(UtilDebug.MODE_ALL);
    } catch (Exception e) {
    e.printStackTrace();
    * (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IEventsFromOID#initialize(java.lang.Object)
    public void initialize(Object _arg0) throws EventPluginInitException {
    // TODO Auto-generated method stub
    * (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IEventsFromOID#sendEventsToApp(oracle.idm.provisioning.event.Event[])
    public EventStatus[] sendEventsToApp(Event[] _arg0) throws EventDeliveryException {
    UtilDebug.log(UtilDebug.MODE_ALL, "sendEvents", _arg0);
    EventStatus[] events = new EventStatus[1];
    events[0] = new EventStatus(EventStatus.SUCCESS, null, null, null);
    return events;
    * (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IEventPlugin#terminate(java.lang.Object)
    public void terminate(Object _arg0) throws PluginException {
    // TODO Auto-generated method stub
    public OIDToAddressbookEvent() {
    super();
    // TODO Auto-generated constructor stub
    public class DataAccessPlugin implements IDataAccessPlugin{
    static {
    try {
    UtilDebug.setPrintStream(new PrintStream(new FileOutputStream("/tmp/dataaccessplugin.log")));
    UtilDebug.setDebugMode(UtilDebug.MODE_ALL);
    } catch (Exception e) {
    e.printStackTrace();
    /* (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IDataAccessPlugin#getAppUserData(oracle.idm.provisioning.plugin.ApplicationContext, oracle.idm.user.IdmUser, java.lang.String[])
    public PropertySet getAppUserData(ApplicationContext arg0, IdmUser arg1, String[] _arg2) throws PluginException {
    return null;
    /* (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IDataAccessPlugin#process(oracle.idm.provisioning.plugin.ApplicationContext, oracle.idm.user.IdmUser, oracle.ldap.util.ModPropertySet, oracle.ldap.util.ModPropertySet)
    public PluginStatus process(ApplicationContext arg0, IdmUser arg1, ModPropertySet arg2, ModPropertySet arg3) throws PluginException {
    UtilDebug.log(UtilDebug.MODE_ALL,"Processing DAP...",_arg0);
    return new PluginStatus(PluginStatus.SUCCESS,null,null);
    I have already develop event wich implements IEventsPlugin.
    I dont see what s wrong in my configuration
    Thanks in advance for your help
    Alexandre Touret
    Message was edited by:
    [email protected]
    Message was edited by:
    [email protected]

    Ahhh...OK...that makes more sense now. From your first post, it seemed like you wanted to sync the actual app (as in, for instance, backup the actual app and then restore it after an OS reload...as opposed to reinstalling the app after an OS reload). But, now I see that it is the App data that you wish to sync.
    To be 100% clear -- is this a sync function, similar to how the desktop software synchs with your PIM (e.g., Outlook) for organizer data? Or is this a backup function, where the data is backed up for use in a subsequent restore?
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • My third party applications keep de-activating. How do I fix this?

    Hi everyone!
    I am wondering if anyone can be of help to me. I am desperate.
    I upgraded to Mavericks and am currently on version 10.9.5.
    I have numerous third party applications...to name the two important ones,
    most of them are video effects from New Blue FX and the other ones are just like converters etc.
    I have had no problems with them in the beginning when I upgraded to Mavericks and
    certainly no problems before Mavericks. Now all of a sudden, every time I try to use
    these applications, it keeps saying that I am running on trial version and that I need
    to activate the product with the activation code. This has never happened before and
    it certainly has not got to do with a certain app as it is happening with all my applications
    that require an activation code. I have to keep activating the apps everyday so that I can
    use them and it is becoming really annoying and I don't know how to fix this.
    I am sure it is something simple as my computer has been absolutely GREAT since
    I have updated to Mavericks. Everything has been so much faster and just amazing until
    this new problem. This is the only problem I have. I have checked and I have done ALL updates.
    I am a video editor and I use Adobe Premiere Pro CS6 and these continuous activations are
    really not helpful for me when I am trying to concentrate and use my effects.
    But like I said, it cannot be just the effects I use for adobe as applications that
    are not associated to adobe at all are being affected as well.
    If you guys could help me, it would be greatly appreciated!
    I am really desperate! By the way, I am working on an iMac with Mac OSX Mavericks 10.9.5.
    Thank you so much!
    Jess

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal 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 Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • Integration of SSO with Third Party Application

    Hello Colleagues,
    I have requirement where I have to integrate SSO with a third party application.
    After some R & D I found out that there is some one class "SSO2Ticket.java" which can do that or help in verify the ticket.
    Since I am new to this area, I am not sure how do I go ahead with the execution of this java file.
    Can somebody help me with this.
    Also, is there any documents which talks about SSO integration or about the above mentioned JAVA file.
    Best regards,
    Arvind

    Which type of 3rd party application is this, and which SSO authentication methods does it support?
    If you can find a common one, then that will be good for you.
    Specifically for non-SAP systems re-using the SAP LogonTickets, I know that you can extract the user name from the ticket. I think SAP even provides some verification tools here for external applications to verify the ticket?
    Currently there is much excitement about SAML 2.0 which is also worth taking a look into as well.
    Cheers,
    Julius

  • ITunes cant sync music. Third party applications can.

    So i posted a discussion ages ago about iTunes not being able to sync my music. I have tried 5 PC's with different Windows OS's and even some Mac Machines. Before iOS7 it worked fine, then the beta was used and it did not work since even having wiped the phone and used the public release.
    Anything that could narrow down the issue would be nice. It just syncs and sits on 'waiting for items to copy' and then just times out. Phone loses the whirling arrows and then iTunes gets stuck in 'Cancelling Sync' which it never does and needs force closing. Same exact issue on all PC's.
    MediaMonkey - Same music, same PC, same cable and same phone... Works fine. All 3800 songs.
    So my question to you all is, why can iTunes no longer sync my music yet third party applications can...? (they use the iTunes mobile device drivers)
    Trying to contact apple when outside of warranty is near impossible without paying. This was broken before my warranty expired but didnt have the time to go down. They also just removed my question for some reason so posting it again.

    ragerber wrote:
    Now that I've read all the documentation,
    Which people normally do before they do something but hey ho off we go
    I see that there is only one copy of backup data saved (for what possible reason????)
    Because the considered view is that you will be keeping regular backups of your computer in general which would keep these 'last backups' that way. Thats what Time Machine on the Mac does.
    So I'm hosed. iTunes not only deleted my apps (presumably an iTunes bug)
    Its not a bug - you deleted the content of the phone presumably.
    but I read on one forum where someone had re-synced and got his apps back.
    Correct, by following the instructions which instruct you to disable automatic synce before restoring to stop the autosync overwriting the last backup.
    I tried that and in the process it automatically deleted my good backup I guess.
    No, you didnt do it correctly, but don't panic. All free Apps can be downloaded again as can all purchased Apps as long as you log in with your original iTunes account. They will all come back just fine.
    This seems really like a really dumb way to do it, Apple.
    Not really - the instructions are quite explicit but reading them after the event or not at all is even dumber.
    Get downloading those Apps again

  • Progress bar for third party applications

    i invoke the third party application from a java program, maybe using runtime class.
    what are the other ways to do invoke third party applications/programs.
    how do i know how much work the third party application has finished.

    What kind of a third party application is it?

  • Third party applications don`t work!!!!!!

    Hi I really need help here I have a bb 9530 verizon(my uncle`s) cause my last phone broke a bb 9300 3G.i have set up the bb but I really don't know what I'm doing so every thing works fine except third party applications because when ever I go into a third party app for e.g... whatsapp it comes up with a message : <app name> has attempted to connect to a location inside the firewall and outside the firewall which is not allowed by your  IT policy. and after saying OK I get another message: unable to open folder.java.lang.SecurityException: Permission denied  that always happens!!!! Please help me I'm really getting tired of this.P.S I don't know much about where the phone came from(country)and I'm in south Africa and on mtn and I don`t know about the previous settings or any of that all I know is the model and that its my uncles so please help.
    Regards:fruityboy78

    Hi and Welcome to the Community!
    What you have is a BB that was previously associated with a corporate/BES system, and the IT Policy that was placed onto the device by BES was never properly cleansed, even though the BB was removed from the BES system (cleansing the BB is NOT an automatic function). Until that is gone from the BB, you will have this problem.
    The other problem you have is that the only remedy will totally wipe your BB clean of everything -- data, apps, configurations, etc. It will be as if it was brand new again, fresh from the factory. The problem here is that, from what you say, you probably don't know the first thing about what you need to do in order to proper re-configure after you cleanse the IT Policy off of the BB. So doing so could render your BB useless since you don't know any of the settings you would need to accomplish this task.
    All in all, what you need to do is a rather complex set of things, requiring you to know what you are doing, and know the necessary configuration items in order to get your BB working again. If you are willing to undertake that mess, then we can give you the necessary procedure...if you are not willing, then you likely should seek out some paid support from someone who does know what they are doing and can perform the necessary steps for you.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Third Party Application Control

    How can I gain control of the windows of a third party application.
    For example, if I write a program to startup Freecell, how would I go about starting a new game, goinf to file on the menubar and saying new game.

    You get yourself a reference book on how to use the Windows APIs. Then you write some JNI code that uses those APIs. There is no pure Java method of doing that.

  • Calling third party application that needs the HttpServletRequest parameter

    Hi,
    I am doing the customizations to the Webcenter portal(since the issue is specific to ADF, I am posting the thread in this group) wherein I need to invoke a Java API provided by third party. That Java API expects the HttpServletRequest parameter.
    To obtain the HttpServletRequest , I used the below code: -
    FacesContext context = FacesContext.getCurrentInstance();
    HttpServletRequest request =
    +(HttpServletRequest)context.getExternalContext().getRequest();+
    Besides, I need to set some parameters to the request, as the API needs those parameters to connect to the 3rd party application. Hence I have set the attributes as below: -
    request.setAttribute("HttpProxyHost", "https://thirdparty.com");
    request.setAttribute("HttpProxyPort", "2021");
    request.setAttribute("HttpProxyUser", "abcd");
    request.setAttribute("HttpProxyPass", "efgh");
    The call to the API works fine when tested standalone. But after deploying this to the application, I see the following issue.
    The ADF application interacts with other 3rd party applications too. Once the above code is executed, the application is trying to connect to the above host(https://thirdparty.com) only for the subsequent requests from any user of that application, even if the actual call is meant to connect to different hosts.
    Can I create a custom servlet class to invoke the Java API? If so, how can I call that servlet API from my ADF managed bean?
    Even if I create a custom servlet, the parameters that I set like HttpProxyHost will persist, right?
    Please provide any suggestions
    Thanks,

    Hi,
    1) what is the problem you think makes this specific to ADF?
    2) Have you tried : http://docs.oracle.com/javase/tutorial/networking/urls/connecting.html
    Your requirement of changing a request that is in process sounds weird to be honest
    Frank

  • Integrating third party components in java

    Hi All,
    I have a doubt, as in .net u can add third party components in ur application and use the functionality of that e.g u can add third party datagrid in .net,
    In similar way are there any third party components in java, if yes how do we integrate in our application
    Please reply.
    Thanks,
    Mahesh.

    There are lots and lots of 3rd party components and libraries in Java. All you have to do to use 3rd party components is to add jars to the classpath and write some code which uses the classes.
    Kaj

  • How can I set up printing to queues on a Windows 2008 server directly from the iPad apps and not from third-party applications without using AppleTalk or Bonjour?

    We have a Windows 2003/2008 server-based network with a dedicated print server which we would like to be able to print to over Wi-Fi.  How can I set up the printers on the iPad without downloading a third party application such as Print Central or Print N Share?  I want to just click the arrow and "Print" then choose the printer, which doesnt show up.  I want to be able to use the existing TCP/IP-based network that we have to reach these queues, not having to install Bonjour or AppleTalk to reach them.
    Thanks,
    KMQ7

    This would really be the "Holy Grail"   right now.  I think this a feature that every large organization requires. AirPrint works on a small scale, but is not really an enterprise class application.  In addition it uses the Bonjour discovery process which is difficult in a large LAN WAN environment.  For those that would remind me, I am aware of the enhancement link 

  • Share an iCal calendar without a third party application

    After perusing the iCal discussion forum, it seems that the only way to "share" a calendar with another person (whether or not they have a MobileMe account) is to use Google Calendars or some other third party application. It seems like there would be a lot of users that want to "share" calendars and not just publish their calendars for others to see. The most common situation seems to be the sharing of a calendar with a spouse. Google makes this possible without charging a cent and you don't even have to dig to figure out how to do it. Naturally, because I love my Mac and the way all of my Apple programs interconnect, I want to avoid a third party solution. Is there a solution to this problem built into iCal (or maybe something to do with MobileMe) that I have simply overlooked? If not, how can we get Apple to include this feature in a future update of iCal?

    Hi James!
    I just spent the weekend setting this up for me and my wife. Unfortunately, you MUST use a 3rd party application. Like you have, I have spent the last month doing extremely refined Google searches in the hopes I would find the answer.
    So, I migrated our calendars to Google and this seems to be working well. Synchronization is not as instantaneous as MM but every 5 minutes is not that bad.
    Send Apple feedback on this issue at: http://www.apple.com/feedback/ical.html
    Apple's main feedback site is here: http://www.apple.com/feedback/
    I've sent several notes to them. I am hoping that Snow Leopard will fix this!

  • How can I set a third party application to access my organizations intranet through my organizations network

    how can I set a third party application to access my organizations intranet through my organizations network  . I am using blackberry bold 9700 OS 6

    Hi deepajithesh
    This feature is not available. Applications access the BlackBerry Network using the connection to BIS.
    Thanks
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • After upgrading to Mavericks on my MacBook, I'm not able to download third party applications like Dropbox and MyCleanMac 2.  After clicking the download button, the screen just turns dark and is frozen.  Any idea what is happening?

    After upgrading to Mavericks on my MacBook, I'm not able to download third party applications like Dropbox and MyCleanMac 2.  After clicking the download button, the screen just turns dark and is frozen.  Any idea what is happening?

    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. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    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 this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • How do I disable auto-launch of third party applications (i.e. TeamViewer)  at startup?

    I've loaded a few third party applications like TeamViewer which installed themselves as startup applications which I cannot disable in the system preferences login items.  The obvious answer is don't load these apps but that being said, how do I disable them now that they are loaded without uninstalling to prevent them from launching automatically during startup.  I can quit them after they launch but I'd like to prevent them from auto-starting during startup.  Any insight would be appreciated.

    Look in TeamViewers preferences for this:
    Uncheck it.

Maybe you are looking for

  • Hard drive died.  How to sync my Ipod/music to new drive ??

    Hello, Sad day yesterday. Click click... HD died. Took to Mactown and They are putting in new one. They said that if I sync my iPod Classic with my new drive, all my music and audiobooks will be erased. Can anyone help me?

  • How to solve that Microsoft Office 2011 error?

    I am having a problem about Microsoft Office 2011. I can not open word, excel and powerpoint (any kind of windows office application) When I just tried to delete mackeeper virus. I think I damage some of the Microsoft Office datas. I learned that vir

  • Vendor amount control in APP

    HI Team, Is there any way to control in an APP for a particular vendor by considering all Invoices 'X' amount is allowed? Thanks In Advance Regards Rashid

  • Organizing with "Album by Year"

    I've found the sorting method of "Album by Year" very useful in organizing my albums chronologically. However: The Times They Are A-Changin' and Another side of Bob Dylan were both released in 1964. Although "Another side" was released second, it is

  • FBL3N selection screen Problem

    Hi can anyone help me pls . After displaying my Report list i am swith over from my list to Predefined Tr FBL3N(by at line selection) so after that my data will display in default layout. so by change layout option i added Trading Partner field to my