How to know changes in Standard program of SAP

hi
   suppose some one has made some manual changes in SAP standard code with the help of access key. The another person wants to know what changes has been made by him?

Hi,
To find out modifications in a standard SAP program, check out modification overview. It is a part of modification assistant. When you open a SAP standard program, you will see some extra buttons on the tool bar i.e.Insert, Replace etc., just besides them there is a button for modification overview. Click on that and it will give you the list of modifications done on the program.
If you just want to check out when modifications are done & their request nos, go to the version management and you will get the whole list of requests that the program has.
Reward points if the answer is helpful.
Regards,
Mukul

Similar Messages

  • How can we edit in standard programe in sap

    i want to add new field in one report from standard
    so can anybody tell me how i can do in abap.

    hi ,
    as discussed above. there are 2 ways.
    1 .copy program to an zprogram.
    2.write code in user exit.
    so what is user exit.
    i will give u a brief idea . chk this
    USER EXITS->
    hi
    USER EXITS->
    1. Introduction:
    User exits (Function module exits) are exits developed by SAP.
    The exit is implementerd as a call to a functionmodule.
    The code for the function module is writeen by the developer.
    You are not writing the code directly in the function module,
    but in the include that is implemented in the function module.
    The naming standard of function modules for functionmodule exits is:
    EXIT_<program name><3 digit suffix>
    The call to a functionmodule exit is implemented as:
    CALL CUSTOMER.-FUNCTION <3 digit suffix>
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    CUSTOMER EXITS->
    As of Release 4.6A SAP provides a new enhancement technique, the Business Add-Ins.
    Among others,
    this enhancement technique has the advantage of
    being based on a multi-level system landscape (SAP, country versions, IS solutions, partner, customer, and so on)
    instead of a two-level landscape (SAP, customer) as with the customer exits.
    You can create definitions and implementations of business add-ins at any level of the system landscape.
    To unify enhancements of the SAP Standard you can migrate customer exits to business add-ins.
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    rgds
    anver

  • What is module pool programming?how we can change the standard screen?

    Hi EXPERTS
    what is module pool programming?how we can change the standard screen using module pool programming ?
    please explain with example.

    Check the below link:
    http://wiki.ittoolbox.com/index.php/FAQ:What_is_module_pool_program_in_abap%3F
    http://help.sap.com/saphelp_46c/helpdata/en/35/26b1aaafab52b9e10000009b38f974/content.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/sld011.htm
    http://sap.mis.cmich.edu/sap-abap/abap09/index.htm
    http://www.geocities.com/ZSAPcHAT
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm
    http://www.sapdevelopment.co.uk/dialog/dialoghome.htm
    http://www.sap-img.com/
    http://help.sap.com/saphelp_46c/helpdata/en/08/bef2dadb5311d1ad10080009b0fb56/content.htm
    http://www.sapgenie.com/links/abap.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm
    You can also check the transaction ABAPDOCU which gives you lot of sample programs.
    Also you can see the below examples...
    Go to se38 and give demodynpro and press F4.
    YOu will get a list of demo module pool programs.
    One more T-Code is ABAPDOCU.
    YOu can find more examples there.
    See the prgrams:
    DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement
    DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB
    http://www.geocities.com/ZSAPcHAT
    http://www.allsaplinks.com/files/using_table_in_screen.pdf
    regards,
    venkat.

  • How to make changes in another program?

    Hi evrybody,
    how  to make changes from one program  to another program ?
    Changes should be reflecting in other program.
    thanx in advance n wud be surely Rewarded if answer is helpful.

    Hi Bharat,
    Thanx for the info.
    But what my requirement is , I'm scanning & reading another report into an Internal table. I want to change the Hyphen's
    '-' used in variable declarations of another program into Underscore '_' .
    My sample code is like this..
    Report Zmain.
    PARAMETERS:
      p_prog LIKE sy-repid,
      p_key LIKE stokex-str.
    Internal Table t_itab                                                *
    DATA:
      BEGIN OF t_itab OCCURS 0,
        line(256) TYPE c,
      END OF t_itab.
    *" Data declarations...................................................
    DATA:
      t_statements LIKE sstmnt OCCURS 0 WITH HEADER LINE,
      t_levels LIKE slevel     OCCURS 0 WITH HEADER LINE,
      t_tokens TYPE stokesx    OCCURS 0 WITH HEADER LINE,
      t_keywords LIKE t_itab   OCCURS 0 WITH HEADER LINE,
      w_i TYPE i,
      w_j TYPE i.
                            START-OF-SELECTION                           *
    START-OF-SELECTION.
      APPEND p_key TO t_keywords.
      READ REPORT p_prog INTO t_itab.
      SCAN ABAP-SOURCE t_itab
      STATEMENTS INTO t_statements
      LEVELS INTO t_levels
      TOKENS INTO t_tokens
      KEYWORDS FROM t_keywords
      WITH INCLUDES
      WITH ANALYSIS
      WITH COMMENTS.
                            END-OF-SELECTION                             *
    END-OF-SELECTION.
      LOOP AT t_statements.
        READ TABLE t_levels INDEX t_statements-level.
        w_i = t_statements-from.
        w_j = t_statements-to.
       IF t_statements-level > 0.
        WHILE w_i < w_j.
          READ TABLE t_tokens INDEX w_i.
          REPLACE '-' WITH '_' INTO t_tokens-str.
          w_i = w_i + 1.
        ENDWHILE.
       ENDIF.
      ENDLOOP.
    My called program is like this....
    Report Zcalled.
    DATA:
      w-var1 TYPE c,
      w-var2 TYPE c.
    DATA:
      fs_flight1 TYPE sflight,
      t_flight1 LIKE STANDARD TABLE OF sflight.
    START-OF-SELECTION.
      INCLUDE zinclude3.
      SELECT * FROM sflight
        INTO TABLE t_flight1
        WHERE carrid = 'AA'.
      SELECT * FROM sflight
       INTO TABLE t_flight1
       WHERE carrid = 'LH'.
    END-OF-SELECTION.
      LOOP AT t_flight1 INTO fs_flight1.
        WRITE: / fs_flight1-carrid,
                 fs_flight1-connid,
                 fs_flight1-fldate,
                 fs_flight1-price.
      ENDLOOP.
    Thanx very much.

  • How to batch change the standard value of routing

    Dear all,
             I meet a problem, and need you help.
            As you know, we can use T-code "CS20"  to batch change a component's quantity in different Bom by a factor.
           for example:  Component a in Fert. A,  quantity change from 6g x 0.9 = 5.4g
                               Component a in Fert. B,  quantity change from 8g x 0.9 = 7.2g
           now, my question is how to Batch change the standard value in routing. (select by work center)  CA85N can select the value, but seems can not batch change by a factor,
           thanks in advance

    It is not a big task for u prasobh...Just play in CEWB for 5-10 mins you will understand everything....
    If you face any issue let me know..
    For ur information I am also an IBM employee...
    Gobi

  • How to know whether a concurrent program (report, procedure) is ......

    Hi All,
    How to know whther a conurrent program (report or package) is "Single OU or Multiple OU".
    OU: Operating Unit
    Any advice appreciated.
    Thanks

    Are you asking how to tell whether a concurrent program can be run for a single Operating Unit in a multi-Operating Unit environment?
    If you are asking about standard Oracle concurrent programs, then I would say that they should all be capable of running for a single OU in a multi-OU environment WHERE the module relates to operating units. For example the HR/Payroll modules do not relate to operating units, but rather business groups and concurrent programs in these modules will be able to be run by business group.
    If you are asking about custom concurrent programs, then I would suggest the easiest way to tell would be to run them and see, although having an Org ID parameter would be a good indication.

  • How do I change the default program to open Pages docs to the old (4.3) version instead of the new one (5.0)?

    How do I change the default program to open Pages docs to the old (4.3) version instead of the new one (5.0)? When I do what Apple said and go to a Pages file in finder and select "get info" then select "Pages 4.3" and "change all" it just defaults to the new one even though I'd selected the old one. Do I need to completely uninstall the new version of Pages or is there another work around because the new version of Pages comes dreadfully short of the features I need that are included in the old one?

    Eric Kraft wrote:
    HOWEVER, if you modified a document in 5.0, 4.3 can't open it. You'll have to use Time Machine to replace the modified version with an earlier version that was last modified in 4.3.
    Actually there is a workaround.
    If you open the file in Pages 5, it can then be exported on Pages 0.9 format to another folder. I had to do this as the document was only in iCloud and couldn't be recoverd by Time Machine.
    Worked for me!

  • How i can change to standard user, an admin user

    Hi,
    How I can change to standard user an admin user, if the check box can not be unchecked.
    I have opened the lock to allow for future changes.
    I have more than one admin user.
    As root user, I can't do it.
    Thanks.

    Hi,
    I have, but looks the same, unable to change.
    I finally decided to create a new standard user and delete this.
    Thanks for the support.

  • How to make changes in standard transaction ME51N.

    Hi,
       Can anyone tell me how to make changes in standard transaction ME51N.
       I want to call transaction AS01 by clicking on standard button create asset. Please do the needful.
    Regards.
    Aniruddha

    Hi anirudda
              As i understood from your question is that you want to add a new field 'CREATE ASSET' on me51n screen.
    If i am correct you can use 'MEREQ001' enhancement for this purpose and you can write you code in the exits available in this enhancement.
    Please check the documentation of this enhancement for more info.
    (Use Smod for this purpose)
    I hope it is helpful.
    Reward points
    Thanks,
    Prasanna

  • How can i change so a program autostart on every user?

    Hey
    I have install a program with ARD on 90 macs, then i want the program to autostart when the user login.
    So how can i change so a program autostart on every user?
    Imac   Mac OS X (10.4.9)  

    Workgroup Manager should make this a fairly simple task.
    First, use it to create a new group containing all of the users you specify. Then, for the group, go to the Login Items preference, and set the program to start up there.
    Workgroup Manager, if you don'rt already have it installed, is part of the Server Admin Tools, a free download from Apple.

  • To change the standard program

    Hi all,
    My reqmt is to change the GUI status and interface of the transaction MB26. MB26 uses the report PP_PICK_LIST to execute. The current GUI status and interface are,
    GUI Interface : SAPLCOWB
    GUI Status : STATUS_MMIM
    I have coded in the exit EXIT_SAPLCOWB_001 as,
    TYPES: reftype TYPE REF TO data.
    DATA: lty_ref TYPE reftype.
    DATA: ls_control TYPE cowb_ctrl,
          ls_prog TYPE progname.
    FIELD-SYMBOLS: <lfs_control> TYPE ANY,
                   <lfs_prog> TYPE ANY,
                   <lfs_prog1> TYPE ANY.
    GET REFERENCE OF ls_control INTO lty_ref.
    ASSIGN lty_ref->* TO <lfs_control>.
    CHECK sy-subrc = 0.
    ASSIGN ('(SAPLCOWB)G_COWB_CTRL') TO <lfs_control>.
    CHECK sy-subrc = 0.
    ls_control = <lfs_control>.
    ls_control-pf_status = 'ZSTATUS_MMIM'.
    <lfs_control> = ls_control.
    UNASSIGN <lfs_control>.
    to change the pf status of the transaction MB26.
    Now what I need to do is to change the standard program from SAPLCOWB to ZSAPLCOWB.
    For it is there anyway to change in the enhancement like the pf status or can we change in the standard program PP_PICK_LIST.
    I used sy-repid also, but its giving me a dump. So provide a solution other than that.

    Dear Sharan,
    You can use a System Field  SY-CPROG which gives you the Program Name.
    This Varibale can be used to change the Program Name.
    Try this Hope this will help you.
    But i think this you would using to only call the PF-STATUS of this New Z Program.
    Hope this helps.
    Encourage others in answering your queries by suitably rewarding them
    Thanks
    Venugopal

  • How to do changes in Layouts setting and SAP scripts to meet requirment?

    hi SD gurus,
    Please explain me how create and work with Z output .
    where and how we do changes in Layouts setting and SAP scripts to meet the user requirments.
    pls forward func spec of Z output
    points will be rewarded
    thanx & regards

    you need ABAP skills to do this.
    basically you need:
    1) draw the layout on a piece of paper
    2) define the fields you need and find out the corresponding SAP fields
    3) check the document with the customer
    4) give this specification to the developer
    5) the developer will give you a program name and form name: place them in the message for the document.
    Roberto

  • How can I change a standard webservice

    What steps are necessary for me to change the SAP webservice from SAP ESR?
    I WANT to do this in ABAP.
    I know that there are some BADIs and Enhancements spots available . But how does this fit into the whole Wesbservice interface.
    For example :
    I want to add a new field to the input structure in the WSDL. This field will then have to be mapped to the BAPI and so on. How can  do this. have you come across anything like this? How does BADI work in this case.
    Details :
    http://esoadocu.sap.com/socoview/render.asp?packageid=DBBB6D8AA3B382F191E0000F20F64781&id=2828AC800DDD11DC2B24000F20DAC9EF
    I want to be able to modify this service.
    Add a parameter like DocumentStructure to the input which will let me create a document inside the folder.
    I know that there is a proxy class in the backend CL_DMS_DOCUMENTCRTRC1 or something like that which calls the BAPI BAPI_DOCUMENT_CREATE2. This BAPI has the additional fields I am looking to map to.
    How can I use BADI to accomplish my goals? how can I change the WSDL interface ?
    How is this service tied to a Proxy class in the backend?
    Am I getting ahead of myself? Is this do-able  or should I start from scratch ( expose my BAPI as a new WS )?
    Thanks for any pointers.

    Did you read the "Enterprise Service Enhancement Guide" at https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c0bb5687-00b2-2a10-ed8f-c9af69942e5d  ?
    - julius

  • Reversal of Changes to Standard program HAP_DOCUMENT_BODY

    Hi there,
    Yesterday we made changes to HAP_DOCUMENT_BODY web dynpro component.
    We have added one Interface method which will be called from one of the method in HAP_MAIN_DOCUMENT component controller.
    This change served our purpose. The purpose is to change page dynamically when there is a new page element. Now we don't want that through standard program change. We have decided to do by enhancement. We also did some enhancement before we have modified the standard program.
    I have tried to reset to original through SE95 transaction code and activated. But when I go and check HAP_DOCUMENT_BOY, Method still exist. 
    Actions at SE95
    Can anybody help on this ?
    Regards
    Venkat.O

    Use Leave Program after sending mail

  • How can I change the default program for the external applications editor?

    I have read the on line directions for this and it reads "select a file type in the left pane."   I do not see where this is in the left pane.  All I see in the left pane is "Browser start pages" and a "How do I " Pane.  Nothing with file types.

    Hello,
    Welcome to Adobe Forums.
    In order to change the default program for the external applications editor. Please follow the steps as mentioned below.
    Click on Edit menu then choose preferences.
    Once the preferences dialog box open.
    click on file editors.
    On the Left pane you will find all the file types which you want to edit .
    On the right hand side you will find the editors for that specific file type.
    If you want to add any other application you need to click on + symbol at the top of right pane.
    Select the path of that application which you want to apply.
    clcik on open.
    If you want to make it primay you can click make primary option available at the right hand top. For more detials please check the screenshot below.
    Regards,
    Rajeev

Maybe you are looking for

  • Can't add songs to iTunes after upgrade to OSX Lion

    Hi, I have a problem since I updated my system to OSX Lion. While updating I migrated my iTunes library to my new system. I have a custom location of my music library on HD/DATA/MUZIEK. My library in iTunes is playable but I cannot add any songs to i

  • Problem with camera calibration profiles

    I've been using Lightroom 4.2 on windows with a Canon 450D for a while and i only use raw files. Under the "Camera Calibration" tab I could chose betwen acr4.4, Adobe Standard and a few canon presets (paysage, neutral, etc.) In my opinion the ACR4.4

  • In B1 Import of G/L history does not go to Control Account? How then?

    Hi Forum, I have tried it myself and read through the forum to know, when we import transactions such as A/R and A/P G/L history, we can not import the renovations to the A/R or A/P Control Account. If we make the control account, non-control, then i

  • Selection screen regeneration issue in Module pool

    Hi experts, I have designed a module pool in which i have included a selection screen as sub screen , and for the scenario i need to give custom f4 help for the selection  field for that i have included logic ,My issue is when ever i am changing othe

  • How do I delete empty last import albums?

    My iPad has suddenly developed a string of empty "Last Import" albums in iPhoto. How do I get rid of them?