Table of changed standard objects

hello all
i am looking for a table in SAP which contains all the changed standard objects.
I have just a old copy of that table in Excel, but I cant locate it in SAP.
The fields of the table:
OBJ_TYPE     OBJ_NAME     SUB_TYPE     SUB_NAME     INT_TYPE     INT_NAME     OPERATION     MAIN_PROG     INCLUDE     MOD_NAME     MOD_LANGU     MOD_USER     MOD_DATE     MOD_TIME     ACTIVE     INACTIVE     UPGRADE     PRE_CORR     PROT_ONLY     UPG_MODE     MARK     SPAU     TRKORR     SPAU_CODE
The table is very useful for our future upgrade project to get a list of standard objects repaired by us.
Thanks for any help.
Imrich

Hi Imrich,
The Table name is SMODILOG.
Hope you got the answer.
Regards,
Sowmya

Similar Messages

  • Archiving custom(z) table or changing standard se16 screen

    Hi Abapers,
    My requirement is i need a selection screen1 to enter the z table name, when i select the table and execute on screen1, it should direct me to the selection screen2 which contains the key fields of the table mentioned as a selection screen elements. Then i enter the key field values and execute the 2nd selection screen, it should archive the records corresponding to the mentioned selection criteria. Could you please tell me the idea to achieve the same.
    The solutions i am thinking of are
    1. to enhance the se16 screen(where the same sequence of screens come) by adding a button to archive. If this is possible how do i can do this??
    2. By creating from scratch by creating a report, in this case i am struck with the dynamic selection screen creation.
    Your suggestion/help is very much in need.
    Thanks
    Shruthi

    Hi  Shruthi,
    I don't think we can have a generic transaction to archive Ztable records. May be in case if you wanna delete you can do so, but since archived records needs to be stored somewhere you may need to create several tables that holds the archived data.
    Regards,
    Karthik D

  • Changing Standard infoobject 0MAT_PLANT AND IT'S IMPACT

    Hi Friends,
    We have a scenario where we have to add infoobject 0mat_group to 0MAT_PLANT Master data target. It is advisable to change standard object, if so what would be the impact on data flow and when we go for system upgrade, now we are in BW 7.0. How can I do it if were allowed.
    Thanks in advance

    Hi,
    I dont think there will be any issue with adding object as attr to std object.
    As per SAP it is not advisable but based on requirement you have to take a call, and since it is a master data object, I dont think it will cause any big issue.
    Data flow wise, for transactional data you dont have to do anything if this new 0mat_group you are using as display attr.
    where as if you are using it as NAV attr then you need to modify the NAV setting at cube as well as in Multi (if using).
    I dont think it will cause issue in upgrade also. Just recalling after modification also if you want to upgrade this object from content, there is option of MATCH which will do take of any enhancement done. And during system upgrade also it will be taken care (just like MATCH option).
    Thank-You.
    Regards,
    VB

  • How to find out changes to standard objects

    Hi,
    Is there any way to find out which all standard objects have been modified, either via a table or FM or any other way?
    Have tried SE95 but it also gives objects changed during last upgrade.
    Any help would be appreciated.
    Thanks in advance.
    Peter

    >
    durga kottapalli wrote:
    > Hi,
    > check this link
    > http://i-sap.blogspot.com/2007/11/change-documents.html
    >
    > it would help you
    > Thanks and regards
    > durga.K
    That has absolutely nothing to do with what OP is asking. So it wouldn't help him.

  • BPM-  Change Standard Monitoring Object

    Hi,
    I have few queries in BPM:
    1). How to change a standard Montior?
         For example, if I want to change Monitoring Object Sales Document (KPSD0001) and add New Keyfigure or add a new
         selection parameter (eg. Plant) for a keyfigure. How do I do this??
    2) In which database table/Transaction can I see all the Standard Monitoring Objects available.
    3) How can I copy a standard Monitoring Object  into a Z Monitor and make the required Changes.
    Regards,
    Shalini Chauhan

    Hi Shalini
    1)As Ragu mentioned, it is not possible to change standard monitoring
      object. Code is already fixed to the selection parameter.
    2)It is stored in special way in satellite system. (Cluster table).
      So it is not easy to check it like via SE16.
      You can get list of available monitoring object and key figure from
      the list that is available in service market place.
      (You need authorization to access service market place).
      http://www.service.sap.com/bpm
      =>media library =>Customer Information
      =>Business Process & Interface Monitoring - Part 2
    3)As Ragu mentioned, I also recommend you to check customer exit
      development guide.
        http://www.service.sap.com/bpm
        =>media library =>Technical Information
        =>Technical Information
        =>Guide - Customer Exit
    Best Regards
    Keiji  Mishima

  • 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

  • Error in multiple operation with change document object for custom table

    hi all,
    I have developed a change document object for a custom table ZTEST and developed a report program for insertion, updation & deletion..everything works fine if I do only once ie. if I created only 1 entries. If I created 2 new entries , I am getting an Error "DUPREC:POS&Z3RL_TAB&Z3RL_TAB" and EXIT the transaction.
    why I am getting this error??? is it not possible to do multiple operation with the change document???
    kindly help.
    Edited by: JaiKarthik on Apr 7, 2010 6:20 AM

       LOOP AT ts_mod INTO wa_mod.
                READ TABLE <i_itab> INTO <wa_tab> INDEX wa_mod-row.
    * Select the existing entries in table Z3RL for change history
                    SELECT SINGLE * FROM z3rl
                           INTO wa_z3rl
                           WHERE vkorg   = <wa_tab>+3(4)
                           AND   zzkunnr = <wa_tab>+7(10).
    * Move the old entries
                    IF sy-subrc = 0.
                      CLEAR ls_z3rl.
                      ls_z3rl = wa_z3rl.
                    ENDIF.
    * Update the table
                 MODIFY (viewname) FROM <wa_tab>.
                   CLEAR wa_z3rl.
                    wa_z3rl-mandt      = <wa_tab>+0(3).
                    wa_z3rl-vkorg      = <wa_tab>+3(4).
                    wa_z3rl-zzkunnr    = <wa_tab>+7(10).
    * Populate change tables
                    CLEAR wa_change.
                    wa_change-teilobjid = 'Z3RL'.
                    wa_change-textart = 'TEST_2'.
                    wa_change-textspr = 'EN'.
                    wa_change-updkz = 'U'.
                    APPEND wa_change TO ts_change.
    *call the fM to log the values in CDHDR table.
                    CALL FUNCTION 'Z3RL_WRITE_DOCUMENT'
                      EXPORTING
                        objectid                 = 'Z3RL'
                        tcode                    = sy-tcode
                        utime                    = sy-uzeit
                        udate                    = sy-datum
                        username                 = sy-uname
                        planned_change_number    = ' '
                        object_change_indicator  = 'U'
                        planned_or_real_changes  = 'U'
                        no_change_pointers       = 'U'
                        upd_icdtxt_z3rl= 'U'
                        n_z3rl= wa_z3rl
                        o_z3rl        = ls_z3rl
                        upd_z3rl= 'U'
                        lv_opt                   = ' '
                      TABLES
                        icdtxt_z3rl= ts_change.
                CLEAR : wa_mod, <wa_tab>.
              ENDLOOP.
    Edited by: JaiKarthik on Apr 7, 2010 6:49 AM

  • System status change with delegated standard object

    Hi everybody,
    I delegated BUS2005 (production order) to ZBUS2005 and created a new event based upon the system status MANC (I0420). It works fine when I use my custom object ZBUS2005 in BSVZ and this event is successfully triggered. But when I change this object to the standard object BUS2005 in the same transaction BSVZ, the event is not triggered. BUS2005 has been already delegated to ZBUS2005.
    Can somebody kindly tell me how this can be fixed? I want to see the standard object, BUS2005 in the trace, instead of my custom object.
    Thanks,
    Max

    Thanks Nishant,
    Well, I have created many events for other objects and delegated the objects.
    In all these cases, I can see the standard objects in the trace, not the customized objects. But in these cases, I didnt go for status change management.
    So, why dont I see the same standard object in the trace in this case of BUS2005? Even the setting in BAVZ has been done according to BUS2005, not ZBUS2005. So, I am expecting BUS2005 in the trace. Trace comes only when I change this BUS2005 to ZBUS2005 in BSVZ.
    Please give your comments.
    Thanks,
    Max

  • How to change standard text in(me33k)?

    How to change standard text in me33k (under Reference data : Dept/Proj Manager) field. I tried it changing in CMOD - under Goto in Text enhancements in Keywords then Change . I did this change and in table ekko-verkf I can see the change, but in me33k I cannot . Appreciate if anybody can  reply back soon and help me solve this issue? points awarded for sure.

    If u are talking about the text  related to a Contract by (Trx ME33K --> Header --> Texts --> Text Overview).
    Then u need to use the FM create_text and then put the import parameters as
    Text Name     =  (contract number)
    Language       = EN
    Text ID        = K00  Release order header  text put K01 for first item text K02 for second item text so on
    Text object    = EKKO       Purchasing doc. header texts
    and then call bapi_transaction_commit
    u ll be a ble to find the changes
    thnks
    kanishak

  • Custom change document object

    I want to trigger a new change object behind the standard tcode . In exit I need to call Y_DEBI_WRITE_DOCUMENT  to update my Y_DEBI custom change object . But when I am trying to update Generation prg on SCDO it asks a Table_frame func module ..
    Is the custom change document objects are designed for custom tables ?.
    Edited by: carlos eduardo on Aug 6, 2008 7:50 AM

    Yes Carlos,
    It is desined for Custom Tables.
    For more information you can look into the following link:
    http://www.sapdevelopment.co.uk/tips/changedoc/cdhome.htm
    Regards,
    Rizwana

  • The main purpose of table T778T - Infotypes per object type

    What is the  main purpose of T778T - Infotypes per object type.
    How does it differ from other subdialogs/tables in T778V?
    Points will be awarded.
    Thanks
    Olekan Babatonde

    T778T -you can change the attributes of an infotype
    You can make the following settings:
    You can change the infotype names.
    You can assign infotypes to standard object types or to customer- specific object types.
    You can define another time constraint for an infotype.
    T778V -In this step, you make the settings that are required for creating relationships.
    You can make the following settings:
    You can create new relationships.
    You can control the response of the system (error messages, warnings, information) if the 100% mark is exceeded in the case of "weighted" relationships.
    You can show or hide the weighting percentage of a relationship and, if required, define additional data for a relationship. You can specify, for example, in the view 'Additional relationship info' whether the recursiveness
    You can define the object types that are allowed for each relationship and inverse relationship.
    You can set up external relationships.
    External relationships are relationships between external object types i.e. object types that are not stored in the PLOG database in Personnel Development and Planning. (See also the step "Maintain object types").
    You can enter a time constraint for each relationship.
    You can change the "alias" name (semantic abbreviation) of a relationship.

  • Change Document Object

    I'm supposed to catch changes to my custom table with a Change Document Object. I know that this creates a series of includes that I need to put on my program and a function module which I would use to catch the change. My question is, is there any example of a standard program that implements how I should work with this change document object?

    Thanks for the link but I've been through every tutorial in that page. I just want to see it implemented on some standard program or something so I can visually see how it works.

  • Tables used in standard t-code

    Hi Experts,
    Can anyone tell me how to find tables used in standard transactions.
    Thanks,
    Swarna.

    hi,
    u can find all tables in DD02l table.
    check this program.it will give u all tables used in a program.
    so in ur standard transaction goto system - status - program name n execute tht in this report.
    *& AS : ALV report to display the dictionary objects
    *& (tables/structures/views of all types of delivery classes)
    *& used by a program.                                                  *
    REPORT  ZALV_TABLESPROG                                    .
    *ALV type pools declarations
    TYPE-POOLS : slis.
    *Internal table and work area declarations for dd02l and dd02t
    DATA :  it_dd02l TYPE STANDARD TABLE OF dd02l,
            wa_dd02l TYPE dd02l,
            it_dd02t TYPE STANDARD TABLE OF dd02t,
            wa_dd02t TYPE dd02t.
    *DATA DECLARATIONS FOR PROGRAM NAMES
    DATA : progname LIKE sy-repid.data : prognames(60) type c.
    *Structure for output
    TYPES : BEGIN OF ty_output,
           tabname LIKE dd02l-tabname,
           tabclass(20) TYPE c,
           contflag(80) TYPE c,
           text LIKE dd02t-ddtext,
           END OF ty_output.
    *Internal table and work area declarations for output
    DATA : it_output TYPE STANDARD TABLE OF ty_output,
            wa_output TYPE ty_output.
    *Structure for table names
    TYPES : BEGIN OF ty_names,
            name LIKE dd02l-tabname,
            END OF ty_names.
    *Internal table and work area declarations for table names
    DATA : it_names TYPE STANDARD TABLE OF ty_names.
    *data declarations for ALV
    DATA: it_layout TYPE slis_layout_alv,
          wa_fieldcat TYPE slis_fieldcat_alv,
          it_fieldcat TYPE slis_t_fieldcat_alv.
    SELECTION SCREEN ************************
    PARAMETERS : program LIKE sy-repid.
    INITIALIZATION **********************
    INITIALIZATION.
    START OF SELECTION.
    START-OF-SELECTION.
    *Select to check if the program exists
    select single name from trdir into prognames where name = program.
    *If Program does not exist message is thrown
      IF sy-subrc <> 0.    MESSAGE 'PROGRAM DOES NOT EXIST' TYPE 'I'.
      EXIT.
      ENDIF.
    *Calling FM to get the tables associated with the program
    progname = program.  CALL FUNCTION 'GET_TABLES'
        EXPORTING
          progname   = progname
        TABLES
          tables_tab = it_names.
    *Check if there are tables in the internal tabel
      IF it_names IS INITIAL.
      MESSAGE 'DATA DOES NOT EXIST' TYPE 'I'.
      EXIT.
      ELSE.
    *Subroutine to get the table details
        PERFORM TABLES_IN_PROGRAM.
        ENDIF.
    *output display
      PERFORM alv_output.
    *& Form TABLES_IN_PROGRAM
    text
    FORM TABLES_IN_PROGRAM.
    *To fetch Tables and their features
      IF it_names[] IS NOT INITIAL.
      SELECT tabname tabclass contflag FROM dd02l
        INTO CORRESPONDING FIELDS OF TABLE it_dd02l
        FOR ALL ENTRIES IN it_names
        WHERE tabname EQ it_names-name.
        ENDIF.
    *To fetch the texts for the table
      IF it_dd02l[] IS NOT INITIAL.
      SELECT tabname ddtext FROM dd02t INTO CORRESPONDING FIELDS OF TABLE it_dd02t
        FOR ALL ENTRIES IN it_dd02l WHERE tabname EQ it_dd02l-tabname AND ddlanguage = 'E'.
        ENDIF.
    *If no data is selected throw message
      IF sy-subrc <> 0.
      MESSAGE 'DATA DOES NOT EXIST' TYPE 'I'.
      EXIT.
      ENDIF.
    *Appending values to the output table
      LOOP AT it_dd02l INTO wa_dd02l.    wa_output-tabname = wa_dd02l-tabname.
        wa_output-tabclass = wa_dd02l-tabclass.
        wa_output-contflag = wa_dd02l-contflag.    READ TABLE it_dd02t INTO wa_dd02t WITH KEY tabname = wa_dd02l-tabname.
        wa_output-text = wa_dd02t-ddtext.
        APPEND wa_output TO it_output.
        CLEAR wa_output.  ENDLOOP.
    *modifying the values in the output table for texts
      LOOP AT it_output INTO wa_output.    AT NEW tabname.
          READ TABLE it_dd02l INTO wa_dd02l WITH KEY tabname = wa_output-tabname.      CASE wa_dd02l-contflag.
            WHEN 'A'.
              wa_output-contflag = 'Application table (master and transaction data)'.
            WHEN 'C'.
              wa_output-contflag = 'Customizing table, maintenance only by cust., not SAP import '.
            WHEN 'L'.
              wa_output-contflag = 'Table for storing temporary data, delivered empty'.
            WHEN 'G'.
              wa_output-contflag = 'Customizing table, protected against SAP Upd., only INS all'.
            WHEN 'E'.
              wa_output-contflag = 'Control table, SAP and customer have separate key areas '.
            WHEN 'S'.
              wa_output-contflag = 'System table, maint. only by SAP, change = modification'.
            WHEN 'W'.
              wa_output-contflag = 'System table, contents transportable via separate TR objects '.
            WHEN ' '.
              wa_output-contflag = 'Delivery class not available '.      ENDCASE.      CASE wa_dd02l-tabclass.
            WHEN 'TRANSP'.
              wa_output-tabclass = 'Transparent table'.
            WHEN 'INTTAB'.
              wa_output-tabclass = 'Structure'.
            WHEN 'CLUSTER'.
              wa_output-tabclass = 'Cluster table'.
            WHEN 'POOL'.
              wa_output-tabclass = 'Pooled table'.
            WHEN 'VIEW'.
              wa_output-tabclass = 'General view structure '.
            WHEN 'APPEND'.
              wa_output-tabclass = 'Append structure'.      ENDCASE.      MODIFY it_output FROM wa_output TRANSPORTING contflag
                                                       tabclass
                                                       WHERE tabname EQ wa_output-tabname.
          CLEAR : wa_output , wa_dd02l.    ENDAT.
      ENDLOOP.ENDFORM. " TABLES_IN_PROGRAM&----
    *&      Form  ALV_OUTPUT
          text
    FORM alv_output.
    *Fieldcatalogue
      PERFORM build_fieldcat.
    *Layout
      PERFORM build_layout.
    *Display
      PERFORM alv_display.ENDFORM.                    "ALV_OUTPUT
    *&      Form  build_fieldcat
          text
    *Field catalogue
    FORM build_fieldcat.  CLEAR wa_fieldcat.
      wa_fieldcat-row_pos   = '1'.
      wa_fieldcat-col_pos   = '1'.
      wa_fieldcat-fieldname = 'TABNAME'.
      wa_fieldcat-tabname   = 'IT_OUTPUT'.
      wa_fieldcat-seltext_m = 'TABLENAME'.
      APPEND wa_fieldcat TO it_fieldcat.  CLEAR wa_fieldcat.
      wa_fieldcat-row_pos   = '1'.
      wa_fieldcat-col_pos   = '2'.
      wa_fieldcat-fieldname = 'TABCLASS'.
      wa_fieldcat-tabname   = 'IT_OUTPUT'.
      wa_fieldcat-seltext_m = 'CATEGORY'.
      APPEND wa_fieldcat TO it_fieldcat.  CLEAR wa_fieldcat.
      wa_fieldcat-row_pos   = '1'.
      wa_fieldcat-col_pos   = '3'.
      wa_fieldcat-fieldname = 'TEXT'.
      wa_fieldcat-tabname   = 'IT_OUTPUT'.
      wa_fieldcat-seltext_m = 'DESCRIPTION'.
      APPEND wa_fieldcat TO it_fieldcat.  CLEAR wa_fieldcat.
      wa_fieldcat-row_pos   = '1'.
      wa_fieldcat-col_pos   = '4'.
      wa_fieldcat-fieldname = 'CONTFLAG'.
      wa_fieldcat-tabname   = 'IT_OUTPUT'.
      wa_fieldcat-seltext_m = 'Delivery Class'.
      APPEND wa_fieldcat TO it_fieldcat.ENDFORM.
    *&      Form  build_layout
          text
    *Layout
    FORM build_layout.  it_layout-zebra = 'X'.
      it_layout-colwidth_optimize = 'X'.ENDFORM.                     "build_layout
    *&      Form  alv_display
          text
    *ALV output
    FORM alv_display.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program       = sy-repid
          i_callback_html_top_of_page  = 'HTML_TOP_OF_PAGE'
          it_fieldcat              = it_fieldcat
          is_layout                = it_layout
        TABLES
          t_outtab                 = it_output.
    ENDFORM.                    "alv_display
          FORM html_top_of_page                                     *
    FORM HTML_TOP_OF_PAGE USING top TYPE REF TO cl_dd_document.  data tstring type SDYDO_TEXT_ELEMENT.  tstring = program.  CALL METHOD top->add_text EXPORTING text = 'Tables used in the program'
                                          sap_style = 'heading' .
      CALL METHOD top->add_text EXPORTING text = tstring
                                          sap_style = 'Heading' .ENDFORM.
    r

  • Transporting Change document Object from development to quality

    Hi All,
    I have created a change document object from SCDO for my custom table. Now I want to transport this object from development server to quality server.
    As while creating Objects some enteries are made into standard table CDHDR and CDPOS which is client dependant so how to work this object on another client.
    Do I need to create seperate objects on quality server and then on production server?
    Thanks

    Hi Kiran,
    use transport connection to collect the objects to request, rsa1->transprot connection.
    use infocube as starting point to collect objects, left side choose 'object type', middle frame choose 'infocube' expand 'select objects', locate/search your infocube' and 'transfer', it will go to right side.
    in right up, there are buttons, click 'mode' and choose manual, and grouping 'only necessary objects', and execute, this will collect infocube and required objects like infoobjects, infoarea, etc.
    after that change grouping 'in dataflow before' and execute, this will collect update rules, ods, infosource, transfer rules, datasource assigned etc.
    remember to assign source system, click yellow box with X icon and mark the source system.
    after that use grouping 'in dataflow afterwards' to collect query, web template, role etc.
    take a look transport docs
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3010ba90-0201-0010-2896-e58547c6757e
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e883de94-0501-0010-7d95-de5ffa503a86
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b5/1d733b73a8f706e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/57/38e1824eb711d182bf0000e829fbfe/frameset.htm
    Re: Transport Organizer---
    transport query (bex objects)
    http://help.sap.com/saphelp_nw2004s/helpdata/en/38/5ee7377a98c17fe10000009b38f842/frameset.htm
    hope this helps.
    (Courtesy AHP from Re: transport)
    Bye
    Dinesh

  • Database "TABLE" name change is NOT reflecting on Designer Security

    Hi all members,
    version: BOXI 3.1
    I have change the table name in my Database for some particular reason.
    After changing the name from "A_Table" to "B_Table" it is updating the objects "select"  information correctly by itslef. BUT for security in (Manage Access Rights) old Table name is showing.
    Manaul correction is the only way for it? Can this be updated automatically.
    What is the way to achieve it through SDK.
    Kindly any member guide me.
    I have number of tables to change and each have number of securities applied in universe.
    Thanks in advance
    Regards,
    Izhar

    Universe access security is encapsulated separate from the Universe unv itself.
    Rather, it's a SI_KIND='Overload' InfoObject instance, accessible using the BusinessObjects Enterprise SDK.
    Sincerely,
    Ted Ueda

Maybe you are looking for

  • Search/Result page is incorrect, result page is blank

    Hello, I am designing a website for my work. Iam not very much familiar with coding and dont know what exactly is missing in the code. The search page filters the search criteria and on clicking the submit button, redirects to the result page which s

  • JMS Best Practice

    We are starting to use JMS more and more heavily for back end sync and replication of changes. What I want to know is how should I use connections and sessions? These processes are always running, but they seem to time out. Should I be opening new co

  • Error parsing feed: invalid xml

    Just got an email yesterday that my podcast was taken down due to technical problems. But it was fine for the last 3 years. I use feedburner and everything seems to be fine on their side. my feed is http://feeds.feedburner.com/bolttalk Apple please h

  • Modify the Overview tab in WebDynpro Based ESS

    Hi All, The Overview tab of the ESS generally displays 8 Area Pages.Our requirement is we should show only two Area Pages. What is the standard procedure proposed by SAP for achieving this? To achieve this we have created a custom Area Page group in

  • MM:Pricing Routine

    Hi All, Is there any routine in Standard SAP which will put value of Latest GR price Rgds, VSP