BOM Resources Sharing across organization

Frnds
My Client is in 12.1.3 , Is there any set up in Oracle manufacturing (BOM, WIP, INV) , which can help in sharing Resources (machine. Human) across Organization
with required accounting too  ??
e.g
Inventory organization – INV1 and INV2
now if any discrete job in INV1 or INV2 needs any resource then it should be issued from common resource organization. Also that resource accounting will be done in that specific balancing segment other than balancing segments specific to inventory or WIP valuation  accounting
Any help would be a great help
Regards
Abhi

What is the version of apps you are using? Fact: in R12, for average costing organizations, if you refer original order line to RMA the cost of return is same as original order line. also there are some more features that relate to the revenue and COGS recognition.
That apart we may have these options:
1. Make branch warehouse organization as standard cost. Use the cost as of the start of the year. Now when you return the goods into this org you always cost at standard. At end of the year, you update your standard cost to be equal to the average cost of new item at the time of the year. Depending on whether your average cost is higher or lower you will have increase or decrease in inventory value (hence other account).
2.Use cost hooks creatively (have to test this): Cost manager always checks whether cost hooks are used or not (there are two types one for cost and one for accounting). In the accounting one, if it returns -1 means hook is not used (I guess). So have a piece of code in there that inserts record into mtl_transactions_interface of branch organization. The transaction type you use here is average cost update (even if you have no quantity you can do this). Call the online transaction manager right after that to make it completely online and still return -1. I will confirm after testing this.
3. If 99% of the times the machines are are new, can you make Branch as Subinventory in that A Organization rather than different org?
4. I see a distant possibility of using order line workflow. Is this branch warehouse only for returns? If that is the case do you refer the original line Id to the RMAs? But the logic remains the same : Using transaction interface for the average cost update.
5.Your idea is also a great one. Why don't you automate that same thing in the order line workflow. Under certain conditions automatically perform inter org transfer to branch as soon you receive into Org A using transaction interface.
Thanks
Nagamohan

