Examples of resources, departments, routings

Hi,
I am looking for examples on how to set up resources, departments, and routings for capacity. I am really having a hard time trying to figure out how to do this. I'm not sure whether i need to break the resources down to people, machines, and time; or make it the number of people for a duration of time.....
I'm not sure how to tie it all together.
Is there documentation of examples for this anywhere, or can someone please share their setup?
Thank you very much
Suzanne

I had the same problem at first....
There are three levels to a routing when it comes to departments
and resources.
The top level is the Department Classes (many departments to
department classes), then there is Department (many resources to
departments). Department Classes are options.
In our example, you will have to create two resources in the
Resources form. Then in the Department form associate the
resources. This is all setup.
Now when you defined the routing, click on the operation
resources button, add the machine resource, units and time, the
second line is the people resource, unit and time (per person).
If three people run the machine, the machine resource should
have the run rate for the machine but the people resources
should have a units of 3 and 1/3 of the run rate. This will
then cost properly..
Hope this helps...
Wayne Harpenau
[email protected]

Similar Messages

  • Linking between departments within a division

    Hello,
    In what table do I see the link between departments and divisions in the SAP RPM tables?
    When configuring our system, in the customer classification section, we manually defined the divisions and the departments within each division.
    For example:
    Division- Energy
    Departments- Manufacturing, System management, Fuel Management
    I tried using /RPM/RELATION_D table but with no success. I did not find a correlation between the two.
    I need to find a table that when filtering on one specific division, it will dispaly all the departments within.
    With Kind Regards,
    Ayelet

    Hi Ayelet,
    A Classification Portfolio with related Classification Hierarchy can be found as follows:
    1. /RPM/PORTFOLIO_D (--> Hierarchy = X) for the classification portfolio
    2. /RPM/BUCKET_D for all the classification levels
    You can therefore see that classification hierarchies share the portfolio and bucket tables
    Please take a look and let me know.
    Does this answer your question?
    Regards
    C

  • Message-Driven Bean using @Resource annotation

    I am trying to run a Message-Driven Bean very simple example in https://glassfish.dev.java.net/javaee5/ejb/examples/MDB.html
    I configured MDBQueueConnectionFactory and MDBQueue properly on glassfish admin console.
    I cannot run the example using @Resource annotation. I don't understand why.
    @Resource(mappedName="MDBQueueConnectionFactory")
    private static QueueConnectionFactory queueCF;
    @Resource(mappedName="MDBQueue")
    private static Queue mdbQueue;But I can run this example modifying the source code using InitialContext instance and looking up for JMS Resources.
    InitialContext ctx = new InitialContext();
    QueueConnectionFactory queueCF=(QueueConnectionFactory)ctx.lookup("MDBQueueConnectionFactory");
    QueueConnection queueCon = queueCF.createQueueConnection();
    Queue mdbQueue=(Queue)ctx.lookup("MDB");
    queueSender.send(mdbQueue, msg);
    ...I want to figure out why @Resource annotation do not work well. Any help?
    Thanks in advanced any help.

    Thanks for your reply.
    The error that I get is a simple NullPointerException. Nothing else.
    Like you said, I develop a servlet and I can use @Resource annotation without static reference, and it works.
    public class TestMDB extends HttpServlet {
         private static final long serialVersionUID = 1L;
         @Resource(mappedName="MDBQueueConnectionFactory")
         private QueueConnectionFactory queueCF;
         @Resource(mappedName="MDB")
         private Queue mdbQueue;
         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              PrintWriter out = response.getWriter();
              out.println("TEST MDB "+queueCF);
              QueueConnection queueCon;
              try {
                   queueCon = queueCF.createQueueConnection();
                   QueueSession queueSession = queueCon.createQueueSession
                   (false, Session.AUTO_ACKNOWLEDGE);
                   QueueSender queueSender = queueSession.createSender(null);
                   TextMessage msg = queueSession.createTextMessage("hello");
                   queueSender.send(mdbQueue, msg);
                   out.println("Sent message to MDB");
                   queueCon.close();
              } catch (JMSException e) {
                   e.printStackTrace();
    }But my question were about using @Resource annotation on a standalone client. I always get NullPointerException.
    public class MDBClient {
        @Resource(mappedName="MDBQueueConnectionFactory")
        private static QueueConnectionFactory queueCF;
        @Resource(mappedName="MDB")
        private static Queue mdbQueue;
        public static void main(String args[]) {
         try {
                QueueConnection queueCon = queueCF.createQueueConnection();
                QueueSession queueSession = queueCon.createQueueSession
                    (false, Session.AUTO_ACKNOWLEDGE);
                QueueSender queueSender = queueSession.createSender(null);
                TextMessage msg = queueSession.createTextMessage("hello");
                queueSender.send(mdbQueue, msg);
                System.out.println("Sent message to MDB");
                queueCon.close();
            } catch(Exception e) {
                e.printStackTrace();
    }

  • Sharing resources among resource groups in Sun Cluster 3.1

    Hi all,
    Is it possible to share a resource among resource groups. For example:
    lh: resource of type Logical Hostname =lh-res
    /orahome: Oracle binaries and configuration files = orahome-res
    /oradata1: Data for instance 1 = oradata1-res
    /oradata2: Data for instance 2 = oradata2-res
    rg1 ( resource group for Oracle instance 1) ora1-rg = lh + orahome-res + oradata1-res
    rg2 (resource group for Oracle instance 2) ora2-rg = lh + orahome-res + oradata2-res
    Thanks,
    Enrique

    Hi Enrique,
    if lh represents the same address and the same resource name then the answer is: No not possible one resource can belong to only one resource group.
    If it would work and both rg's are running on different node you would create duplicate ip adress errors which can not be your intent.
    Which behavior do you want to achieve?
    Detlef

  • How to assign container resource to routing

    Hi,
    We have three container resources representing 3 storage tanks with capacity in kilograms. I am not able to assign the storage resources to routing. We are using discrete routing.
    Please help.
    Thanks,
    Andy

    Hi andrew3,
    Container resource functionality is available only in PP-PI manufacturing and not in Discrete manufacturing, because of which you are not able to assign this resources in routings
    Thanks and regards
    Sravan maturu

  • What is the resource control corresponding to each kernel parameter

    Hi
    I am trying to prepare (i.e. tune) a Solaris 10 instance for an Oracle 10g install using a Solaris 10 project.
    I am new to using Solaris 10 project resource controls so I might get some of this totally wrong.
    I know all of the "old" kernel parameter names: what each represents and its' required value and I know some of the corresponding resource controls but not all of them.
    That is I do not know the resource control corresponding to each and all of the kernel parameters.
    e.g. I know:
    semsys:seminfo_semmsl == process.max-sem-nsems == The maximum number of sempahores that can be in one semaphore set
    shmsys:shminfo_shmmax == project.max-shm-memory == The maximum size(in bytes) of a single shared memory segment
    shmsys:shminfo_shmmni == project.max-shm-ids == The number of shared memory identifiers
    But I do not know, for example, what resource control corresponds to:
    semsys:seminfo_semmns == The number of semaphores in the system
    Is there a list somewhere of the resource control corresponding to each of the kernel parameters ?
    I know I can set some kernel parameters in /etc/system but that should only be used for system - wide kernel parameters, right ?
    I know there are project, process, task and zone classes of resource controls.
    Can a resource control of any and all of these types be set in a project ?
    Are zone resource controls equivalent to system-wide resource controls ?
    Are there corresponding resource controls to all kernel parameters e.g. such as noexec_user_stack ?
    I have set noexec_user_stack in /etc/system.
    And finally - just to be sure - using a project makes the resource control values permanent, right ?
    Thanks
    Brett.

    Hi;
    Please check below which could be helpful for your issue:
    Kernel setup for Solaris 10 using project files [ID 429191.1]
    Regard
    Helios

  • Resource manger

    Hi All,
    I want to use resource manger in my database.
    The requirement is as below:
    Database version : 10.2.0.4
    No. of CPU's : 30
    The batch user runs the batch during the daytime window, and we want to restrict only the batch user to user say 30% CPU during the day time.
    In the night time, when the batch runs the batch user should be able to use as much CPU % as he wants, in other words all the CPU if no one else is using it
    Is it possible to achieve this using resource manager?
    Any idea how a multilevel plan can be used to have different percentage of CPU allocation for the same group during day and night?

    When I try to create a simple example with resource manager, it fails with following error
    SQL> exec DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA();
    PL/SQL procedure successfully completed.
    SQL> exec DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP(CONSUMER_GROUP => 'BATCH_GROUP', COMMENT => 'Resource consumer group/method for BATCH jobs');
    PL/SQL procedure successfully completed.
    SQL> exec dbms_resource_manager.set_consumer_group_mapping( attribute => dbms_resource_manager.oracle_user, value => 'TEST', consumer_group => 'BATCH_GROUP');
    PL/SQL procedure successfully completed.
    SQL> exec DBMS_RESOURCE_MANAGER.CREATE_PLAN(PLAN => 'BATCH_PLAN', COMMENT => 'Resource plan/method for Database');
    PL/SQL procedure successfully completed.
    SQL> exec DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(PLAN => 'BATCH_PLAN', GROUP_OR_SUBPLAN => 'BATCH_GROUP', COMMENT => 'Batch sessions', CPU_P1 => 30);
    PL/SQL procedure successfully completed.
    SQL> exec DBMS_RESOURCE_MANAGER.VALIDATE_PENDING_AREA();
    BEGIN DBMS_RESOURCE_MANAGER.VALIDATE_PENDING_AREA(); END;
    ERROR at line 1:
    ORA-29382: validation of pending area failed
    ORA-29377: consumer group OTHER_GROUPS is not part of top-plan BATCH_PLAN
    ORA-06512: at "SYS.DBMS_RMIN", line 402
    ORA-06512: at "SYS.DBMS_RESOURCE_MANAGER", line 437
    ORA-06512: at line 1
    What am i missing here?

  • Approvals for changes to a provisioned resource

    I need to create an approval process for updating individual fields on the process form. The resource does not allow multiple accounts, so the option to update it doesn't seem possible. I know there is something I am missing here.
    What is the best way to create an approval workflow for changes to an existing provisioned resource?
    Any suggestions are greatly appreciated!
    KC

    Hi,
    OIM dosn't support approval based resource modification,this is one thing we are lacking in OIM but there are few way to over come this.Here is one solution that I can think of.
    1.Create a dummy resource for example "OID Resource Modification".
    2.Create the resource form which will have all field name which can be modified.
    3.Let this field value flow into process form of OID Resource Modification.
    4.Create your approval process for this resource.
    5.Now in the provisioning process of OID Resource Modification you can have task which will update the process form of orignal resource.
    6.You will be requesting this resource modification.
    Please let me know if you have any questions.
    Regards
    Nitesh

  • Workflow for Resource Object Management

    Hi All,
    I'm attempting to perform resource object management on an LDAP resource and have the following questions for a workflow related to this:
    1. Do I need to checkout the view for the LDAP resource to perform resource object management (by this I mean something similar to creating or updating a group within LDAP)?
    2. I will also be using a custom resource adapter to perform resource object management on that adapter. Can I assume that similar mechansims for LDAP will apply to my custom resource adapter?
    3. Can anyone point me to some standard workflows for resource object management, point any further docs (I've through the workflows, views, and forms, as well as the deployment guide for resource adapters).
    4. Does anyone have any examples of resource object managment they would be willing to share and explain.
    All input welcome, Thanks.

    Hi there, Did you manage to get some assitance with this? I am also trying to search for examples of using the Resource Object to provision new entries to an LDAP and to learn how to form workflows.

  • Resource-env-ref

    Hi,
              in a servlet's war.xml I define a resource-env reference. But how do I
              specify that in the assiciated weblogic.xml?
              web.xml:
              <resource-env-ref>
                   <resource-env-ref-name>jms/EventTopic</resource-env-ref-name>
                   <resource-env-ref-type>javax.jms.Topic</resource-env-ref-type>
              </resource-env-ref>
              the dtd for weblogic.xml
              (http://www.bea.com/servers/wls610/dtd/weblogic-web-jar.dtd) only
              defines resource reference and ejb reference.
              <!ELEMENT reference-descriptor (resource-description*,
              ejb-reference-description*)>
              <!ELEMENT resource-description (res-ref-name, jndi-name)>
              <!ELEMENT ejb-reference-description (ejb-ref-name, jndi-name)>
              while the dtd for web.xml (http://java.sun.com/dtd/web-app_2_3.dtd) also
              defines resource-env-ref, resource-ref, env-entry, ejb-ref, ejb-local-ref:
              <!ELEMENT web-app (icon?, display-name?, description?, distributable?,
              context-param*, filter*, filter-mapping*, listener*, servlet*,
              servlet-mapping*, session-config?, mime-mapping*, welcome-file-list?,
              error-page*, taglib*, resource-env-ref*, resource-ref*,
              security-constraint*, login-config?, security-role*, env-entry*,
              ejb-ref*, ejb-local-ref*)>
              Having said that I just read the servlet-spec (2.3 pfd2, page 68), where
              only env-entry, ejb-ref and resource-ref are mentioned! weired ...
              "The env-entry element contains information to set up basic environment
              entry names relative to the java:comp/env context, the expected Java
              type of the environment entry value (the type of object returned from
              the JNDI lookup method), and an optional environment entry value. The
              ejb-ref element contains the information needed to allow a servlet to
              locate the home interfaces of a enter-prise bean. The resource-ref
              element contains the information needed to set up a resource factory."
              >>>
              >>>So defining a resource-env-ref is possibly not possible?!
              >>>Why are they then defined in the dtd?
              >>>
              For the log: my code is:
              Context myNamingContext = new javax.naming.InitialContext();
              System.out.println("NamingContext: "+myNamingContext);
              System.out.println("Event Topic" +
              myNamingContext.lookup("java:comp/env/jms/EventTopic").toString());
              and the Exception is:
              javax.naming.NameNotFoundException: Unable to resolve
              comp/env/jms/EventTopic/ Resolved: 'comp/env/jms'
              Unresolved:'EventTopic' ; remaining name ''
              Thanks for your help,
              Andreas Ebbert
              

    the quotes from "more servlets and java server pages":
    The resource-env-ref element declares an administered object associated with a resource. It
    consists of an optional description element, a resource-env-ref-name element (a JNDI name
    relative to the java:comp/env context), and a resource-env-type element (the fully qualified
    class designating the type of the resource), as below.
    <resource-env-ref>
    <resource-env-ref-name>
    jms/StockQueue
    </resource-env-ref-name>
    <resource-env-ref-type>
    javax.jms.Queue
    </resource-env-ref-type>
    </resource-env-ref>
    The resource-ref element declares an external resource used with a resource factory. It
    consists of an optional description element, a res-ref-name element (the resource manager
    connection-factory reference name), a res-type element (the fully qualified class name of the
    factory type), a res-auth element (the type of authentication used� Application or
    Container), and an optional res-sharing-scope element (a specification of the shareability of
    connections obtained from the resource� Shareable or Unshareable). Here is an example.
    <resource-ref>
    <res-ref-name>jdbc/EmployeeAppDB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope
    </resource-ref>
    Hope it helps.

  • Visa resource name can't find

    I'm running a example, visa resource name list couldn't find the port, only com port list, added USB cable (FTDI TTL-232R-3V3-WE) into visa, change visa class I/O session to USB raw, then can see it, but in configure serial port vi, I got this pic. Did I do something wrong or any suggestion? 
    thank you
    Attachments:
    2.PNG ‏32 KB

    Do NOT change the I/O class to USB RAW if you want to use the device as an RS-232 port. If the device does not show up in MAX as an additional com port, first verify that you installed the correct driver that came with the device. Then, see if it appears as a com port in windows device manager. Post back If it shows up in device manager and in Hyperterminal as a com port but MAX still does not list it.

  • CTM Planning: How to Handle Min Lot Size Daily Resource Capacity?

    Hello,
    I am facing a situation where the Min Lot Size values require more than a days capacity of the Resource.
    Finite Planning CTM is skipping all demands.
    Example:
    Daily Resource Availability = 24 Hrs,
    Capacity Consumption per PPM = 1000 Kgs / 1 Hour.
    Min Lot Size =  50,000 Kgs
    Capacity requirement for the 50,000 Kgs = 50 Hrs
    Is there a way CTM can plan this?
    Thanks,
    Ran

    Yes the time buckets in CTM profile has nothing to do with this limitation...
    Nor does the infinite/finite setting.
    Basically its a limitation of how the resources are stored in livecache.
    You can not exceed the capacity for which the resource is stored...
    The only workaround is to define the resourcde in weekly time buckets by manually defining a capacity profile.
    I don't like this as every order will take a week...
    I am not aware of any other workaround...
    I have seen other clients take out the minimum lot size for SNP, then when cif transfer the order back to R/3, it is combined to 1 large order...
    Ken Snyder

  • Master Data question - Resource Master

    Hi,
    Got some master data related questions on Resource master. I am kind of relatively new to APO and trying to understand master data fields and functionalities. Can someone please explain me in layman terms with a small easily understandable example,
    1)     What is the difference between time continous capacity and bucket capacity?
    2)     What and where do we use u201Cexternal capcityu201D? I read somewhere that if we check box the external capacity, then APO uses capapity from R/3. What difference does it make if capacity used from R/3 or bring it over to APO and use it from APO? When u check box the u201Cexternal capcityu201D you are already bringing the resource to APO. So what is the use of using the capacity from r/3?
    3)     A Multi activity resource has a capacity of 8 hrs per day. For example a resource has 5 lathes and u can carry 5 different activities/operations at the same time on this resource. So every lathe has 8 hrs of capacity, that means the overall capcity is 5*8 = 40 hrs???? and where are we specifiying number of lathes u201C5u201D in the resource master?
    4)     What is the advantage of deriving bucket capacity from time continous, than directly defining bucket capacity?
    Thanks
    Appreciate your help..

    SCM,
    I will today work on your question 1.  As time permits, if Sri Mathur cannot respond, I will then attack the another question later.
    1) what I am trying to understand here is..bucket capacity is 1 day minimum. that means 24 hours of capacity????? if yes, then time continuous capacity can be equal to bucket capacity if no breaks. if breaks are there then it is less than bucket capacity?
    If one operation takes 2 hrs then that means, 1 SNP bucket capacity can hold 12 such operations??? Really confused.
    Buckets can have any amount of capacity.  For instance, if you define a capacity as a Daily bucket, you can further define it to have less than 24 hours of capacity.  The difference is that the system manages this capacity as a single chunk.  
    Lets say I have a time-continuous capacity, which starts at 8:00 and ends at 16:00.  It has 8 hours of capacity available. If I am consuming capacity with, say, a planned order operation, the system will check whether the capacity is available, and when it is available.  So, the first planned order op that begins capacity consumption at 8:00 AM and consumes one hour of capacity will normally use the 8:00A-9:00A block of capacity.  If I am capacity leveling and dispatching, then no other order will be allowed to consume capacity during this time period (8A-9A).
    Now let us consider the same resource, but configured as a single day bucket.  I still have 8 hours of capacity.  However, when I create a planned order to consume capacity, it only checks whether I have enough available left in the entire bucket.  The same first planned op order mentioned above, could be scheduled for 8A-9A, and would also consume 1 hour of capacity.  This cap consumption is not 'from 8A to 9A', but is '1 hour out of the bucket of 8 available'.  The next production order could also be scheduled for 8A-9A, and pass a capacity availability check, because there are 7 hours still available in the bucket.  8 1-hour planned order ops could be scheduled from 8A-9A, and still pass the cap check.
    Time continuous cap consumption becomes very important if you are doing detailed sequencing of your orders, as is normally done in PP/DS.  SNP, which is usually less detailed, is more likely to use bucketed caps (with many exceptions!!).
    Rgds,
    DB49

  • Hi There, What is the Location for resource folder in apps dir.

    Hi There,
    What is the Location for resource folder in apps dir Structure.
    Bachan

    Are you trying to open the form locally or remotely?
    If locally then do the following:
    - From 'regedit' navigate to HKEY_LOCAL_MACHINE\Software\Oracle
    - Search for FORMS60_PATH
    - Make sure that "D:\oracle\visappl\au\11.5.0\resource" exist in FORMS60_PATH
    If remotely the do the following:
    - Copy "D:\oracle\visappl\au\11.5.0\resource" to your local machine (for example D:\resource)
    - From 'regedit' navigate to HKEY_LOCAL_MACHINE\Software\Oracle
    - Search for FORMS60_PATH
    - Make sure that "D:\resource" exist in FORMS60_PATH
    Close/Open the from builder, you should be able to open the form then.

  • Question on "show resource usage"

    Hi,
    Hope you are doing great!
    the "show resource usage" indicate the  resource usage of the security appliance or for each context.
    I am wondering the below output:
    FWSM# show resource usage
    Resource              Current         Peak      Limit        Denied Context
    SSH                         1            2          5             0 System
    Syslogs [rate]           1573        65155  unlimited             0 System
    Conns                   29937       192916  unlimited             0 System
    Xlates                   6751       180865  unlimited             0 System
    Hosts                    6218        65515  unlimited             0 System
    Conns [rate]              665        32500  unlimited             0 System
    Fixups [rate]             467         4617  unlimited             0 System
    FWSM#
    does it mean the FWSM is generating 1573 syslogs/second currently? and it used to generate 65155  syslog/second?
    I don't believe the FWSM can generate 65155 syslogs per second....
    does it mean anything else?
    Thanks!

    Hello,
    The command can be use on single and multiple mode:
    Example:
    show resource usage context admin
    Check this links for more information about this command:
    http://www.cisco.com/en/US/docs/security/asa/asa84/command/reference/s4.html#wp1527546
    Not sure if the syslogs are per second or what is interval, but yes, those are the amount of logs being generated.
    Regards,
    Felipe.

Maybe you are looking for

  • Setting up Customised priorities in help- support message in solman

    Hi All, We have defined some customised priorities for our requirement. The Priorities are coming in crmd_order and in notif_create but these changes are not found in help->create msg. The SPRO activity: SAP Solution Manager Implementation Guide > SA

  • Problems upgrading from 10.2.8 to 10.3.9

    I'm having trouble upgrading from 10.2.8 to 10.3.9.. The first install CD won't boot, I get a grey screen and no "blue OS X sign" it just stays grey.. And here is briefly the history of what happened to get me to this point.. This problem is on an iM

  • Transfer of Accrual liability to GL

    Hi All, As per the user guide an employer liability element should be created. This classification is missing in the Global HRMS Manager responsibility we are using. Is this a setup issue? Thanks in Advance for your help. Supriya

  • Strange layers issue when printing

    Hi Guys, I am having a strange issue which is probably easy to fix however I am not a heavy adobe user and dont know where to start. This is the rough process to explain my point but a summary is - when printing PDF files they do not appear as they d

  • How to load externl files (PDF) into BLOB column.  Please help.

    Hi All, I've currently been working on loading many external binary files (PDF) into BLOB column. After some digging, I learn that the SQL*LOADER can be used to load data from external files into table. I also got help from another forummate mentioni