Login User ID Capture

Hi ,
  I  wanted to Capture Login user id in a realtime infocube . So is there any standard objects available like for Current Date we use SY-DATUM , the same thing for the  Login ID .
Regards
Ankit Vaish

Hi Soumya,
Congratulations for your contribution. You are one of the top contributors for SDN. I just want to tell you about paid contribution. You can be paid up to 5000-10000 pm by spending little time. write to [email protected] for more details
Regards,
Reddy

Similar Messages

  • How to access Sap portal login user in ejb web service

    Hi,
    I wnt to access SAP Portal login user in my ejb application which resides on the same server.
    I am using following code
    try {
         IUser user =null;                         IWDClientUser wdUser = WDClientUser.getCurrentUser();
                                  user = wdUser.getSAPUser();
                             } catch (WDUMException e) {
                                  // TODO Auto-generated catch block
                                  e.printStackTrace();
    Some additional jar files are required for this?
    The same code works fine with webDynpro but not with ejb.
    Thanks in advance     
    Best regards,
    Nilesh

    Thanks for reply.
    I have already added com.sap.security.api in my EJB module project classpath. How to add the same in EJB application Project (application-j2ee-engine.xml)?
    Best regards,
    Nilesh

  • Please help! Bizarre login/user account problem

    In 24 years of using Macs, this is the most frustrating thing I've ever faced and I am in desperate need of help.
    For the entire story of my circumstances, see below. The short version of my problem: My auto-login user account is corrupt but I can't figure out how to bypass/interrupt it so I can log in to a different user account. Is there a way to use Single User Mode to do this - to get to the regular login screen where I can enter a different user name and password???
    I follwed the steps outlined by Michael in this thread, but it did not work
    http://discussions.apple.com/thread.jspa?threadID=1124380
    Any expedient help is greatly appreciated, I'm in dire straights...my Mac has been down for a week with this problem and my work is suffering.
    Thanks in advance,
    -Nelson
    Here's the long version of how I arrived at these circumstances:
    I have a single (admin level) user account on my new Mac Pro, with auto-login enabled. The home folder is on a separate internal drive (bay 2) from the OS/applications (bay 1). Out of nowhere, I got the error "You are unable to log in to the user account. Login failed because an error occurred." I was not able to login to my machine. When I tried to boot from my bootable clone backup, got the same error. Tried to boot from the Leopard install DVD, got the 5-language kernel panic screen. Off to the Apple Store.
    It didn't occur to me at this time to mention my Home folder being on a 2nd drive, that was my mistake #1. They ended up replacing the logic board and RAM riser cards, neither of which was remotely related to the problem. In the process, they were able to create a new admin-level 'test' user account, and got the machine up and running again. At this point they noticed that there was no other user/Home folder present on the startup drive and at this point I told them that it was located on drive 2. That drive was not appearing in the finder, so apparently it had croaked - and knowing this pretty much explained the original problem, to me at least.
    I get home, log in as Test, delete my old user account, create a new user account and put the Home folder for this new account on drive 3. My stupid mistake #2: I used the same name for the new account as my old account, and mistake #3, turned auto-login to this account back on.
    But at this point, everything was still working, and I commenced to try to recover my lost Home folder from my Time Machine backup and figure out how to restore all of my system settings, which were wiped out with the creation of the new Test user account. I'll skip over some of the other problems I ran into with Time Machine at this point and get to the real issue: after a couple of successful restarts and logins to my newly created user account (the one with the same name as my old account but with it's Home folder in a different location), the ORIGINAL "You are unable to log in to the user account. Login failed because an error occurred." error has returned.
    Now I'm back where I started, and can't figure out how to log in to the Test account that resides on my startup drive, because auto-login is enabled for the 'broken' user account - even though the Home folder for this account is located on a working drive.
    I've done tons of searching and can't figure out how to use Single User Mode to login to Test. When I try the login command, it says 'login incorrect', even though I am using the correct user and password. Help!!

    well, something is really messed up with those accounts so I would create a new admin account, log into that and go from there.
    To do that [enable the root user|http://support.apple.com/kb/TS1278], safe boot, log in as root and create a new admin account, also while you are at it disable the auto login.
    You can also work from the root account but I would recommend against it. It's not really safe.

  • FindGroups - Error while getting group list for login user

    Hi All,
    I am using below code snippet to search a group in OIM but it gives me "Error while getting group list for login user" error message.
    tcResultSet rsetAss = null;
    tcGroupOperationsIntf groupIntf = (tcGroupOperationsIntf)utilFactory.getUtility("Thor.API.Operations.tcGroupOperationsIntf");
    HashMap mapGrp = new HashMap();
    mapGrp.put("Groups.Group Name","DEF_GROUP");
    rsetAss = groupIntf.findGroups(mapGrp);     
    And i am ruuning this code using xelsysadm logon.
    com.thortech.xl.util.config.ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    Hashtable env = config.getAllSettings();
    com.thortech.xl.crypto.tcSignatureMessage moSignature = tcCryptoUtil.sign("xelsysadm", "PrivateKey");
    utilFactory = new tcUtilityFactory(env, moSignature);     
    Any guess?
    Thanks & Regards
    Inbaa.

    Here it is Rajiv,
    public class GetUserApprover {
    private String defGroup = "DEF_GROUP";
    public tcUtilityFactory getUtilFactory()
    tcUtilityFactory utilFactory = null;
    try
         logger.debug("Initializing the utilFactory");
         com.thortech.xl.util.config.ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    Hashtable env = config.getAllSettings();
    com.thortech.xl.crypto.tcSignatureMessage moSignature = tcCryptoUtil.sign("xelsysadm", "PrivateKey");
    utilFactory = new tcUtilityFactory(env, moSignature);
    catch(Exception ex)
         logger.info("Error while getting the utilFactory" + ex.getMessage());
         System.out.println(ex.getMessage());
    return utilFactory;
    public String getGroupKey(String defGroup){
              String groupKey = null;
              tcUtilityFactory utilFactory = getUtilFactory();
              if(utilFactory != null)
         System.out.println("utilFactory not null. Searching for group:" +defGroup );
                   try
              tcResultSet rsetAss = null;
              tcGroupOperationsIntf groupIntf = (tcGroupOperationsIntf)utilFactory.getUtility("Thor.API.Operations.tcGroupOperationsIntf");
              HashMap mapGrp = new HashMap();
              mapGrp.put("Groups.Group Name","DEF_OWNER_GROUP");
              System.out.println("Finding Group....");
              rsetAss = groupIntf.findGroups(mapGrp);          
              System.out.println("RowCount-->" +rsetAss.getRowCount() );
              rsetAss.goToRow(0);
              groupKey = rsetAss.getStringValue("Groups.Key");
         System.out.println("GroupKey-->" + groupKey);
         catch(Exception e){
              System.out.println("Error" + e.getMessage());
              return (java.lang.Object)groupKey;
    }

  • How to find out maximum number of login users?

    Hi all,
    Is there anyway to find out what is the maximum number of login users since a database is started? Maybe I should ask, what's the largest number of sessions has been opened in a busy time of a database since it is started?
    I know v$session is my target. But how can I find out hte HWM of opened sesions?
    Thanks.

    Thanks Serch-NET. That's what I'm doing today. I should be a little more specific. I'm looking for a script that lends itself to automation. A script that can determine all the databases on a given server, find their background dump dest., grep all alert logs and return the highest of the HWM's. This is all scripting I could do myself, but being a follower of the Lazy DBA, I was hoping someone else had done it. :-)
    Thanks again.

  • Urgent : Get OS login user in the report

    FACTS
    D.B 9i
    AS 10g
    Report 10g
    PROBLEM
    I implement a report where it generate a PDF output contain private employee Details and send it to his email
    But I want to run this report in our internal web site,
    Where user login by his ID to the network and then open the internal web site, where he can ask for his details by click a link that will open/call the report Directly
    (without using a form to call that report ).
    When report is called the connection to DB is done by a guest user which have a required roles to get the employee details.
    NOW:
    my report should get the login user to network ( Windows OS user ).
    And base on it Query for his details and send it to his email.
    Note that : Login user to network = his ID in D.B = email ID
    And since the report is run in the AS (mid tire) then I can't get OS user login.
    Is there a way that in the report it self I can get the OS login ID of the client. ???
    Note:
    I don't want to user Developer forms.
    Where I can use the webutil to get user login ID of the Client and pass it to the report and run the Report.
    My requirement is to run the report direct ( URL ).
    Therefore :
    Is there a way that in the report it self I can get the OS login ID of the client. ???
    Or any idea can help in my issue/ case
    Plz help.

    i use it but since my report run in the AS (mid tire) then
    it will return the user of AS not the Client OS user.

  • How to save the Created by name instead of saving  login user name

    Hi All,
    I done Without log in Jsp page to open one responsibility without login .
    here created one column Created by here user can view list of values in username . it EAM module work request page .
    my issue is while creating the work request Created by name saving in to the database but requirement is user needs to select using created by LOV that username needs to be save on data base .
    once open the application created by name is coming as a login name using controller i removed the created by i set the created by name in PR is lovevent .
    front end its working fine but while saving login user name is saving i need to save the created by name based on the lov .
    can any one help to overcome this issue......
    Thanks in Advance.....
    Kumar

    Hi,
    Thanks For Reply
    It is a Standard Page and created by column Passing in the package while inserting the data FND_GLOBAL.UserID.
    I have One more option i need to pass the created by as perameter in Jsp Page based on that user i need to get the password using (Encrprit ) command .
    Is it Possible to do in Passing the Parameter OAF to JSP page .and how to Encrprit the password to avoid entering the password .
    I hope U understand My Requirement..
    Regards,
    Kumar

  • How to show the login user Id in the upper right corner of each page?

    Hi,
    I was wondering how to show the login user Id in the upper right corner of each page?
    thanks so much!
    cchu

    Cchu,
    The easy question first: applying a style to the welcome message. If you look at the page source, you'll see that #WELCOME_USER# is expanded to <div class="app-user">Welcome: DEMO</div> So to change the style of the message, you need to tweak the style of the app-user div in your CSS, or override it in a style block in your HTML header.
    Now, the tougher question: why the text is wrapping for you. And, really, without seeing your entire page, I can't give a full answer. But I'd suggest that what's most likely happening is that the table column you're putting it in is too narrow, so it's wrapping; try replacing the td tag with <td nowrap="nowrap"> This will force the column to be wide enough to display the full message, but might result in weird formatting elsewhere on the page (depending on what all is in your table).
    -David

  • CUIC "Login User" permissions

    Hi,
    We are using CUIS 7.5.4 for our Contact Center (CC) reporting.
    Now, we have installed CUIC 9.0(1) in another server and testing all the reports and user permissions. In CUIS, all the CC Supervisors provided with Restricted User permission but they are individually provided permissions for their CC folder and reports. I want to achieve this in CUIC.
    I assume that the "Login User" in CUIC is equivalent to "Restricted User" in CUIS. Based on this understanding, we provided "Login User" permission to a user and also enabled permissions to his report folder and reports. But, whenever we login as Login User, we do not find any folders under Report folder and if we click on Report folder, it says "Access Denied - please contact Administrator for permission".
    I have another user for the administrator but I do not know which permission needs to be enabled for that restricted user/login user to access his reports (only). Can anyone help me on this please.
    Thanks & Regards
    Velan

    "Login User" only allows the user to login to CUIC, it doesn't allow access to any features. "Report Designer" will allow the user to run and create reports, and "Dashboard Designer" will allow the user to run and create Dashboards.
    New Reports/Dashboards can only be created in folders that the user has proper permissions on. Likewise, you can use permissions to restrict which existing folders and reports the user can use.
    -Jameson

  • How to hide the Columns and Views for Login user in SharePoint 2013

    Hi Friends,
    How to hide the Columns and Views for Login user in SharePoint 2013? Is it possible using OOB features? If not possible how can we hide the Columns and Views for Login user?
    Could you please help on this.
    Thanks,
    Tiru
    Tiru

    Hello Tirupal,
    There is no OOB way to do this.
    Please check this codeplex solution to achieve the same.
    https://sp2013columnpermission.codeplex.com/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to control logined user

    Hi,
    Using JAAS login model is fine for my swing app. But now there is a requirement, such that we need to create a web, by which all logined user can be monitored, and even forced to logout.
    Can any one have idea, so
    1. how to know who logined?
    2. how to login user out?
    Thanks
    John

    Hi,
    you can look towards jguard (http://www.jguard.net) which do the work for you (integrate JAAS into J2EE) out of the box.
    cheers,
    Charles.
    www.jguard.net

  • Self secure page always displaing Login User Name as GUEST

    Hi,
    We need a self secure page which doesn't prompt for oracle username and password in OAF
    We devloped such page in OAF but every time it is displaying Login User Name As Guest.
    By using below site i did developed self secure page
    https://blogs.oracle.com/manojmadhusoodanan/entry/self_secured_page_creation_in
    I want to find out my OSUSER Name from OAF .my requiremnet is based on login user i need to restrisct or display data on page.
    If i execute below query from database is giving my OSUSER name but same is giving Server name if i execute same sql through OAF.
    SELECT sys_context('USERENV', 'OS_USER') BUN FROM dual;
    SYS_CONTEXT('USERENV','OS_USER')         IN OAF   ------------  oracusd(Server name)
    prkaduri
    Please guide me on this .Its very urgent requiremnet.
    Regards
    Panduranga reddy

    If you are using BIP11g and using the default installation then BIP11g security mode is set to Fusion Middleware.
    All users and groups are controlled by Fusion Middleware Security.
    Any authenticated user will be able to run reports as in former BIP releases "guest".
    But also noticed the authenticated user will also have a privilege you want to remove
    as for example permission to delete report.
    Take a look at this link:
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e10543/authentication.htm
    Cheers
    Jorge
    p.s
    1. In 11g you will have to read a lot before you can properly use the software, sorry.
    2. If this answers your question please grant the points and close the thread
    Edited by: Jorge Anicama on Mar 23, 2011 10:15 AM

  • Display the login User ID on Header in Business Objects XI R3.1 Infoview

    In XI R2 Infoview- the login user ID  is displayed on header. However  In XI R3.1 infoview- displayed Business Objects Logo on the same place of the Header. We noticed that In BO XI3.1 infoview the login user ID  is displayed on header. However the Business Objects logo is displayed on top of the user ID so the user ID  is hidden. while Setting the Infoview Application properties in CMC (CMC>Applications>Infoview Application Properties> check Do not display logo) then it will hide the logo and then next login displays the login user ID. Could someone please confirm is it the solution with this configuration or else please help us how to display the user ID on Infoview Header.

    Hey,
    What you did is exactly correct.
    Now you did on XI-R2 and 3.1 right??, whenever you got upgrade to next release of BO version again you have to do the same changing of properties. Which should not be dynamic based on your previous changes on earlier versions.
    Thank You!!

  • Create  login user group??

    How do I create a login "user group" in Tiger.
    I'm trying to create a login user group and assign individual users to that group for permission privileges.
    Thx

    The easiest way to set Groups, Users, Rights etc, is with Sharepoints...
    http://www.hornware.com/sharepoints/
    The other way would be with NetInfo Manager, but that requires a lot more knowledge... and Sharepoints is just a GUI into it's settings and other settings.
    Assuming this "login group" is via Networking!?

  • How to get spuserid of login user in sharepoint 2013

    i want to retrive the spuser id of login user in sharepoint 2013. using sp services

    Hello,
    Here is the code to get current user id:
    $().SPServices({
    operation: "GetUserInfo",
    async: false,
    userLoginName: $().SPServices.SPGetCurrentUser(),
    completefunc: function (xData, Status) {
    $(xData.responseXML).find("User").each(function() {
    curUserId = $(this).attr("ID");
    curUserName = $(this).attr("Name");
    http://yalla.itgroove.net/2011/12/sharepoint-2010-get-current-username-logged-in-user/
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

Maybe you are looking for

  • Can Save and Save As dialog boxes be modified to show fewer file type options in CS3?

    I'm looking to simplify the choices for the Save and Save As commands to the just the formats that I use on a regular basis to make some repetitive file processing tasks go faster. Is this possible? Thanks for your help. m

  • How do I set the Shutter Speed in Manual Mode on my EOS 70D

    I recently was forced to upgrade to a Canon 70D after my 50D died from a fall.  I am not happy with the ease of setting the Shutter speed while in Manual mode.  The only way I can currently set the shutter speed while in Manual mode, is to go to the

  • Driver Library to communicate with SQL Server database

    Hi All, I'm new to LabView and am hoping for a few guidelines to point me in the right direction for an application that I have to develop. I have to build an API to read/write to a database (SQL Server).  Another application will essentially have th

  • Burning multiple iDVD projects at once

    I'm trying to burn more than one dvd project to the same DVD, at the same time. The combined total of both projects is around 2GB, so i'm thinking it should fit? I've tried to burn one, then re-insert the same ( RW dvd ) and it wants to erase it befo

  • HT2534 Setting up an ID - 'billing information'

    I don't get the same screen as shown on the 'billing information' part of this article on my iphone 5.  Mine states that to create an ID I must provide a credit card, gift card or gift certificate.  There's no 'none' option, I have to tick a type of