Tcodes used along with terminal name

Dear  Experts
Please provide TCode by which i can see all the tcodes used by particular User in specific time interval along with terminal name
Thanks in advance
Raj

Hi,
You can see the all hole day, week and month wise tcode detail(run by user)  through TCode: st03n
Double Click on day,week or month
then dragdown bottom menu User and Settlement double click "User Profile"
Right Side you will see Users --- Go in perticular User -- Double Click on User detail for All running tcode by perticular user.
Regards,
Gokul Chandola

Similar Messages

  • FBA user's displaynames showing along with membership name.

    Hi All,
    Am using SharePoint 2010 site configured with both windows and Forms based authentications,
    Now when i logged in to the site with FBA user it shows the display name along with membership providers name,
    like this "i:0#.f|testuserprovider|Testuser1".
    Here the 'testuserprovider' is the membership provider name and 'Testuser1'
    is the excat FBA username.
    Previously it was displayed correctly as only the displayname but from today it showing name along with membership name, suddenly it happened. can anyone tell what would the problem and excat solution for this.
    Regards,
    karthick.

    Hi,
    Please check the link
    http://sharepoint.stackexchange.com/questions/35412/changing-users-displayname-isnt-permanent-i0-f-issue
    http://blog.tylerholmes.com/2011/03/awkward-usernames-courtesy-of-claims.html
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Is there a dialing app which places icons on the screen along with the name being called?

    Does anyone know of an app which places a limited number of phone numbers along with the name of the person being called on the screen of the iPhone?  Our grandfather is 95 years old, and can not operate the small buttons on most cell phones, and has trouble navigating around the phone to make calls.  We just want 3 phone numbers displayed, along with who is being called, so he does not have to navigate to anything except the main screen.  Thanks.

    http://itunes.apple.com/us/app/icon-project-home-screen-icon/id434277910?mt=8

  • With all of the applications available, what other applications recommended to use along with Captivate 8.

    With all of the applications available, what other applications recommended to use along with Captivate 8.  I do not heed to install all of them, just what I need.

    Personally I use both Photoshop and Audition (both in CC) a lot when using Captivate 8. There is roundtripping possible with those two Adobe applications. If you have a CC subscription try it out! And when needing HTML5 output, you can insert published Edge Animate files, to replace former Flash animations. As you can see in CP8, Edge Inspect can be used to test the output on mobile devices without having to publish or to deploy on a webserver.

  • .PDF file transfer(SAP XI ) along with file name to SAP R3

    I would like to transfer a .PDF file along with its file name to target system.I need to have target structure like,
      <Target>
        <field1>
        <Field2>
    /Target>
    Field1should be mapped to file name( i can do this by using dynamic configuration and a UDF).
    Field 2 should me mapped to .PDF imae (.ie) i need tp pass the whole image to one target field
    How can i do this.
    Please suggest.

    Hi as mentioned by you the structure is
    <Target>
        <field1>
        <Field2>
    </Target>
    Field 1 Contains The dynamic File name UDF
    Just make This File name which is sent Thru Source side as "Filename.PDF" to be passed to the target end
    For example If the File name is XYZ
    Field 1 has XYZ--
    Pass The Field 2 as "XYZ.pdf" (i.e. File name Followed By .pdf as extension(Field1.pdf))

  • Along with subtotal name display

    how to display vendor name along with subtotals...?
    my ALV report (using function modules, choice for LIST and GRID) subtotals needs to display..
    the code is :
           ls_sort                    TYPE slis_sortinfo_alv.
    *-- Level 1
      CLEAR ls_sort.
      ls_sort-fieldname = 'LIFNR'.
      ls_sort-spos      =  1.
      ls_sort-up        = 'X'.
      ls_sort-subtot    = 'X'.
      APPEND ls_sort TO vt_sort.
    *-- Level 2
      CLEAR ls_sort.
      ls_sort-fieldname = 'EBELN'.
      ls_sort-spos      =  2.
      ls_sort-up        = 'X'.
      ls_sort-subtot    = 'X'.
      CLEAR ls_sort.
      ls_sort-fieldname = 'DMBTR'.
      ls_sort-spos      =  3.
      ls_sort-up        = 'X'.
      ls_sort-subtot    = 'X'.
      APPEND ls_sort TO vt_sort.
    plz help me...

    Hi,
    This is sample coding for subheadings and with sub totals.
    REPORT YMS_TESTALV .
    TYPE-POOLS: SLIS.
    DATA: REPID LIKE SY-REPID,
          X_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
          IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
          L_LAYOUT type slis_layout_alv,
    x_events type slis_alv_event,
          it_events type slis_t_event with header line. "SLIS_T_EVENT.
    DATA: BEGIN OF ITAB OCCURS 0,
          VBELN LIKE VBAK-VBELN,
          POSNR LIKE VBAP-POSNR,
          MALE type i,
          female type i,
    PLANE(10),
    ACTUAL(10),
    PLANE1(10),
    ACTUAL1(10),
          END OF ITAB.
    START-OF-SELECTION.
    REPID = SY-REPID.
    SELECT VBELN POSNR FROM VBAP UP TO 20 ROWS INTO TABLE ITAB.
    X_FIELDCAT-FIELDNAME = 'VBELN'.
    X_FIELDCAT-SELTEXT_L = text-020.      "'Planned cost'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 1.
    X_FIELDCAT-OUTPUTLEN = 10 .
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    X_FIELDCAT-FIELDNAME = 'POSNR'.
    X_FIELDCAT-SELTEXT_L = text-053.      "'Actual cost '.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 2."1.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    X_FIELDCAT-FIELDNAME = 'MALE'.
    X_FIELDCAT-SELTEXT_L = 'MALE'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 3.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    X_FIELDCAT-FIELDNAME = 'FEMALE'.
    X_FIELDCAT-SELTEXT_L = TEXT-T01.        "'FEMALE'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 3.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    it_events-NAME = SLIS_EV_TOP_OF_PAGE.
    it_events-FORM = 'TOP_OF_PAGE'.
    APPEND iT_EVENTS.
    CLEAR it_events .
    L_LAYOUT-NO_COLHEAD = 'X'.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
              I_CALLBACK_PROGRAM = REPID
              IS_LAYOUT = L_LAYOUT
              IT_FIELDCAT = IT_FIELDCAT
              it_events = it_events[]
              TABLES
              T_OUTTAB = ITAB
              EXCEPTIONS
              PROGRAM_ERROR = 1
              OTHERS = 2.
             IF SY-SUBRC <> 0.
              MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
             ENDIF.
    FORM TOP_OF_PAGE.
    *-To display the headers for main list
    FORMAT COLOR COL_HEADING.
            WRITE: / SY-ULINE(143).
            WRITE: / SY-VLINE,
            (8) 'LAST YEAR' ,
            SY-VLINE,
            (10) ' ' ,
            SY-VLINE,
            (19) 'CURRENT YEAR'(020) centered,
            (19) 'CURRENT YEAR'(020),
            sy-vline.
            WRITE: / SY-VLINE,
            (8) 'PLANE'(053) ,
            SY-VLINE,
            (8) 'ACTUAL'(054) ,
            SY-VLINE,
            (8) 'MALE'(056) ,
            sy-vline,
            (9) 'FEMALE'(057) ,
            sy-vline.
    FORMAT COLOR OFF.
    ENDFORM.
    Thanks,
    Shankar

  • InDesign Script to find images w/ prefix code, place img on page along with file name.

    Hello,
    I'm looking for an InDesign script that will prompt me for a code/text, this code/text will be the prefix of images in the sever, and then return the images found with this prefix by placing them on the document page and also display their file names in a text box. Is there such a script out there that anyone recommends. Thank you for your help. I'm on a Mac, using InDesign CS6, Javascript or any other would do.

    Hello,
    I'm looking for an InDesign script that will prompt me for a code/text, this code/text will be the prefix of images in the sever, and then return the images found with this prefix by placing them on the document page and also display their file names in a text box. Is there such a script out there that anyone recommends. Thank you for your help. I'm on a Mac, using InDesign CS6, Javascript or any other would do.

  • Can you use bb with terminal services?

    I have a bb curve 8330 - my work outlook is on a terminal session.... how do I sync my bb with outlook? 

    Hello,
    The BB Desktop manager synchronsies the Handset through the MAPI PROFILE to the Mail system (through a BES if you use that option).
    No MAPI Profile = No BB sync.
    So, Terminal services or not, you need to set up a  MAPI profile on your Local PC.
    If you cant do that due to VPN/firewall restrictuions/etc  then you cant sync the BB to your outlook data at all.
    Sorry.
    Message Edited by OzBBerry42 on 03-04-2009 10:00 AM
    Checked out my Blackberry FAQ's and Links to Needed Articles here
    http://darkeen.homelinux.com/index.php/Blackberryfaq

  • Briefing Book Title shows the name of the Analysis along with Report Name

    Hi,
    When I add a report to the briefing books, The title of the PDF document shows the report name and below that it also shows the name of the analysis. Normally we save our analysis with some standard naming conventions having some special characters. Client does not need that name in the PDF.
    How can I stop the Analysis Name to appear on the briefing book?
    Please suggest.
    Thanks
    Gaurav A.

    That's a great question, and it seems like something that should be standard with iCal.
    The only thing I could think of would be to add the patient as an invitee, but that still wouldn't solve the problem of having their name be the title of the appointment. But the auto-complete function is there.
    The other option (which is more convoluded) would be to use Filemaker Pro. It is extremely powerful and customizable and there are plenty of people out there who know how to develop for it. This option would be more expensive, but it could also be custom-tailored to your needs.
    Those aren't great answers so I'm interested to see what others say. I'd like to implement it into my own iCal app.

  • Which is better frame works use along with flex

    Hi,
    I am developing an hospital application, mainly includes the
    management of outpatients and in front end i am using flex but in
    back end i did not get a clear idea about which frame work has to
    use or need of a new architecture. i just need some suggestion
    which of these spring,EJB 3.0 and Jboss Seam is better for back end
    implementation.
    Thanks and Regards
    kumar

    Hey kumar ,
    I don't have experience with a lot of frameworks but I am
    using Blaze-DS + Spring with deployed under glassfish.
    I think you biggest problem here is how to make the frontend
    pluggable, extensible and easy to maintain.
    I do make all single screens as single modules. and each
    module have it's own java class to do the work + some java classes
    for general perpose.
    Teh whole thing is build in ANTS and using jnit as a testing
    framework for java. I don't have anything yet to do automated UI
    testing.
    Ries

  • Can BPS be used along with APO..?

    Hi,
    We are examining the possibility of using BW-BPS within APO environment as much of the forecast planning is carried out with APO data. Since BW3.5, SAP has bundled BPS into BW. Since APO has BW3.5, why not BPS could be used within APO. Any thoughts..?
    What are downfall of using BPS within APO or I put the question in another way, What is the difference between BW-BPS as a standalone system and BPS in APO system.
    Any input will be helpful.
    Thanks and Regards,
    KT

    Hi KT,
    there is a paper avaliable on service marketplace, that describes how BW-BPS can be integrated with APO-DP:
    <http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000517885&> (or http://service.sap.de/bi -> SAP BW Business Planning and Simulation -> Further Information) title "Integrate BW-BPS and APO-DP".
    Regards,
    Tobias

  • Sql Except query to Display mismatched records along with Table names

    Hi
    I am using below query to display mismatch records between two tables
    SELECT * FROM table1
    EXCEPT
    SELECT * FROM table2
    UNION
    SELECT * FROM table2
    EXCEPT
    SELECT * FROM table1
    This displays mismatched records like below
    Sunil  1000  india
    Sunil 1500  india
    I would like to display even the table names in the result For ex;
    Sunil  1000  india  Table1
    Sunil 1500  india   Table2
    Can you please help us in this regard.

    cnk_gr's query should work for you. 
    One change that I would make is to use UNION ALL, not UNION.  UNION eliminates duplicate rows, which means SQL has to do additional work (sort the result and then check for duplicates). 
    So if you can have duplicates and don't want them in your result, then you would use UNION.  And if you can have duplicates and you want the duplicates in the result, you would use UNION ALL.  But in cases like this, where you know you cannot have
    duplicates (because column 1 contains 'TABLE1' for every row in the first half and column 1 contains 'TABLE2' for every row returned from the second half of the query), you should always use UNION ALL.  It will be more efficient.
    Tom

  • Use Class with Same Name as Default Package Class

    I am upgrading a project to Flash CC and need to use the old JSON class in com.adobe.serialization.json. When I compile, I get an error, "1061: Call to a possibly undefined method decode through a reference with static type Class" because it probably is trying to use the newer default package JSON class rather than the one in com.adobe. I have the import statement in my class, "import com.adobe.serialization.json.JSON", but I guess its checking against the default package and giving me a compile error when I call "var parts:Object = JSON.decode(jsonData);"

    Thanks. I changed my publish settings to fp 10 which fixed it for now. I was hoping there might be a more elegant solution as the custom class is actually an Adobe class that would be better to not to have to rename.

  • Need infotype along with field name

    Dear Experts,
    Can anyone please tell me the Infotype & Field name from where the following fields can be fetched.
    Location
    Designation
    Department
    Division
    company
    Date of joining
    date of confirmation
    gross salary(if yes which salary type i have to select).
    Please tell me soon as i need to finish the development.
    Kind Regards
    Sajid

    Hi Sajid,
    Requested information is found in IT0001 and IT0041.
    Location  :    PA0001-WERSK or PA0001-BTRTL
    Designation  : PA0001-PLANS
    Department  : PA0001-ORGEH
    Division       :  May be PA0001-WERKS
    company    : PA0001-BUKRS
    Date of joining     : PA00041
    date of confirmation : PA0041
    gross salary(if yes which salary type i have to select).
    Get the confirmation from your Functional consultant.. He is the best person to give you the accurate information.
    Regards,
    Narendra.

  • How to find BEx queries that were not used along with no of times executed

    Hi SDN,
    I need build a query which shows the BEx reports that were not used and also the number times the query was executed.
    I built the query on "multiprovider 0TCT_MC01" in which I used the KF "0TCTQUCOUNT" then the query is not capturing this information, while executing from Portal. ( as stated in /thread/716593 [original link is broken]).
    If anybosy happen to know the solution please share.
    Also
    as stated in this link (BW 3.5 Statistics - User Hits)
    Is there any infoobject which has the exact functionality as of the "0TCTNAVCTR" of 0BWTC_C02 (we can not use 0BWTC_C02 as we are in BW 7 SP16).
    I think it is very well known issue but there is not any exact solution to it if anybody finds the solution please update this points will be assigned
    Thank you,
    Prasaad
    Edited by: Prasaadbw on Mar 18, 2010 2:01 PM

    Hi,
    Try from one of these tables RSZRANGE, RSZELTXREF,
    RSZELTTXT,RSRREPDIR,RSZSELECT,RSZCOMPDIR.
    There is a field 'Last Used'.
    You can get some info when Query was used last
    -Vikram

Maybe you are looking for