Combination of Fixed Lot size and Period lot size

Dear all
I have scenario as follows:
1. My supplier's standard packing size of a raw material is 1000 EA.
2. I want to follow period based lot size to optimise my order and inventory cost. But I don't want to use dynamic lot size which will propose dynamic quantity.
So my requirement is like I want to fix lot size as 1000 at material master and Period is Week. My proposal quantity must be 5000 EA for the following demand pattern:
Week 1:1200
Week 2: 1000
Week 3: 1100
Week 4: 1000
System must consider period as well as fixed quantity.
Kindly throw some light on this.
Advance thanks.

Hi
1.As you are looking for Weekly demand demand quanityt , you have to assign Weekly Lot Size : WB.
2. Goto OWD1   and Create a Rounding Profile which will rounds into Weekly Demand quantity for that plant and simulate .
3.Assign this rounding profile in MMR in MRP1
3.DO NOT assing  rounding valu as 1000 .Rather keep it blank
Hope this will solve the problem
Regards
JH

Similar Messages

  • Rounding Value,Minimum Lot Size and Maximum Lot Siz parameters

    Hello Gurus,
           Please explain me the what is the use of the parameter Rounding Value
    ,Minimum Lot Size and Maximum Lot Size parameters in the product master and how does it in impact during the Heuristic Run?
    Thanks.

    Rounding value is the incremental quantities in which the order can be produced/procured. Eg. if orders are possible with quantities 40,60, 80, 100 etc..then rounding value is 20.
    Min lot size is the minimum quanity in which order can be produced eg. 40 in above example
    Max lot size is the maximum quanitity in which the order can be produced/procured. eg. 100 in our example
    Impact on Heuristic run: heuristics takes all the above parameter to plan supply order. eg. if requirement is 55, it will supply plan for 60. If requirement is 120, it will produce two orders - one for 100 and the other for 20. if the reuqirement is 10, the order size will be 40.
    Hope this helps.

  • In process Inspection  Lot Qty and Actual Lot quantity difference.

    Hi Experts,
    In case of  In process Inspection
    Scenario : 1. Production Order created, released but before saving the qty is changed.
                    2. Production Order created released and saved. Then qty is changed in Change Prod order txn.
    These scenarios are causing a discrepancy in  Inspection  Lot Qty and Actual Lot quantity. Is there any method to avoid this ?
    This can be made correct in  Inspection lot by resetting the sample calculation. But once confirmation has started for Prodn Order (not necessarily QC operation) or  RR has been done  resetting is not possible.
    Is this the std behavior ? Disallowing the resetting once RR done seems OK, but even if any of the operation in Prodn Order is confirmed it still give status error while resetting. Canceling all the confirmation all the way back  also does not solve the problem.
    Any suggestions ?
    Regards
    Joe

    Hi
    Although your suggestion is valid, it is not practical from user point of view.
    Moving this thread to QM forum.
    Rgds

  • Fixed lot size and Minimum lot size

    Dear senior,
    My client has the following scenario. His supplier provides the item in a fixed lot size of 100. The minimum lot size to be ordered is 300.
    The supplier is a fixed vendor.
    I tried to maintain this information in the Material Master MRP views. Lot size  - FX, Fixed lot size - 100, Minimum lot size - 300.
    However, everytime, the minimum lot size will get reset.
    Is there any way , I can maintain this scenario via configuration or any other method?
    Thank you.

    Hi,
    Fixed lot size - 100 means for every 100 quantity system will create one purchase document.
    If you selected Lot size - FX - Fixed order quantity , then no need to maintain Minimum lot size & Maximum lot size fields.
    Then you have to maintain Fixed lot size filed only.
    Ex: 
    Lot size = FX
    Fixed lot size = 100
    There is a requirement of 300. Then system will create 3 PO's with quantity of 100 each.
    If Lot size is Ex - Lot-for-lot order quantity, then only need to maintain Minimum lot size & Maximum lot size fields in the MRP 1 view.
    Ex: Lot size = EX
    Minimum lot size = 60
    Maximum lot size = 100
    There is a requirement of 250. Then system will create 3 purchase documents, two documents with the quantity of 100 and third one with the quantity of 60.
    That's why, in your case system is reseting Minimum lot size every time.
    If you want to maintain Minimum lot size, then maintain
    Lot size as EX
    Minimum lot size = 100
    Max lot size = 300
    It will solve your problem.
    Regards
    KRK

  • Urgent: Huge diff in total redo log size and archive log size

    Dear DBAs
    I have a concern regarding size of redo log and archive log generated.
    Is the equation below is correct?
    total size of redo generated by all sessions = total size of archive log files generated
    I am experiencing a situation where when I look at the total size of redo generated by all the sessions and the size of archive logs generated, there is huge difference.
    My total all session redo log size is 780MB where my archive log directory size has consumed 23GB.
    Before i start measuring i cleared up archive directory and started to monitor from a specific time.
    Environment: Oracle 9i Release 2
    How I tracked the sizing information is below
    logon as SYS user and run the following statements
    DROP TABLE REDOSTAT CASCADE CONSTRAINTS;
    CREATE TABLE REDOSTAT
    AUDSID NUMBER,
    SID NUMBER,
    SERIAL# NUMBER,
    SESSION_ID CHAR(27 BYTE),
    STATUS VARCHAR2(8 BYTE),
    DB_USERNAME VARCHAR2(30 BYTE),
    SCHEMANAME VARCHAR2(30 BYTE),
    OSUSER VARCHAR2(30 BYTE),
    PROCESS VARCHAR2(12 BYTE),
    MACHINE VARCHAR2(64 BYTE),
    TERMINAL VARCHAR2(16 BYTE),
    PROGRAM VARCHAR2(64 BYTE),
    DBCONN_TYPE VARCHAR2(10 BYTE),
    LOGON_TIME DATE,
    LOGOUT_TIME DATE,
    REDO_SIZE NUMBER
    TABLESPACE SYSTEM
    NOLOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;
    GRANT SELECT ON REDOSTAT TO PUBLIC;
    CREATE OR REPLACE TRIGGER TR_SESS_LOGOFF
    BEFORE LOGOFF
    ON DATABASE
    DECLARE
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    INSERT INTO SYS.REDOSTAT
    (AUDSID, SID, SERIAL#, SESSION_ID, STATUS, DB_USERNAME, SCHEMANAME, OSUSER, PROCESS, MACHINE, TERMINAL, PROGRAM, DBCONN_TYPE, LOGON_TIME, LOGOUT_TIME, REDO_SIZE)
    SELECT A.AUDSID, A.SID, A.SERIAL#, SYS_CONTEXT ('USERENV', 'SESSIONID'), A.STATUS, USERNAME DB_USERNAME, SCHEMANAME, OSUSER, PROCESS, MACHINE, TERMINAL, PROGRAM, TYPE DBCONN_TYPE,
    LOGON_TIME, SYSDATE LOGOUT_TIME, B.VALUE REDO_SIZE
    FROM V$SESSION A, V$MYSTAT B, V$STATNAME C
    WHERE
    A.SID = B.SID
    AND
    B.STATISTIC# = C.STATISTIC#
    AND
    C.NAME = 'redo size'
    AND
    A.AUDSID = sys_context ('USERENV', 'SESSIONID');
    COMMIT;
    END TR_SESS_LOGOFF;
    Now, total sum of REDO_SIZE (B.VALUE) this is far less than archive log size. This at time when no other user is logged in except myself.
    Is there anything wrong with query for collecting redo information or there are some hidden process which doesnt provide redo information on session basis.
    I have seen the similar implementation as above at many sites.
    Kindly provide a mechanism where I can trace which user is generated how much redo (or archive log) on a session basis. I want to track which all user/process are causing high redo to generate.
    If I didnt find a solution I would raise a SR with Oracle.
    Thanks
    [V]

    You can query v$sess_io, column block_changes to find out which session generating how much redo.
    The following query gives you the session redo statistics:
    select a.sid,b.name,sum(a.value) from v$sesstat a,v$statname b
    where a.statistic# = b.statistic#
    and b.name like '%redo%'
    and a.value > 0
    group by a.sid,b.name
    If you want, you can only look for redo size for all the current sessions.
    Jaffar

  • How do find all database slog size and mdf file size ?

    hi experts,
    could you share query to find all databases log file size and mdf file (includes ndf files ) and total db size ? in MB and GB
    I have a task to kae the dbs size  around 300 dbs
    ========               ============     =============        = ===        =====
    DB_Name    Log_file_size           mdf_file_size         Total_db_size           MB              
    GB
    =========              ===========               ============       ============     
    Thanks,
    Vijay

    Use this ViJay
    set nocount on
    Declare @Counter int
    Declare @Sql nvarchar(1000)
    Declare @DB varchar(100)
    Declare @Status varchar(25)
    Declare @CaptureDate datetime
    Set @Status = ''
    Set @Counter = 1
    Set @CaptureDate = getdate()
    Create Table #Size
    SizeId int identity,
    Name varchar(100),
    Size int,
    FileName varchar(1000),
    FileSizeMB numeric(14,4),
    UsedSpaceMB numeric(14,4),
    UnusedSpaceMB numeric(14,4)
    Create Table #DB
    Dbid int identity,
    Name varchar(100)
    Create Table #Status
    (status sql_Variant)
    Insert Into #DB
    Select Name
    From Sys.Databases
    While @Counter <=(Select Max(dbid) From #Db)
    Begin
    Set @DB =
    Select Name
    From #Db
    Where @Counter = DbId
    Set @Sql = 'SELECT DATABASEPROPERTYEX('''+@DB+''', ''Status'')'
    Insert Into #Status
    Exec (@sql)
    Set @Status = (Select convert(varchar(25),status) From #Status)
    If (@Status)= 'ONLINE'
    Begin
    Set @Sql =
    'Use ['+@DB+']
    Insert Into #Size
    Select '''+@DB+''',size, FileName ,
    convert(numeric(10,2),round(size/128.,2)),
    convert(numeric(10,2),round(fileproperty( name,''SpaceUsed'')/128.,2)),
    convert(numeric(10,2),round((size-fileproperty( name,''SpaceUsed''))/128.,2))
    From sysfiles'
    Exec (@Sql)
    End
    Else
    Begin
    Set @SQL =
    'Insert Into #Size (Name, FileName)
    select '''+@DB+''','+''''+@Status+''''
    Exec(@SQL)
    End
    Delete From #Status
    Set @Counter = @Counter +1
    Continue
    End
    Select Name, Size, FileName, FileSizeMB, UsedSpaceMB, UnUsedSpaceMB,right(rtrim(filename),3) as type, @CaptureDate as Capturedate
    From #Size
    drop table #db
    drop table #status
    drop table #size
    set nocount off
    Andre Porter

  • Data retrieval buffers - buffer size and sort buffer size

    Any difference to tune BSO and ASO on data retrieval buffers?
    From Oracle documentation, the buffer size setting is per database per Essbase user i.e. more physical memory will be used if there are lots of concurrent data access from users.
    However even for 100 concurrent users, default buffer size of 10KB (BSO) or 20KB (ASO) seems very small compare to other cache setting (total buffer cache is 100*20 = 2MB). Should we increase the value to 1000KB to improve the data retrieval performance by users? The improvement impact is the same for online application e.g. Hyperion Planning and reporting application e.g. Financial Reporting?
    Assume 3 Essbase plan types with 100 concurrent access:
    PLAN1 - 1000KB * 100 = 100MB 1000KB * 100 = 100MB (total sort buffer size)
    PLAN2 - 1000KB * 100 = 100MB 1000KB * 100 = 100MB (total sort buffer size)
    PLAN3 - 1000KB * 100 = 100MB 1000KB * 100 = 100MB (total sort buffer size)
    Total physical memory required is 600MB.
    Thanks in advance!

    256 samples Buffer size will always give you a noticable amount of latency. If you use Software Monitoring you should try setting your Buffer to 64 samples. With the recording delay slider in the preferences->Audio you can compensate for the latency (of course not in realtime) so that the Audio will be placed exactly there, where it should hae been recorded at. In your case set it to a -value. A loopback test (check the link below) will clarify the exact amount of Latency occuring on your system.
    http://discussions.apple.com/thread.jspa?threadID=1883662&tstart=0

  • How can I switch off the automatic window size and set the size of the window manually

    I need to open the web-page in a window of a certain size. The javascript function window.resizeTo (w, h) does not work. If I open the window using the window.open ("", "", "width: w, height: h, ..."), there is another problem.
    The hyperlinks that have to be opened in a new tab in the same window or at least in the window of the same size, will open in another tab of the first window from which I called window.open().
    I do not know what it is, bug or as intended, but the normal full-featured window with the right size I cannot get.
    In Russian:
    Мне нужно открыть страницу в окне определенных размеров.
    Из консоли Firebug с помощью javascript пробовал window.resizeTo(w,h) - не работает. Если открывать окно с помощью window.open("", "", "width:w, height:h, ..."), то возникает другая проблема: ссылки, которые должны окрываться в новой вкладке в том же окне или хотя бы в окне того же размера, открываются в другой вкладке первого окна, из которого я выполнял команду window.open(), которое неправильного размера.
    Не знаю, что это. Баг или так задумано. Но открыть нормальное полноценное окно с нужными размерами не получается никак.

    You need an extension if you want to set the window dimensions to a specific value or you need to open a pop-up window with window.open and specify the width and height.<br />
    Otherwise a new window opens with some default dimensions as saved in localstore.rdf and you can't easily adjust the dimensions via JavaScript in that case.

  • Set cell size and set print size as template change bottom as .25

    IO need to set  crop size i as 4x5/8x10...as standard

    InDesign is a pretty complex application to learn on your own.
    As soon as possible, acquire a good book on InDesign. My recommendation for beginners is Sandee Cohen's "InDesign QuickStart Guide." There are editions for different versions for InDesign. Less than $20.
    InDesign CS5 for Macintosh and Windows: Visual QuickStart Guide

  • Document size and final print size

    I am beginning a new aerial drawing in Illustrator CS4 on an 2009 imac, to be printed at 40x40". If the document is sized at 40x40, the computer slows down as detail accumulates. Since Illustrator is a vector-based application, can the document size be set smaller than the final print size, say at 20x20" or 10x10", to keep file size down and speed faster, without losing print quality? 
    Thanks for any help!

    function(){return A.apply(null,[this].concat($A(arguments)))}
    without losing print quality?
    Depends on the specific content of the file and what exactly you mean by 'setting the document size smaller.'
    Better would be to try to discern what is causing the performance issue. Again, that comes down to what the content is.
    JET

  • Is tablespace block size and database block size have different meanings

    at the time of database creation we can define database block size
    which can not be changed afterwards.while in tablespace we can also
    define block size which may be different or same as define block size
    at the time of database creation.if it is different block size from
    the database creation times then what the actual block size using by oracle database.
    can any one explain in detail.
    Thanks in Advance
    Regards

    You can't meaningfully name things when there's nothing to compare and contrast them with. If there is no keep or recycle cache, then whilst I can't stop you saying, 'I only have a default cache'... well, you've really just got a cache. By definition, it's the default, because it's the only thing you've got! Saying it's "the default cache" is simply linguistically redundant!
    So if you want to say that, when you set db_nk_cache_size, you are creating a 'default cache for nK blocks', be my guest. But since there's no other bits of nk cache floating around the place (of the same value of n, that is) to be used as an alternate, the designation 'default' is pointless.
    Of course, at some point, Oracle may introduce keep and recycle caches for non-standard caches, and then the use of the differentiator 'default' becomes meaningful. But not yet it isn't.

  • I would like to know how to increase the window size and message font size on the the Three Button Dialog.vi

    I like using the Three Button Dialog .vi. However, I am doing a job were I need to use a larger font size. I tried to adjust the core vi but could not make it do what I wanted. Any help would be great.

    Jeff Bohrer wrote:
    1: VI Properties Window Size- Check maintain proportions of window for different monitor resolutions.  (Your users will thank you)
    Jeff,
    Why do you think that is a good idea?  When I opened your VI on my screen, the buttons were cut off at the bottom, and there was a slight cutoff on the right side.  Without scrollbars or the ability to resize the panel, (which I generally wouldn't want on a dialog box anyway) there is no way to be able to see the whole dialog.
    Did your VI show all of the buttons and show all of the text box?  On mine it looked like this.
    What was your screen resolution and your monitor aspect ratio?  Mine is 1680 x 1050 for a 16:10 ratio.  I think you will have problems with checking this box.  I would recommend unchecking it.  Suppose you programmed on a 16:10 screen, but someone else has a 16:9, or even a 4:3.  That is going to screw up the appearance of the dialog unless you take the time to resize the buttons and text inside the dialog.  (And I feel checking the resize option inside the Window Appearance settings just never works right either.)
    If I was the user, I'd appreciate a dialog box that wasn't cut off. 
    Attachments:
    3ButtonDialog.PNG ‏6 KB

  • Discrepancy between iTunes Library size and stored folder size

    Hi
    I'm looking around for ways to clear up my computer's hard drive, and typically it seems that my iLife libraries seem to be the bulk of it. The main problem is that iTunes claims that my iTunes Library size is some 21GB, when the size of the "iTunes Library" folder claims all the music accounts to 26GB. This doesn't include any content in the 'TV Shows' or 'Movies' folders.
    The only thing I can think of is that not all of the music in my iTunes Music folder is in my iTunes Library... is there a simple way to check which ones aren't? Or is there another reason why there would be such a difference in the sizes?
    Thanks in advance.

    It may take some creative thinking rather than expertise to figure this one out.
    Oh, and my girlfriend got herself a standard MacBook a month ago, which has possibly sown the seeds of envy since it has as much RAM and a faster processor than my PowerBook MacBook Pro-wise, let's see what MacWorld in 2 weeks brings
    Then, it may be time to talk to the bank - or the finance people at Apple - about how best I can pretend I can afford one

  • Rounding value and Minimum lot size

    Hi all,
    Finish material is X and Raw material is Y.
    Bom- For Preparing Xu2019s 1 Qty, 1 Qty of Y is required 
    In Material Master of Y - Rounding value and minimum lot size is 10,
    Project needs 5Qty of X.
    When MD51 for Project execute u2026 PR of Y must be of 10 as per rounding value and minimum lot size, but it is creating PR of 5 qty.
    Above scenario working properly if I take MRP run with MD02 for material X for 10qty, after MRP PR of Y will be created for 10qty.
    With Regards,
    Ashish

    Dear,
    By default, the lot size works as lot-for-lot quantity in the make-to-order and project scenario.
    Go to OMI4 select your Lot size and define Lot Size: SOP  1 or 2Lot-for-lot with rounding. Better create new Lot size as ZX with these setting.
    If you always want lots to be created for the multiple of the rounding value, you must specify a minimum a multiple of the rounding value.
    Example: minimum lot size: 10 and rounding 10.
    Please try and come back.
    Regards,
    R.Brahmankar

  • Issuance (pack size) Qty and Minimum Lot Size

    Hi Experts,
    I have a problem, I have to maintain Minimum Lot Size and issuance (pack size) in the material master. Suppose Minimum Lot size of one material is 2000 and Pack size vendor provides is 400.
    Means, when we place order, minimum order can be made for 2000 Nos and when we issue the material to WIP from Main Store the minimum issue quantity should be 400.
    How can we map in the system.
    Please help me.
    GR

    Dear,
    I would like to suggest as :
    Maintain the Base unit of measurement for material as PAK/CARTON/EA.
    In additional data, unit of measurement mention 400pc = 1 ea/carton.
    Whenever issue the material from stores, the quantity should be 1 ea (i.e 400 pcs) basing on base unit of measurement.
    Now comes to minimum order quantity should be 2000 pcs.
    Maintain ORDER UNIT in purchase tab of material master as PC.
    To restrict the order quantity must be 2000 pcs, In that vendor master
    Order optimisation restrictions u2013 quantity. This is useful while ordering the vendor.
    For example if the quantity to shipped from this vendor you enter as 2000 pcs. When creating purchase order, if quantity is less than 2000 the system will give message.
    Try this in quality with a full cycle of documents.
    Regards,
    Syed Hussain.

Maybe you are looking for

  • How to rotate and translate an object at the same time??

    Hi, I have a problem with rotation and translation of an object at the same time. I wrote a behovior class for my object (a cylinder). When some conditions are true the cylinder is added to a robot arm. Then it is translated so that the cylinder woul

  • Replacing HTML tags using HTMLEditorKit etc.

    Hi Not sure if this is the best place to ask this. I've searched without finding much. Basically I am trying to create a HTML template system for output. User's can change the templates to change the program output. The templates are basic HTML with

  • HT4356 I'm having trouble just printing black & white from my Iphone

    I set up my printer to only print in black but for some reason when I print anything from my IPhone 4S it still tries to print in color...even though I don't want it to.  Any suggestions???

  • How do I stop Numbers from rounding results of a quotient?

    I'm trying to set up a spreadsheet that will automatically calculate what each of my housemates owes me for utilites. Currently, I have it set so that I can enter in one to three different bills and it will add them up, and it is set to divide the to

  • Problem iPhoto 09 & Printing with Epson R2880

    I have an Epson R2880 and I'm having print driver problems with iPhoto 09. I am using a Dual Processor G5 PowerMac running OS X 10.5.8. I've tried contacting Epson Support about this but they refuse to accept that the problem is anything to do with t