Urgent: reagrding MRP status

HI,
I want to know  if there is a material and we want to check whether its MRP is carried out and if it is then how much qty?

pls follow:
spro-mm-purchasing--purchase requisition-define document type---here u see the field selection assigned with the document type.
no w again follow spro-mm-purchasing--purchase requisition-define screen layout at document level-select the field selection u have seen assigned with the document type-choose details-here in the next screen u select thefield selection group and choose (F2)-in the next screen u can select the field table as per ur requirement.
regards,
indranil

Similar Messages

  • Standard report to check MRP status

    Hi,
    Is there any standard reports to check the materials based on the MRP status? (Eg: Materials that are under A(Free and avilable) etc etc)
    Im using SAP 6.0
    Thanks in advance.

    Hi,
    1. MD04 - Stock requirement list
    2. MD05 - MRP list
    3. MD06 - MRP list collectively
    4. MD07 - Stock requirement list collectively.
    Please see if need anything more.
    Regards,
    Anil

  • Complete MRP status according to Sales order schedule line data

    Dear All,
    Please help me to get technical configuration releted to
    "complete MRP status according to Sales order schedule line data"
    or MRP w.r.t. Schedule line
    Please send fields and table and logic specification .
    Thanks & Regards,
    Ashish Gautam

    You can use following Fm for change sales order
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument     = p_vbeln
        order_header_in   = s_order_header_in
        order_header_inx  = s_order_header_inx
        behave_when_error = 'P'
      TABLES
        return            = it_return
        order_item_in     = i_order_item_in
        order_item_inx    = i_order_item_inx
        schedule_lines    = i_sched
        schedule_linesx   = i_schedx.

  • AFS material-/mrp-status not active for plant.

    Hello Everyone
    I am facing an issue while executing the sales order
    Issue  :AFS material-/mrp-status not active for plant..
    CAN ANY ONE RESOLVE THIS...
    Regards,Rajneesh

    Hi Rajneesh,
    Tht prb might be the material master.
    Goto Material master, select AFS MRP View and activate/ press the AFS MRP status button and save.
    Reward with points if it is helpful
    Kishore

  • Urgent Correction Completion status

    Dear all,
    We are using Charm,and when i complete a urgent correction the status of the urgent correction is changed to "withdrawn" instead of "completed".Did any one faced this problem?Please help ASAP.
    Thanks and regards,
    Avinash.

    pls follow:
    spro-mm-purchasing--purchase requisition-define document type---here u see the field selection assigned with the document type.
    no w again follow spro-mm-purchasing--purchase requisition-define screen layout at document level-select the field selection u have seen assigned with the document type-choose details-here in the next screen u select thefield selection group and choose (F2)-in the next screen u can select the field table as per ur requirement.
    regards,
    indranil

  • MRP status F is not visible

    Hi all,
    Hope somebody can help me in this issue. I have created a sales order for a material which already has some stock and I have done the allocation run. And the allocation was successfully carried out but still my sales order number is appearing in MRP status T not in F. What could be the reason and what I should do to proceed further?

    let me tell you one more thing is when i change screen resoloution it shows me that status bar but when i recall this screen or another screen the status bar is hide, please let me know if i miss any setting or configuration

  • Urgent: reagrding output display preoblem

    Hi,
    I had made dis report adn when i execute it does not display the all changes made to a purticular material. As i made the report reagrding the changes made to a purticular material in a purticular period. here is d code:-
    REPORT ZNEW01 no standard page heading LINE-SIZE 310.
    TABLES: CDHDR,CDPOS.
    DATA: BEGIN OF ITAB OCCURS 0,
          OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
          OBJECTID LIKE CDHDR-OBJECTID,
          USERNAME LIKE CDHDR-USERNAME,
          UDATE LIKE CDHDR-UDATE,
          UTIME LIKE CDHDR-UTIME,
          TCODE LIKE CDHDR-TCODE,
          CHANGE_IND LIKE CDHDR-CHANGE_IND,
          END OF ITAB.
    DATA: BEGIN OF ITAB1 OCCURS 0,
          OBJECTCLAS LIKE CDPOS-OBJECTCLAS,
          OBJECTID LIKE CDPOS-OBJECTID,
          FNAME LIKE CDPOS-FNAME,
          CHNGIND LIKE CDPOS-CHNGIND,
          VALUE_OLD LIKE CDPOS-VALUE_OLD,
          VALUE_NEW LIKE CDPOS-VALUE_NEW,
          END OF ITAB1.
    SELECT-OPTIONS: M_DATE FOR CDHDR-UDATE,
                    U_ID FOR CDHDR-CHANGE_IND.
    SELECT BOBJECTCLAS BOBJECTID BUSERNAME BUDATE BUTIME BTCODE B~CHANGE_IND INTO
    TABLE ITAB
    FROM CDHDR AS B WHERE B~OBJECTCLAS = 'MATERIAL' AND UDATE IN M_DATE AND CHANGE_IND IN U_ID.
    Check not itab[] is initial.
    SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
    ITAB1 FROM CDPOS
    FOR ALL ENTRIES IN ITAB WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
    *SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
    *ITAB1 FROM CDPOS
    *WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
    ULINE.
    LOOP AT ITAB.
    WRITE:/ ITAB-OBJECTID,22 ITAB-USERNAME,ITAB-UDATE,ITAB-UTIME,ITAB-TCODE.
    LOOP AT ITAB1 WHERE OBJECTCLAS = ITAB-OBJECTCLAS AND OBJECTID = ITAB-OBJECTID.
    WRITE: 60 ITAB1-FNAME,ITAB1-CHNGIND,ITAB1-VALUE_OLD(40),ITAB1-VALUE_NEW(40).
    ENDLOOP.
    ENDLOOP.
    PLZZ HELP ME OUT AS HELP WILL BE DEFINATELY REWRDED.
    Edited by: ric .s on Jan 31, 2008 9:11 AM

    hi,
    i give u example of that ,if there is material 10000014 and it had been changed by 3 differrent users whic is disaplaying correct but when i  click it in MM04 it also displays the correct value dat dese are changed by 3 persons but when i double click that for 1 st user it shows details that these are changes made but when i check my report it is not displaying allthe fields which had been changed.
    plzz help me out as it is really urgent.
    TABLES: CDHDR,CDPOS.
    DATA: BEGIN OF ITAB OCCURS 0,
          OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
          OBJECTID LIKE CDHDR-OBJECTID,
          USERNAME LIKE CDHDR-USERNAME,
          UDATE LIKE CDHDR-UDATE,
          UTIME LIKE CDHDR-UTIME,
          TCODE LIKE CDHDR-TCODE,
          CHANGENR LIKE CDHDR-CHANGENR,
          END OF ITAB.
    DATA: BEGIN OF ITAB1 OCCURS 0,
          OBJECTCLAS LIKE CDPOS-OBJECTCLAS,
          OBJECTID LIKE CDPOS-OBJECTID,
          FNAME LIKE CDPOS-FNAME,
          CHNGIND LIKE CDPOS-CHNGIND,
          VALUE_OLD LIKE CDPOS-VALUE_OLD,
          VALUE_NEW LIKE CDPOS-VALUE_NEW,
          CHANGENR LIKE CDPOS-CHANGENR,
          END OF ITAB1.
    *SELECT-OPTIONS: M_DATE FOR CDHDR-UDATE.
                   U_ID FOR CDHDR-CHANGE_IND.
    SELECT BOBJECTCLAS BOBJECTID BUSERNAME BUDATE BUTIME BTCODE B~CHANGE_IND INTO
    TABLE ITAB
    FROM CDHDR AS B WHERE B~OBJECTCLAS = 'MATERIAL'.
    AND UDATE IN M_DATE.
    AND CHANGE_IND IN U_ID.
    Check not itab[] is initial.
    SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW CHANGENR INTO TABLE
    ITAB1 FROM CDPOS
    FOR ALL ENTRIES IN ITAB WHERE OBJECTID = itab-objectid AND objectclas = ITAB-OBJECTCLAS.
    *SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
    *ITAB1 FROM CDPOS
    *WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
    ULINE.
    LOOP AT ITAB.
    WRITE:/ ITAB-OBJECTID,22 ITAB-USERNAME,ITAB-UDATE,ITAB-UTIME,ITAB-TCODE.
    LOOP AT ITAB1 WHERE OBJECTCLAS = ITAB-OBJECTCLAS AND OBJECTID = ITAB-OBJECTID AND CHANGENR = ITAB-CHANGENR.
    WRITE: 60 ITAB1-FNAME,ITAB1-CHNGIND,ITAB1-VALUE_OLD(40),ITAB1-VALUE_NEW(40).
    ENDLOOP.
    ENDLOOP.
    DATA: BEGIN OF ITAB OCCURS 0,
          MATNR LIKE MSTA-MATNR,
          LAEDA LIKE MSTA-LAEDA,
          AENAM LIKE MSTA-AENAM,
          STATM LIKE MSTA-STATM,
          WERKS LIKE MSTA-WERKS,
          PSTAT LIKE MARA-PSTAT,
          END OF ITAB.
          SELECT AMATNR ALAEDA AAENAM ASTATM AWERKS BPSTAT INTO TABLE ITAB
          FROM MSTA AS A INNER JOIN MARA AS B ON BMATNR = AMATNR.
          LOOP AT ITAB.
          WRITE: / ITAB-MATNR,ITAB-LAEDA,ITAB-AENAM,ITAB-STATM,ITAB-WERKS.
          ENDLOOP.
    Edited by: ric .s on Jan 31, 2008 10:59 AM

  • Urgent Issue :MRP

    We have two scheduling agreement for the same material. Vendor A is consignment and Vendor B is standard Scheduling Agreement.We have maintained Source list for both
    Scheduiling Agreement and MRP Relevent(2) is checked.We have also maintained a quota arrrangement. When do MRP run it creates Pur Req. and corresponding schedule line gets generated for :
    1. Vendor A if we mainatin speciel Procuremnet type in MRP2 view.
    2. Vendor ABif we remove speciel Procuremnet type in MRP2 view.
    How can we achieve both , please suggest urgently.
    Thanks.
    Tausif

    Got resolved

  • Urgent: error: user status ECUS is active for equipment.

    Gurus,
    My material is assigned to only one serial no. and one equipment.
    I am trying to do pgi from va02 and the system is throwing an error saying ' user status ecus is active for equip.' but in iq02 when we check the ecus status is not active. infact when we change the user status to anything the error thrown is still the same. Kindly reply urgently as this is affecting the clients production process.
    Thanks,
    Anand.

    hi
    i think once you have delivered the material ,it will create the equipment master record record stating the status as installed at customer site,
    the status you have said i think is user status ,if so kindly change the user status and proceed with the above said procedure
    revert back with any further queries
    regards
    thyagarajan

  • To run MRP status of WBS

    Dear All,
    To run MRP from MD51 against a WBS what is the status of WBS to be?
    WBS should be in CRTD or REL.
    Pls share your views
    Thanks

    Dear All,
    Pls share your views
    Thanks

  • Need to change MRP status from Reserved to Fixed - AFS

    Hi,
    I need to change the MRP (allocation) Status (J_3ASTAT) from reserved (R) to Fixed (F).
    transaction  - j4ab
    table - J_3ABDBS (AFS Requirement - Stock assignment) or any other table for this to be updated?
    Do any one have any idea about the Function module or any other procedure to achieve this?
    Thanks,
    Nilanjana

    Hi Nilanjana,
    Yes. You could do this using J4AB.Allocation->Release.
    In the j_3abdbs table, J_3ASTAT field would get changed from "R" to "F".
    The include is /AFS/ARUN_MANAGEMENTTOOL_FCO0Q.
    Best Regards,
    Anitha.

  • 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

  • Urgent : While MRP (MD02) :syntex error

    Dear All,
    while MRP run I am facing the syntex error
    "Syntax error in Formula FST_01
    Message no. CR323
    Diagnosis
    An error occurred in the formula definition.
    Procedure
    Define the parameters for the formula in Formula FST_01."
    Please provide ur valuable inputs to solve the issue.
    Thanks in advance,
    Vijay Mankar

    Dear Mr.Vijay,
    1.Is there any Variable size item in the BOM.Please check this.
    2.If so check in OS15 - Define variable size item Formulas,whether the formula has been created properly.
    3.Also check whether you have used your own formula in work centre.
    4.If so,please check whether you have maintained proper formula parameter in OP17.
    5..Also check the formula is created properly in OP21.
    <u>I'm sure your problem might be because of variable size item formulas.</u>
    Check with this revert back.
    Regards
    Mangal

  • Urgent- Faulty QM Status

    Dear Pals,
    Data is loaded up to DSO, and at the time of activation it got error saying that "Faulty QM Status" and  "Request Deletion Failed". Actually I 've deleted previous request which was an error. And again trying to delete this present erraneous request, but its not allowing me to delete this request and throwing above statements.
    Please can any one help me out in this regards?
    Best regards
    Niranjan

    Hi,
    try to change the QM status to RED and retry your deletion.
    if it didn't work try the same setting the QM to GREEN.
    let us know
    hope this helps...
    Olivier.

  • Urgent- PR filed Status

    Hi gurus,
    Please guide me how to change filed status in purchase requisition.
    Thanks

    pls follow:
    spro-mm-purchasing--purchase requisition-define document type---here u see the field selection assigned with the document type.
    no w again follow spro-mm-purchasing--purchase requisition-define screen layout at document level-select the field selection u have seen assigned with the document type-choose details-here in the next screen u select thefield selection group and choose (F2)-in the next screen u can select the field table as per ur requirement.
    regards,
    indranil

Maybe you are looking for