Min/Max  Internal Orders 1 Requisition

We are running Min/Max planning to replenish stock in an "Emergency Warehouse" organization. The requisition import kicks off internal orders to a replenishment organization. The planner in the replenishment organization would like one order for each Min/Max run. The requisition group-by default in Purchasing parameters is vendor yet we are still seeing one unique requisition for each item thus creating one unique internal sales order per item. Thoughts?

Stick wrote:
The requisition group-by default in Purchasing parameters is vendor yet we are still seeing one unique requisition for each item thus creating one unique internal sales order per item. Thoughts?In this case the requisitions will not be grouped by Vendor because the supply source is Inventoy which is creating internal requisitions and not purchasing requisition (source is Supplier/ Vendor).
It is important to know how you are importing requisitions and what value is specified for Group By parameter during import. The value you setup in Purchasing Options defaults in the Requisition Import request parameter screen, but this can be changed before submission. So it is possible in your case that requisitions are imported using a different group by than what is specified in Purchasing Options.
From the list of different group by options available (All, Buyer, Category, Item, Supplier) you can probably use 'Location' during requisition import.
Location: Group requisition lines for each delivery location on a separate requisition.
But this will not guarantee 100% success because:
- If you import requisitions with source as INV then those can include requisitions from different INV sources generated from Reorder, Kanban etc having same delivery location. In that case all those requisitions will be grouped under a single header having same location.
- there may be different users running requisition import manually and some may forget to change this group by parameter (defaulted from purchasing options) while importing Min-Max planned requisitions (again they cannot segregate Min-Max, they can just specify INV as source)
A better solution would be to use the oracle provided custom hook (po_reqimp_pkg.post_validate_user_extensions) for requisition import to populate the GROUP_CODE column in PO_REQUISITIONS_INTERFACE table. The logic inside the hook should identify the rows in the interface table generated from each run of Min-Max and populate a unique value for all those rows in the GROUP_CODE column. You need a small piece of code to be added inside the hook.
You can also use REQ_NUMBER_SEGMENT1 column in the interface table to populate an unique value for all rows you want to group together. But in this case the value you specify will become the requisition number if there are no conflicts with the requisition number rule. Both these column, when populated, have precedence over Group by parameter. 1st priority GROUP_CODE (if populated). If GROUP_CODE is not populated then it checks REQ_NUMBER_SEGMENT1. If this is also blank then it uses Group By parameter.
Thanks
Supro

