Settings for material for PS

Dear All,
I have three scenarios for Procurement.
Scenario 1:
Assigning  the WBS Element in the PR or PO and running the MM Cycle which will post the costs to WBS Elements.
Scenario 2:
Assigning the material component to the Activity and generating an auto PR and running the MM Cycle which will post the costs to WBS Elements.
Scenario 3:
Assigning a BOM to the Activity and generating an auto PR and generating PO's for Materials to be procured and generating planned orders for materials to be produced in house.
For all the above scenario's I can handle the PS configuration. But I want to know if there are some separate settings to be done in the material master for the materials to be used in the above mentioned scenario's.
Any help would be appreciated. Please provide any links if any.
Thanks & Regards
Sagar

Hi,
Please go throgh sap help link on material in projects
http://help.sap.com/saphelp_erp60_sp/helpdata/en/d7/b8853488601e33e10000009b38f83b/frameset.htm
Regards,
Sandeep

Similar Messages

  • No external no.assignment possible for material for material type HALB??

    no external no.assignment possible for material for material type HALB??... message no:m3317
    i got this error msg while i try to create external material via mm01
    material: pump
    industry type: mechanical engineering
    material type: semi finished product
    after pressing enter error came...

    Hi
    If you created number range already, then you need to remove the number range and recreate the same with external number range w/o check
    Try it out.
    Thanks
    Raman

  • Variant configuration for Material for Sales Order

    Hello,
    I have craeted a configurable material in MM01, then created class for using CL01 , its characteristics using CT04, CU41, CT04, VK11, and lastly VA01.
    But still while creating sales order it throws error :
    Configuration not possible for material PEN_4 :Reason 2 --> Help
    What must be the problem? Also is there any BAPI who can create configurable material?
    Can anybody help on this issue.
    Useful answer will be rewarded.
    Thanks,
    Madhura Nadgauda.
    Edited by: Madhura Nadgauda on Jan 16, 2008 7:45 AM

    try this may be it will help to you,.
    REPORT ZVRDOC0 no standard page heading
    line-size 300
    line-count 50(5).
    TABLES : vbak, "Sales Document Header Level
    vbap, "Sales Document Header Level
    kna1. "General Data in customer Master
    *INTERNAL TABLE T_VBAP
    DATA : Begin of t_vbap occurs 0,
           vbeln like vbap-vbeln,
           matnr like vbap-matnr,
           posnr like vbap-posnr,
           arktx like vbap-arktx,
           kwmeng like vbap-kwmeng,
           cmkua like vbap-cmkua,
           end of t_vbap.
    *INTERNAL TABLE T_TAB.
    DATA : Begin of t_tab occurs 0,
            vbeln like vbak-vbeln,
            kunnr like vbak-kunnr,
            audat like vbak-audat,
            netwr like vbak-netwr,
            vkorg like vbak-vkorg,
            name1 like kna1-name1,
            land1 like kna1-land1,
            end of t_tab.
    *INTERNAL TABLE T_FINAL.
    DATA : Begin of t_final occurs 0,
            vbeln like vbap-vbeln,
            kunnr like vbak-kunnr,
            matnr like vbap-matnr,
            posnr like vbap-posnr,
            arktx like vbap-arktx,
            kwmeng like vbap-kwmeng,
            cmkua like vbap-cmkua,
            audat like vbak-audat,
            netwr like vbak-netwr,
            vkorg like vbak-vkorg,
            name1 like kna1-name1,
            land1 like kna1-land1,
            end of t_final.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE text-bO3.
    parameters : P_kunnr like vbak-kunnr.
    select-options : S_vbeln for vbak-vbeln,
                     S_audat for vbak-audat.
    SELECTION-SCREEN END OF BLOCK B1.
    start-of-selection.
    select vbeln  matnr posnr arktx kwmeng cmkua  from vbap
    into corresponding fields  of table  t_vbap  where vbeln in S_vbeln .
    IF sy-subrc EQ 0.
    select  vbakkunnr vbakvbeln vbakaudat vbaknetwr vbak~vkorg
            kna1name1 kna1land1  into  table   t_Tab   from
            vbak   join  kna1   on kna1kunnr  = vbakkunnr
            FOR ALL ENTRIES IN t_vbap
            where vbak~vbeln = t_vbap-Vbeln and
            vbak~kunnr = p_kunnr and
            vbak~audat  in  S_audat .
    ENDIF.
    *end-of-selection.
    loop at t_vbap.
    read table t_tab with key vbeln = t_vbap-vbeln.
    move :
    t_vbap-vbeln to t_final-vbeln,
    t_vbap-matnr to t_final-matnr,
    t_vbap-posnr to t_final-posnr,
    t_vbap-arktx to t_final-arktx,
    t_vbap-kwmeng to t_final-kwmeng,
    t_vbap-cmkua to t_final-cmkua,
    t_tab-kunnr to t_final-kunnr,
    t_tab-audat to t_final-audat,
    t_tab-netwr to t_final-netwr,
    t_tab-vkorg to t_final-vkorg,
    t_tab-name1 to t_final-name1,
    t_tab-land1 to t_final-land1.
    append t_final.
    clear t_Final.
    endloop.
    sort t_Final by vbeln   Kunnr    matnr posnr  .
    loop at t_final.
    at new vbeln.
    write : /1 SY-VLINE, 2 t_final-vbeln color 5 inverse.
    ULINE /1(250).
    endat.
    write : /1 SY-VLINE, 2 t_final-vbeln color 5 inverse,
    20 SY-VLINE, 21 t_final-posnr color 5 inverse,
    40 SY-VLINE, 41 t_final-matnr color 5 inverse,
    60 SY-VLINE, 61 t_final-arktx color 4 inverse,
    80 SY-VLINE, 81 t_final-kwmeng color 4 inverse,
    100 SY-VLINE, 101 t_final-cmkua color 4 inverse,
    120 SY-VLINE, 121 t_final-kunnr color 3 inverse,
    140 SY-VLINE, 141 t_final-audat color 3 inverse,
    160 SY-VLINE, 161 t_final-netwr color 2 inverse,
    180 SY-VLINE, 181 t_final-vkorg color 2 inverse,
    210 SY-VLINE, 211 t_final-name1 color 1 inverse,
    230 SY-VLINE, 231 t_final-land1 color 1 inverse,
    250 SY-VLINE.
    at end of vbeln.
    sum.
    ULINE /1(250).
    write: /60 SY-VLINE, 'Total' ,
    81 t_final-kwmeng color 4 inverse ,100 SY-VLINE,
    101 t_final-cmkua color 4 inverse,120 SY-VLINE.
    ULINE /1(250).
    endat.
    at last.
    SKIP 2.
    sum.
    ULINE /1(250).
    write: /1 SY-VLINE, 60 SY-VLINE, 'Grand Total' ,
    81 t_final-kwmeng color 4 inverse , 100 SY-VLINE ,
    101 t_final-cmkua color 4 inverse,120 SY-VLINE.
    ULINE /1(250).
    endat.
    endloop.
    TOP-OF-PAGE.
    ULINE /50(24).
    WRITE : /50 SY-VLINE , 52 'SALES ORDER DETAILS' COLOR 5,
    73 SY-VLINE.
    ULINE /50(24).
    ULINE .
    WRITE: /10 'CURRENT DATE :', 25 SY-DATUM COLOR 1 INVERSE,
    100 'CURRENT TIME :', 115 SY-UZEIT color 5 INVERSE.
    WRITE: /10 'USERNAME :', 25 SY-UNAME COLOR 1 INVERSE,
    100 'PAGE NO :', 113 SY-PAGNO COLOR 5 INVERSE.
    WRITE: /10 'LOGON CLIENT :', 25 SY-MANDT COLOR 1 INVERSE,
    100 'COLON N0 :', 114 SY-COLNO COLOR 5 INVERSE.
    WRITE: /10 'CURRENT REPROT:', 25 SY-REPID COLOR 1 INVERSE,
    100 'LANGUAGE :', 116 SY-LANGU COLOR 5 INVERSE.
    ULINE.
    ULINE /1(250).
    write : /1 SY-VLINE, 2 'SALES DOC NO' color 6 inverse,
    20 SY-VLINE, 21 'SALES DOC ITEM' color 6 inverse,
    40 SY-VLINE,41 'MATERIAL NO' color 6 inverse,
    60 SY-VLINE, 61 'SHORT SALES TEXT' color 6 inverse,
    80 SY-VLINE, 81 'CUMM ORDER SALES' color 6 inverse,
    100 SY-VLINE, 101 'CREDIT DATA' color 6 inverse,
    120 SY-VLINE, 121 'CUSTOMER NO' color 6 inverse,
    140 SY-VLINE, 141 'DOC DATE' color 6 inverse,
    160 SY-VLINE, 161 'NET VALUE SALES' color 6 inverse,
    180 SY-VLINE, 181 'SALES ORG' color 6 inverse,
    210 SY-VLINE, 211 'CUSTOMER NAME' color 6 inverse,
    230 SY-VLINE, 231 'CUSTOMER CONTY' color 6 inverse,
    250 SY-VLINE.
    ULINE /1(250).
    END-OF-PAGE.
    ULINE.
    WRITE: /45 ' THIS IS END OF PAGE FOR SALES DOCUMENT DETAILS'
    COLOR 6 .

  • Costing for material for which no accounting document generated

    Dear Gurus,
    I want to have the cost of raw water used in manufacturing product X to flow in the cost of product X.
    But the raw water should not be posted to FI.
    The cost of raw water should come in the standard cost estimate as also in the process order..
    Thanks and Regards,
    Amit Dhanurdhari

    Dear Amit Dhanurdhari,
    There are 3 posibilities basically for this problem,
    1.  Creativity of the Activity & following through the Work Center .......
    2. Create a Material Master Rerocd, and maintain the Proce of spefic for water power charges
    3. Maintain the O H key and Assign to the Cost Sheet etc...........'
    These are the points already discussed above. 
    Regards
    Raj

  • Capacity control in storage bin for material

    Hello,
       I am trying to set up following scenario: I want to set the capacity of storge bin for material for example 16547. For one storage bin fit only 200 pieces of material 16547. So I set this in material master WM2 tab. Then I order 400 pieces, TR is generated, then I want to create TO in background, but it display error: Maximum quantity for storage bin will be exceeded. Then I have to create TO in foreground and confirmation 2 times.
    So my question is: is there any way to set up that TO will be created in background and confirmed one time?
    Thank you

    a TO split will not be triggered by remaining capacity, never.
    The TO split has to happen earlier, SAP is always trying to putaway the entire quantity of a single TO item into one bin. Hence you need to have many TO items.
    This is controlled by Palletization (WM2 view).
    If you get 200 on one pallet, the enter 200 in WM2 view and SAP will give you 2 TO items if you receive 400.

  • Rebates "material for settelment"

    While doing customer rebate, system will ask for "material for settlement"-how system is generating this
    Edited by: chandraa115 on Sep 21, 2010 10:10 AM

    Hi Chandra,
    Standard SAP has given 5 condition types for rebates each of which belong to one Rebate Agreement Type. Out of these 5 Rebate Condition Types only BO02 is the condition type which is material specific , which means that while maintaining the condition records for this rebate condition type you have to maintain it for a particular material and the sales area.
    But you will find that if you use any other rebate condition type other than this it is specific for a customer or a Material Group or a customer Hierarchy. But in order to maintain the condition records for others you still have to enter a material in the condition record even though the rebate is not for a material. In this case you have to create a dummy material and this  dummy material is entered in the condition records of the rebate condition types in the details as material for settlement
    Hope this helps....
    J Nagesh

  • Maintain price lit for material

    hi sir,
    I am a ABAPER.
    plz help me how can i maintain price lit for material for a customer.which t-code and condition type
    i have to use..
    Thanks,
    sunil sahoo

    Hi Sunil,
    You can use T.Code VK11 to maintain price. you need to look into sales order pricing, which condition is missing. Generally standard condition is PR00.
    Regards,
    Naveed Ansari.

  • Settings for Material shortage status (MSPT) in PM orders

    For the purpose of material availability check in PM order, i have made the settings in IMG (OPJJ,OIOI).
    Still i am getting error that "No Checking group maintained for production (Component) in Plant xxxx. I have maintained the availability check in Sales: General plant data of Material change mode (MM02). then i am getting the PM order status MSPT for material status.
    To avail this status i have to maintain availability check all components? any other method to avail the same facility?

    Hi
    what else you require.
    have you tested material mass maintainance. Do you think so that people are giving solution just to get the points.
    Please don't be under wrong inmpression. We are here for knowledge enhancement and for getting help from Guru's like Rajesh sir, Pradeep sir and Reddy sir.
    Regards,
    Anand.

  • "Settings for material number conversion not found" occurs when ...

    After I run an initial load data into the InfoCube 0PUR_C01, I want to check the InfoCube Content by the following path:
    RSA1 -> pick up the InfoCube 0PUR_C01, right click it and select Manage -> Get to Content tab -> Click InfoCube Content button -> Deselect all selection, only tick the 1st column checkbox next to 0Material, then hit enter, get a small window titled as "Cancel" with a red STOP msg sysing "Settings for material number conversion not found" with an "Exit" button and a question mark button, click Exit button leads to SAP Easy Access screen, if clicking the question mark button, another window pops up with the msg showed above, click Technical Information button causes the original window short dump and the short dump msg shows below in between two dashed lines:
    Runtime Errors         RPERF_ILLEGAL_STATEMENT
    Date and Time          11/28/2005 14:43:13
    ShrtText
        Statement "CALL SCREEN" is not allowed in this form.
    What happened?
        Error in ABAP application program.
        The current ABAP program "SAPLSHL2" had to be terminated because on
        statements could not be executed.
        This is probably due to an error in the ABAP program.
    Error analysis
        There is probably an error in the program
        "SAPLSHL2".
        The program was probably called in a conversion exit
        or in a field exit. These are implemented by
        function modules called CONVERSION_EXIT_xxxxx_INPUT/OUTPUT or
        USER_EXIT_xxxxx_INPUT.
        Conversion exits are triggered during screen field transports or
        WRITE statements, field exits during field transports from the
        screen to the ABAP/4 program.
        In this connection, the following ABAP/4 statements are not allowed:
        -  CALL SCREEN
        -  CALL DIALOG
        -  CALL TRANSACTION
        -  SUBMIT
        -  MESSAGE W... and MESSAGE I...
        -  COMMIT WORK, ROLLBACK WORK
        -  COMMUNICATION RECEIVE
        -  STOP
        -  REJECT
        -  EXIT FROM STEP-LOOP
        Moreover, conversion exits for output conversion
        (implemented by function modules called
        CONVERSION_EXIT_xxxxx_OUTPUT) do not allow
        -  MESSAGE E...
        to be used.
    Trigger Location of Runtime Error
    Program                                 SAPLSHL2
    Include                                 LSHL2F19
    Row                                     3
    Module type                             (FORM)
    Module Name                             TECHNISCHE_INFO5
    rce Code Extract
    e  SourceCde
    1 ***INCLUDE LSHL2F19 .
    2 form technische_info5.
    >>   call screen 1900 starting at 5  8.
    4 endform.
    5
    6 &----
    7 *&      Form  SHRINK_VALUES
    8 &----
    9 *       text                                                           *
    10 ----
    11 *  -->  p1        text
    12 *  <--  p2        text
    13 ----
    14 form shrink_values.
    15
    16   loop at dynpselect.
    17     clear checktable.
    18     if dynpvaluetab-lowvalue ne space and dynpvaluetab-lowvalue na '*'.
    19       move 'EQ' to checktable-op.
    20       move dynpvaluetab-lowvalue to checktable-low_value.
    21       append checktable.
    22     endif.
    What could cause the problem by selecting only 0Material when checking the InfoCube 0PUR_C01 content?  What does that mean by this STOP msg "Settings for material number conversion not found"?
    Thanks

    Hi Kevin,
    Set the length of 0MATERIAL and change conversion to alpha:
    Re: Error Installing 0MATERIAL from Business Content
    Best regards,
    Eugene

  • SMOEAC site settings for material replication

    SRM Gurus,
    While doing the settings for material replication, in SMOEAC transaction
    I am trying to create site 'SRM' of type CRM, In the site attributes if I enter RFC destination 'SRMCLNT001' and click on get values I am getting the following message "RFC destination SRMCLNT001 does not exist. No valid backend system".
    Can someone please suggest what I need to check/configure to fix this issue?
    Info:
    R/3 side : RFC destination SRMCLNT001 (for connecting to SRM 5.0 system) created and remote logon tested OK.
    Completed all CRM* table settings
    SRM side: RFC destination R3CLNT800 (for connecting to ECC 6.0) created and remote logon tested OK
    Thanks,
    Arun

    Make sure you have created the RFC destination in SRM also. You need to create the following:
    RFC destination of SRM in SRM and in R/3.
    RFC destination of R/3 in R/3 and SRM.
    Regards, IA

  • Settings for material number conversion not found

    "Settings for material number conversion not found"
    This is the error that came out. I was everytime i try to access the activated business content 0material, the system comes up with this error. Please help me with this! Thank you!
    -Peter

    Hi Peter,
    try oss note 555675, it tells you to use transaction OMSL.
    regards
    Siggi
    Message was edited by: Siegfried Szameitat

  • Sale a material for first time needs settings

    hello All,
    my user is gng to sale the material for the first time...It is exisable material...wht setting needs to be done prior to sales order and invoicing activities...
    helpful solutions will be highly appreciated
    Thanks
    Nano SAP

    hii
    please refer this thread
    MM Configuration
    Rizz

  • Report for inquiries for all customers and material

    how can i see a report of all inquiries of all customer and materials is there any predefine report in sap
    we do have va15 but it does not list depending on the custmer or material, how can we do it for all customer
    thanks

    Standard SAP SD Reports:=
    Statistic Group:
    Purpose – To capture data for Standard Reports, we require to activate Statistic Group as under:
    --> Item category (Configuration)
    --> Sales document type (Configuration)
    --> Customer (Maintain in Master data)
    --> Material (Maintain in Master data)
    When you generate statistics in the logistics information system, the system uses the combination of specified statistics groups to determine the appropriate update sequence. The update sequence in turn determines for exactly which fields the statistics are generated.
    Configuration:
    IMG --> Logistics Information System (LIS) --> Logistics Data Warehouse --> Updating --> Updating Control --> Settings: Sales --> Statistics Groups -->
    1. Maintain Statistics Groups for Customers
    2. Maintain Statistics Groups for Material
    3. Maintain Statistics Groups for Sales Documents
    4. Assign Statistics Groups for Each Sales Document Type
    5. Assign Statistics Groups for each Sales Document Item Type .....
    All Standard Reports which are available are as under:
    SAP Easy Access: Information Systems -> Logistics -> Sales and distribution ->
    1. Customer -> Incoming orders / Returns / Sales / Credit memos / Sales activities / Customer master / Conditions / Credit Master Sheet
    2. Material -> Incoming orders / Returns / Sales / Credit memos / Material master / ...
    3. Sales organization -> Sales organization / Sales office / Sales employee
    4. Shipping point -> Deliveries / Returns
    5. SD documents -> Orders / Deliveries / Billing documents ...
    & so on.
    Some of the Standard reports in SD are:
    Sales summary - VC/2
    Display Customer Hierarchy - VDH2
    Display Condition record report - V/I6
    Pricing Report - V/LD
    Create Net Price List - V_NL
    List customer material info - VD59
    List of sales order - VA05
    List of Billing documents - VF05
    Inquiries list - VA15
    Quotation List - VA25
    Incomplete Sales orders - V.02
    Backorders - V.15
    Outbound Delivery Monitor - VL06o
    Incomplete delivery - V_UC
    Customer Returns-Analysis - MC+A
    Customer Analysis- Sales - MC+E
    Customer Analysis- Cr. Memo - MC+I
    Deliveries-Due list - VL04
    Billing due list - VF04
    Incomplete Billing documents - MCV9
    Customer Analysis-Basic List - MCTA
    Material Analysis(SIS) - MCTC
    Sales org analysis - MCTE
    Sales org analysis-Invoiced sales - MC+2
    Material Analysis-Incoming orders - MC(E
    General- List of Outbound deliveries - VL06f
    Material Returns-Analysis - MC+M
    Material Analysis- Invoiced Sales - MC+Q
    Variant configuration Analysis - MC(B
    Sales org analysis-Incoming orders - MC(I
    Sales org analysis-Returns - MC+Y
    Sales office Analysis- Invoiced Sales - MC-E
    Sales office Analysis- Returns - MC-A
    Shipping point Analysis - MC(U
    Shipping point Analysis-Returns - MC-O
    Blocked orders - V.14
    Order Within time period - SD01
    Duplicate Sales orders in period - SDD1
    Display Delivery Changes - VL22
    Regards,
    Rajesh Banka
    Reward points if helpful.

  • Changing the default view for material

    Hi,
    I am trying to add views using MM02.  It is showing me just 5 views ...BASIC DATA1, BASIC DATA2 etc..... I want to add other views eg, Quality Management but am not able to do it.
    I tired doing the following:
    Go to mm01 
        - Enter the material for which you want to add the views. 
        - Then you enter the same material in copy from material 
        - Then you may find all the view 
        - Then select the views you want to add and make entries in the same view and save it 
    Are the view material specific?
    Thanks,
    Shelina

    Go to SPRO and follow the path
    SAP Customizing Implementation Guide
    -->Logistics - General
        -->Configuring the Material Master
            -->Basic Settings
                -->Material Types
                    -->Define Attributes of Material Types
    If you pick the material type of the material that you are trying to extend, you will find the views that are allowed under "User Departments".

  • Error message while creation of material for wrong warehouse no

    dear all,
    i have assigned plant and storage location to warehouse no x,created the material for the same.our question is why the system is not showing warning or error message if we create the same material ,plant and stg location combination to a diff warehouse no Y.
    Eg:
    material    plant   stg location   warehouse no
    12345      1000   1001             111
    12345      2000   2001             111  ?????.how is this possible as i have assigned this plant and stg location combination to a different warehouse no:222
    Is there any settings available in SPRO to solve out this problem.
    Regards,
    velu

    Hi,
    System will not give any error message at the time of Creation of materials, you can create for any other Warehouse no which is not assigned to Plant , Str loc.
    But the system will throw the error while doing any transaction with respect to the Material with different combination of plant , str loc, warehouse no
    This is drawback of Standard SAP.
    rgds
    gsc

Maybe you are looking for