How to find the user ID or name who deleted the reservation

HI,
Some one has set the indicator Delete in reservation.I need to find who has done that activity.
we have CDPOS and CDHDR but what are the parameters i need to pass to get the user name
Kindly guide me
regards
subbu

no way to ffind this
Have you tried with  AUT10  ??
thanks
G. Lakshmipathi

Similar Messages

  • How to find last runtime of query and who ran the query

    Hi,
    I am doing the analysis for  all the queries  , their last run time and who ran the query
    Since there are almost 6000 queries , is there any way to find out last run time and who ran the query
    in one step or through any transaction else It would huge effort taking task to check the data in BW statistics
    table for each query
    Please suggest
    Regards,
    Vivek

    Hi,
    Statistics should be switched ON for all the queries first. You can check this in RSDDSTAT.
    Statistics data is stored in BW for a specific period only. This setting can be maintained in table RSADMIN (Field : TCT_KEEP_OLAP_DM_DATA_N_DAYS). If the value for the field is 30, then 30 days old statistics will be available at any point.
    Not all the queries will be ran daily. Some are ran daily, monthly and yearly depending upon User requirement.
    1. You can check in RSDDSTAT_OLAP for the details you needed.
    2. You can install the BI Technical Content and run the respective query for the details you needed.
    Hope this helps.
    Regards,
    Sunil

  • Need the user exit/BADI name to display the error msg in PO for net price

    Hi
    I have the below requirement.
    While creating the PO(Purchase Order) with reference to PR(Purchase Requisition),if the net price value
    is 0.01 USD then the system will display a pop up a error message that 'This is a free price for PR'.
    Can anybody suggest me the User Exit or BADI name so that I can implement my code.
    Thanks
    PILOT

    ME_CHECK_ALL_ITEMS
    ME_CCP_ACTIVE_CHECK
    MD_EXT_SUP
    ME_DEFINE_CALCTYPE
    MD_STOCK_TRANSFER
    ME_PROCESS_PO_CUST
    These are the BADIs gettting triggered while dragging the PR's to PO creation.
    You can check any of these as per your requirement.
    Check if the BADI 'ME_PROCESS_PO_CUST' is useful.

  • How to Rename Project to its original name without deleting the version?

    One of the users have accidently renamed the project definition, several versions exist for the project already.  SAP will not allow to simply re-name the project.  I dont want to delete the old versions because i dont want to loose all the data associated with the previous versions?
    Any solution??

    Just give it a try, it may work for Time-dependent version also.
    I think the note say,the WBSE number in project version will get changed to old number and once you change the WBSE number in operative project then again it will change the WBSE number in project version.
    Eg. Your WBSE number is A0001 and also in version. Now you change it A0002 in operative project. But now if you change back from A0002 to A0001 system wont allow, because of existence of project version. Now, If you follow the solution suggested in Note, You will be able to change A0001 to A0002 in Project version. So you will be free to change the WBSE number of Operative project. Once you change the operative project from A0002 to A0001, the project version will also change from A0002 to A0001.

  • How to find the user who deleted the contents of DSO.

    Dear friends,
    Can u please tell me ,how to find the user who deleted the contents of the DSO.
    The user has deleted the complete contents of the DSO. We need to find the user ,date and time.
    regards,
    Vijai

    Hi,
    If the user has used the manage option to delete the contents of the DSO then the changed by field will be updated by the users name. In case a program is used for the deletion then it wont be the case.
    Regards
    Govind.

  • How to find current user name on a LAN machine....

    how to find current user name in a remote machine in LAN .
    how to find current user name on a local machine in LAN .

    how to find current user name in a remote machine in
    LAN .Many users may be logged on concurrently on the remote machine.
    how to find current user name on a local machine in
    LAN .The user who is running the code in the process would be obtainable via:
    System.getProperty("some property goes here");
    I leave it to you to look at the API documentation for System.getProperties() to see what property name you would retrieve.

  • How to find out user exits of t-code va03

    hi all
       how to find out user exits of any t-code .
    regards
    deepak

    Hi Deepak,
    <b>Try this code.</b>
    *& Report  Z_USEREXIT                                                  *
    REPORT  Z_USEREXIT
    NO STANDARD PAGE HEADING.
    *&  Enter the transaction code that you want to search through in order
    *&  to find which Standard SAP User Exits exists.
    *& Tables
    TABLES : tstc,     "SAP Transaction Codes
             tadir,    "Directory of Repository Objects
             modsapt,  "SAP Enhancements - Short Texts
             modact,   "Modifications
             trdir,    "System table TRDIR
             tfdir,    "Function Module
             enlfdir,  "Additional Attributes for Function Modules
             tstct.    "Transaction Code Texts
    *& Variables
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    *& Selection Screen Parameters
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    *& Start of main program
    START-OF-SELECTION.
    Validate Transaction Code
      SELECT SINGLE * FROM tstc
        WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
      IF sy-subrc EQ 0.
        SELECT SINGLE * FROM tadir
           WHERE pgmid    = 'R3TR'
             AND object   = 'PROG'
             AND obj_name = tstc-pgmna.
        MOVE : tadir-devclass TO v_devclass.
        IF sy-subrc NE 0.
          SELECT SINGLE * FROM trdir
             WHERE name = tstc-pgmna.
          IF trdir-subc EQ 'F'.
            SELECT SINGLE * FROM tfdir
              WHERE pname = tstc-pgmna.
            SELECT SINGLE * FROM enlfdir
              WHERE funcname = tfdir-funcname.
            SELECT SINGLE * FROM tadir
              WHERE pgmid    = 'R3TR'
                AND object   = 'FUGR'
                AND obj_name = enlfdir-area.
            MOVE : tadir-devclass TO v_devclass.
          ENDIF.
        ENDIF.
    Find SAP Modifactions
        SELECT * FROM tadir
          INTO TABLE jtab
          WHERE pgmid    = 'R3TR'
            AND object   = 'SMOD'
            AND devclass = v_devclass.
        SELECT SINGLE * FROM tstct
          WHERE sprsl EQ sy-langu
            AND tcode EQ p_tcode.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
        20(20) p_tcode,
        45(50) tstct-ttext.
        SKIP.
        IF NOT jtab[] IS INITIAL.
          WRITE:/(95) sy-uline.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
          WRITE:/1 sy-vline,
          2 'Exit Name',
          21 sy-vline ,
          22 'Description',
          95 sy-vline.
          WRITE:/(95) sy-uline.
          LOOP AT jtab.
            SELECT SINGLE * FROM modsapt
            WHERE sprsl = sy-langu AND
            name = jtab-obj_name.
            FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
            WRITE:/1 sy-vline,
            2 jtab-obj_name HOTSPOT ON,
            21 sy-vline ,
            22 modsapt-modtext,
            95 sy-vline.
          ENDLOOP.
          WRITE:/(95) sy-uline.
          DESCRIBE TABLE jtab.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No of Exits:' , sy-tfill.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(95) 'No User Exit exists'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'Transaction Code Does Not Exist'.
      ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    <b>plz reward points if helpful or if it solves ur query.</b>
    Thanks
    Chinmay

  • How to track the user who deleted the info object.

    Dear Gurus,
    In our BI system one info object has got deleted.  If I need to track the user who has deleted that how can I track it(in which DBtable).  And the complication is one user ID is being used by many people, in this case how can I track that from which machine the Info Object has been deleted(if there is any possibility to track the machines by IP address).
    Kindly let me know if there is any procedure to find it out. Your help will be rewarded with a great honour.
    Regards
    Mohan Kumar

    Hi dear,
    you have to go in SLG1 transaction, and then select
    Object: RSD
    Subobject: IOBJ_DEL
    External ID: (put here the name of your deleted IO)
    Then choose a time range...and voilà, you can find the user who deleted the IO...
    Hope it helps!
    Bye,
    Roberto
    About the IP...look at USR41 table, but I think it's a bit difficult fo find data referred to the past...
    If you haven't activated logon auditing in SM19...

  • AX Dynamics 2012 Reporting Service Extension Error - The user or gorup name is not recognized

    Hi,
    I am currently installing AX Dynamics 2012 Reporting Service Extension on one of our machine. But this always fails during the installation with this error:
    DynamicsSetupLog
    Our current domain is MWSerp
    An error occurred while adding users AxERP\qaproxy, AxERP\qaaos, MWSerp\qaproxy to the SQL Server Reporting Services DynamicsAXBrowser role in the folder dynamicsAX. The error is: The user or group name AxERP\qaproxy is not recognized.
    The database was restored from our old Ax Deployment on a different domain - AxERP if you noticed on the error, 2 domains are present: AxERP (old domain) and MWSerp (our existing).
    I find it peculiar that it is still adding old accounts from the old domain which is not existent. Tried looking for it on the registry or on the AX Dynamics User account but there are no entries on AxERP\qaaos and AxERP\qaproxy on it.
    Do you have any clue on where AX Installer is picking up those information which needs to be added on the DynamicsAXBrowser? Tried stopping /starting the AOS Service and generating WCF. Also tried looking on registry but couldnt find it. How can I bypass
    it so the Extension will be installed successfully. I also tried not deploying the reports, just the Extension only.
    Regards,

    I'd ask them here.
    http://community.dynamics.com/product/ax/f/33.aspx
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • How to find out user exit

    Hi All,
    How to find out User Exit in particular program.
    I mean if you have one profile, how to find is there any user exits in that program.
    Appreciate if any body tel answer.
    Thanks & Regards,
    Subbu

    You could try searching the main program for "userexit_"
    This would give you a list of all the available user exits within the application.
    For Customer exits, you could search SMOD with a short description ex: order in the F4 help. Another way is to search for CUSTOMER-FUNCTION in the main program. You can then navigate to the enhancement in the customer function and use the Z Program in the enhancement.
    http://www.easymarketplace.de/userexit.php - has a complete list.
    More specifically, in case you're looking for SD exits - http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm.

  • How to find a user who created message in satelite system ?

    hi all,
    Does anybody know how to find a user who created message in satelite system, but when there is no business partner created for him in Solman ? In tx crm_dno_monitro, crmd_order or dnotifwl  there isn`t any information. Is there any Tx or something where i can check it ?
    Regards,
    M.

    Hi,
    BP should ne maintained for the user in satellite system as a identification in solman system.
    how you are trying to create a message in satellite system..
    if you are using help-> create support message then, you can get the message log details on the table BCOS_PROT.
    please update us
    Thanks,
    Jansi
    Edited by: shivjansi on Jan 25, 2012 7:44 PM

  • Need the user exit/BADI name for Reverese order MIGo- ME21N(changing item)

    Hi
    I have the below requirement.
    I am changing the item details in the transaction MIGO transaction,the value of MSEG entries
    are got changed.and also it should change in the Purchase order level also(in the table EKKO).
    Can anybody tell me the User Exit /BADI name which is triggered in the Reverse order
    i.e MIGO -> ME21N.So that i can implement my code in the reverse order in the User Exit/BADI.

    hi I did not find any paramater type EKPO in the Exporting or changing of any methods in the BADI's given by you...........

  • Can you tell me  how to know who deleted the user?

    Hi
    In my system, one user ID was deleted,
    Can I know who deleted  this User ID?
    Is there any table or Function Module to know it ?
    Regards,

    Hi,
    i think There is no way to find the user who deleted the user id.For more details see the link below:
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/how-to-find-deleted-sap-jobs-1815715.
    Regards,
    Rahul

  • The user or group name is not recognized. (rsUnknownUserName)

    SQL 2008 R2 Reporting Services
    When trying to add a group from Active Directory onto the reporting services security we get the following error
    The user or group name 'groupname' is not recognized. (rsUnknownUserName)
    We are able to add users from Active Directory this only fails on group.
    Jason Spencer

    Hi Jason,
    The error “The user or group name<name> is not recognized (rsUnknowUserName)” means the Report Server cannot find the user from domain or local users or groups of Report Server. Reporting Services stored users with users’ SID. After we tyoe a username
    in the username textbox, the Reporting Services will user the method “LookupAccountName” in Window API to get the users’ SID. If the API cannot get the SID of the user, Reporting Services will throw the expression “rsUnknowUserName”.
    Here has some threads that similar to yours, and there have solved the issue, you can try the solutions, for more information, please see:
    http://social.technet.microsoft.com/Forums/en/operationsmanagerreporting/thread/64ac1fa7-4535-4369-9bf6-1323e00be543
    http://social.msdn.microsoft.com/forums/en-US/sqlreportingservices/thread/fbc2728e-425a-4666-9810-1300b7881ee6/
    Hope this helps.
    Regards,
    Charlie Liao
    Charlie Liao
    TechNet Community Support

  • How to find Authorized User

    Can anybody say how to find the user with a specific  authorization given the athorisation object and values.
    Regds
    Thiru

    Hi
        check tables tables: usr07, tobjt, dfies. 
    tables: tobj, tobct.         
    als check FM 
       CALL FUNCTION 'AUTH_FIELD_GET_INFO'
             EXPORTING
                  FIELDNAME = INTTAB-FIELD
             IMPORTING
                  DATEL     = DFIES-ROLLNAME
                  LNG       = DFIES-OUTPUTLEN
                  RC        = RC
                  TEXT      = DFIES-FIELDTEXT
                  INTTYPE   = DFIES-INTTYPE.
    Regards
    amole

Maybe you are looking for

  • Adobe Media Encoder CS5 5.0.1 There was an error installing this update. Please quit and try again later. Error Code: U44M2P29

    What the hell is Wrong with ADOBE???? Please send me a simple answer to this unnecessary problem. Read through all the threads, NOT HELPING. Please fix your software so it works!!! Adobe Media Encoder CS5 5.0.1 There was an error installing this upda

  • Java 2 Standard Edition and no Javac

    I'm new to java, so I just grabbed the latest development kit, 1.4, and installed it. It was going through the tutorial when I discovered I was missing a pretty imporant peice, the compiler. I tried reinstalling, as well as installing 1.4.1, and I st

  • How to link cash flow (VICDCFPAY/VICDCFOBJ) to condition (VICDCOND)?

    Hi, in one of RE-FX enchantments which I am writing I get some cash flow data (VICDCFPAY structure). I need to find condition (VICDCOND table record), which was used to calculate this cash flow. Do you know any easy way to connect them? I know, that

  • I need a high quality print of a web page..

    Hi all, I'm sorry if this isn't the appropriate forum for this but I'm betting you all will be the best brain trust to ask! A website has done a feature article on our company and I would LOVE to print out a copy of this page. Using the standard brow

  • My AE keeps crashing at startup!!!

    Description Faulting Application Path:    C:\Program Files\Adobe\Adobe After Effects CS5\Support Files\AfterFX.exe Problem signature Problem Event Name:    APPCRASH Application Name:    AfterFX.exe Application Version:    10.0.1.19 Application Timest