Consumption /Adjustment field in OPPR

Hi Friends
Need your help in understanding the functionality use of the field Consumption /Adjustment field in OPPR
Ie If I plan (PIR) for the next 2 months & Then how can we control the consumption Or creation of any New planned orders
with an example
Your inputs will be really help in getting a clarity on the usage of this field ( Read SAP help on this issue but still not very clear on the functionality , an Example will really help Or atleast some inputs as to how I can create a Test scenario in IDES to study its impact
Thanks & Regards
Sathi Babu

Hi,
Consumption / adjustment can be used as bellow
For example you use
Consumption mode: 2 - Backward/forward consumption
Consumption Period: Backward    30
Consumption Period: Forward     30
MRP Strategy: 40 in material master MRP 3 view.
You have created PIR with follwing dates / months
Initial Plan
Month : Sep 2009
Qty:      100
Month : Oct 2009
Qty:      300
Now you place a sales order for Qty 50 in the Month of Oct then it will consume the PIRs of Sep 2009 and the balance will be as below
After Placing Sales Order of 50
As per Backword consumption of 30 Days sales order will consume the PIR of Sep 2009 first.
Month : Sep 2009
Qty:      50
Month : Oct 2009
Qty:      300
Now you place a sales order of 100 for the month of Otc 2009
After Placing Sales Order of 100
As per Backword consumption of 30 Days sales order will consume the PIR of Sep 2009 first.
Month : Sep 2009
Qty:      0
Month : Oct 2009
Qty:      250
Hope this clarifies your doubts.
With best regards
Shankar.

Similar Messages

  • Update Consumption posting field of MSEG table control

    Hi,
    We have free goods Sales order type(ZKFC) and reture(ZKFR). We post
    the free goods delivery update G/L is correct in FI document of MM
    movement(601). We post the return free goods delivery update G/L is
    incorrect in FI docuemt of MM movement(653). We checked the MSEG table
    found the Consumption posting field(MSEG-KZVBR) is empty for free goods
    delivery post. The Consumption posting field is 'V' for return free
    goods delivery post. The other order delivery post and return delivery
    post is OK.We want to know where configuration can control the
    Consumption posting field((MSEG-KZVBR)) update at MSEG table? Could you
    pls help us check it.Thanks.
    Movement type(601) FI docuemnt
    Dr: Sales Promo. Mat.
    Cr:F/G-Trading
    Movement type(653) FI docuemnt
    Dr: F/G-Trading
    Cr:Std.Cost-Trading
    We expected the 653 FI docuemtn
    Dr: F/G-Trading
    Cr:Sales Promo. Mat.
    Best Regards
    Park Han

    Hi,
    You can use tcode OMJJ to check for movement type 653, then look at the Account Grouping.
    There you should be able to identify the line that meets the posting, and since the Consumption is 'V', the Acct. modif should be VAY.
    Then to assign the correct G/L in tcode OBYC, look for combination of
    -event GBB
    -acct mod VAY
    -valuation class of the material
    But before you replace the G/L, confirm that the line is the correct one by matching the GL in MSEG and this line's GL.
    Thanks

  • Continual Consumption : Variable field in PPM from R/3

    Hi All -
    I have a multi-mixed resource and it is used in one of the operations in the PPM. I was manually creating the PPM and testing a few things and I had populated the field " Continual Consumption: Variable"
    How can this field be CIF'fed over from a production version?
    No matter what capacity/scheduling formulas I tried to use on the Work Center, the " Continual Consumption: Fixed" field gets populated in the PPM with " No of indivudual capacities"from the WC. Never the continual consumption:variable.
    What field should I mantain for this to be continual consumption :variable?
    Appreciate your help
    Varun

    Hi Varun,
    If you want input components to get consumed continously use feild Distrubution key in BOM. open bom and double click on component for which you need continous consumption and mention feild distrubution key.
    Only distrubution key GLEI(equal distrubution) can be CIFED to APO.
    If you are talking about continous consumption of capacities try using distrubution formula in workcenter in capacity as well as schduling tab. I am not sure about continual consumption capacity as I never used but we are using continous consumption components.
    Regards.
    Siddharth.

  • How to adjust fields display width?

    work in jdev 11.1.2.3.
    in the form VISUAL DESIGNER, all fields looks same length, and there is no width attributes to adjust. When it runs, some fields display too long.
    How to adjust fields display width during design?
    Thanks.

    Hi,
    You dont need to redo it again , unless you have changed properties after initial drag and drop.
    If you have changed , use the value #{bindings.yourAttribute.hints.displayWidth} for columns property.
    <af:inputText value="#{bindings.name.inputValue}"
    label="#{bindings.name.hints.label}"
    required="#{bindings.name.hints.mandatory}"
    *columns="#{bindings.name.hints.displayWidth}"*
    maximumLength="#{bindings.name.hints.precision}"
    shortDesc="#{bindings.name.hints.tooltip}" id="it38">
    <f:validator binding="#{bindings.name.validator}"/>
    </af:inputText>
    Thanks,
    Naresh

  • Value adjustment field in sq01

    Hi
    There is a requirement to fetch "value adjustment" field (in asset explorer)  in an asset report (designed through sq01, logical database ada).
    I tried abumn & value adjustment field gets populated for the asset but I can not trace out the table & the field where it is stored.
    Can someone help me in pulling out this data from the table?
    Regards
    Ravi

    Thanks Bernhard.
    I have developed sap abap query using sq01. fetched most of the details from ANLAV, ANLZ, ANLB, ANLK, ANLP.
    specific reqirement is to include value adjustment field (Ord. Depreciation CY + Ord. Depreciation PY) in this report.
    but ANEP provides amount posted with respect to transaction type.
    Closest one I reached is: table ANEA with two fields (Ord Dep. CY, Ord Dep PY). There summation can provide the total value adjustment but that I doubt could be of any use.
    There is one structure FIAA_COMPARE_VALUES which holds the value but this cant be used in the query.
    So, am i missing out on a table which directly holds the value ?
    Regards

  • Please tell me how to adjust field width for alv data .

    Hi,
          Please tell me how to adjust field width for alv data . Also i want to remove zeros after decimal coming in field.
    Regards,
    Ranu

    Hello Ranu,
    You need to set OUTPUTLEN field from field catalog table for every column.
    DATA lt_fieldcat TYPE lvc_t_fcat
    DATA lw_fcat type lvc_s_fcat .
    lw_fcat-fieldname = 'BNAME' .
    lw_fcat-inttype = 'C' .
    lw_fcat-outputlen = '12' .  -----> for e.g. set width of column BNAME
    lw_fcat-coltext = 'User Name' .
    lw_fcat-seltext = 'User Name' .
    APPEND lw_fcat to lt_fieldcat .
    Hope this resolves your issue!
    Thanks,
    Augustin.

  • New form EditForm.aspx not automatically adjusting fields

    Hi
    I'm usig multiple content types in a document library. I need to adjust the EditForm.aspx, hence created an new edit form.
    However when I come to edit the various documents (of differing content types) the form shows the same columns.
    When the form was created using SPD there is a selection for which CT to use, how can this be ignored so it behaves like the orginal form?
    Thanks

    Hi Jones,
    Please read the article below especially the part Multiple content type considerations:
    http://office.microsoft.com/en-in/sharepoint-server-help/turn-on-support-for-multiple-content-types-in-a-list-or-library-HA010378236.aspx
    QUOTE:
    The fields that appear on a form are determined by the content type associated with that form, not by the list or library.
    The document template that is used when creating a new document is specified by the content type, not the list or library.
    Please provide more specific description about “original form” in your post. In EditForm page, the filed displays according to content type you select. If you would the drop-down selection of content type not show in the EditForm page, then what would you
    like this page display as, that is why you would  depict original form.
    If you would like to show/hide some fields on the form page for different content type, try editing the content type column option Optional/required/hidden, see if it could meet the requirements. 
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Subcontract raw material consumption adjustment

    Dear All,
    I have made GR for subcontract material as below
    1) out put material 100 pcs (101 mov type)
            Input materisl 10 kgs (543 Mov type)
    but later i got to know that what ever input mateirial was consumed in actual is higher
    so actully counsution need to be 30 kgs
    so pl guide me how to pass this balance 20 kgs entry for input mateirial over consution.
    Regards,
    Vimlesh

    Use Subsequent Adjustment function in MIGO. 121 Movement will hit here.
    Subsequent adjustment for subcontracting .This movement type cannot be entered manually.  With a subsequent adjustment for a subcontract order it is possible to correct the consumption of components. In this case, the material produced by the supplier is credited with the excess consumption / under-consumption.  For this reason, if there is a subsequent adjustment, an item is generated for the produced material using movement movement type 121.
    Movement type 121 does not have a reversal movement type. Possible special stock indicators: O, E, Q

  • Adjusting field size depending on data returned

    Hi
    I need to display output from an xmltype column in the database. How can I set the field so that it adjusts its size depending on the amount of data returned for that xml column?
    Thx!

    This can be done by setting the Vertical Elasiticity and Horizontl Elasticity properties of the field. Try setting both to Variable.

  • Hiding buttons when printing and adjusting field to compensate

    Hi,
    I had a request for a form in which the Add a Row button and Delete Row button are hidden when printed to make it look a little nicer.  I was able to hide the buttons when printing, but the table that the delete is part of still looks odd and there is a larger space than I'd like to have between the tables once the add a row doesn't show.  Is there are a way to make things look nicer?  I've attached the demo of the form I'm working on a sample of what it looks like right now when I print.
    I did see a post about Hiding text field borders when printing and it sounded like I might need to do something similar, but I'm not quite sure what.
    Thanks!
    Image: https://acrobat.com/#d=HvU8V27oA*Ki6HzoI2Ec0w
    Form: https://acrobat.com/#d=1K*EfksEnAH0azzxTrx31w

    The easiest way to deal with the buttons down the side is to set the borders of those cells to none, then you don't have to worry about it - you will end up with a little extra space down the right side but the table will look finished when the buttons hide. This is how I do it, because the button takes the whole space of the cell I just don't put a border on it. Getting into hiding columns and shifting table size to fill the space is getting pretty tricky.
    To get the tables closer together when you print and hide the add row button, put the following script in the prePrint event of the button:
    this.presence = "hidden";
    And this script in the postPrint event:
    this.presence = "visible";
    Because the button is part of the flowed subform the table is in when you set its presence to hidden the subform will close the gap.

  • Problems with Var. Bucket Consumpt. field in PPMs

    Hi experts,
    I'm trying to manually create a PPM (Production Process Model) into APO (to use it with SNP), however, the value entered in the
    Bucket Consumption (Variable) field disappears when I active the PPM. Someone could tell me what I am doing wrong?
    First, I created a Resource ( using fields of tab 1 Bucket ) with the following data:
    Resource
    Resource: R
    Category (Cat): P - Production
    Location: L
    Time Zone: BRAZIL
    Bucket Dimensn: Mass
    Factory Calendar: BR
    Bucket Capacity: 96000
    Unit: KT - Kilotonne
    Number of Periods: 365
    Period Type: Day
    Days -: 1095
    Days +: 1095
    ie, a resource with a capacity of 96000 Kilotonne per year.
    The PPM I'm trying to create is the following:
    PPM's General Data
    Use of a Plan: S - PPM for Supply Network Planning (SNP)
    Variable (Single Level Costs): 980,00
    PPM's Operations and Activities
    Operation: 0010:Produce
    Activity: 10:Produce
    Components of Activity
    Product          I/O Indicator     Consump. Type     From Date     To Date          Unit     Var. Consumptn
    A          O          E          01.01.1970     31.12.9999     KT     1000
    B          I          S          01.01.1970     31.12.9999     KT     560
    C          I          S          01.01.1970     31.12.9999     KT     180
    D          I          S          01.01.1970     31.12.9999     KT     260
    Mode of Activity
    Mode     Primary Resrce          Location     Unit     Fix. dur.
    10     R               L          D     4
    Resource Mode
    Resource     Location     Unit     Var. Bucket Consumpt.
    R          L          KT     1000 (here is the problem)
    PPM's Model
    Prod. Process Model     Output Product     Date From     Date To          Planning Locatn     Discretization     Maximum Lot Size
    PPM_1               A          01.01.1970     31.12.9999     L          x          9999999
    ie, a PPM to produce 1000 KT of A in 4 days that consumes 1000 KT of R resource capacity.
    The value of 1000 KT in the field Var. Bucket Consumpt. is not allowed. I could only register values between 0 and 9.
    Thanks in advance for help.
    Greetings,
    Francisco Fonseca.
    Edited by: Francisco Fonseca on Jun 26, 2009 1:56 PM
    Edited by: Francisco Fonseca on Jun 26, 2009 1:59 PM

    Hi,
    Its a good practice that when you make PPM manually keep fixed duration as '1 Day' (in your mode of activity).
    One thing i noticed that you made your resource as bucket resource, which is correct,
    but the number you mentioned there (Bucket Capacity: 96000) is not right. What is the unit? It  should be in hours (should be 8 or 9 or ).
    That means in One day the resource is capable of producing goods for 8/9/ Hours. So, make the change there.
    Now in your Mode of activity make fix  duration  1 Day.
    Components of Activity
    Product          I/O Indicator     Consump. Type     From Date     To Date          Unit     Var. Consumptn
    A          O          E          01.01.1970     31.12.9999     KT     1000
    B          I          S          01.01.1970     31.12.9999     KT     560
    C          I          S          01.01.1970     31.12.9999     KT     180
    D          I          S          01.01.1970     31.12.9999     KT     260
    Mode of Activity
    Mode     Primary Resrce          Location     Unit     Fix. dur.
    10     R               L          D     1
    Now in resource: put following value
    Resource Mode
    Resource     Location     Unit     Var. Bucket Consumpt.
    R     L     H          1     
    You will get an output as 8000 or 9000 (depending on your resource capacity per day, ie 8hr or 9 hr  )
    and if you put Variable consumption as 8/9 hrs the you will get 1000 KT per day, in that case you put variable material/product consumtion as 250 KT,
    so you can get 1000 KT per four day. Variable resource consumption responsible for variable output (variable consumption of FG).
    Pls revert if still there is any issue.
    Thanks,
    Satyajit
    Edited by: Satyajit Patra on Jul 2
    Edited by: Satyajit Patra on Jul 2, 2009 11:14 AM

  • Updation of Consumption values in material master

    Dear Experts,
    For a FERT ,
    When I use strategy 40 , Consumption values ( PGI - Deliveries )are getting updated in MM02 in Forecast view.
    whereas,
    When I use strategy 50 , Consumption values are not getting updated in MM02 in Forecast view.
    Is there any setting to control this updation of Consumption values in Material Master ?
    Regards,
    Sheik

    Hi,
    Update of consumption is based on movement type, and you can decide which movement types should have or have not consumption updating.
    Check in transaction OMJJ if the movement types in question have indicator "Consumption posting" (field V_156_VC-KZVBU) as marked.
    If it is the case, consumption is updated, opposite for un-ticked.
    Hope that helps.
    Thanks.

  • Increasing field size in content repository

    What is the best way to increase the field size in the content repository? We are using MS SQL Server and I can't find a way to adjust field width in the Weblogic Administration interface for creating a new repository. Should this be done in the underlying SQL Server? It seems to me that even if we did that, there is a seperate setting in the repository limiting field width, but I don't know how to access that value.
    Thanks Much,
    Tim

    The NoSquint seems to work. The other one didn't install. I may have made a misstep.

  • How the consumption valuse gets updated in the table MVER

    Hi,
    Can anyone explain me how the consumption value gets updated in the table?
    Would you please be able to confirm that all movement types are considered for updates in table MVER. If not, i would need the movement types that are considered as pertaining to u2018consumptionu2019.
    Thanks
    Srini

    Hi,
    Consumption both in material master view and table MVER are updated as soon as the movement is made, ie, real time data.
    To see the movements relevant to consumption, use OMJJ to review movement types or table T156. In this table, select Consumpt.postg. field not equal to blank (so blank is excluded).
    This should then show all movement types subject to consumption posting. The likely ones to see are below, with majority being G.
    (blank)     No consumption update
    G     Planned withdrawal (total consumption)
    R     Planned, if ref. to reservation, otherwise unplanned
    U     Unplanned withdrawal (unplanned consumption)
    Thanks.

  • Consumption mode settings

    Hi,
    Please suggest me for my following scenario.
    Iam doing weekly planning for my material which should get consume by sales order, say I maintained PIR for week W1 20, W2 30. whenever sales order comes for qty up to 20 it is consuming W1 PIR but whenever sales order qty is more than 20, second week PIRs are getting consume which I do not want. Is there any way to restrict it.
    I did not maintained anything in consumption mode field, and I tried with 2, 1, 1 also. I have checked consumption mode settings in SPRO where I maintained 0 for plant.
    How to stop consuming next week PIRs.

    Changed MRP group settings.

Maybe you are looking for

  • Error While Entering the Data: Code and Name

    Hi Experts, I have defined the Two User Defined tables and SBO created Two User Defined Forms. i am able added the Data in One of the Form with the same value in Code columns for multiple rows and different value in Name columns for multiple rows. bu

  • Monitor question and more

    Hi all, I recently connected my iBook to a projector. Number one, I had to restart my computer to get the connection to work. Is this normal? Sometimes I plug in and it starts right up and other times I have to restart it. Is this a sign of a bigger

  • Mi boton home no funciona, como hago para arreglarlo? My home button doesn't work, how can I fix it?

    Mi boton de home no funciona, desde hace rato, pero no se como arreglarlo? la garantia de un año ya expiro, asi que no se que hacer! alguien sabe? gracias! My home button doesn't work, since for some time, but I don't know how to fix it? the one year

  • Looking for a way to load 100 pages without images/style

    Hi, I have a bookmark folder that contains nearly 100 pages I can right-click on the folder and choose "Open all in tabs", which is what I want, but I'd like to get rid of all the pictures/style otherwise it lags and eats too much bandwitdh. I don't

  • Sales employee sales

    hi all, can we capture sales employee related data in sales group. by doing this i can get the report employee wise