Regarding display of material changes- really urgent

hi,
i had assigned a work in which i have to collect information that in  the period from 1.12.2007 to 31.12.2007 the number of materials had been changed and what changes had been made to them.
plzz tell me about it as help will be definately rewarded.

Hi,
PAss cdhdr-objectclas = MATERIAL
cdhdr-udate = sel. screen value
get all changenr from cdhdr
pass all to the cdpos-changenr & objectclas = MATERIAL
from cdpos-chngind = 'U' means material changed
and if chngind eq 'I' means material entry created.
else, MSTA is already there to just know which mat. created pass ersda value
                                                            and for changed pass laeda value.
Reward points for the helpful answer....
Regards,
Brijesh Patel

Similar Messages

  • Really urgent: Collective display of material changes made f

    hi,
    i had been assigned a work in which  i have to display that from this time period 1.12.2007 to 31.12.2007, these are the materials in which these are the changes made by these persons.
    can anybody provide me tcode for this ,as help will be definately rewarded.
    plzzz its really urgent.

    HI,
    BUT IWANT TO HAVE COLLECTIVE DISPLY FOR IT.
    PLZZ DAT TCODE . I KNOW DAT DIS TCODE MM04 BU TIT SHOWS FOR SINGLE MATERIAL BUT I WANT IT FOR COLLECTIVE MATERIAL.

  • Regarding work flow in MM - really urgent

    Hi friends,
    Iam new to workflow.
    Iam trying to create a  simple wf that should be triggered when ever a new material is created  and send a mail to the initiator.
    I did the following steps.
    1)created an activity .In that task i have attached a business obj BUS1001
    Method-Create.
    Event-created
    2)Mail.
    I got following  result
    1.when ever we r creating material from test wf mail is triggered n i received mail.
    but when i created material from MM01 direct mail didn,t trigger
    in this  case we got error msg in WF log that agent not assigned.butwe did  agent assignment properly
    I followed all rules from below link.
    http://****************/Tutorials/Workflow/MaterialCreate/Page1.htm
    right ans whould be rewarded.
    Thanks
    jyo deva

    Hi Jeo ,
    One thing u have missed in the workflow and that is not given in the link too . This is called Event Linkage between Workflow and MM01 .
    Following are the steps to do this :
    Go to transaction SWEC ,
    Click New Entry.
    Give Change doc object as MATERIAL.
    Object type as your BUS1001.
    Event as  created.
    Save.
    This will link the transaction with workflow

  • Regarding MSC2N and MSC3N: Batch Display and Batch Change

    Hello Guys,
    I have faced a problem regarding batch display and batch change.
    Scenario:
    I have created a Process Order in COR1.
    Using MIGO i made the goods receipt of that Process Order.
    Now when i want to display for that particular material document number Details data..
    In Batch --> Classification (you can check it also from MSC3N using the batch number of the particular material) there is a field named Availability Date its coming 0000/00/00.
    But when i checked it from MSC2N in cange mode its coming with desired data.
    Any valuable idea..
    Regards,
    Sayak

    Hi,
    This looks like a SAP Functional Query. Please post this in MM forum for quicker replies.
    Forums->SAP Solutions->ERP - Logistics Materials Management (MM)

  • Really urgent: reagrding alv format for like (internal tables)

    Hi,
    I making a report in which i am using the concept of 2 internal tables and i am usnig the concept of likes in a internal table .
    for instance,
    DATA : BEGIN OF ITAB OCCURS 0,
              ITEMID LIKE CHVW-MATNR,      
              WERKS LIKE CHVW-WERKS,   
              CHARG LIKE CHVW-CHARG,       
              SHKZG LIKE CHVW-SHKZG,       
              MENGE LIKE CHVW-MENGE,     
              MEINS LIKE CHVW-MEINS, 
    END OF ITAB.
    DATA: BEGIN OF ITAB1 OCCURS 0,
               MATNR TYPE BSEG-MATNR,  
               LIFNR TYPE BSEG-LIFNR,       
               AUGDT TYPE BSEG-AUGDT,     
               WRBTR TYPE BSEG-WRBTR,      
             END OF IT_BSEG.
    and i am able to create ALV for 1 itab only as i had declared all fields in a 1 itab ,but now i have to declare 1 more itab and i  dont know how to perform ALV with 2 itabs..
    Plzz help me out as it is really urgent to me.
    Edited by: ric .s on Apr 22, 2008 11:45 AM
    Edited by: ric .s on Apr 23, 2008 7:21 AM
    Edited by: ric .s on Apr 23, 2008 7:55 AM

    Hi Ric,
    Yes, You can .
    Check the sample ALV  program which helps u in displaying output using ALV . Comments have been made everywhere .
    report  zvenkat_alv_2_grid_description.
    types:
          begin of t_mard,
           werks type mard-werks,
           lgort type mard-lgort,
           matnr type mard-matnr,
           insme type mard-insme,
           einme type mard-einme,
           speme type mard-speme,
          end of t_mard.
    data:
          w_mard type t_mard.
    data:
          i_mard type standard table of t_mard.
    " ALV Declarations
    "     ALV internal tables and Structures
    "     To refer ALV tables(slis tables) and structures.SLIS must be
    "     declared under TYPE-POOLS(see below).SLIS is a Type group which is
    "     defined in Dictionary.Internal tables and structures and constants
    "     are defined under type group.(Double click on SLIS).
    * Types Pools
    type-pools:
       slis.
    * Types
    types:
       t_fieldcat         type slis_fieldcat_alv,
       t_events           type slis_alv_event,
       t_layout           type slis_layout_alv.
    * Workareas
    data:
       w_fieldcat         type t_fieldcat,
       w_events           type t_events,
       w_layout           type t_layout.
    * Internal Tables
    data:
       i_fieldcat         type standard table of t_fieldcat,
       i_fieldcat1        type standard table of t_fieldcat,
       i_events           type standard table of t_events.
    *&      START-OF-SELECTION
    start-of-selection.
      perform get_data_from_database .
      "      END-OF-SELECTION
      "     Steps to create simple ALV program
      "      1. Pass an internal table with the set of output information
      "      2. Pass a field catalog as an internal table
      "      3. Pass a structure with general list layout details
    end-of-selection.
      perform build_fieldcatalog.
      perform build_events.
      perform build_layout.
      perform display_data.
      "      Form  build_fieldcatalog
      "     Fieldcatalog Internal table
      "    1. It contains descriptions of the list output fields
      "       (usually a subset of the internal output table fields).
      "    2. A field catalog is required for every ALV list output.
    form build_fieldcatalog .
      clear :
        w_fieldcat,
       i_fieldcat[].
      perform build_fcat using:
            "Field   Int.Table Column headings
            'WERKS' 'I_MARD' 'WERKS',
            'LGORT' 'I_MARD' 'LGORT',
            'MATNR' 'I_MARD' 'MATNR',
            'INSME' 'I_MARD' 'INSME',
            'EINME' 'I_MARD' 'EINME',
            'SPEME' 'I_MARD' 'SPEME'.
    endform.                    " build_fieldcatalog
    *&      Form  display_data
    form display_data .
      data :program like sy-repid value sy-repid.
      call function 'REUSE_ALV_LIST_DISPLAY'
        exporting
          i_callback_program = program
          is_layout          = w_layout
          it_fieldcat        = i_fieldcat
          it_events          = i_events
        tables
          t_outtab           = i_mard.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " display_data
    *&      Form  get_data_from_database
    *       text
    form get_data_from_database .
      clear :i_mard,
             i_mard[].
      select werks lgort matnr insme einme speme
      from mard
      into corresponding fields of table i_mard
        up to 100 rows.
    endform.                    " get_data_from_database
    *&      Form  top_of_page
    *       text
    form top_of_page.
      data :
      i_header type slis_t_listheader,
      w_header like line of i_header.
      data:l_date1 type datum,
           l_date2 type datum.
      w_header-typ = 'S'.
      w_header-info = sy-title.
      append w_header to i_header.
      clear w_header.
      w_header-typ = 'H'.
      w_header-info = sy-repid.
      append w_header to i_header.
      clear w_header.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = i_header
          i_logo             = 'ENJOYSAP_LOGO'.
    endform.                    "top_of_page
    *&      Form  BUILD_FCAT
    form build_fcat  using  l_field l_tab l_text.
      w_fieldcat-fieldname = l_field.
      w_fieldcat-tabname   = l_tab.
      w_fieldcat-seltext_m = l_text.
      append w_fieldcat to i_fieldcat.
      clear w_fieldcat.
    endform.                    " BUILD_FCAT
    "      Form  build_events
    "     Events
    "    1. When we use ALV,certain events TOP-OF-PAGE ,END-OF-PAGE,
    "       AT LINE-SELECTION,AT USER-COMMANDs are not triggered.
    "    2. To perform those Functions ,we have to build Events table and
    "       pass this table through REUSE_ALV_LIST_DISPALY Function.
    form build_events .
      clear :
             w_events,i_events[].
      w_events-name = 'TOP_OF_PAGE'.
      w_events-form = 'TOP_OF_PAGE'.
      append w_events to i_events.
      clear w_events.
    endform.                    " build_events
    "&      Form  build_layout
    "     Layouts
    "  Use :We change the display of our list using layouts.
    "  ===
    "  Features
    "  ========
    "    The layouts that you can use vary according to the type of list:
    "   1-->In all lists, you can do the following:
    "       (a).Choose one of the std layouts supplied with the std system.
    "       (b).Change the current layout of the list .
    "   2-->In lists that use only the standard layouts in the std system
    "       you cannot save your changes to the current layout.When you
    "       choose the layouts, only the standard layouts will be proposed.
    "   3-->In some lists, you can also save the layouts that you have
    "       defined as our own layouts.
    "      User-defined layouts are generally saved for all users. They can
    "       then be used by all users. All users will be able to choose from
    "       the user-defined layouts as well as the standard layouts.
    "   4-->In some lists, you can also save user-specific layouts that you
    "       have defined . When you choose the current layout,only these
    "       layouts are available to you.
    "   5-->You can delete or transport layouts, or define them as initial
    "       layouts
    "   6-->STRUCTURE :SLIS_LAYOUT_ALV.
    form build_layout .
      clear:
            w_layout.
      w_layout-colwidth_optimize = 'X'.
    endform.                    " build_layout
    Regards,
    Venkat.O

  • Workflow for material changed

    Hi Gurus,
    I would like to implement a workflow with a mail which wil be triggered whenever a material is changed.
    I have created a workflow using SWDD..How can I link this workflow to Material change transaction(MM02)..
    I am new to this workflow...Pls help me...
    Thanks in advance...
    Regards,
    Saj

    Hi,
    you need to create an event for your change document  BOR 1001006 thru SWEC.
    create a similar event in your BOR Event and use this event in the Basic Data of your WF.
    So whenever a material is changed your event would trigger your WF.
    Hope I am clear,
    any issues reply back to this thread.
    Aditya.
    P.S
    just a suggestion, could you put in your name instead F1 (as I like referring to names, though I just address all by initials) offcourse no hard n fast rule,
    but since its a <b>wonderful Forum</b>, lets know each other .
    Well my friend I still have no issues with your Display Name, it was just a thought.

  • Material changes checking

    Hi all,
             How to check material changes from  last year to current year in material master level

    Hi,
    You can check it in the Change or display mode of Material master MM02 / MM03 it self or by transaction MM04.
    In MM02 / MM03 transaction, click on the 'Environment' tab from menu bar then select Display changes. A pop up will be displayed with the list of all changes for that material in the system. Select the required line and click on the details (F2). Complete changes will be displayed.
    Regards,
    Hiren Ramani

  • Displaying image in ABAP report "Urgent"

    Hi Everyone
    My requirement is as follows...
    On Material Master there is an image stored in document management system.
    In a report we need to display the material details plus the image from DMS system.
    I heard that there is some function module in this area.
    Can anyone pls help how can i achieve this....
    Kindly help as soon as possible.
    Thanks
    Regards
    Naveen

    Hi Naveen,
    Hope the report is ALV..
    Re: How do I insert a logo in ALV using Function Modules?
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm
    Steps for uploading Logo :-:
    1. Goto the transaction OAER
    2. Enter the class name as 'PICTURES'
    3. Enter the class type as 'OT'
    4. Enter the object key as the name of the logo you wish to give
    5. Execute
    6. Then in the new screen select Standard doc. types in bottom window
    Click on the Screen icon
    Now, it will ask for the file path where you have to upload the logo
    7. Now you can use this logo in REUSE_ALV_COMMENTARY_WRITE
    Here you go !!
    *& Form TOP_OF_PAGE
    text
    FORM F_TOP_OF_PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = IT_LISTHEADER
    i_logo = Logo name
    I_END_OF_LIST_GRID =.
    ENDFORM. "TOP_OF_PAGE
    <b>Reward points if this helps.
    Manish</b>

  • Condition Surpression in HFR-----Really Really Urgent

    Hi All,
    we are having a requirement from our client that
    If he selelcts the current year then the Scenario shud be Actual, if he selects the next year then the scenario shud be Plan can any one help me in solving this
    Actual Requirement from the client
    FYadmin = Current fiscal year
    MONTHadmin = Current month
    LASTQRUPLANadmin = Last scenario (QRU1, QUR2, QRU3, PLAN…)
    Current position on the report :
    FYreport = Fiscal year selected in the report
    MONTHreport = March (default last month of the fiscal year at SOITEC)
    Actual_QRU calculation rule:
    IF ( FYreport < FYadmin ) OR ( (FYreport = FYadmin) AND (MONTHreport < MONTHadmin) )
    THEN Scenario = ACTUAL
    ELSE Scenario = LASTQRUPLANadmin
    This a really urgent isuee
    Regards
    Vijay
    Edited by: Kumar on Mar 8, 2011 5:16 PM

    Im using Condition Suppressing for columns
    I have taken Year, Period and Scenario in Column
    In Col A: I used User POV for Year, Actual as Scenario and User POV for Period
    Condition Suppression1: Not Suppress if Member Name Year Equal to ActualYear(Sub Var for CurrYear)
    Condition Suppression2: Not Suppress if Member Name Year Contains Previous Year1(Sub Var for Previous Year)
    Condition Suppression3: Not Suppress if Member Name Period Equal to ActualPeriod (Sub Var for CurrPreiod)
    Condition Suppression4: Not Suppress if Member Name Period Contains to PreviousPerid (Sub Var for Previous Period)
    In ColB: I used Same as Col A for Year and period and Scenario will be Prompt for user.
    Condition Suppression1: Suppress if Member Name Year NotEqual to ActualYear(Sub Var for CurrYear)
    Condition Suppression2: Suppress if Member Name Year NotContains Previous Year1(Sub Var for Previous Year)
    Condition Suppression3: Suppress if Member Name Period NotEqual to ActualPeriod (Sub Var for CurrPreiod)
    Condition Suppression4: Suppress if Member Name Period NotContains to PreviousPerid (Sub Var for Previous Period)
    Will this work???
    Regards
    Vijay
    Edited by: Kumar on Mar 10, 2011 12:35 PM

  • Regarding displaying unicode

    Hello javaGurus!
    <Please Help me regarding displaying unicode>
    I am new to javaInternationalization,
    Till now i studies. Java Internationalization tutorial at http://java.sun.com/docs/books/tutorial/i18n/index.html and understand basic Structure.
    I have some problem displaying the unicode characters, such at, Arabic, and japneese.
    - How to display unicodes in applet?
    - How can we set the the Japneese, English, Arabic fonts in one application, which run on windows environment.
    - From where i can get the font s?
    Regards,
    waseem

    If you specify a String object with the unicode sequences (of the form "\u####\u####"), you can simply display it with the method setText(String) of the class javax.text.JTextComponent (or javax.JTextArea), for example. If you specify a String object with your own encoding in your source code, you can compile it with the command:
    javac -encoding <encodingName> fileName
    On Windows OS, the font ArialUnicodeMS will display almost all characters you are to show.
    You can find downloadable fonts in almost any search engine.
    - The following can be additional material for studying.
    http://java.sun.com/j2se/1.4/docs/guide/intl/fontprop.html
    http://developer.java.sun.com/developer/qow/archive/65/index.html

  • HT204088 hello there, this is really urgent i would like to ask if there is a way to deactivate/lock my Mini Ipad because it was stolen, i hope you can provide me a way to do so, thank you for the support and i really hop you can help me, i bought this mi

    hello there, this is really urgent i would like to ask if there is a way to deactivate/lock my Mini Ipad because it was stolen, i hope you can provide me a way to do so, thank you for the support and i really hop you can help me, i bought this mini ipad not too long ago.

    Unless you enabled Find My iPad on it before it was stolen then there isn't any way to locate it. If you did enable it then you could try locating and/or remotely wiping it either via http://icloud.com on a computer or Find My iPhone on another device - but that will only work if it's connected to a network and the device hasn't already been wiped and/or Find My iPad disabled on it.
    If you haven't already done so then you should report it to the police. You should also change your iTunes account password, your email account passwords, and any passwords that you'd stored on websites/emails/notes etc., and if it was a cellular model you should also contact your carrier.

  • From which table can I display PGI (material and quantity)for a spesific cu

    Dear gurus,
    From which table can I display PGI (material and quantity)for a spesific customer order?
    Thanks in advance

    HI
    PGI and material quantity can be available in MSEG table
    for this enter the sales order number in KDAUF or* MAT_KDAUF* fields in MSEG table
    Also try with LIPS delivery item table and LIKP table
    regards
    SAP SD
    Edited by: sapkpit_sd on Jul 22, 2010 8:14 AM

  • Report Help------------PLZ really Urgent

    Hi
    we are having 2 DIM in row Job Category and Cost Center,there are around 10 Job Categories and 5 Cost Centers and thesetobe selected Dynamically
    now the requirement is
    - After 10 Job Categories in 10 rows in 11th row Cost Center Member shoud display, generally Cost Center will come in second ROW how to bring it in first ROW just below to Job Category
    forEx:
    JC1
    JC2
    JC3
    .JC10----------> JC DIM
    CC1------------->Cost Center DIM
    these CC and JC are selected Dynamically (@Desc or @Child.....) how can we display this???
    this is really urgent please help me.....
    Edited by: Kumar on Feb 10, 2011 9:03 AM

    Hi
    Wont take the Dimension as DIM to BOTTOM just select the members manually in to rows according to the user requirement this will work in WEB ANALYSIS.
    selecting members manually differs from the tools

  • Display SC Material number in buyer inbox.

    Hi all,
    How can i display the material number in the inbox screen of the buyer user? Is it by the BBP_CUF_BADI? what do i need to check to make it happen?
    Best regards,
    Gerardo.
    PS: I will reward points

    Hi srikanth,
    As per my idea wat coming in the invoice is different the customer will not see the invoice he can able to only invoice print that is output, is it correct?
    if it is correct plz co ordinate with ABAP ers abt this Maintain the Script like that System should pick up the Material Code from VD52 if Customer material Info record is maintained otherwise it is normal Process.
    If u r convienced with this u can try like that..
    Otherwise u can try with Mohan's solution...
    Rewards, if it is useful..
    Regards
    Durga Prasad

  • Blocking display of material prices

    Can we block display of material prices for some of the users? Either thru standard authorization object or config...and it should be available in all standard transactions like ME23N, MM03 etc.
    The exact business requirement is - Not to display all the purchasing price data to a set of users...
    Any thoughts???

    Hello Vilas,
    If you want to suppress field 'Net price' immediately after entering        
    transaction for specific users, you can define function authorizations      
    for buyers (customizing transaction OMET) and set for specific function     
    authorizations key value in field 'Field sel.' to value which has set in    
    transaction OMF4 "Price and price unit" to Hidden (all flags are            
    unchecked).                                                                 
    Then for user in User Profile create parameter EFB with value equal to      
    function authorizations key defined in OMET.                                                                               
    Regards,
    Mauro