Similar Messages

  • R/S Internal Order Requisitions in ASCP 11.5.9

    Have a recommendation to reschedule an internal order. Fully realize that this has no impact on the internal sales order. Would like to see the internal requisition get rescheduled. Sometimes it works...and most times the internal requisition does not get updated. Thoughts?

    You are correct. Its a known issue and I dont see any resolution happening on this.
    ASCP plans do create reschedule and cancellations of IR's but these CANNOT be released successfully to the source instance if the IR has been interfaced to OM. As soon as the ISO is created, the IR cannot be changed in purchasing and reschedules will fail.
    I think in R12 the same has been overcome in Distribution planning alone (DRP) and not even in ASCP if I am correct.

  • Vendor details for a Min Max requisitions

    Hi All
    When Min Max trigger some requisition interface lines, we need to get the vendor details also be populated,
    What set up it need to get these. Because when I run a Min-Max planning report, I am not getting the vendor details.
    What we have is we will be having a single item be with a single vendor and vendor site
    Please help.

    In the General planning tab for Sourcing type is it mentioned as Supplier?
    Is the use ASL flag in the Purchasing tab for the item enabled?
    The supplier and site details are active?
    The ASL for this item is still active ? (Check in the supplier line details in the ASL form)
    My funtional guy says yes to all the above quries.
    And also says All ASL have the sourcing rules assigned to the assignment set that is setup on the MRP: Default Sourcing Assignment Set profile, but this scenario is only for minmax
    So this issues is only for MIN-MAX.Please let me know if any thing to be done in setup to automatically get the
    vendor details into requistions lines of interface table based on items.
    Edited by: 834095 on Mar 14, 2011 2:59 AM

  • Alternate of Min/Max

    I have a query which uses Min function.
    I want to use something alternate in order to avoid Min/Max or order by.
    I have a query which selects a row based on the min value of one of its column.
    how to avoid the use of min..
    ex:
    a query is like
    Select a.name from all_names a
    where a.active_date = (select min(active_date) from all_names ))

    Manas,
    Did you get Hoek's example Query, here is the Tested example run
    SQL> select * from emp e
      2  where not exists ( select null
      3  from emp x where x.hiredate < e.hiredate)
      4  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-80        800                    99
    SQL> select * from emp e
      2  where e.hiredate
      3  = ( select min(hiredate) from emp )
      4  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-80        800                    99Explain Plans
    SQL> explain plan for
      2  select * from emp e
      3  where not exists ( select null
      4  from emp x where x.hiredate < e.hiredate);
    Explained.
    SQL> select * from TABLE(DBMS_XPLAN.DISPLAY)
      2  /
    PLAN_TABLE_OUTPUT
    Plan hash value: 2238887044
    | Id  | Operation           | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT    |      |    13 |   585 |     8  (25)| 00:00:01 |
    |   1 |  MERGE JOIN ANTI    |      |    13 |   585 |     8  (25)| 00:00:01 |
    |   2 |   SORT JOIN         |      |    14 |   518 |     4  (25)| 00:00:01 |
    |   3 |    TABLE ACCESS FULL| EMP  |    14 |   518 |     3   (0)| 00:00:01 |
    |*  4 |   SORT UNIQUE       |      |    14 |   112 |     4  (25)| 00:00:01 |
    |   5 |    TABLE ACCESS FULL| EMP  |    14 |   112 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       4 - access(INTERNAL_FUNCTION("X"."HIREDATE")<INTERNAL_FUNCTION("E"."H
                  IREDATE"))
           filter(INTERNAL_FUNCTION("X"."HIREDATE")<INTERNAL_FUNCTION("E"."H
                  IREDATE"))
    20 rows selected.
    SQL> explain plan for select * from emp e
      2  where e.hiredate
      3  = ( select min(hiredate) from emp )
      4  /
    Explained.
    SQL> select * from TABLE(DBMS_XPLAN.DISPLAY)
      2  /
    PLAN_TABLE_OUTPUT
    Plan hash value: 1876299339
    | Id  | Operation           | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT    |      |     1 |    37 |     6   (0)| 00:00:01 |
    |*  1 |  TABLE ACCESS FULL  | EMP  |     1 |    37 |     3   (0)| 00:00:01 |
    |   2 |   SORT AGGREGATE    |      |     1 |     8 |            |          |
    |   3 |    TABLE ACCESS FULL| EMP  |    14 |   112 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter("E"."HIREDATE"= (SELECT MIN("HIREDATE") FROM "EMP" "EMP"))
    15 rows selected.I hope your query is answered.
    SS

  • Min-Max Planning: Unable to generate requisition

    Hi,
    Trying to generate Internal Requisition for a Buy item in Vision Instance.
    Min Max report log shows the following error:
    [10-FEB-15 15:55:21] INV_Minmax_PVT.re_po: 252331: p_organization_id: 207, p_approval: 3, p_src_type: 1, p_encum_flag: N, p_customer_id: 1021, p_employee_id: 32118, p_description: Min Max Buy Item Sourced Internally, p_src_org: , p_src_subinv: , p_subinv: , p_location_id: 207, p_po_org_id: 204, p_pur_revision: 2
    [10-FEB-15 15:55:21] INV_Minmax_PVT.re_po: 252331: Null src type or invalid transact_flag, order_flag or purch_flag
    [10-FEB-15 15:55:21] INV_Minmax_PVT.re_po: 252331: 1, User-Defined Exception
    [10-FEB-15 15:55:21] INV_Minmax_PVT.get_reord_stat: 252331: do_restock returned message: Unable to generate requisition
    [10-FEB-15 15:55:21] INV_Minmax_PVT.RUN_MIN_MAX_PLAN: 252331: Reord qty: 80, Reorder status: Unable to generate requisition, l_sortee: NEW.MISC
    [10-FEB-15 15:55:21] INV_MMX_WRAPPER_PVT.EXEC_MIN_MAX($Revision: 120.6 $): 252331: INV_Minmax_PVT.run_min_max_plan returned success
    Pls refer to screenshots for setups done.
    Regards,
    Abhishek

    Hi,
    One more thing you have to verify for IR-ISO  at Item level.
    Verify 'Internal Ordeded' attribute is checked in Order Management tab or not.
    Please check out following link for more details .
    http://raghuoaf.blogspot.in/2013/09/internal-requisition-setup-in-oracle.html
    http://www.oracleappshub.com/oracle-purchasing/10-min-guide-for-internal-requisition-to-internal-sales-order-flow/

  • Min-Max Planning Generating Purchase Requisitions

    We have been using min-max planning for a while and scheduling the min-max planning report (planning level: organization) to run every evening to generate a purchase requisition. Of late we have some items that are showing a reorder quantity but not generating a purchase requisition. We have verified the set up of those items against items that are generating a requisition and can't see a difference. What are the possible causes of items not generating a requisition when using min-max planning?
    Thank you!

    Make sure Item Settup has the "List price" Given.
    Source is set to " Supplier"
    When you are running the Min-Max Report, it should have the Parameter "ReStock" to "Yes".
    Since the records has to come from the Inventory to the Purchasing Module there is possibility that Records might be there in Interface tables. Run the "requisition Import" program and see if it address your issue.
    Thanks and regards,
    Phani

  • Min/max MRP and double star planned order

    Hi,
        What does setting up materials for min/max mean ? Is it just some concept r does it involve some specific settings in the material master ? I know there are minimum and maximum lot sizing procedures available. Are these to be taken into account to set materials up for min/max ?
    What does a planned order with two stars in the MD04 screen mean?
    Thanks

    Dear,
    Single *** means order is Firmed and **** means Capacity planning has been done for the  planned order.
    There is "storage location" MRP with min max levels.
    Have a look at the fields on the MRP screens in the material master and you will see the settings you can choose from.
    There should be no need for any config as long as your basic MRP config is there.
    The normal MRP run will then try to maintain the correct stock level in that storage location and you use the special procurement keys on the material master to determine where the stock should come from to replenish that storage location.
    Go to TcodeOMIA  here you will find min max for your plant.
    Regards,
    R.Brahmankar

  • Updating Price and Supplier at Requisition interface table after Min/Max

    Hello,
    We have requirement of updatig requisition data at interface table once Min/Max planning is completed.
    We need input here like what would be the behaviour of Standard Requisition import program if we update price and supplier details at interface table after Min.Max planning and before running the Requisiton import.
    Quick reponse will help us to move forward on this requirement.
    Thanks
    Devaraj.K

    Hi,
    Yes, we are using sourcing rules, so whenever i update the interface table with Price and Supplier detials after Min/Max then the Req.Import should not consider the Sourcing rules, it should create requisiton based on the values (Price and Supplier)provided at interface tanle.
    Quick reponse would helpful us to move further on this,
    Thanks in advance,
    Devaraj.K

  • Budgeting through Internal Order - Issues in Purchase Requisition

    Hi All,
    I have posted the issue in ERP Matyerial Management Forum also, but since this has a lot to do with CO-Internal Order, so posting the same here.
    Objective: We want to activate Commitment Update and budgeting for Capital purchases thrugh Internal Order. Budgeting is done for IO.
    For the budgeting to get activated in Purchase requisition, Internal Order tagged to the Asset should be present/seen in the PR.
    For PR with Account assignment Cat as 'A', I am not able to see the Internal order (mapped to the asset) in PR. The field 'Internal Order' in PR is coming BLANK despite the fact that the Asset used in the PR has been tagged to a valid Internal Order (of the Object Class - Investment, with Commitment update activated).
    What other setting is missing?
    Pls note the following:
    1) Account assignment cat 'A' has been set to DISPLAY CO/PP order ( T code - OME9)
    Issue is that this field in the PR is NOT getting populated at all.
    2) Commitment management, Availability Control have also been activated in the system
    . Internal Order status management has also been checked.
    Any help in this respect will be highly appreciated
    Thanks
    Gayathri

    Hi Gayatri,
    when you are saying"budgeting for Capital purchases thrugh Internal Order",how do you use account assignment category "A"?
    if your requirement is budgeting for capital purchases through IO then you should use account assignment category in respective PR.Automatically it will control budget/commitment wrt those internal orders.
    Hope this helps you.
    Ashok

  • Min Max Planning Error-Unable to generate requisition

    when we run min max planning in test instance for certain items we get the the below error:
    “Unable to generate requisition”
    Checked the source type for the items which had this error.There is no Source type set for those items even then we get this error.Any help.
    Thanks

    Check
    Min/Max Planning Message: "Unable to Generate Requisition" [ID 113224.1]
    Getting Message "Unable to generate requisition" in the Output of the Min-Max Planning Report (INVISMMX) [ID 1265297.1]
    Hope this helps,
    Sandeep Gandhi

  • Internal order purchase requisition

    Hi everyone,
    I'm testing a purchase requisition for an IO object but it appears an error that the GL account cannot be used (please correct).
    I'm new here so please help.. thanks.

    Enter only internal order. It is not required to enter the GL account. The GL account will be automatically determined based on the material (valuation class in material master).
    Sangram

  • Min-Max is creating multiple requisitions

    Min-Max is creating multiple requisitions

    Min-max does create one requisition for each item that needs to be procured.
    However, you can override this seeded functionality by writing a custom code that updates group_code field in the po_requisitions_interface_all table after the min-max run but before the Requisition Import runs.
    Hope this helps,
    Sandeep Gandhi

  • Internal Order - Purchase Order -Purchase Requisition

    Hi,
    Can anyone please help me out with understanding how costs are posted to an internal order from Purchase Order/Purchase Requsition?  How to make commitments via PO/PR? And how is it settled onto an asset?
    Sorry its too much to ask. If anyone can guide me to a document explaining this online somewhere.
    Thanks,
    M

    Hi,
    Whenever you assign your PO/PR items to be issued on internal order, you will see the posting on it. You will have to activate commitment management in CO (OKKP). After the GR/IR process is done, and the cost are on I/O, you can settle it to an asset. In order to do so, you have to define a settlement profile for order type, create a settlement rule in the order (KO02) and run the settlement (KO88/KO8G).
    Regards,
    Eli

  • Min-Max Planning concept

    Hi Neils,
    Can you please throw a light on --> Min-Max Planning Concept and what is the formula for Min-Max
    regds
    MRR

    Hi MRR,
    Min-max planning is used to maintain inventory levels for all of your items or selected items. With min-max planning, you specify minimum and maximum inventory levels for your items. When the inventory level for an item (on-hand quantities plus quantities on order) drops below the minimum, Oracle Inventory suggests a new purchase requisition, internal requisition, move order, or job to bring the balance back up to the maximum.
    See the Inventory Users Guide > Planning and Replenishment > Min-Max Planning for more detailed description of the principles behind. In addition to Min-Max you may want to consider Reorder Point Planning where you bring demand figures into the calculations.
    If you would like to have sales orders or production demands on end-item or sub-assembly levels influence the planning of components then a type of MRP is needed to break down a product structure to lower level material requirements. For even more advanced planning where capacities, constraints and may be even different optimizations objectives are to be considered you have to look at the Advanced Plannning Suite of applications.
    Hope this helps ypu in the right direction.
    /Niels LM

  • Min Max Planning to replenish from a single sub inventory

    I am new to this site but could certainly use some help in a problem I am having. I am on a team in the process of implement discrete manufacturing. Here is the problem I am having. I am trying to set up min/max replenishment to a specific sub inventory. We currently have a centralized fabricated (make parts) store room. From that store room we move parts to variuos supermarkets with in the factory. From the supermarkets parts are component picked or kan ban replenished. The problem that I am having is that I want the replenishment trigger back to the sheet metal fabrication area to come from the "Centralized Make" parts storeroom. It is currently adding up all the locations or sub inventories the part number resides in to include RIP. I am being told that there is no way to limit the trigger to a single sub inventory.

    Sandeep, Thanks I was able to generate and run the report and it did look only that the specified sub inventory and suggested the reorder qty properly. After running the report under the item number it says "unable to generate requisition" How does the fabrication area get a signal to begin the fabrication process, create a discrete job or create a planne order or something? So far your recommendations have been right on target! Again thankyou.

Maybe you are looking for

  • My battery is getting bigger

    My battery on my 2006 MacBook was replaced with the battery recall in 2007(?). I just noticed it is growing, getting bigger. It should be a bad sign..... will explode, will be fire up.... Does anyone have experienced a bloating battery problems?

  • 2011 Mac Mini clicking sound

    Hi all, I just bought a 2.5 i5 mac mini yesterday with 5400rpm hardrive and I love it but every 20 seconds or so theres a faint clicking sound that comes from it.  Is this normal?  Thanks

  • Order of Photographs in iPhoto 6.0.2

    Hey there. I have recently been importing loads and loads of images into iPhoto, as you do. I have been using film and such, so have scanned in prints and film, arranged them in a folder, and imported that folder. Simulating the way a digital camera

  • Excess budget

    Dear all' i have released the asset p.o.   when i put A account assignment & asset no i got  the message " In document item 020 Order 600706, budget  for fiscal year 2011 was exceeded by 24,545.96 INR. " Message no. BP604 can anybody tell how to solv

  • Using Keys of Shortcuts in a Subpanel

    I HAVE An APPLICATION THAT INSERTS VI'S IN SUBPANEL. Does THOSE VI´S THAT you/they are INSERTED IN SUBPANEL POSSESS BUTTONS THAT NEED to HAVE KEYS OF SHORTCUTS, do they PUT WHEN THAT SAW it is OPENED IN SUBPANEL, don't THE KEYS OF SHORTCUT OF THESE B