Special stock value problem while production entry

Dear Gurus,
One of my client using special stock scenario (E), here in one of the case while producing the special stock through production
the system posted production entry in that the FG and COGM value system taking rs 28.30 for one number, where as in the
material master the standard price is maintained at 471.12 for one number.
I observed one thing during this special stock system not considering standard price as well as moving avg price it is taking price from somewhere i am not able understand where the system taking this price i checked sales order condition value and all but no where this price is mentioned.  I want to know in case special from where system considers the price.
where as normal stock everything is fine., please help me in this regard.
Regards
Sreenvias.P

Hi,
Do you have any Co Component in your system. If marking operation is done the standard price changes acording the production cost.
Check the tables:
Goto SE16
Enter the below tables and execute.
WRMA_V_MBEW
Regards,
Kishore K

Similar Messages

  • BI7.0 Hexdecimal values problem while activating the data in DSO

    Hi Friends,
                     I've got the data upto PSA and i've run DTP also from PSA to DSO, but while activating the data in DSO from New Data Table to Active Data Table, it's giving the error given below:
    Error when assigning SID: Action VAL_SID_CONVERT table
      0DOC_HD_TXT     
    Value '1st disb' (hex. '00310073007400200064006900730062') of          characteristic 0DOC_HD_TXT contains invalid characters
    Process 000037 returned with errors.
                it isn't accepting the values like with numberels and chars together
    ex: 1st disb, 70 cr Gen Hsg.
                   I want the same to be in the report, how these are to be allowed?, i don't want to edit in PSA and there are a lot of values like that i can't edit all those, since there are thousands of records.
    Regards,
    BalajiReddy

    Hi Anil,
                       Thanx for your quick replay, i've allowed ',' in RSKC and i've checked the check box LOWER CASE LETTERS for IO 0DOC_HD_TXT, the problem was almost solved out. What does ',' mean by?
                          Why lower case letter has to be checked only for this IO (0DOC_HD_TXT), not for others? if it is checked, it allows only lower cases, doesn't allow upper cases i think. won't there be any problem? if it is done like that?
            pls tell me the reason, i'm really thankfull for your quick replay
    Regards,
    BalajiReddy

  • List Of Values problem while running a form

    Hi all,
    Actually I had developed a form in Forms 4.5. If I connect to the Personal Oracle Database on the same machine, then it is working properly. But if I connect to Oracle server across network and try to run the form, then a message is coming ' F45RUN - The program you are trying to running had problem. Choose ''Close'' or ''Ignore'''. It is giving error of that sort.
    Actually the form has two list items, which will have the values selected from the database. If I comment out the statements 'Populate_list(....)', then the form is opening for runtime. What could be the problem??
    Thanks in Advance.
    Badarinath ([email protected]) If someone could mail me, then it would be even helpful.

    Hi Badrinath,
    I couldn't underestand the exact problem that you are facing. This may be just because of the different Datase versions. Just try to add "onlogon trigger" to your form having the following code in it:
    logon('username','password@connect_string to the server');
    Fully compile the form and then run.
    Let me know if OK.
    Regards,
    Aqueel([email protected])
    Hi all,
    Actually I had developed a form in Forms 4.5. If I connect to the Personal Oracle Database on the same machine, then it is working properly. But if I connect to Oracle server across network and try to run the form, then a message is coming ' F45RUN - The program you are trying to running had problem. Choose ''Close'' or ''Ignore'''. It is giving error of that sort.
    Actually the form has two list items, which will have the values selected from the database. If I comment out the statements 'Populate_list(....)', then the form is opening for runtime. What could be the problem??
    Thanks in Advance.
    Badarinath ([email protected]) If someone could mail me, then it would be even helpful.

  • Problem while maintaining entries via SM30.

    Hi Experts,
    I have a custom table which needs to be maintained by SM30. I have generated the table maintainece for this table.
    However when i try to add new entries and save, it gives a message saying that one one entry is chosen.
    Then when i try to go back, it gives a pop-up saying that  data was changed. Save the changes first. if i hit hit on Yes. then it agian go back to the screen where i can add entries and the same thing repeats. Basically not letting me save any entry.
    Is there a way i can save my table entries?
    Regards,
    Anjali

    Hi Steeve,
    If you have made any changes in your custom table then follow the below steps may be ths can solve your problem.
    1. Adjust table ny T-Code SE14 (Database uttility) Always adjust your table when ever you make any chnages in it.
    2. Regenerate the table maintainece view by selecting all the options. (regenerate FG, etc). When you click on edit icon you will get a popup message in that popup message select expert mode and check all the options.
    hope this will help you.

  • Lock Objects Problem while updating entries in custom table

    Hi Friends,
    Iam updating a custom table ztable from internal table entries.
    ie : Modify ZTABLE from table ITAB.
    Now the entries are updating and inserting perfectly..
    But my problem is i need to use lock objects before doing this..
    I have created a lock obect EZTABLE with all th ekey fields of the table.. ie : it has 2 key fields
    item & matnr .
    Now how to use lock objects here.. do i need to loop the internal table and use enque & deque function module each and every time in loop or use it out side the loop..
    Can any one explain me this..
    Regards,
    Kumar

    hi kumar,
    **check if the equipment is already locked by user, if yes, trigger a mail
                CALL FUNCTION 'ENQUEUE_EIEQUI'
                 EXPORTING
                MODE_EQUI            = 'E'
                MANDT                = SY-MANDT
                   equnr                = lv_equi_temp
                X_EQUNR              = ' '
                _SCOPE               = '2'
                _WAIT                = ' '
                _COLLECT             = ' '
                 EXCEPTIONS
                   foreign_lock         = 1
                   system_failure       = 2
                   OTHERS               = 3.
                IF sy-subrc <> 0.
                  lv_subrc1 =  sy-subrc.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                ELSE.
                  CALL FUNCTION 'DEQUEUE_EIEQUI'
                   EXPORTING
                MODE_EQUI       = 'E'
                MANDT           = SY-MANDT
                     equnr           =  lv_equi_temp
                X_EQUNR         = ' '
                _SCOPE          = '3'
                _SYNCHRON       = ' '
                _COLLECT        = ' '
                ENDIF.
    try like this to check if the object is locked....
    u can also use
    call function 'ENQUEUE,.
    do the needful changes update the database then commit work
    then call function 'DEQUEUE'
    hope this helps,
    tanmaya

  • "Special Stock indicator" field to be a mandatory entry with "501" in MIGO

    Hi,
    Where would you set the "Special Stock Indicator" as a mandatory entry in MIGO for mvt. type 501?
    Could you do it in config and if so where (IMG - MM - IM - GR or Mvt Types) ?
    Many thx.

    you can't make reqd entry but u can defulat it for the movement type 501
    go to MIGO - Setting - defulat and set it here the Spe indicator then this will defult for 501

  • Special stocks

    Hi friends,
    I have done GR against sales order .( Mov.type. is 561 E).
    Now the problem is I am unable to see these stocks value in any Table... in MSKA i am able to see the Quantity...
    I would like to know where i can see the special stock value.??
    regards
    mani

    Hi
    Mvt 561  is for initial stock entry
    Means u made initial stock entry for special stock sales order ( E).
    For initial stock entry as their is no value assigned to it u have to specify it in MIGO  T code under quantity Tab in the field Ext.Amount .Only then the valus will update otherwise not.
    If Exe Amount in LC is in not apearing then do setting in OMJJ . Add new entry for field EXBWR
    Edited by: Sanjay  Shah on Feb 5, 2010 5:30 PM

  • Special Stock E not supported (check your entry) error in returns delivery

    Dear friends,
    While we are doing the returns delivery, we are getting the error " Special Stock E not supported (check your entry)
    Message no. M7146
    Diagnosis
    The specified objekt (Special Stock E) is not supported."
    This is an M.T.O scenario
    In the returns order the requirement type is 'KE"
    can u pls tell me how the requirement type is determined at sales order level. Can it be changed manually.
    How the strategy group is linked to requirement type.

    Hi,
    Requirement type KE you can not changed manually.
    For a strategy two requirement types are linked. One is from PIR requirement type,another one is from customer requirement type.
    For 20 strategy, customer requirement type is KE.
    For more detais Goto SPRO>Production>Production planning>Demand management>Planned ind req>Planning strategy>Define planning strategy.
    Here you can find the link between requirement type to a strategy.
    Regards,
    Dharma

  • Special stock indicator in production order

    Hi,
    We have a new business scenario from sales department.
    For example, A is a MTO item, it has component B & C. Now there is a sales order for A come in, and system create a production order, but there is no enough stock for B. They want to:
    1, Allocate C to the production order and other production order or sales order can not take it away via V_V2 or MRP run.
    2. Create another seperate purchase order for B and want this purchase order also allocate to this production order.
    3. They do not want to use WIP stock because it is difficult to display WIP stock in SAP you know.
    I trying to use the special stock indicator "E" for components in production order, and I move C to custom stock via 412 E with no issue.
    But when I create a purchase order for B with account assignment "F",  it goes to normal stock in MD04. After I post GR for the purchase order, the quantity goes to production order directly, does not show in MD04 and did not reduce the requirement quantity.
    If I create a purchase order for B with account assignment "E", it gives an error message "Sales document item is not defined for the transaction. I tried to change the requirement type from "KMFA" to "KE" in the sales order for A, and the production order disappeared, it is not accepted.
    How should I define and configure the process?
    Thank you so much.
    Albert

    Hi Albert
    I suggest you to take a look on the setting "individuall/collective" on the tab MRP4 of the material master.
    For both components, you should set the value 1 and system will always plan the components under the sales order special stock.
    BR
    Caetano

  • Special stock inicator set automatically in production order

    Hi there,
    could anyone pls let me know, how to set the special stock indicator 2 to a component line, is the prod. order already assigned to project.
    I have a material master for component: lot size: EX, Bom explosion: empty (indiv and coll), when I create a prod. order and assign it to WBS, always have to set manually the special stock indicatot component by component.
    I d like this "2" automatically assign, if prod order is assigned to WBS.
    How
    ould it be done?
    Br
    Lovagszent
    Edited by: Maria Györgyi Kovacs on Nov 23, 2010 12:24 PM

    Dear
    Just to make you understand , Lets take the following example
    Assembly is X which is for any Project WBS.
    X is assigned in the network and X is having ind/coll requirement as 1 in MRP4
    the BOM of material X has X1/X2/X3 as child materials.
    X1 is having blank in the ind/coll requirement in MRP4
    X2 is having value 1 in the ind/coll requirement in MRP4
    X3 is having value 2 in the ind/coll requirement in MRP4.
    In this situation following is the result
    X1 and X2 will get Special stock indicator as 2 where as X3 will have blank in Special stock indicator field.
    Test with simple example and check in Production Order Compoenent Oveview also whether Special Stock Filed is getting updated with 2 or not .
    Hope you understood the concept
    Regards
    JH
    Edited by: Jiaul Haque on Nov 23, 2010 1:14 PM

  • 2 Step Transfer for Special Stock Problem

    Hi,
    We had just activated business function LOG_EAM_ROTSUB and LOG_EAM_ROTSUB_2 in our system. This gives us flexibility in handling special stocks and among other allows us to use mvtyp 313 with special stock. Referring to SAP Help page here it is possible to perform 313 Q followed by 315 Q.
    As mention in the SAP Help page, 313 Q will "removes the relevant quantity from the unrestricted-use stock of the original storage location and temporarily stores it in the blocked stock of the new storage location"; of which therefore I should be performing 343 Q (blocked project to unrestristed stock) NOT as 315 Q as suggest by SAP Help. And by the way, I did 343 Q and it work, but need to be posted manually rather than post place in storage referring to 313 Q material document.
    This is where I have the problem. Is there any way to config for mvtype 313 Q to be followed by 343 Q instead of standard 315? Or any other workaround so I can have the 343 Q referring to 313 Q?
    Appreciate any comments and solution.
    Thanks.

    Normal Stock
    313      -     unrestricted original location to in transit new location
    Place in Storage with referring to above material document
    315     -     in transit new location to unrestricted new location
    Special Stock
    313 Q    -     unrestricted original location to in blocked stock new location (see 1st paragraph of this link)
    Place in Storage with referring to above material document
    315     -     it defaulted to to 315, upon posting error of no stock (cause should be 315 Q)
    Manual Place in Storage
    315 Q     -     error to enter WBS Element (does not recognize correct WBS element I entered)
    Transfer Posting Block to Own
    343 Q     -     blocked new location to unrestricted new location (SUCCESS)
    Hi Jurgen,
    See my problem now?
    1. System should defaulted 315 Q (if there's a workaround config for this then it's settled)
    2. Couldn't figure out why it is not recognizing my WBS element entry
    Thanks for quick reply though.

  • Stock Special Q valuated , problems

    hi guru´s
    I´ve several problems. In first place I create a WBS from PS .
    My material master is a valuated material.  After this, I create a PR, creat a PO with reference to PR and save.
    Problem: when I did the Goog Receipt the special stock Q is in my warehouse like non valuated.
    update quantity but not update value, so, when later y need take stock project with a reservation (movt tyoe 221 Q), the system don´t posting anything beacuse the value is zero.
    I see the mov type 101 Q, 221 Q, account assignment Q, obyc, but I don´t understand like work this. Maybe at the moment of create WBS is the question, i don´t know.
    Any body can help me please?
    Regards

    Hello Guru´s
    In order to advance in this topic, I explain my scenario.  need to do a posting transfer the "non valuated material" from project stock Q WBS project profile "valuated" to project stock Q WBS project profile "non valuated"
    It´s possible?
    I try with a posting change in 2 steps, but the account are not the correct.
    Steps:
    I create a new project profile as "stock valuated".
    After this, create a Network and WBS.
    The PR has been created to "non valuated material". The PR is convert in PO, and I did the GR , MIGO mov type 101 Q.
    The FI DOC posted
    account Asset : 310000 + wbs XXXXX1     usd 1000
    So, in project stock Q, I´ve inventory vauated in MBBS transaction. Here everythinks is rigth.
    After this, (remenber my material is "non valuated", I did a transfer mov type 411 Q, to transfer project stock to own stock.
    The FI DOC posted:
    account Asset :   310000 - wbs XXXXX1   usd 1000
    account Result :  Price Dif    610000    +
    Questions: How I can to do the FI doc posted?????
    account Asset :   310000 - wbs XXXXX1   usd 1000
    account Asset :   310000 +                         usd 1000
    After this, when I do a last trasnfer from own stock to project stock Q "non valuated project profile"
    T.code MB1B
    mov. type
    412 Q
    account Asset :   310000 -                      usd 1000
    account Result :     640000    +               usd 1000
    Thanks
    Regards

  • Special Stock E not supported (check your entry) Message no.

    Hi,
    While we are doing the returns delivery, we are getting the error "
    Special Stock E not supported (check your entry)
    Message no. M7146
    Diagnosis
    The specified objekt (Special Stock E) is not supported."
    This is an M.T.O scenario
    In the returns order the requirement type is 'KE"
    The item category is REN
    Schedule line category is DN
    movement type is 651
    Kindly guide how to over come this issue.
    Warm Regards
    Somnath
    09903518371

    Dear somnath
    For information, in returns scenario, special stock indicator E will not support.  The logic behind this is that while taking back the goods into plant, you should not assign those stocks to original sale order.  Either you have to post the stock for Quality or to some new storage location.
    thanks
    G. Lakshmipathi

  • SPECIAL STOCK IN PRODUCTION ORDER

    In the past few days, we've noticed that on most production orders created, the material on the "component overview" has been incorrectly brought through with a "special stock" of "1". we have to manually delete this each and every time, not allowing us to issue material until it has been fixed. It's not any specific material, but across the spectrum. In the past it has always been empty (which is correct).

    Hi,
    Check the field "Ind/Coll. Reqts" on the MRP 4 view of the component's material master (or MRP 2 view if you are using the 2 view display). If this field is blank or "1" and if your production order is make-to-order then the component will have indicator set to '1' in the components list.
    The components' material master value needs to be "Ind/Coll Reqts = 2" to
    avoid customer-specific stock of components.
    Ihope this will help you. Thanking you.

  • I am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    i am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    hi TimoHahn,
    i am getting following exception in JDeveloper(11g release 2) Studio Edition Version 11.1.2.4.0 but it works perfectly fine in JDeveloper 10.1.2.1.0
    Root cause of ServletException.
    java.lang.NullPointerException
    at java.util.PropertyResourceBundle.handleGetObject(PropertyResourceBundle.java:136)
    at java.util.ResourceBundle.getObject(ResourceBundle.java:368)
    at java.util.ResourceBundle.getString(ResourceBundle.java:334)
    at org.rbi.cefa.master.actionclass.UserAction.execute(UserAction.java:163)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

Maybe you are looking for