Maybe you are looking for

  • No mobileme gallaries showing up in Iweb?

    None of my mobileme albums or movies are showing up in IWeb. The pages that had photos or movies from my gallery are there but if you click on them in IWeb they go away and it says I need to upload items to my gallery. anyone have any ideas about thi

  • Does Verizon offer any incentives if you bring them a new customer?

    I think I have convinced my sister to switch from AT&T to Verizon.  Will Verizon offer me any incentives, e.g., a greater discount on my upgrade for referring her to them as a new customer? I am due for an upgrade on October 24, 2011 and I would like

  • PROBLEM WITH FLTP FM.

    I used following code ,still not getting actual value. DATA :   DTIME(50) TYPE C. CALL FUNCTION 'FLTP_CHAR_CONVERSION_FROM_SI'   EXPORTING    CHAR_UNIT              = 'FLTP'   UNIT_IS_OPTIONAL       = ' '   DECIMALS               = 15   EXPONENT     

  • Impossible to set my adobe forms as enable in WD4A

    Hi all, I define an adobe forms which can be used in off-line scenario ( by e-mail ) and on-line by WD4A. By e-mail there's no problem my forms is enabled and user can modify the content. IN WD4A , if i set the forms in the UI Elements as enabled the

  • When is iso6 going to fix my ringtones that I have downloaded and now lost because of the upgrade?

    When is iso6 going to fix my ringtones that I downloaded and now cannot access????? My phone will not sync my ringtones!!! They show in my library!!!