PFCG User Compare log display window aftter EHP5 upgrade.

The Implementation partner's basis team applied EHP5 to our systems just recently.
While I click on PFCG User compare button, there is log disaply window  shows up aftter the user compare is completed.
Any suggestions how can I deactivate, this window to pop up after user Compare is completed
Thanks,
Praveen

What have you tried so far?
E.g.: Did you read the release notes relating to this and search SAP notes? In ABAP you can almost always look at the code to see your options and the cause of program behaviour (together with an ABAPer if need be).
Cheers,
Julius

Similar Messages

  • CryptAcquireContext failing with ERROR_FILE_NOT_FOUND (2L) when user not logged on Windows 8.1

    I am having a hard time migrating a C++ CryptoAPI-based application that currently runs on Windows Server 2008 to Windows 8.1. The scenario is:
    This application is eventually triggered by WatchDog.exe, which in its turn is triggered when the computer is started by Windows' Task Scheduler.
    Task Scheduler uses the following rules to start the WatchDog.exe:
    A Administrator User Account;
    Run Whether user is logged on or not;
    UNCHECKED: Do not store password. The task will only have access to local resources;
    Run with Highest Privileges;
    Configure for Win 8.1;
    Triggered at system startup.
    The server sits there, nobody logged, until in a given scenario WatchDog.exe starts the application. Application log confirms that the owner of the process (GetUserName)
    is the very same user Task Scheduler used to trigger WatchDog.exe.
    It turns out that this application works fine in Windows Server 2008, but in windows 8.1 a call to CryptAcquireContext fails
    with return code ERROR_FILE_NOT_FOUND (2L). The odd thing is that the application will NOT fail if, when started, the user is physically logged
    on the machine, although it was not the user who started the application manually.
    I took a look at the documentation and
    found:
    "The profile of the user is not loaded and cannot be found. This happens when the application impersonates a user, for example, the IUSR_ComputerName account."
    I had never heard of impersonification, so I made a research and found the APIs LogonUser,ImpersonateLoggedOnUser and RevertToSelf.
    I then updated the application in this way:
    HANDLE hToken;
    if (! LogonUser(L"admin", L".", L"XXXXXXXX", LOGON32_LOGON_BATCH, LOGON32_PROVIDER_DEFAULT, &hToken))
    logger->log (_T("Error logging on."));
    else
    logger->log (PMLOG_LEVEL_TRACE, _T("Logged on."));
    if (! ImpersonateLoggedOnUser(hToken))
    logger->log (_T("Error impersonating."));
    else
    logger->log (_T("Impersonated."));
    err = XXXXXXXXX(); // calls function which will execute CryptAcquireContext
    if (! RevertToSelf())
    logger->log (_T("Error reverting."));
    else
    logger->log (_T("Reverted."));
    Excerpt with the call to CryptAcquireContext:
    // Get the handle to the default provider.
    if(! CryptAcquireContext(&hCryptProv, cryptContainerName, MS_ENHANCED_PROV, PROV_RSA_FULL, 0))
    DWORD e = GetLastError();
    _stprintf_s (logMsg, 1000, _T("Error %ld acquiring cryptographic provider."), e);
    cRSALogger->log (logMsg);
    return ERR_CCRYPT_NO_KEY_CONTAINER;
    cRSALogger->log (_T("Cryptographic provider acquired."));
    As the result, I got the log:
    [2015/01/08 20:53:25-TRACE] Logged on.
    [2015/01/08 20:53:25-TRACE] Impersonated.
    [2015/01/08 20:53:26-ERROR] Error 2 acquiring cryptographic provider.
    [2015/01/08 20:53:26-TRACE] Reverted.
    That seems to show that impersonation is working properly, but still I get Error 2 (ERROR_FILE_NOT_FOUND) on CryptAcquireContext.
    Summary:
    On Windows Server 2008, the very same application runs properly even without the calls to LogonUser/Impersonate/Revert.
    On Windows 8.1, the application, with or without the calls to LogonUser/Impersonate/Revert, will only work properly if the user is logged on (which
    is not acceptable).
    Any thoughts where I can run to in order to get this working on windows 8.1?
    Thank in advance,
    Dan

    There are a couple of issues.
    Based on the parameters being used in CryptAcquireContext().  A profile needs to be loaded and your app has to be running as the same user who created the keyset. (which is why it works when a user is logged on Windows 8.1) Also, impersonation
    does not load your user profile, you need to call LoadUserProfile().  It seems like you should be using a machine keyset for your scenario if you want to do this when nobody is logged on.
    Take a look at the following KB article for more information.
    https://support.microsoft.com/kb/238187?wa=wsignin1.0
    thanks
    Frank K [MSFT]

  • Is there an application to monitor users who log into Windows Server 2012 R2?

    I'm looking at Family Safety Feature in Windows 8 and like what they can do.  I have a request to monitor, track users who log into Windows Server 2012 R2 to see how many users login, how long each login is for each user so a monthly report can be generated.  
    1.  I just wonder if Windows Essential 2012 can be used for this purpose or not.  If it can, is Windows Essential 2012 a feature can be added or installed on Windows Server 2012 R2?
    2.  If Window Essential 2012 cannot be used for this purpose, is there any feature in Windows Server 2012 R2 that can be used for this purpose?
    3.  Is there any other suggestions?
    Thank you for your help.
    Thanks and Regards,
    Hien Phan

    Hi Hien,
    Anything updates?
    It seems that there is no feature can do that. I agree with Tim that you can check the event logs. In general, the event 4624 would be created when a user was logged on, and the event 4634 would be created when a user account was logged
    off.
    More information:
    Tracking User Logon Activity Using Logon Events
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How to disable Internet from running when users first boots into Windows 8.1 Pro

    Recently added Windows 8 into our environment, everything works fine except the IE 11 always pops up at initial logging.  Is there a way to disable this w/ Group Policy?
    Thanks in advance.
    Roget Luo

    Hi,
    Did you mean that once users first log on Windows 8.1 and IE 11 pops up? Did this issue happened after logging off then logging in and shutting down the PC then restarting to login?
    What’s the detailed information about the pop-up? The screenshot would be more helpful for us to determine the issue.
    We can check if there is any logon script or task schedule configured in your environment.
    For further help you, please provide more information about how you deploy Windows 8.1.
    Meanwhile, please help to collect the boot trace for further research.
    How to collect a good boot trace on Windows 7
    http://blogs.technet.com/b/jeff_stokes/archive/2012/09/17/how-to-collect-a-good-boot-trace-on-windows-7.aspx
    Once down, please upload the .etl file into SkyDrive or Similar ones and share the public link here for our research.
    Look forward to your response.
    Kate Li
    TechNet Community Support

  • When deleting an e-mail on Gmail, the display reverts to the Gmail log-in window

    When deleting an e-mail on Gmail, the display reverts to the Gmail log-in window. Internet Explorer does not have this problem. Firefox did not have this problem until a few weeks ago.
    Firefox version 1.9.2 3855

    Ernie,
    The OP appears to be concerned about sent messages in particular, which, as you know, wouldn’t be on the server no matter what the settings and would certainly be lost as a result of deleting the account.
    <hr>
    thesameage,
    Deleting a POP account only deletes the messages stored in the account’s mailboxes. If you move those messages to custom “On My Mac” mailboxes or to the mailboxes of another account, you won’t lose them. It’s not that Mail goes after your mail trying to delete as much as it can. It’s just that if a mail account is deleted, then its mailboxes cannot exist anymore...
    Here’s the title of some Mail Help articles that explain how to create “On My Mac” mailboxes and organize your mail there however you wish:
    Creating a mailbox
    Organizing your email
    Alternatively, a quick and simple procedure to create a duplicate of the account’s mailbox structure as “On My Mac” mailboxes would be importing them doing File > Import Mailboxes, choosing Mail for Mac OS X as the data format, and selecting the ~/Library/Mail/POP-username@mailserver account folder.
    That said, instead of deleting the account right away, you can just disable it (i.e. turn OFF Preferences > Accounts > Advanced > Enable this account), leave it that way for some time, and delete it only after making sure you didn’t miss anything while the account was disabled.
    BTW, if you back up your data, and the ~/Library/Mail folder in particular, you won’t have to worry about accidentally losing anything as a result of doing something like that...
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. That is, ~/Library is the Library folder within the user’s home folder, i.e. /Users/username/Library.

  • Get current logged in Windows user name

    Hi
    Is it possible to retrieve the current logged in Windows user name into a text field automatically?
    Thank you in advance for the help.

    Hi,
    This is a security issue and you will need a javascript file in the Acrobat folder. This will contain a trusted function allowing access to the login name.
    Here is a thread that looked at this:
    http://forums.adobe.com/message/2198084#2198084
    However read to the end, because if you are Reader Enabling the form (at least through Acrobat) then you may run into problems.
    Good luck,
    Niall

  • How to find out if a user is logged into a windows XP or VISTA machine

    Hi,
    Could somebody please tell me how to find out remotely over a LAN, whether a user is logged into a computer that is running windows XP/VISTA or not? How can this be programmatically done if we know the name of the remote machine?
    Thanks.
    Ravisara

    Hi,
    Thanks for all the replies.
    Actually it seems that my question has either been misunderstood or has been badly phrased by me.
    What I want to know precisely is the way to find out if a user is logged into a machine or not. Say for example in a LAN there are three computers called A, B and C. If my Java program is running on machine C, how can the program check whether a user is logged into machine A? Assuming JRE is present in all three machines, the machines have as their OS windows XP or VISTA and all machines are connected to a windows domain(Windows 2003 server based network)
    The idea here is to identify all the computers in a network that users are not logged into and then to remotely shutdown those computers in order to minimize wastage of electricity(preferably after a particular time of the day in an organization).
    Any replies would be much appreciated.
    Kind regards,
    Ravisara

  • Can I use Remote Desktop Connection (windows server 2008) even if no user is logged in?

    I'm configuring a Server, running Windows Server 2008, to be accessed remotely. Suppose no user is logged in in the server (if it was just turned
    on, for instance). Can I use the "Remote Desktop Connection" feature to log in remotely in this case? Or is it always necessary to have a user locally logged in, to remotely log in to one of the users available?

    If its a fresh installation, RDM might not work at first.
    1. You need to check firewall and allow Remote Desktop. To be specific, communication to port 3389 TCP
    2. Right click My Computer --> Properties --> Remote tab
    Enable Remote Desktop
    Allow connections to this computer
    Click users and grant the permissions for the users. By default, Administrators do have the permission. An also, the users who are members of the 'Remote Desktop Users' security group also have the permission

  • Display text in navigation bar when user is logged in

    Hi all,
    I'm (still ) on Apex 4.2.6.
    Currently, I have in my page templates, the following snippet:
          <div class="logoBar">
              <img src="#IMAGE_PREFIX#themes/theme_125/images/logo_.png" />
              <h1><a href="#HOME_LINK#" id="uLogo">#LOGO#</a></h1>
            <div class="userBlock">
              <span>Username: &APP_USER.</span>
              #NAVIGATION_BAR#
            </div>
          </div>
    I have the requirement to display both the username (APP_USER) and the company the user works for (Application item AI_COMPANY), only when the user is logged in. When the user isn't logged in; instead of those items, I have to show a login link. Well, I know how to only show a link to the login page, when the user isn't authenticated, using the navigation bar. Currently, when a user isn't authenticated; the page shows: Username: nobody. That's because it is in my page template. How can I only show the username when the user is logged in? And show the company name only then?
    My first thought was to add an item in the navigation bar. But those items shows up as links. Is there a way to add a navigation bar item, and let it display as text? Sure, I could write a dynamic action on page 0 to remove the link, but I'm searching for a nicer/better sollution.
    I apreciate your help!

    Hi tomvdduin,
    you can show company name which is already in your Application item(AI_COMPANY)  by modifying the page template mentioned above.
    <div class="logoBar">
      <img src="#IMAGE_PREFIX#themes/theme_125/images/logo_.png" />
        <h1><a href="#HOME_LINK#" id="uLogo">#LOGO#</a></h1>
      <div class="userBlock">
        <span>Username: &APP_USER.(&AI_COMPANY.)</span>
        #NAVIGATION_BAR#
      </div>
    </div>
    I have included company inside ( ), you can change how you want to show.
    for example
    <span>Username: &APP_USER.</span><span>Company: &APP_COMPANY.</span>
    Hope this helps you,
    Regards,
    Jitendra

  • Frequency display window needs to be able to reference IEC and user supplied reference curves

    Hi Guys,
    the frequency display window displays white noise as a horisontal line.
    Theoretically it is fine, but in the context of audio production it is "less
    fine".
    It needs to be able to reference pink noise as well as user supplied
    reference curves, be it plotted or in table form, table would be fine for
    me, but plotted splines would fit the intuitive gui.
    That saves the incredibly wasteful step of first adding a biasing frequency
    compensation to audio prior to anylyzing it so as to get a display of the
    audio that is actually useful in the context of audio production and
    restoration rather than acoustics.
    Kind regards
    Peter Larsen

    popUp2 is a javascript function included in one of the .js files referenced on every Apex page.
    It is defined as popUp2(URL,width_of_popup_page,height_of_popup_page). Referencing this function instead of calling window.open() should solve the problem you were having with the calling page's text being set to [object].
    If you want only to have to only administer the URL that is popped up in one place you could, as you suggest, use the navbar or, alternatively, you may want to look at using a shortcut to store the URL value (Application > Shared Components > User Interface > Shortcuts).

  • Display / setup user defined log file in Oracle AS 10.1.3 ascontrol.

    Hello,
    One of my requirement is to display user defined log file into asconsole (OAS 101.3 EM) from $OH/j2ee/home/log/<myapplication>.log into OAS EM.
    Please suggest.
    Thanks,
    Kam

    As a sanity test, can you do the following: cd /home/oracle/product/10.1.3/OracleAS_1/j2ee/home
    cd applications/xmjfcx/xmjfcx/WEB-INF/lib
    jar tvf commons-validator.jar
    jar xvf commons-validator.jar META-INF/MANIFEST.MFI use two "cd" just to make it more readable. Then use you editor to check the file MANIFEST.MF. Anything problem?

  • Windows network shares disappearing when users are logged on to Mac

    We are having some problems with windows network shares disappearing when users are logged on to Mac computers.
    We have a number of Mac labs that users can logon to using their AD login credentials. Their network shares are saved on a windows file server. The ad plug has been configured on each client Mac as has the LDAP plug-in. It is configured to connect to the Xserve which is running as an OD master. The system preferences for the client Macs are being managed from the Xserve.
    The problem for the users is that they can log into the Mac no problem and they can see their network share appearing on the desktop and in the dock, but for some reason on random Macs and with random users the network share disappears. If they log off and log back in again the network share is still missing. As it happens randomly I can not put my finger on what the problem is.
    Most labs either have Intel iMacs running 10.4.11 or Intel iMacs running 10.5.5
    Any help will be appreciated
    Noel Patterson
    Southern Regional College
    Northern Ireland

    Mike,
    We need to know some basic scoping information to provide any further input.
    1)     
    Is the user prompted that the server will be shutting down?
    2)     
    Does Task Scheduler show that the task ran at the scheduled time?
    3)     
    Are there any errors in %windir%\tasks\schedlgu.txt?
    4)     
    Does the problem still occur if the machine is in its own OU with blocked inheritance?
    Does the problem still occur in a clean boot configuration with MSConfig
    Steps to clean boot machine:
    ================
    Start > Run > Msconfig > Select Services > click "check box", "Hide all microsoft services" > Disable all
    Start > Run > Msconfig > Select startup>  Disable all
    Reboot
    Thanks,
    ankit

  • Qosmio G30 display flickering and unable to log into Windows

    I have to press F5 to make the display visible everytime I boot up. I thought that it was a software related issue and I tried to format the HDD with original recovery CD. However, the screen keeps flickering from the BIOS stage.
    Now, it is even worse. The screen is flickering when power up and I cannot log into Windows MCE after the HDD formated.
    After reading the related articles and FAQ, I suspect it was a graphic card (hardware) issue.
    My graphic card is NVidia Go7600. Is this true and is it a must to change the hardware (graphic card)?
    Appreciate your advice before I contact the local support team.
    Thanks a lot!

    Hi!
    Thats a strange issue. Do you have the same problems on an external monitor?
    If a display is flickering, the display itself is defective because the FL-tube is causing the error. I think the best is, when an ASP (authorized service provider) checks your Qosmio G30.
    Here you can search for one:
    http://eu.computers.toshiba-europe.com => Support & Downloads => Find an ASP
    Good luck
    Bye

  • RMI listener stops whenever the user logs off Windows

    Hi guys...
    I have a problem whereby the RMI listener stops whenever the user logs off Windows.
    I've gone through the net and the only solution was to add "-Xrs" to the end of the "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\IBM Tivoli Identity Manager Adapter" service for the ImagePath statement.
    Unfortunately for me, that did not work.
    Anybody knows how I can go around fixing this.
    Much appreciated.

    What's the RMI listener?
    Do you mean the RMI Registry?
    In which case the solution is to add that same flag when you run the registry.

  • How can I know Which windows user is logged in

    Hello friends,
    I want to know,
    1) which window user in logged (User Name)
    2)Whether he is Adminstrator or a guest
    Please help whether my environment variables is correct or not, whether i am calling the perfect dll or whatsoever
    My PATH Environment Variable
    under user variable is *%path%*
    under system variable is *%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem*
    I searched the internet and found two link for this problem
    1) *[http://www.codeguru.com/forum/archive/index.php/t-197626.html]* which tell such info is in advapi32.dll
    so here is the code based on above solution
    public class dllwindow
    private static native String GetUserName () ;
    public static void main(String[] args)
              System.loadLibrary("advapi32");
              String UserName =GetUserName();
              System.out.println("UserName :"+UserName);
    }and the error i get is
    Exception in thread "main" java.lang.UnsatisfiedLinkError: GetUserName
         at dllwindow.GetUserName(Native Method)
         at dllwindow.main(dllwindow.java:11)
    2) *[http://www.sinotar.com/download/swin/doc/com/sinotar/jni/Windows.html]* tells such info will be in swinlib.dll
    so here is the code based on aboves solution
    import java.lang.*;
    import java.lang.Object.*;
    public class dllwindow
    private static native String getComputerName();
    private static native String getUserName () ;
         public static void main(String[] args) {
              System.loadLibrary("swinlib.dll");
              String ComputerName =getComputerName();
              System.out.println("ComputerName :"+ComputerName);
              String UserName =getUserName ();
              System.out.println("UserName :"+UserName);
    }and the error i gets is
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no swinlib.dll in java.library.path
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at dllwindow.main(dllwindow.java:9)
    Really need your help
    Edited by: venkat_walking on Jul 14, 2008 9:23 AM

    System.getProperty("user.name");

Maybe you are looking for