Similar Messages

  • Can "Graphic Styles" be shared/synced across organization

    Can Graphic Styles (or any other cloud settings) be shared across an entire
    enterprise domain (among multiple users)?
    Thank you for your reply.

    Hi Gregory,
    You are now able to save layer styles, graphics, and text styles into Libraries that can be shared with multiple CC subscribers.  See the following for more info:
    Creative Cloud Help | Creative Cloud Libraries
    Creative Cloud Help | Collaborate on folders and libraries
    Hope this helps.
    --Elba

  • Cross-origin resource sharing (CORS) does not work in Firefox 13.0.1 or 6.0.2

    I have a simple Java HttpServlet and a simple JSP page. They are both served by a WebSphere Application Server at port 80 on my local host. I have created a TCP/IP Monitor at port 8081 in
    Eclipse IDE so as to create a second origin. The protocol output further down comes from this monitor. This should work equally well on a simple Tomcat server.
    When I perform the cross-origin resource sharing test, I see that all of the correct TCP data is exchanged between Firefox and the web server (i.e. HTTP OPTIONS and its response followed by an HTTP POST and its response) but the data in the body of the POST response is never passed to the XMLHttpRequest javascript object's responseText or responseXML variables and I get a status equal to 0. If I click the button while pressing the keyboard control key then the test will work as it will not be performed as a cross-origin request.
    Here are all of the files used in this test:
    Servlet Cors.java
    <pre><nowiki>--------------------------------------------------------------------------------------
    package example.cors;
    import java.io.IOException;
    import java.util.Enumeration;
    import javax.servlet.Servlet;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * Servlet implementation class Cors
    public class Cors extends HttpServlet {
    private static final long serialVersionUID = 1L;
    private static final String APPLICATION_XML_VALUE = "application/xml";
    * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request, response); // do the same as on the post
    * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    response.setBufferSize(1024);
    response.setContentType(APPLICATION_XML_VALUE);
    response.setStatus(HttpServletResponse.SC_OK);
    String xml="<?xml version=\"1.0\"?>\n<hello>This is a wrapped message</hello>";
    response.setContentLength(xml.length());
    response.getWriter().append(xml);
    response.getWriter().close();
    * @see HttpServlet#doOptions(HttpServletRequest, HttpServletResponse)
    @SuppressWarnings("unchecked")
    protected void doOptions(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    Enumeration<String> headers=request.getHeaders("Origin");
    StringBuffer sb=new StringBuffer();
    while (headers.hasMoreElements()) {
    String o=headers.nextElement();
    if (sb.length()!=0) sb.append(", ");
    System.err.println("Origin= "+o);
    sb.append(o);
    response.addHeader("Access-Control-Allow-Origin", sb.toString());
    response.addHeader("Access-Control-Allow-Methods","POST, GET, OPTIONS");
    sb=new StringBuffer();
    headers=request.getHeaders("Access-Control-Request-Headers");
    while (headers.hasMoreElements()) {
    String o=headers.nextElement();
    if (sb.length()!=0) sb.append(", ");
    System.err.println("Access-Control-Request-Headers= "+o);
    sb.append(o);
    response.addHeader("Access-Control-Allow-Headers", sb.toString().toUpperCase());
    response.addHeader("Access-Control-Max-Age", Integer.toString(60*60)); // 1 hour
    response.addHeader("Content-Type","text/plain");
    response.addHeader("Allow", "GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS");
    response.getWriter().print("");
    And a simple JSP page test.jsp:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <%
    String url ="http://localhost:8081/cors/ping";
    String url_ctrl="http://localhost/cors/ping";
    %>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Test CORS</title>
    <script type="text/javascript">
    var invocation;
    var method='POST';
    var body = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><hello>Today</hello>";
    var buttontest2_label="Direct AJAX call";
    function callOtherDomain(event){
    invocation = new XMLHttpRequest();
    if(invocation) {
    var resultNode = document.getElementById("buttonResultNode");
    var resultMessage = document.getElementById("buttonMessageNode");
    resultNode.innerHTML = "";
    document.getElementById("buttontest2").value="Waiting response...";
    var url
    if (event.ctrlKey) url="<%=url_ctrl%>";
    else url="<%=url%>";
    resultMessage.innerHTML = "Sending "+method+" to URL: "+url;
    invocation.open(method, url, true);
    // invocation.withCredentials = "true";
    invocation.setRequestHeader('X-PINGOTHER', 'pingpong');
    invocation.setRequestHeader('Content-Type', 'application/xml');
    invocation.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
    invocation.onerror = function(errorObject) {
    display_progress(resultMessage, "***** error occured=" +errorObject);
    invocation.onreadystatechange = function() {
    display_progress(resultMessage, "onreadystatechange="+invocation.readyState+", status="+invocation.status+", statusText="+invocation.statusText);
    if(invocation.readyState == 4){
    document.getElementById("buttontest2").value=buttontest2_label;
    display_progress(resultMessage, "responseText="+invocation.responseText);
    resultNode.innerHTML = "Response from web service='"+invocation.responseText+"'";
    invocation.send(body);
    function display_progress(node, message) {
    node.innerHTML = node.innerHTML + "<br>" + message;
    </script>
    </head>
    <body>
    <p>The button will create a cross site request (Use the control key to disable this, i.e. no cross site request)</p>
    <p><input type="button" id="buttontest2" onclick="callOtherDomain(event)" name="buttontest2" value="Waiting for page load..."></p>
    <p id="buttonMessageNode"></p>
    <p id="buttonResultNode"></p>
    <script type="text/javascript">
    document.getElementById("buttontest2").value=buttontest2_label;
    </script>
    </body>
    </html>
    When I click on the Direct AJAX call button, I get the following output on my page:
    The button will create a cross site request (Use the control key to disable this, i.e. no cross site request)
    Sending POST to URL: http://localhost:8081/cors/ping
    onreadystatechange=2, status=0, statusText=
    onreadystatechange=4, status=0, statusText=
    responseText=
    ***** error occured=[object ProgressEvent]
    Response from web service=''
    Here is the HTTP traffic produced:
    HTTP REQUEST
    OPTIONS /cors/ping HTTP/1.1
    Host: localhost:8081
    User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip, deflate
    Connection: keep-alive
    Origin: http://localhost
    Access-Control-Request-Method: POST
    Access-Control-Request-Headers: content-type,x-pingother,x-requested-with
    Pragma: no-cache
    Cache-Control: no-cache
    POST /cors/ping HTTP/1.1
    Host: localhost:8081
    User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip, deflate
    Connection: keep-alive
    X-PINGOTHER: pingpong
    Content-Type: application/xml; charset=UTF-8
    X-Requested-With: XMLHttpRequest
    Referer: http://localhost/cors/client/test.jsp
    Content-Length: 75
    Origin: http://localhost
    Pragma: no-cache
    Cache-Control: no-cache
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?><hello>Today</hello>
    HTTP RESPONSE
    HTTP/1.1 200 OK
    Access-Control-Allow-Origin: http://localhost
    Access-Control-Allow-Methods: POST, GET, OPTIONS
    Access-Control-Allow-Headers: CONTENT-TYPE,X-PINGOTHER,X-REQUESTED-WITH
    Access-Control-Max-Age: 3600
    Content-Type: text/plain;charset=ISO-8859-1
    Allow: GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS
    Content-Language: en-CA
    Content-Length: 0
    Date: Wed, 11 Jul 2012 17:50:10 GMT
    Server: WebSphere Application Server/7.0
    HTTP/1.1 200 OK
    Content-Type: application/xml
    Content-Length: 62
    Content-Language: en-CA
    Date: Wed, 11 Jul 2012 17:50:10 GMT
    Server: WebSphere Application Server/7.0
    <?xml version="1.0"?>
    <hello>This is a wrapped message</hello>
    --------------------------------------------------------------------------------------</nowiki></pre>

    No errors in error console. No effect using *. I tried using the dns name of my localhost both in the Firefox URL and in the javascript and I get exactly the same. I have spent a huge amount of time looking into this issue.
    One thing I noticed is that if I use the examples on the internet (http://arunranga.com/examples/access-control/preflightInvocation.html or http://saltybeagle.com/cors/) they work in the same browser. These examples however, are accessed through HTTP proxies.
    I am wondering if the issue has to do with using the same hostname just with different ports.

  • TS2972 I cannot seem to get all of my music shared across the network from my MacBook Pro to my iPad. This was not an issue a few days ago. Can anyone help?

    I cannot seem to get all of my music shared across the network from my MacBook Pro to my iPad. This was not an issue a few days ago. I can see all my songs if sorted that way, but if i sort by artist, only a few of them are present. Can anyone help or have any insight?

    Well I didn't think of it before, but I logged out of my apple ID othe iPad's home sharing. The I logged back in and it worked. It's a little weird, but I will take it. Thanks!

  • Printer sharing across internet sharing

    I hope I don't confuse everyone with this.
    I have three computers—an iMac running Snow Leopard, an iMac running Lion, and a Mini running Leopard. The SL iMac has a printer plugged into it. The other two computers are across the house from it.
    Those two computers are next to each other. The Lion iMac is connected to the Internet via WiFi. The Mini, which does not have wireless, is connected to the Internet via Internet Sharing over an ethernet cable to the Lion iMac.
    Now here's the problem. I can print from the Lion iMac through printer sharing across to the SL iMac. However, I can't figure out how to print from the Mini. It won't find the SL iMac's printer. Enabling printer sharing on the Lion iMac lets the Mini see it as a 'printer,' but it won't print across to the SL iMac.
    So with this setup, is it possible to print to the SL iMac from the wireless-less Mini?
    Just to ward off possible non-workable solutions, rearranging the computers is not feasable right now. It is also not possible to connect the Mini directly to the internet via ethernet. My cable modem is actually in a near-inaccessable part of the house due to that being where the only cable plug is. I have a Time Capsule attached to it, which broadcasts my wireless signal that the WiFi computers can pick up. And no, I can't connect the printer to the Time Capsule—believe me, I tried. I don't want to have to start buying long cables and drilling holes if there's a simpler solution.
    Thanks in advance.

    If I switch to the discussed set up (Airport Extreme N router), will adding an AX in between at 15 feet help bridge the link between the G5's Airport extreme card and the living room's AX?
    Yes. But I still think you should verify if Wi-Fi interference is the cause of your poor signal only 30' away from the AX before going out and purchase anything. Remember, you will tradeoff bandwidth performance for signal strength. With audio, this can be a negative factor.
    If you can get a hold of a laptop, I suggest downloading a copy of iStumbler. Use iStumbler's Inspector feature (select Edit > Inspector from iStumbler's menu) to determine the Signal-to-Noise Ratio (SNR) at different points around your house, by performing a simple RF site survey. Within the Inspector, note the values for "signal" & "noise" at these locations. Start with the laptop near the AX, note the readings, and then, choose the locations between the AX and, finally, where you have the G5.
    SNR is the signal level (in dBm) minus the noise level (in dBm). For example, a signal level of -53dBm measured near an access point and typical noise level of -90dBm yields a SNR of 37dB, a healthy value for wireless LANs.
    The SNR, as measured from the laptop, decreases as the range to the base station increases because of applicable free space loss. Also an increase in RF interference from microwave ovens and cordless phones, which increases the noise level, also decreases SNR.
    SNR Guideline
    o 40dB+ SNR = Excellent signal
    o 25dB to 40dB SNR = Very good signal
    o 15dB to 25dB SNR = Low signal
    o 10dB to 15dB SNR = Very low signal
    o 5dB to 10dB SNR = No signal
    If the SNR is 20dB+ at each of these locations, then you should be getting reasonable performance from your AirPort. If less, either try to locate the source of the Wi-Fi interference or try relocating the base station or the G5 until they are within a 20dB SNR range.

  • How to use common resource bundle across all the development components ?

    Hi,
    I am working on SAP NetWeaver Developer Studio - JAVA
    How to use common resource bundle across all the development components ?
    Description :
    I have a requirement of creating a resource bundle (resource.properties) and use that common resource bundle in all the development components.
    Can we create a  development component (war and ear both) and create only resource.properties in this development component( DC ) and create the dependency of the same DC  in all the other DCs ?
    Thanks,
    Neha

    Hello Neha 
    This question is more NWDS related.
    You may have a better chance of someone answering the thread under
    SAP Netweaver -> SAP NetWeaver Development Infrastructure (NWDI, formerly known as JDI) forum
    Thanks
    Kenny

  • How do you configure the DAM so it can be shared across multiple CQ instances?

    How do you configure the DAM so it can be shared across multiple CQ instances?

    You can use shared datastore http://dev.day.com/content/kb/home/Crx/CrxSystemAdministration/HowToCombineTheDatastoreToP reserveDiskSpace.html multiple CQ instance will use same file system to share asset
    clustering http://dev.day.com/docs/en/crx/current/administering/cluster.html multiple node will share repository.
    But you can not have something like one DAM and then have different CQ instance pointing to it (As not everything goes in to one location in file system)
    Yogesh

  • Will the Application Scope be shared across the cluster in a multi-node OC4

    Hi,
    I have the following requirement:
    Users of the application can only have single (browser) session. When a user who already has a session connects again, he should no longer be allowed to access the older session.
    My proposed implementation is:
    -     After successful login – possibly using a Session Listener - an entry is made in a HashMap UserSessions that lives in the application scope. Key is the username, value is the session id (HttpSession.getId()).
    -     For every request, using a ServletFilter, we check whether the session is still in the UserSessions HashMap for the current user. If a new session has been created for the same user, the session id for that new session is in the UserSessions map and the servletfilter will not find the session. In that case, the filter should invalidate the session and forward to the user to an error page.
    However, the application will run on a multi-node OC4J cluster. I am starting to wonder:
    Will the Application Scope be shared across the cluster in a multi-node OC4J environment?
    I know session state can be shared. But what application state/scope?
    Does anyone know? Do I have to do anything special in the cluster or the application to get this to work?
    Thanks for your help.
    Lucas

    gday Lucas --
    Application scope is not replicated across JVM boundaries with OC4J.
    I'm sure this used to be described in the doc, but I can't find it now from a quick scan.
    If you wanted to use this type of pattern, you could look to use a Coherence cache as distribution mechanism to share objects across multiple JVMs/nodes.
    -steve-

  • All Project Across Organizations List View- Why some projects read only?

    Hello all !
    I sign on as administrator in SSE and on All Project Across Organizations List View :
    Screen: Projects Screen (ePS)
    View: All Project Across Organizations List View
    Business Object: Project
    Applets: Applet[0]: Project List Applet; Applet[1]: Project Entry Applet;
    Business Components: BusComp[0]: Project; BusComp[1]: Project;
    Why some projects are read-only?
    Best regards,
    Lev

    Hi Rebecca,
    This is just a sample project.  I am not the original author of this project.  I just recreated the project, but I have a few problems. 
    1) when I create the project I am not able to retrieve all the rows for that 2nd event unlike the original project.  I cannot figure out why the project crashes when I try to retrieve more than 50-60 rows for the 2nd event.
    problem 2) this project was architected using legacy EF (EF4).  I have to remove all the .tt files in the designer and select "Generate legacy Code" in the edmx file and save.  This is so I can use ObjectContext. 
    Eventually, I want to recreate this sample project using DBContext for the edmx. 
    If you could figure out what the problem is when I replace the service reference in the FullClient, that would be very nice.
    Rich P

  • After factory reset information shared across devices won't load

    Hello. I recently did a factory reset on my MacBook Air. I backed up my iphoto library and itunes library to external hard drive and was able to load those fine. But I am still having a problem with syncing media and data across devices. Maybe I'm missing something? I set up my icloud; the contacts, address book, etc. seemed to have loaded all the data. BUT: the information that is supposed to load through sharing across my ipad, iphone 5 is not loading. I thought the itunes would load my music just based on the sharing, but it is a good thing I backed it up. Things like ibooks, and the most recent photos I have taken on my iphone are not loaded.
    Please help: I need to know how get all my devices sharing again, and/or pushing media through itunes
    Any tips would be welcome. Thanks.

    Information that is 'shared' via icloud includes calendar events, contacts, todo items, notes, and safari bookmarks. Music that is on an iOS device isn't shared. If it is music you purchased from the Apple iTunes store you can redownload it or it can be moved from the device by using the Transfer Purchases option of the iTunes File menu when your phone is connected to the computer via the cable. iOS apps can also be transferred to the computer this way. New pictures will sync when the phone/iPad is physically connected but I'm not certain how old pictures that exist on the iOS device but not on the computer are handled. You may need to use a third party program to transfer these old pictures - as well as music not purchased from the iTunes store.

  • Running data at different rates within a SCTL for resource sharing

    I have a design that contains several single cycle timed loops (SCTL):
    (40MHz SCTL) -> (20MHz SCTL) -> (40MHz SCTL) -> (10MHz SCTL)
    The first 2 SCTLs are decimation filters so that the data coming out of the 20MHz SCTL is
    at a 10MHz sampling rate.  The 2ns 40MHz SCTL is filter that is 4X resource
    shared so that I can use the available dsp48E slices.  I'm using target-scoped FIFOs to
    pass the data between the loops.  In simulation, I have the timeout set to -1 so that it reads
    from the FIFO whenever there is data available.
    When I run the simulation, I expect/want to see my control counter running 4 times faster
    than my incoming data.  I thought that since the data was written into the target-scoped
    FIFO at a 10MHz rate and the control counter is in the 40MHz SCTL, I would see the
    behavior I wanted:
        X     a     X     b      X      c     X     d     X  <- data from FIFO
        X0X1X2X3X0X1X2X3X0X1X2X3X0X1X2X3X  <- modulo-3 counter
    Instead I see the data and counter essentially running at the same rate:
        X1X2X3X4X5X6X7X8X9XaXbXcXdXeXf X0X    <-data from FIFO
        X0X1X2X3X0X1X2X3X0X1X2X3X0X1X2X3X    <-modulo-3 counter
    Also the iteration counter for the SCTL runs at the same rate which seems to indicate that the
    loop only executes when data is pulled from the FIFO.   I was expecting the iteration counter
    to be at 3 before the second sample was read from the FIFO and at 7 before the third sample
    was read from the FIFO. I'm guessing that the simulator is event driven.
    I have a couple of questions:
    1. How can I  get the behavior I'm looking for?
    2. If not, can I expect the behavior I want if I run this on the hardware?

    update:
    NI support suggested using the FIFO timeout signal to determine when the data is valid
    coming out of the FIFO.  I was using a -1 on the FIFO read to read only when a sample
    was available.  NI support said to use a 0 and then gate the data based on the timeout
    signal.  The behavior of the design changed, but still did not give me the timing I was
    expecting.  Instead of seeing my counter update on every new sample, I see the SCTL
    "free running"  It's difficult to determine if the counter is behaving properly, but I do see it
    running faster.  The problem is that the SCTL seems to be running much faster was well.
    Using the -1 on the FIFO read I would see > 262K samples written out for every 1000 in.
    Using the 0 on the FIFO read and gating the data based on the timeout signal, I see
    >60K samples for every 1000 read in. I'm expecting 250 samples out for every 1000 in.
    Can someone tell me what controls the behavior (in terms of execution0 of the SCTL?  It
    seems like it is event driven, but I need the design to be clock or cycle driven for both
    simulation and execution of the hardware.
    Regards,

  • The guides all say when using the iCloud photos are shared across all devices. Why can't I see my photos from my iPhone on my iPad when it settings on both devices the iCloud for photos is on?

    The guides all say when using the iCloud photos are shared across all devices. Why can't I see my photos from my iPhone on my iPad when it settings on both devices the iCloud for photos is on?

    When you enable Photo Stream on your devices, only new photos you take or import to those devices will be automatically added to your Photo Stream. Existing photos won't.

  • How to enable resource sharing with complex AEBS setup

    I have a complex AEBS + Netgear network configuration that I am trying to enable resource sharing on. The Netgear router is necessary because it provides excellent per-user parental controls and content filtering that the AEBS lacks. The setup is operational (network connectivity works as expected), but I cannot figure out how to enable cross-network resource visibility and sharing.
    Here is the network configuration:
    |Vz Fios PPoEE |
    |
    v
    |___
    |AEBS|
    | __Mac Mini (wireless)
    | __AppleTV (wireless)
    | __Wii (wireless)
    | __MBPC2Duo (wireless)
    | __WinXp PC1 (wired)
    |
    v
    |______
    |Netgear|
    | __WinXP PC2/Printer (wired)
    | __WinXp PC3 (wired)
    | __iBook (wireless)
    | __Vista Laptop1 (wireless)
    | __Vista Laptop2 (wireless)
    The Mini, AppleTV, Wii and MBPC2Duo all connect wirelessly with the AEBS. The Netgear router is wired to the AEBS. This in turn has 2 wired clients and three wireless clients as illustrated.
    The Netgear router receives an IP address assignment from the AEBS (in the 10.0.1.x range) via DHCP and in turn assigns IP addresses (in the 192.168.1.x range) to attached clients via DHCP
    The setup is operational and operates flawlessly --network-wise. However, I now need to enable resource sharing as follows:
    1) Setup the Mini as the media hub, configured to allow:
    a. storage of all iTunes, iPhoto, iMovie and garage band content to an attached external hard drive,
    b. sharing of content on the Mini with iTunes on each computer (Macs and Pcs) and the AppleTV
    2) Share the printer attached to Windows XP PC2 with all computers (Macs and PCs)
    Questions:
    1. Is this possible with this network configuration?
    2. If so, how would I configure the relevant elements?
    3. Is it better to attach the external media storage to the AEBS vs attaching it to the Mini?
    Thanks!

    Thanks Tesserax. After some digging I was able to find bridge mode config instructions for the Netgear router.
    Follow-up question:
    Given my desire to centralize media access via the Mac Mini, what is the best way to set up my media storage device (320G HD)?
    I see the following options:
    A. NAS device via USB 2.0 connection to the AEBS, or
    B. Supplemental hard drive on the Mac Mini via USB 2.0 or Firewire.
    Thoughts/suggestions?
    Thanks!

  • Provision a Resource Object to Organization automatically in OIM 11g

    Hi All,
    How to provision a resource Object to Organizations automatically in OIM 11g.
    Can we use Access Policy for this , if not , is there any other way to solve this.
    Regards
    Edited by: 903745 on 31 May, 2012 1:40 AM

    Are you referring to creating an resource object (e.g. group) on the Organization itself (as opposed to users in that Organization) ? If so this can be done from a post-process event handler on the Organization object.

  • How do I configure my contacts to be shared across multiple emails?

    How do I configure my iPhone6 contacts to be shared across multiple emails accounts?

    By interface I simply mean connected to the contacts.  I have two different gmail accounts, one that uses the apple mail app and the new one that launches from the gmail icon that I downloaded from the app store.  The new one doesn't recognize the contacts.

Maybe you are looking for

  • ICloud Drive causing timeouts and disconnects when uploading

    It seems that iCloud Drive is set to use the maximum upload bandwidth possible when adding files to it.  I have a home internet connection with fairly limited upload bandwidth (1Mbps - Time Warner Cable apparently doesn't think there is any need for

  • Assign activity for Complex XML type in BPEL

    Hi All, I am NEW to BPEL. I am trying to assign a constant value to a XML Fragment of complex type in BPEL. Here is my XSD definition. <xs:element name="AssetGetList"> <xs:complexType> <xs:sequence> <xs:element xmlns:q59="http://schemas.datacontract.

  • Problem trying to cataloge a jar file OBPM 10.3.1.0

    Hi, I´m having problems when i cataloge a jar file, in OBPM suite 10.3.1.0, it is an itext jar file. I´ve been trying to cataloge older and newer versions of the Itext jar file but there´s no difference in the outcome. I create the external resource,

  • Map UserID to alternate field in LDAP sync

    I've been asked by our CIO whether there is a way to map the userID field in CallManager to something other than samAccountName in the LDAP attributes...I'm seeing that it is hard-coded though.  Has anyone ever come across a similar issue and have yo

  • Setting content type to pdf

    Hi guys I want my jsp output in pdf format. I have written following lines at the start of jsp: response.setContentType("application/pdf"); response.setHeader("content-disposition","attachment;"); But acrobat reader is giving following error: "Acroba