How To Add A New Organization To An ASCP Plan (Doc ID 395074.1)

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

11/25/2021 Document 395074.

1
Copyright (c) 2021, Oracle. All rights reserved. Oracle Confidential.

How To Add A New Organization To An ASCP Plan (Doc ID 395074.1)

In this Document

Goal
Solution
References

APPLIES TO:

Oracle Advanced Supply Chain Planning - Version 11.5.10 and later


Information in this document applies to any platform.

FORM:MSCFPPMR.FMB - Define Plan Options

FORM:MRPFUDPP.FMB - Define Planning Parameters


GOAL

How can I add a new organization to the Advanced Supply Chain Plan?
I have setup the organization in Inventory application and collected the
data, but the organization is not present in the Plan
Options / Organization Tab in the List of Values.

SOLUTION

When a new organization is setup, either Discrete or OPM, there are two additional steps that are required to make the
organization available for planning in addition to the setups in the Inventory / Setup / Organizations / Parameters screen.

1. The Planning Parameters must be created for the organization and then collected by Data Collections
2. The Organization Security must be defined.

For #1, do the following:


NAV: Material Planner Responsibility / Setup / Parameters


- choose the new organization, then define the parameters
and save the changes.
- most of the parameters will default, others may be setup as desired

- Run Data Collections to collect these parameters to the APS application


- Reference: Defining Planning Parameters - pg 1-19

Oracle Master Scheduling/MRP and Oracle Supply Chain Planning User Guide
RELEASE 11i Volume 1 February 2001

For #2, do the following:


NAV: Advanced Planning
Administrator / Admin / Organization Security
- choose the responsibility being used to define the plans

- Find the organization in the list on the left and move to the list on the right, then save
- Reference: Organization Security - pg 17-59

Oracle Advanced Supply Chain Planning Implementation and User’s Guide


Release 11i Part No. B10144-10 July 2006

Once the Inventory Organization setup is completed the organization appears in MSC_TRADING_PARTNERS table

Once the Planning Parameters setup is performed, then the row for the organization will be present MSC_PARAMETERS

The Organization Security setup places a row in MSC_ORG_ACCESS for the Responsibility ID that was specified in the Org
Security form.

https://support.oracle.com/epmos/faces/DocumentDisplay?_adf.ctrl-state=14922b940g_535&id=395074.1 1/2
11/25/2021 Document 395074.1

With these setups the lookup SQL will be satisfied and the organization will be available in the LOV
If the Organization does not appear as expected, modify the Where clause to find the condition that fails for help diagnose the
issue.

SELECT

mrp.organization_id,
pt.organization_code,

pt.partner_name name ,

mrp.consider_wip,

mrp.consider_po,

mrp.consider_reservations,
mrp.plan_safety_stock,

pt.sr_instance_id

FROM

msc_trading_partners pt,
msc_parameters mrp

WHERE

pt.sr_tp_id = mrp.organization_id and


pt.sr_instance_id = mrp.sr_instance_id
and
pt.partner_type=3 and

trunc(nvl(pt.disable_date, sysdate+1)) > trunc(sysdate) and


exists (select 'x' from msc_org_access mso where mso.organization_id = pt.sr_tp_id and
mso.sr_instance_id = pt.sr_instance_id and

rownum = 1 and

mso.responsibility_id = fnd_global.resp_id) order by pt.organization_code



Check setups that have been defined using:



SELECT a.RESPONSIBILITY_NAME, c.organization_code, b.* FROM FND_RESPONSIBILITY_VL a,


msc_org_access b, msc_trading_partners c

where a.RESPONSIBILITY_ID= b.RESPONSIBILITY_ID


and c.sr_tp_id = b.organization_id

and partner_type = 3

and organization_code
is not null

and responsibility_name like '&responsibility_name'


order by RESPONSIBILITY_NAME, b.organization_id ;

You can also consult Note 428640.1 for more information

REFERENCES

NOTE:428640.1 - How to Setup A New Organization So It Can Be Used In Advanced Supply Chain Planner
Didn't find what you are looking for?

https://support.oracle.com/epmos/faces/DocumentDisplay?_adf.ctrl-state=14922b940g_535&id=395074.1 2/2

You might also like