Tracking who is login in sap b1 through the fms..

hi.
i need a small information..
ie.
through the fms i want to know who is login into the sap b1...
SELECT T0.[U_NAME] FROM OUSR T0 WHERE internal_K = $[user]
i am running above quey it is working fine the answer is 'manager' ok
i have one more requirement i want to track employee details  using fms i am running below query..
SELECT T1.[lastName] +' ,' +T1.[firstName] FROM OUSR T0  INNER JOIN OHEM T1 ON T0.USERID = T1.userId WHERE T0.U_NAME IN('MANAGER')
working fine..
but if if use
below query i am not able to get the data
what is the mistake i have done.....
SELECT T1.[lastName] +' ,' +T1.[firstName] FROM OUSR T0  INNER JOIN OHEM T1 ON T0.USERID = T1.userId WHERE T0.U_NAME IN('SELECT T0.[U_NAME] FROM OUSR T0 WHERE internal_K = $[user]')
i need your valuable suggestion..

Hi,
Try this:
SELECT T1.[lastName] +' ,' +T1.[firstName] FROM OUSR T0  INNER JOIN OHEM T1 ON T0.USERID = T1.userId WHERE T0.U_NAME IN(SELECT T0.[U_NAME] FROM OUSR T0 WHERE internal_K = $[user])
Thanks & Regards,
Nagarajan

