How to view changes made to Program code in PRD?

Hi all,
I'm currently auditing SAP landscape management and noted the following in the PRD environment:
1. table logging is disabled (transaction SM31)
2. profile logging is disabled
3. transaction SM20 doesn't give anything
4. don't have access to changes with SECR transaction.
My question is how can I have a population of changes made directly in program codes on PRD? (without going trhough the transport manager).
SAP R/3 release: 4.5B
Thanks for your help

Hi Rainatou,
Change logs are disabled in PRD considering the database load and performance.
The changes to program code can be better viewed in DEV by displaying the program,Utilities,Version management.
If you want to compare to code in DEV and PROD you can use split screen editor (SE39).
Regards,
Babul.

Similar Messages

  • How to see the changes made in tx code MN05

    Hi all,
    Do you know how can I see the changes made in tx code MN05?
    I need to know when was The output condition updated? Do you have a change record on this change?
    Thanks and regards

    Hi,
    There is a Transaction code SCU3 to display the change logs
    Goto the Transaction code and enter the  Table for MN05 and execute, it will display all the logs for MN05.
    If you didnt find any change logs here, then you have to activate the Change logs for this table.
    To activate the change logs , goto SE11 and give the table and clcik on the technical settings and you will find the Check box with CHANGE LOGS.
    Check whether it was activated or not, if not activate it.
    Thanks,
    santosh

  • ALV Grid: how to save changes made in an editable Grid

    Hi,
    How to save changes made bu the user in any of the editable cells in a ALV Grid?
    Regards,
    deb.

    Hi,
    If you are using the FM look at the following example code...
    data: LC_GLAY TYPE LVC_S_GLAY.
    LC_GLAY-EDT_CLL_CB = 'X'.<<<<<------
    gt_layout-zebra = 'X'.
    gt_layout-detail_popup = 'X'.
    gt_layout-colwidth_optimize = 'X'.
    call function 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = i_repid
    i_callback_user_command = 'USER_COMMAND1'
    it_fieldcat = header
    is_layout = gt_layout
    i_callback_top_of_page = 'TOP-OF-PAGE1'
    i_grid_title = text-h17
    it_sort = gt_sort[]
    i_default = 'X'
    i_save = 'U'
    is_variant = gt_variant
    it_events = gt_events
    I_GRID_SETTINGS = LC_GLAY<<<<<<------
    TABLES
    t_outtab = itab.
    clear itab.
    Form USER_COMMAND1
    FORM USER_COMMAND1 USING u_ucomm LIKE sy-ucomm
    us_selfield TYPE slis_selfield."#EC CALLED
    case u_ucomm.
    when '&DATA_SAVE'.<<<<<<<<----
    This will come after the data was EDITTED and when SAVE was clicked by user in output scren.
    Here now in the final internal table(ITAB) you can find the data changed in EDIT mode.
    After this you can do manipulation what ever you want.
    Thanks.
    If this helps you reward with points.

  • 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 view what are all programs maped with the event....

    I am new to this events concept - could you please say
    in SM64 we can give Event....
    <b>How to view what are all programs maped with the event..</b>
    Thanks in advance.

    Hi Sam,
    See these links:
    How-to trigger a process chain using ABAP?
    Re: scheduling process chain 3 specific times a day
    NOTE: If you want to trigger the process chain from R/3, there are many examples in this forum. However, since the search function is not working now, I suggest you look at OSS Note 135637. This will show you how to do it also.
    Hope this helps.
    concerning to sm64 ..
    Triggering events manually ...
    Events let you start background jobs when particular changes in the R/3 System take place. When an event occurs, the background processing system starts all jobs that were scheduled to wait for that event.
    example : JOB_OPEN to create a background job..
    When scheduling a background job, you can specify it to start "after event".
    If you do so, you'll have to create an event in SM62.
    If a job is scheduled after event event and you trigger the event with SM64, the job will start.
    Events can be raised by external systems in SAP by sending a command to a SAP application server. You can also raise event in any program using function mosule BP_EVENT_RAISE.
    Reward if helpful.
    Regards,
    Harini.S

  • 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 to view changes in PO?

    Hi Gurus,
    Please let me know, how to view changes or amendments in PO?
    Please revert asap.
    Thank You

    Hi,
    You can track the PO changes using the Environment tab in the Menu.
    Here you can check PO Header as well as Item changes.
    Hope it helps.
    Regards,

  • 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.

  • How to transport changes made in SE36 -  Dynamic Seletion for BRF

    Hi Friends,
    Please guide me how to transport or assign a request for the changes made in BRF selecion view.
    I have assigned and added BKPF-XREF1_HD field for FB03 transaction. Its working fine as per user requirement.
    I am facing probelm to assing a transport request for that. I didn't find any transport menu in se36.
    So please provide me how to assign a TR which need to import into Production client.
    If I have to assign or create a program (standard), then please provide me the program name.
    Please reply.
    Thanks & Regards
    Sankar.
    Edited by: sankar babu on Jul 29, 2010 12:26 PM

    Solved

  • 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

  • To view changes made in HU Document

    Hi,
    Please let me know how to view the changes made in the HU document?
    With Regards
    Vinu.N

    Hi Vinu,
    Please try with this
    Go to VL02N enter your delivery document which you want to check the HU changes then go to menu>Environment>Changes sytem will take you to the selection screen here you enter the required data then execute now you can able to see the details about what are all changes have been done for that delivery.
    If HU changes exists those also you can able to see in that.
    I hope it will help you,
    Regards,
    Murali.

  • How to view changes to expense reports

    I am trying to find a way of viewing changes to an Expense Report.
    In PR05 there is a history but it does not provide details about the change. I have also looked at PRTE and cluster AEND but again this does not provide the details that our business users require.
    Does anyone know if there is any other way of viewing the detail of changes to an Expense Report?
    On a related issue we have found that in PR05 the approver name is showing as the workflow user rather than the user ID of the person who approved the trip in the Portal. Can this be changed to the actual approver ?
    Thanks for any help with this
    Stephanie

    Hi,
    I think T-code PRTE provides only screen level changes (i.e who , when creates, save or updates by whome)
    For detail level changes in expense reports you need to activate Define History and Archiving of Forms
    V_T702N_R26_R27
    Please note that this is ONLY available with EHP5 BC 605 FIN_TRAVEL_3
    Following is help available
    _________________________________________________________________________Use
    In this step, you can activate the following functions:
    History
    If you activate logging of history, the system logs the changes to travel requests and expense reports. Users can display the history in the following user interfaces:
    Personal object worklists (POWL) for travelers, assistents, and approving managers on the Web Dynpro ABAP-based user interface of Travel Management
    Transactions of the travel expense report in SAP GUI; for example, in the Travel Expense Manager (transaction PR05) or in the Travel Calendar (transaction PR02)
    If you do not activate logging of history, the system automatically logs the changes made to expense reports (as in earlier releases). Users can display the change history only in the transactions of the travel expense report in SAP GUI.
    Storage of Travel and Expense Forms in the Archive
    If you have activated logging of history, you also can define that the travel request forms and expense report forms are to be automatically archived when certain events occur. You can determine which of the following events triggers the archiving of a form:
    When processing of a changed travel request or expense report is handed over from the user who makes the change to another user
    When the status of the travel request or expense report changes
    When a user saves the travel request or expense report
    You can archive the Adobe PDF forms or HTML forms for travel requests and expense reports, but not the forms for travel plans. If you use an ABAP list form, the system first converts this form to an HTML form and then archives the HTML form.
    In the following activities you define which kinds of forms the system uses:
    For travel requests, see Define Enterprise-Wide Control Parameters and attribute HTMLFORM_R_P.
    For expense reports, see Travel Expenses Control (Expert View), Other Settlement, field 24.
    Requirements
    The following prerequisites must be met:
    You have activated the updating of statistical data when trips are saved; see Define Structure of Trip Statistics.
    You have made the basic settings for ArchiveLink; see Basic Customizing for ArchiveLink.
    Note:
    If you want to archive Adobe PDF forms, the document type PDF under Edit Document Classes must contain an entry with MIME type application/pdf.
    If you want to archive HTML forms, the document type HTML under Edit Document Classes must contain an entry with MIME type text/html.
    Standard settings
    By default, history logging is not activated.
    or http://help.sap.com/erp2005_ehp_05/helpdata/en/1e/9467498ee0444f9d06070d3e267364/frameset.htm

  • How to check changes made in standerd layout set

    Hi abaper's
    How to check the changes made in the standard layout set , other than using Utilities--- -> Print preveiw ?

    Hi,
    In ABAP there is no chance to check the version managment of the script , the better option to get this is to develop a small tool  as follows:-
    Every time u release the request of a script or layout just import that layout with (layoutname_request) no in application server. and using this RSTXFCOM program u can check transported one with existing.
    Note: Everytime while checking transported one make it a local layout in RSTXFCOM we can check two layout differences.
    Thanks
    Pathan

  • How to track changes made in the ERD in oracle designer

    I want to track all changes made in my ERD in oracle 10g designer. Please suggest how to achieve it.
    use case: An ERD was approved in design phase. Few changes were made by development team and now in Implementation phase I need to track what all changes were made from say 3-Jan-12 to 3-Mar-2012
    Edited by: 909570 on Mar 5, 2012 1:14 PM
    To add here:
    Designer Version is 10.1.2.0.2.
    1. In my project versioning of ER is not being used so ER Version diff is not an option for me.
    2. In Reports, there are options for getting all entities, attributes which are created/modified in a period. But it seems it is not giving me correct results.
    Edited by: 909570 on Mar 5, 2012 1:14 PM

    Since versioning if off, there is no way to track changes.
    You can get a rough overview of possible changes by looking at the audit attributes (date created, date modified) in the properties palette, but that is already mentioned in your point 2.
    Basically, developers should comment what they added/modified.

  • How to track changes made to the standard objects by SAP during upgrade ?

    Hi All,
    Can any one of you please let me know if there is any straight forward method to find any change made to the standard objects by SAP in different versions ?
    Like for eg, during upgrade from 4.6c to ECC 6.0.
    Thanks in advance.

    > For eg , if SAP has made any change in the standard  transaction IE02,  in ECC 6.0 how will we come to know those changes?
    There are two sources for that:
    The "Solution Browser" (http://solutionbrowser.erp.sap.fmpmedia.com/) which lists the differences between source and destination release and the release notes (http://service.sap.com/releasenotes). You'd need to read here all those from 4.6 to ERP 6.0 (so 4.7, ECC 5.0 and ERP 6.0) to find out the behaviour changes.
    Markus

Maybe you are looking for

  • I can't recover from "recovery mode" what do I do?

    One day I attempted to turn on my iPad and a black screen should up and the little iTubes symbol pops up with a picture of a cable pointed towards the symbol. So I attempted to hook it up to my computer to connect to iTunes. I figured this was becaus

  • Unable to connect and the browser won't open

    Hi My brother and I switched our phone for a while but when I got my phone back, the Browser won't open anymore. I tried to connect through other browser (Opera mini and UC browser) but its still the same. What am I gonna do? My father will not gonna

  • Initializing Application Params (web.xml vs. Properties file)?

    Hi Friends, Basically a question where I do not have much experience... I think that I have the choice of initializing web application wide parameters either with: a) Properties file (text file as managed by the Properties framework) or, + Here it is

  • Using "Choose" Statment in Lookout

    To simplify, I have 3 POTS.  I want to select the value of (1) of the three pots in an expression (using a radio type switch).   When I use the expression CHOOSE.  The values do not show up.I have tried NCHOOSE and LCHOOSE also....

  • Videos Screwed up HELP!!!

    HELP I cant watch any of my videos because they are all distorted! There is a little white box of lines at the bottom. It looks kind of like blindes on a window? I already triedvTroubleshooting iTunes for Windows video playback perfomance issues and