How to see the person entered in FBL3N and FBL1n

Gurus,
Can some one tell me how will I be able get the name of the user who did the entry - when I run FBL3N, FBL5N and FBL1n.
In the layout I do not have an option to select the "entered by".
Please help me.
Thanks in advance
Deepak

Hi Deepak,
If the enduser has specific user id. please go ahead with FB03.
when u enter fb03 the system will ask the document number choose the top one document list(shiftf8). another popup will come. in that popup choose dynamic selection(shiftf4) Top right side another popup will come there u just specify the user id in the field of user name and specify the document type or posting date or what information available in that popup.

Similar Messages

  • Not able to see the Person who posts reply and asked the question.

    Hi,
    I am facing issue with Posts in MSDN forum. I am not getting the name of Person who replied and asked the question which earlier used to come below the Post.
    Are all facing the same issue? I am using IE 8 and Google Chrome 33.0.1750.117 m.
    Can anyone please help.
    One good question is equivalent to ten best answers.

    I am using Google Chrome Version 33.0.1750.146 m (updated today). I am seeing names fine.
    It may be also your connection speed and some extra add-on you have.
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles
    My Google Chrome is also updated to 33.0.1750.146 m, and I am using high speed internet connection in my organization, but still I am not able to
    see poster details. Even there is no data coming below 
    "Asked by:" section at Top left corner of MSDN Forum.
    One good question is equivalent to ten best answers.

  • How to see the Currently loged on user and Locks using Enterpirse manager

    Hello Everybody,
    I want to see using enterpirse manager
    *1.* the currently connected users
    *2.* The locks held by users.
    How to do this in Enterprise manager?
    Regards

    Hello Asif,
    Your and Deepak suggessions do no t show the connected users. Instead If we use the following query,it will give us the names of all users that are currently connected.
    SELECT SUBSTR(s.username,1,15) USERNAME,
    SUBSTR(s.status,1,8) STATUS,
    SUBSTR(s.server,1,10) SERVER,
    SUBSTR(s.type,1,10) TYPE,
    SUBSTR(s.event,1,20) "WAIT EVENT",
    DECODE(s.command,
    1,'Create Table',
    2,'Insert',
    3,'Select',
    6,'Update',
    7,'Delete',
    8,'Drop',
    9,'Create Index',
    10,'Drop Index',
    12,'Drop Table',
    17,'Grant',
    26,'Lock Table',
    42,'Alter Session',
    43,'Alter User',
    44,'Commit',
    45,'Rollback',
    s.command) COMMAND
    FROM v_$session s, v_$session_wait w
    WHERE (s.sid = w.sid)
    AND s.username != 'SYS'
    ORDER BY s.username;
    Best Regards

  • How do I set up my I chat as a video phone call so I can see the person I am talking to

    This is my first time trying to use my microphone and video cam so I can chat on line and see the person I am chatting with.  Could you please explain to me how to set it up and use it.
    Thank you

    Welcome to Apple Support Communities.
    Here is the Apple guide to getting started with iChat: http://support.apple.com/kb/ht2515
    and more detailed information here: http://www.apple.com/support/ichat/
    Note that both participants need a Mac, iChat, and a reasonably fast reliable internet connection for the best results.
    If the person you're trying to contact has an iOS device (iPhone, iPod Touch with camera, iPad 2) and it is available in your country, use FaceTime. FaceTime for OS X is available from the Mac App Store at a modest cost. Both caller and receiver must have WiFi connections and Apple ID's (free registration) for FaceTime.
    It is also possible to use Skype for free video chat with a wider variety of computing hardware and operating system support (Windows, Mac, and Linux), but of course, you must all download and install Skype.

  • How to see the Open PO Qty in Mass

    Dear Experts,
                        How to see the Open Qty in PO in mass, is there any report available..Please help 
    Regards
    karthik

    use the Txn ME2N
    Enter the follwoing details . Scope of list - ALV, Selection parameters- WE101, Plant- XXXX, Enter the document dates From and TO and execute ( F8), You will get all the details, If you want to adjust the format use cntrl+F8 to get the POP_up for selection of fields and use as you wish.

  • How to see the result

    hi every body...
    i want to get the result of any table..
    for ex: select * from dept;
    the o/p should be like(10~Accounts~new york)
    for this i wrote this code.... it run sucessfully;
    my prob is how to see the Result..
    declare
    tn varchar2(35);
    sqlstmt varchar2(2000);
    rc sys_refcursor;
    begin
    tn := '&tn';
    sqlstmt := 'select * from '||tn;
    open rc for sqlstmt;
    end;
    post u r comments,Hints and suggestion...

    post u r comments,Hints and suggestion...
    SQL> var rc refcursor
    SQL> begin
      2     open :rc for  'select * from &tn';
      3  end;
      4  /
    Enter value for tn: emp
    old   2:    open :rc for  'select * from &tn';
    new   2:    open :rc for  'select * from emp';
    PL/SQL procedure successfully completed.
    SQL> print rc
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SPENCER    CLERK           7902 17-DEC-80        800                    20
          7499 VERREYNNE  SALESMAN        7698 20-FEB-81       1600        300         30
          7521 VAN WIJK   SALESMAN        7698 22-FEB-81       1250        500         30
          7566 MAINGUY    MANAGER         7839 02-APR-81       2975                    20
          7654 KISHORE    SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BARRY      MANAGER         7839 01-MAY-81       2850                    30
          7782 BOEHMER    MANAGER         7839 09-JUN-81       2695                    10
          7788 PADFIELD   ANALYST         7566 09-DEC-82       3000                    20
          7839 SCHNEIDER  PRESIDENT            17-NOV-81       5500                    10
          7844 GASPAROTTO SALESMAN        7698 08-SEP-81       1500          0         30
          7876 CAVE       CLERK           7788 12-JAN-83       1100                    20
          7900 CLARKE     CLERK           7698 03-DEC-81        950                    30
          7902 JAFFAR     ANALYST         7566 03-DEC-81       3000                    20
          7934 ROBERTSON  CLERK           7782 23-JAN-82       1430                    10
           109 JOMAR                                                                   30
          8800 VISWARAYAR INTERN          7934 03-OCT-82          0                    10
    16 rows selected.
    SQL> Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • How to see the MM invoice changes in sap?

    Hi
    How to see the MM invoice changes in sap ?

    Dear Prashant,
    When ever we perform LIV and is blocked for payment (due to price variance or other variance) is stored on table RBKP_BLOCKED
    Now when we release it through t. Code MRBR that time its get deleted from RBKP_BLOCKED
    So you can always track it :
    Go to ->SE16 ->Enter table name CDHDR -.>Table contents (F7)
    In the selection screen enter
    OBJECTCLAS as INCOMINGINVOICE
    OBJECTID as =Invoice no+year (e.g 51056066022011 where is 5105606602 invoice no 2011 is year)
    TCODE as MRBR
    ->Execute
    You will find the details when it was released  Date ,Time, User ID etc
    Edited by: redriver on Dec 26, 2011 2:23 PM

  • How to keep the data entered on a page apex

    how to keep the data entered on a page apex
    so, I've got a registration page then wish go to another page P2 and I return to this P1 without losing data

    Hi,
    As long as the registration page is within the same session, the values will remain in the session until they are specifically cleared out. This can be done by a process on a page - so check if you have a "reset page" process on P1 and, if you do, delete it. This can also be done on a branch - so check the branch that takes you to P2 and see if there is anything entered in the Clear Cache setting and, if it shows *1*, remove that. There are other ways as well, but these are most typical.
    Andy

  • Name of the person entering Invoice

    Hi,
    From which table can i get the name of the person entering Invoice.
    BKPF-USNAM gives the user ID how to get the user name.
    Regards,
    Bhanu

    Hi,
    Use the below BAPI to which you need to pass the user-id as the input. Which will return the name in the output parameter Address in the fields First Name and Last Name.
    CALL FUNCTION 'BAPI_USER_GET_DETAIL'
    EXPORTING
    username             = wa_imrg-readr
    CACHE_RESULTS        = 'X'
    IMPORTING
      LOGONDATA            =
      DEFAULTS             =
    ADDRESS              = wa_address
      COMPANY              =
      SNC                  =
      REF_USER             =
      ALIAS                =
      UCLASS               =
      LASTMODIFIED         =
      ISLOCKED             =
    tables
      PARAMETER            =
      PROFILES             =
      ACTIVITYGROUPS       =
    return               = it_return
    Hope this helps,
    Murthy.

  • How to see the TR'S in query

    Dear All, I would like to see  what are the TR's generated against the query and TR request details,Please advise how to see the details

    Hi,
    you can see TRs generated in tcode SE10 by entering user ID as per screen.

  • How to see the balance under different balance if special ledgers exist???

    Some of the company using special ledgers. I need to teach user how to see the balance under different balance.
    I will focus on
    1. display voucher
    2. check GL balance
    Anyone have idea (detailed flow)/template (preferred) on these issues?
    Thanks a lot for your help in advance

    hi,
    /n----
    > acccounting -
    >financial accounting -
    >GL acccounts -
    > information system -
    > gl reports
    here in this path u can get all the gl list and gl balances list ....
    u can check what ever reports u want.....
    if useful assign points...
    regards,
    santosh kumar

  • How to see the print preview of outgoing excise invoice.

    Hi Experts,
    How to see the print preview of outgoing excise invoice.
    Thanks,
    srinivas.

    Dear Sreeni,
    Just go to J1IIN, click on "Exc.inv for delivery -- Display" where you input delivery reference and execute. If you have generated excise invoice, you can see the corresponding excise invoice for that delivery / billing document.
    Preethi.

  • How to see the object while moving on the artboard?

    hello everyone;
    maybe a silly question; how to see the object while moving on the artboard? i dont wanna see only the objects bounding box(outline of the object). i wanna see the object it self. thank you.

    What have they gone and messed up now?
    When I drag an object (with bounding boxes turned on), the object moves and the bounding box stays still until I stop dragging, upon which it snaps to the object’s new position.
    If I don’t have bounding boxes turned on (as I usually work), the object moves when dragged.
    If what Bedri says is right, they’ve gone and mended something that wasn’t busted.

  • TS2756 hy, does anyone know why my computer doesn't recognise my iphone? I can't seem to make it see the personal hot spot :( any suggestions? thanks

    hy, does anyone know why my computer doesn't recognise my iphone? I can't seem to make it see the personal hot spot any suggestions? thanks

    Did you update to iOS 7? If yes you need to update iTunes on your computer to iTunes 11.1
    If you are using iTunes 11.0 and iOS 6.x then show the left sidebar in iTunes.
    When in iTunes on your computer use the View menu to View Sidebar. The device should show up there when connected.

  • How to see the ouput of a purchase order on screen??

    Hi all , how to see the output of a purchase order (ME23) on screen?
    Points will be awarded!!!!
    Thanks & Regards
    John

    Hi,
    If any output tye is associated to PO and it is been triggered then User ME9F tocde to view the output.
    To check thise first Use: ME23 and click on Messages, if any outputs are triggered and they are in Yellow status then Use ME9f. Once you execute you will get Outputs in the screen, then choose the output and click on Display Message button. Your output will be displayed on the screen.
    Regards,
    Ashok

Maybe you are looking for

  • Lost all my music in itunes after computer crash

    Lost all my music in itunes when computer crashed.  itune store doesn't show all my purchases.  How do I get all my music back?

  • Optical audio in Lion switches off after 30 seconds

    I have a new iMac 27" Computer purchased November 2010 with Snow Leopard on. I have upgraded to Lion OS the day it came out. When I started using it, I noticed that the Optical steam (red beam) would switch off after roughly 30 seconds. I researched

  • Particular section is not being added in Object.

    Hi All, I have tried to add a particular section in a particular object in stagging environment but the same section I have added in production,it is being able to add in that. Why does it happen so in production and why not in stagging.I have given

  • Please stop JOptionPane from bugging me

    I am having problems with writing a GUI. I think I have distilled the problem down to one related to looping a JOptionPane. Does anyone know anything that will help me eliminate this problem (or bug)? <code> * This code results in a Win98 Ddhelp erro

  • Shuts Down After One Minute?

    I can turn on the Mac and load it all the way to the desktop, but after a minute or so, a pop-up of "Logout, Cancel, Restart, Shutdown" will occur. Even though nothing is pressing against the keyboard, it will turn itself off after a minute. I know t