Similar Messages

  • All my icons and login space has disapeared through the top of my computer I hve no way to type emails?

    I do not have to type my emails or pay bills?

    Do you mean that all the Firefox toolbars have disappeared?
    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: command+Shift+F).
    *https://support.mozilla.org/kb/how-to-use-full-screen
    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    *https://support.mozilla.org/kb/Menu+bar+is+missing
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible:
    *"View > Toolbars"
    Open the Customize window to set which toolbar items to display:
    *View > Toolbars > Customize
    *Firefox > Options > Toolbar Layout
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up

  • Unable to login to SAP instance after hardware changes

    Hi,
      We have a central instance and 3 application servers. System board and NIC cards have been changed by windows team on one of the applications servers. After the hardware changes users are not able to login to SAP. All the instances are placed under logon group and the users login through load distribution.
    After hardware changes, we have started the application server and SAP is running fine on it. Now it has response time 0, which is best of all instances. All the new logins are diverting towards this instance as it has better response time of all and the instance is not allowing users to get into it nor to any insatnce. When we pulldown this instance users are able to login to other instances.
    We have treid changing NIC cards and windows team confirmed that ILO is working fine.
    Please help us in resolving this issue.
    Thanks,
    Venu.

    Primary checks - check logon groms SMLG - if the distribution are done and active with all instances.
    also check by login directly to CI without any logon grop and check that all the instances are shown in SM51 by double clicking and checking all work process for each instances look perticularly if all the Diag WP's are free for all instances.
    Regards;

  • BEx Login error - Termination occurred in the ABAP program "CL_GUI_FRONTEND

    Dear All,
    I am having error when i am trying to login in BEx Analyser / Quary Designer 7.0
    i am using the same user ID password as when i used to login to SAP BW through Logon pad.
    but still i am having the error "Name or Password is incorrect. (repeat logon)"
    I did try RRMX in BW, i got
    Runtime Errors         RAISE_EXCEPTION
    Information on where terminated
        Termination occurred in the ABAP program "CL_GUI_FRONTEND_SERVICES======CP" -
         in "GUI_DOWNLOAD".
        The main program was "RRMX_START_EXCEL ".
        In the source code you have the termination point in line 89
        of the (Include) program "CL_GUI_FRONTEND_SERVICES======CM012".
    the program in the error dump as
    CALL FUNCTION 'GUI_DOWNLOAD'
           EXPORTING
                BIN_FILESIZE              = BIN_FILESIZE
                FILENAME                  = FILENAME
                FILETYPE                  = FILETYPE
                APPEND                    = APPEND
                WRITE_FIELD_SEPARATOR     = WRITE_FIELD_SEPARATOR
                HEADER                    = HEADER
                TRUNC_TRAILING_BLANKS     = TRUNC_TRAILING_BLANKS
                WRITE_LF                  = WRITE_LF
                COL_SELECT                = COL_SELECT
                COL_SELECT_MASK           = COL_SELECT_MASK
                DAT_MODE                  = DAT_MODE
                CONFIRM_OVERWRITE         = CONFIRM_OVERWRITE
                NO_AUTH_CHECK             = NO_AUTH_CHECK
                CODEPAGE                  = CODEPAGE
                IGNORE_CERR               = IGNORE_CERR
                REPLACEMENT               = REPLACEMENT
                WRITE_BOM                 = WRITE_BOM
                TRUNC_TRAILING_BLANKS_EOL = TRUNC_TRAILING_BLANKS_EOL
                WK1_N_FORMAT              =  WK1_N_FORMAT
                WK1_N_SIZE                =  WK1_N_SIZE
                WK1_T_FORMAT              =  WK1_T_FORMAT
                WK1_T_SIZE                =  WK1_T_SIZE
                SHOW_TRANSFER_STATUS      = SHOW_TRANSFER_STATUS
           IMPORTING
                FILELENGTH              = FILELENGTH
           TABLES
                DATA_TAB                = DATA_TAB
                FIELDNAMES              = FIELDNAMES
           EXCEPTIONS
                FILE_WRITE_ERROR        = 1
                NO_BATCH                = 2
                GUI_REFUSE_FILETRANSFER = 3
                INVALID_TYPE            = 4
                NO_AUTHORITY            = 5
                UNKNOWN_ERROR           = 6
                HEADER_NOT_ALLOWED      = 7
                SEPARATOR_NOT_ALLOWED   = 8
                FILESIZE_NOT_ALLOWED    = 9
                HEADER_TOO_LONG         = 10
                DP_ERROR_CREATE         = 11
                DP_ERROR_SEND           = 12
                DP_ERROR_WRITE          = 13
                UNKNOWN_DP_ERROR        = 14
                ACCESS_DENIED           = 15
                DP_OUT_OF_MEMORY        = 16
                DISK_FULL               = 17
                DP_TIMEOUT              = 18
                FILE_NOT_FOUND          = 19
                DATAPROVIDER_EXCEPTION  = 20
                CONTROL_FLUSH_ERROR     = 21
                OTHERS                  = 22.
      IF SY-SUBRC <> 0.
        case sy-subrc.
          when 1.
            RAISE FILE_WRITE_ERROR.
          when 2.
            RAISE NO_BATCH.
          when 3.
            RAISE GUI_REFUSE_FILETRANSFER.
          when 4.
            RAISE INVALID_TYPE .
          when 5.
            RAISE NO_AUTHORITY.
          when 6.
            RAISE UNKNOWN_ERROR.
          when 7.
            RAISE HEADER_NOT_ALLOWED.
          when 8.
            RAISE SEPARATOR_NOT_ALLOWED.
          when 9.
            RAISE FILESIZE_NOT_ALLOWED.
          when 10.
            RAISE HEADER_TOO_LONG.
          when 11.
            RAISE DP_ERROR_CREATE.
          when 12.
            RAISE DP_ERROR_SEND.
          when 13.
            RAISE DP_ERROR_WRITE.
          when 14.
            RAISE UNKNOWN_DP_ERROR.
      >>>>when 15.
            RAISE ACCESS_DENIED.
    krish

    Hello,
    the same type of problem was solved today this way (it´s due to a local client problem):
    Start users local SAP GUI
    In the left upper corner of SAP GUI select the menue and -> options.
    Delete all cache files of SAP GUI and browse the local SAP GUI download folder of the users workstation. Rename the files in the download/workdir folder for example to *_old.
    Logon to SAP system again, run RRMX again -> confirm download of bex config file -> Excel sheet should open now.
    Important: also the end user has to configure some excel addin options (bex) otherwise the excel sheet will be blank / empty.
    BR,
    Alessandro

  • After synchronising, the iPod song starts part way through the song. Same song starts fine on iTunes. Wassup?

    Why is it that after I synchronise my iPod with iTunes the track on my iPod starts part way through the song? Only happens with the occasional song and is not widespread. The iTunes song on my laptop is fine - when I play it from iTunes it starts from the start.
    Any help would be very welcome

    You're in the exact same situation as me, and I can't seem to find help with this problem.

  • Parallel How many times user can login to the SAP system through ITS

    Hello all
    We are using the ITS ---620 and following 46D R/3 system 
    R/3 system details:
    Kernal :
    kernel release :46D
    O/S :SunOS 5.8 Generic_108528-05 sun4us
    We would like to now, At a time How many times user can login to the SAP system through ITS
    Kindly letus know  if any one have idea about parameter which can restrict the end users to u201CNu201D times/ sessions.
    Transaction SITSPMON/SMICM are not working in R/3 system as it is 46D.
    We found that parameter u201Clogin/disable_multi_gui_loginu201D works with SAPgui logons.
    System logons using the Internet Transaction Server (ITS) or Remote Function Call (RFC) are not affected by this Parameter u201Clogin/disable_multi_gui_loginu201D
    I need similar parameter u201Clogin/disable_multi_gui_loginu201D for the ITS users.
    Thanks

    I have searched all docs and notes.
    Everytime the answer is PArameter for multi_gui_logonis not applicable for SAP Gui for HTML ( Browser )
    The functionality does not exist for SAP Gui for HTML.
    Regards,

  • Is there a R3 table to track who are currently logon into SAP portal?

    Hey, Gurus,
    Is there a R3 table to track who are currently logon into SAP portal?
    Thanks inadvance!
    Fisher

    What I am trying to accomplish is that we have a customized SAP web dynpro program with Java that access R3 data.
    I would like to create a lock in R3 to prevent the record in R3 being accessed by more than one person.
    The problem was that in our customized portal programs will not always exit gracefully and the lock will not be cleared correctly all the time.
    If there is a way that I can access the user logon data in portal (java stack), I will try to figure out how to unlock the record after the person exit.
    Thanks!
    Fisher

  • I'm trying to connect through the FTP client Filezilla. When I try to login with the wizard, it gives me a "503 Failure of Data Connection" reply; when I attempt to login myself, it gives me a "530 Login Authentication Failed." HELP!!!

    My current softward is: Mac OS X Lion 10.7.5 (11G63)
    When I attempt to use the Filezilla connection wizard I get the following message:
    Connecting to probe.filezilla-project.org
    Response: 220 FZ router and firewall tester ready
    USER FileZilla
    Response: 331 Give any password.
    PASS 3.7.1.1
    Response: 230 logged on.
    Checking for correct external IP address
    Retrieving external IP address from http://ip.filezilla-project.org/ip.php
    Checking for correct external IP address
    IP 27.0.19.56 ch-a-bj-fg
    Response: 200 OK
    PREP 52470
    Response: 200 Using port 52470, data token 1871898076
    PORT 27,0,19,56,204,246
    Response: 200 PORT command successful
    LIST
    Response: 150 opening data connection
    Response: 503 Failure of data connection.
    Server sent unexpected reply.
    Connection closed
    When I attempt to login Host/Username/Password myself I get the following message:
    Status:          Resolving address of amyhoney.com
    Status:          Connecting to 184.168.54.1:21...
    Status:          Connection established, waiting for welcome message...
    Response:          220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
    Response:          220-You are user number 12 of 500 allowed.
    Response:          220-Local time is now 04:05. Server port: 21.
    Response:          220-This is a private system - No anonymous login
    Response:          220 You will be disconnected after 3 minutes of inactivity.
    Command:          USER 5475****
    Response:          331 User 5475**** OK. Password required
    Command:          PASS ********************
    Response:          530 Login authentication failed
    Error:          Critical error
    Error:          Could not connect to server
    Now before anyone points out the obvious: my username and password are correct. I've already gone through changing them so I know they are.
    Additionally, I've pretty much tried EVERYTHING I've read online, from messing with "terminal" (and subsequently the FTP and STFP options) to changing the sharing options and turning on file sharing/remote management as well as just turning off my Firewall completely.
    Now I've used Filezilla before when I first published my site and everything worked fine. My site is published through Wordpress so most of my editing was done through simply logging into my "wp-login." I recently changed the theme and in order to change the header image in that theme I have to do it through my "wp-content" folder, which means I need to use Filezilla. I feel like a complete moron right now considering I've had my site for about a year and can't even doing something this simple.
    I've read that the newer version of Lion/Mountain Lion don't support automatice FTP anymore, which (as I mentioned prior) I attempted to fix through Terminal. However, nothing I do seem to do works.
    Can someone walk me through fixing this? And I do mean 'walk me through'. I'm not a tech-savvy nerd who knows all the lingo, I just know the basics so sorry if my ignorance offends you.
    HELP!!

    First be sure login and password are OK. Sometimes the address starts wit "http://..." and sometime starts with "ftp://...". Try both normal FTP access and Scure FTP access (SFTP). At the end, contact the site's provider.

  • Problem opening Crystal Report from SAP GUI through VPN

    Hi Everyone,
      I am facing an issue with opening the crystal report from SAP BW Role menu(SAP GUI). The issue is only with the BW Users who are connecting to the Client systems through VPN. All the settings are done perfectly in the Transaction /CRYSTAL/RPTADMIN and SICF for the CE_URL.
    For those who are in the client network it works fine. Please see the URLs generated in both the cases,below.
    From Client N/W
    [http://sapbobj:8080/SAP/jsp/Action_Dispatch/dispatch.jsp?sap_client=100&cmsname=sapbobj:6400&language=EN&sap_sysid=D40&bw_id=4HUFYJ3XBZ7QLP5HIDYPR7PR6&sap-client=100&actionName=SAP_CrystalReport_View&appKind=InfoView&service=%2FInfoViewApp%2Fcommon%2FappService.do&loc=&initialFolderId=null]
    Through VPN
    [http://sapbwd.abc.com:8100/sap/bw/ce_url?(ce_protcl):(DS)(ce_server)/(ce_path_pr)/viewreport.csp(Q)bw_id=4HUPI3I78CG4S4EDH7XSDP736&sap_sysid=(sysid)&sap_client=100&language=EN&sap-client=100]
    where "sapbobj" is the BOBJ system and "sapbwd" is the SAP BW Dev box.
    For me it seems to be something related to the N/W. Please provide me your valuable inputs to solve this issue.
    Thanks in Advance,
    Koka M
    Edited by: Madan Koka on May 19, 2010 5:18 PM

    Hi,
    I'm also facing the same issue. when try to open my report the URL doesn;t taking "bw_id".
    It is blank for all transported reports.
    Any advice..
    Thanks,
    Jothi

  • How to monitor all SAP Server through solution Manager?

    Dear Friends,
    How to monitor all SAP Server through solution Manager?
    Is it possible if yes then how? Please forward configuration and transaction also.
    Please help me as early as possible..
    Thanks,
    Regards,
    Sachin

    Hi sachin,
    You can monitor your sattilite systems through solution manager.
    If you want to monitor systems in solution manager means you need to configure those systems in solution manager.
    Before including the systems in solution manager we need to create a solution using tcode <b>DSWP</b>.
    After that you can include the systems using tcode <b>SMSY</b>.
    For configuring the systems we have lot of phases its very difficult to explain here.
    Try to login to<b> service.sap.com</b> and <b>help.sap.com</b> find the helpfull guides.
    i hope it will help you.
    any issues post it.
    kiran kumar.v

  • Maintain SAP Server through Browser--Authorisation

    i want to maintain the server through browser
    i have added the java installation aslo
    when i login to the browser wiht j2ee_Admin i am not able ot create user
    when i login wiht sap* i dont have authorisation
    When i login through j2ee_Admin also it is taking me to client 000
    Where can i give the option to take me to client 100
    Pls tell me how to proceed

    Balaji,
             please go thru this note..
    Note 718383 - NetWeaver: Supported UME Data Sources and Change Options
    this note will address, your problem.
    with regards,
    Rajesh.
    award suitable points.
    <a href="https://websmp101.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=718383">Note 718383 - NetWeaver: Supported UME Data Sources and Change Options</a>

  • Problem in login to SBO database through DI server

    I am a newbie to DI Server.I am using VS.NET 2005 and SQL Server 2005,SBO 2005B (PL 27) on Windows XP Service Pack2.Everytime I tried to Login to login to SBO Database through DI server I am getting the same SOAP response -"Could not commit transaction Login".Can anyone help me in this regard?
    Thanks,
    Arnab Lahiri
    Edited by: Arnab Lahiri on Aug 21, 2008 8:50 AM

    Hi Arshdeep,
                       DI server is running and I have the proper licenses for SDK and ADDons.I am putting the code for the Login(hardcoded the parameters used for login):
    <WebMethod()> _
         Public Function Login() As String
            Dim DISnode As SBODI_Server.Node
            Dim sSOAPans, sCmd As String
            DISnode = New SBODI_Server.Node
            sCmd = "<?xml version=""1.0"" encoding=""UTF-16""?>"
            sCmd += "<env:Envelope xmlns:env=""http://schemas.xmlsoap.org/soap/envelope/"">"
            sCmd += "<env:Body><dis:Login xmlns:dis=""http://www.sap.com/SBO/DIS"">"
            sCmd += "<DatabaseServer>" & "X63\SAP" & "</DatabaseServer>"
            sCmd += "<DatabaseName>" & "ASLLIVE" & "</DatabaseName>"
            sCmd += "<DatabaseType>" & "dst_MSSQL2005" & "</DatabaseType>"
            sCmd += "<DatabaseUsername>" & "sa" & "</DatabaseUsername>"
            sCmd += "<DatabasePassword>" & "xen007" & "</DatabasePassword>"
            sCmd += "<CompanyUsername>" & "manager" & "</CompanyUsername>"
            sCmd += "<CompanyPassword>" & "manager" & "</CompanyPassword>"
            sCmd += "<Language>" & "ln_English" & "</Language>"
            sCmd += "<LicenseServer>" & "X63:30000" & "</LicenseServer>" 'ILTLVH25
            sCmd += "</dis:Login></env:Body></env:Envelope>"
            sSOAPans = DISnode.Interact(sCmd)
            Dim xmlValid As System.Xml.XmlReader
            'Dim xmlValid As System.Xml.XmlValidatingReader
            Dim sRet As String
            xmlValid = New System.Xml.XmlTextReader(sSOAPans, System.Xml.XmlNodeType.Document, Nothing)
            While xmlValid.Read()
                If xmlValid.NodeType = System.Xml.XmlNodeType.Text Then
                    If sRet = "" Then
                        sRet += xmlValid.Value
                    Else
                        If sRet.StartsWith("Error") Then
                            sRet += " " & xmlValid.Value
                        Else
                            sRet = "Error " & sRet & " " & xmlValid.Value
                        End If
                    End If
                End If
            End While
            If InStr(sSOAPans, "<env:Fault>") And (Not (sRet.StartsWith("Error"))) Then
                sRet = "Error: " & sRet
            End If
            Return sRet
        End Function
    Thanks,
    Arnab

  • Not able to Login to SAP

    We had a client Connectivity and we had login to Client Network through Client VPN after login to client VPN when we open the SAP Logon Pad and click on the instance in which i want to login it is prompting an error message
    Component : NI (Network Interface)
    Release : 710
    Version : 39
    Module : nixxi.cpp
    Line : 4854
    System Call : recv
    Error no: 10054
    Error text : WSAECONNRESET : Connection reset by peer
    Can any guide us in which condition this error message appear and by what mesaure it can be resolved

    Hi,
    Check the user roles:
    Goto SU01 transactions and check the user roles.
    http://help.sap.com/saphelp_nw04s/helpdata/en/56/361041ebf0f06fe10000000a1550b0/frameset.htm
    Thnx
    Chirag

  • Is there a Report detailing who has logged into SAP ECC 6.0 over 24hours

    I am looking for a report that would detail who has logged into SAP over a 24hour period?
    Even logs would be good.  This is very important as we are trying to trace the events leading up to a problem
    Regards,
    Maria

    You need to activate Auditing for this purpose. This will, however, not track the transaction called in the past.
    I wonder what you want to do with that information because you won't be able to tell, what the user has actually done.
    If I start VA01, enter "TA" and press enter - I have started that transaction but I haven't done anything. Do you count that in your wanted-statistic as "has done VA01" or "has not done VA01"?
    You can use STAD to see what is exactly happening on your system but not for 24h because the amount of data would be so big, your system would literally explode (depending on the number of users and activity on your system of course).
    Markus

  • Apple company please detect or track who is using on this device this is the serial number CCQJRCPNF4JR please detect or track if who is person is this?

    apple company please detect or track who is using on this device this is the serial number CC******4JR please detect or track if who is person is this?
    <Edited by Host>

    The only way an iOS device can be tracked is if you setup Find My in Settings > iCloud before it disappeared...then you have to login to your iCloud account, click Find My Phone, and see if the device shows up.  It will only show up if it is turned on and connected to the internet.
    There is no other way to track or locate a device.

Maybe you are looking for

  • JScrollPane's scroll

    i have a jpalel onto JScrollPane, how can I know from program this jcrollpane's vertical scroll is shown or not ( this panel needs scroll or not ). Has a JScrollpane object or variable , which messages me this . I dont wont solve this problem with si

  • My Bookmarks Sidebar is locked in width. I can't reduce it. Help!

    My Bookmarks Sidebar has always been adjustable. Now it is locked and I can't reduce the width. The width arrows appear when I hover over the edge, but don't do anything when I try to drag it. Please help. My sidebar is too wide! Just started a 15 da

  • How to Add the Other SWF component to the Flash Cataylst State

    Do any one can give step by step procedure for it. Regards, Soni

  • RE: Transaction

    Hi All,       I have some confusion in T-codes what is the difference between RSDCUBE , RSDCUBED and RSDCUBEM                                                                                 RSDIOBC, RSDIOBCD and RSDIOBCM                              

  • Xfce auto start problem

    Hello, First time posting so don't punish me for any mistakes Here is the problem: After removing gnome and installing xfce Arch doesn't go into GUI mode automatically. I am stuck at the command line. From there I can type startxfce4 and it work but