How  to reuse common code across multiple work repositories

Hi Experts,
I have a ruqirements from our customer side. we have a one master repository attached with three work repositories(wk1,wk2,2k3). Customer want to place some common code into wk1 workrepository and want to reuse across multiple workrepositories(wk2,wk3).
Generally we can reuse code in same work repositories like knowmodules and interfaces.
Is it possible to use across mutiple workrepositories?
Thanks in Advance
Siri

You can't hare the same instance of the code across multiple work repositories. You have to have a seperate instance in each work repository. However you can manage it as if it was shared through ODI's versioning capability i.e. all changes to the common code are only ever made in one work repository i.e. Wk1 and then deployed to the other 2 which is as simple as getting the latest version from the Master repository. You could even set up security in Wk2 and Wk3 to make sure that your developers/users do not have permission to edit the common code in those repositories.

Similar Messages

  • How to define common segments across multiple SOB's

    We are considering an implementation approach with multiple SOBs for the various entities under the umbrella organization, since each manages itself differently. However, we still need to define a SOB for consolidating the data from the entities. Other than reporting needs, what factors should be considered for determining accounting flexfield segments that are common across the entities, and therefore should be in each SOB? Any other considerations?

    Hi Shelia!
    This is a broad question. The main thing to keep in mind is that each set of books should have a unique balancing segment value defined for it and defined at the set of books level when defining the accounts in your Set of Books form.
    For example, if you have 3 companies that all share the same chart of accounts structure, the Balancing Segment (Company Segment) should be somethig like:
    01 for Company 1
    02 for Company 2
    03 for Company 3
    Then, when you define each company's set of books, make sure you use the corresponding segment value for each.
    So, the Retained Earning Account would be 01-3500----- for Company 1's set of books and Retained Earnings will be 02-3500 for Company 2's set of books.
    If all of you sets of books reside on a single database instance, and they all share the same chart of accounts, you will NOT need to define a separate consolidation set of books. You can create FSG reports to consolidate the data across sets of books on a single instance.
    --Theresa                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to share common classes across multiple projects in Jdeveloper?

    Hi Experts,
    I have a basic question.
    I am using Jdeveloper 11g and have divided my application into 2 projects (Model(ejb's) and Viewcontroller(jsf+managed beans etc)).
    The model project has a stateless session bean(named VisitingScholarBean) which uses a java bean class(named VisitingScholarDetails) defined in the ViewController project.
    The relevant Method in the stateless session bean is public void saveVSDetails(VisitingScholarDetails vsDetails).
    Now the issue is that the VisitingScholarDetails class is part of only the ViewController project but is being used in the Model project.
    So when I try to run the application it gives an error saying that
    weblogic.application.ModuleException: Exception preparing module: EJBModule(VisitingScholar-Model-ejb)
    [EJB:011023]An error occurred while reading the deployment descriptor. The error was:
    edu/nyu/ecoms/oaa/vs/web/backing/VisitingScholarDetails.
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:452)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
         Truncated. see log file for complete stacktrace
    java.lang.ClassNotFoundException: edu.nyu.ecoms.oaa.vs.web.backing.VisitingScholarDetails
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:283)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:256)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:176)I cannot replicate the same VisitingScholarDetails class in both projects as it will lead to duplication.
    Please let me know how to include the VisitingScholarDetails class in the ejb-jar without replicating it in the Model and View Controller projects.
    Thanks for your time and help.
    Edited by: user10376431 on Jan 24, 2010 6:25 AM

    Welcome User in OTN,
    to make two projects can access its classes you should goto the project property ---> Dependencies then add the other project.
    in your case:
    try to goto you Model project property ----> Dependencies ---> Edit Dependencies .
    you will find your ViewController project. Expand it thin check to Build Output.
    you can make this for ViewContoller project also as:
    goto you ViewContoller project property ----> Dependencies ---> Edit Dependencies .
    you will find your Model project. Expand it thin check to Build Output.
    Sameh Nassar

  • How to identify a user across multiple pages

    Hi,
    I'm doing a homebanking and I would like to know how to identify a user across multiple pages.
    I have already take a look at HTTPSESSION, but I didn't understand.
    Can someone help me.
    I'm send the servlet Logon.
    import java.io.*;
    import java.sql.*;
    import java.util.Date;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Cons_logon extends HttpServlet
         private Connection conexao = null;
         Login1 login1;
         public void init (ServletConfig cfg) throws ServletException
              super.init(cfg);
              try
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   conexao = DriverManager.getConnection("jdbc:odbc:bank");
              catch (Exception e)
                   System.out.println(e.getMessage());
         public void doPost (HttpServletRequest req,
    HttpServletResponse res)
    throws ServletException, IOException
              String Suser, Spassword;
         PrintWriter out;
              res.setContentType("text/html");
    out = res.getWriter();
    String opcao = req.getParameter("log");
    Thanks

    I would recommend using the authentication mechanism that's guaranteed by the servlet spec. If you do that, you can just call
    request.getRemoteUser()
    to get the user name across multiple pages.
    If you want to use your own login scheme, you can create a new session object and map it to a user name somewhere in your app. Or you can just put the name of the user on the session. But the preferred way is to use the default authentication scheme defined by the spec.

  • How to share a session across multiple jws?

    Hi!
    I have this problem.
    I'm looking for a way to have shared sessions, available across multiple JWS with WLW 8.1
    I try to get a session with this code:
    WebServiceContext wsContext = WebServiceContext.currentContext(); WebServiceSession session = (WebServiceSession)wsContext.getSession();
    but it throws COntextNotFoundException....
    I added the session descriptor in weblogic.xml to set the param CookiesEnabled to true, because I read that using this code works but requires that the client support cookies to keep the HttpSession object around.
    But it's not works!
    How can I get to HTTP session from a JWS?
    And....it's possible to share a session accross multiple JWS?
    Thanks a lot!

    You may be interested (& probably discouraged at the end) in this discussion http://forum.java.sun.com/thread.jspa?threadID=619170
    cheers,
    ram.

  • How to use a connection across multiple request

    What is the idea of using a connection across multiple requests.

    Please give more details. What connections and what requests
    And are you posting on the right forum? (This sounds more like a Networking/servlet question)

  • How to create Item Codes with multiple Item Description

    Hi,
    for one of my client, we need to create Item Codes with multiple Item Description.
    e.g.,
    Item Code - M00285
    Item Description 1 - Blue Paint
    Item Description 2 - Red Paint
    Is that possible in SAP Business One? If "Yes" kindly provide a solution. Else recommend an alternative method.
    Regards,
    Ammheya U. Naaik

    Ammheya,
    I just wanted to add that there is an Add-On that handles "Style, Color, Size" situations like yours.
    It allows you to define a "master" item, (Paint, for example) and then setup the various styles, colors and sizes it comes in. 
    This creates sub-items for each with the master in the ItemCode (Paint-Blue, Paint-Red, etc)
    It's called MatrixOne from Navigator.  You could find it on the partner portal with other Add-Ons.
    Hope thathelps,
    Brad Windecker

  • Odiparam.bat with multiple work repositories

    Hi,
    We have two work repositories A and B. In our Odiparams.bat file we have given A work rep information and installed an agent.
    Now we are trying to run a scenario which is in B work rep. using Odistartscen from command prompt. It is giving an error stating that SnpScen does not exist. From our debugging we came to know that, it is referring A work rep for that scenario. But it is actually in B work rep.
    Now how to run the scenario which is in other work rep other than the one mentioned in Odiparam.bat file?
    Is it possible to configure Odiparams.bat file with two work rep? If yes, how. If not what are the altenative options to run the scenario?
    Thanks in advance...

    HI,
    It is not possible to alter odiparams.bat file for two work repositories, for the solution you want do the below:
    1. Create another copy of odiparam.bat like odiparam_workA.bat in the oracledi/bin path
    2. Create another copy of agentservice.bat like agentservice.bat_workA.bat in the oracledi/bin path, if you are creating windows service with it
    or make a copy of agentscheduler.bat like agentscheduler_workA.bat
    3. then mention the work repository in odiparam_workA.bat
    4. create a new physical and logical agent,
    5. Alter agentscheduler_workA.bat or agentservice.bat_workA.bat to call the new odiparam_workA.bat
    6. Now call the scenario using the new agent.
    Reshma

  • How do I search for common values across multiple columns?

    I am coordinating a schedule with 5 people across hundreds of dates, and have columns A-E filled with many rows of dates. How can I make a new column that displays all the dates (values) that each person (column) has in common with all the others?
    Is there a simple formula for this?
    thanks!

    Scarampella,
    A second table can be used to find your matching dates.
    Here's an example:
    The formula in Matching Dates is:
    =IF(ISERROR(MATCH(A,Table 1 :: A, 0)+MATCH(A,Table 1 :: B, 0)+MATCH(A,Table 1 :: C, 0)+MATCH(A,Table 1 :: D, 0)+MATCH(A,Table 1 :: E, 0)), "", A)
    Basically, I look for matches in each person's list of dates, and if any fail to produce a match with the date being examined, the result is a miss, and if all match, it's a hit. You can sort the result to get a short list of matches without spaces.
    Regards,
    Jerry

  • How do public folder mailboxes across multiple DAGs work?

    I have three Exchange 2013 DAGs in three different sites.  The three DAGs can communicate with each other fine but not necessarily the users in the sites.  Users in Site A can communicate with the Dags in Site B and Site C.  Users in Site
    B can only communicate with the DAG in Site A and Site B.  Users in Site C can only communicate with the DAG in Site A and Site C.
    I want the site specific public folders to live in a public folder mailbox on their local DAG.  My questions are as follows:
    1. If a user in Site A had rights to every public folder in all public folder mailboxes would all of the Public Folders show in Outlook for them?
    2. What's the best method of migrating from Exchange 2007 PFs to this?  Can I map certain Public Folders to certain PF Mailboxes?
    Thanks.

    1.  They should, yes.
    2.  Yes, you can.  There are migration scripts you download, and after you run the script, you can change the folder-to-mailbox mapping to suit your needs.  The process is pretty intuitive.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • For an iCloud and/or Windstream email account, how can I delete emails across multiple devices, without having to go to each device?

    I have a friend with an iCloud email account and Windstream account on both her iPad and iPhone... She's saying that when she deletes an email from one device, it doesn't delete it from the other automatically... She's using both emails through the "Mail, Contacts and Calendars" settings under the "Settings" menu; not through apps...  I've had her check both of her email account settings to make sure that the settings were consistent... I've never had this issue with Exchange or Gmail, and I don't use the iCloud email account, so I'm a little unfamiliar with what else to look at... Can someone offer some advice, please?
    Thank you for your help!

    IMAP is the mail protocol that allows you to delete a message one place and have it delete everywhere else. iCloud uses IMAP, so it should be working. If the messages never delete, then something may be incorrect in the settings. The easiest thing to do with iCloud is to logout of the account on every device, and then login again. (Another common problem with iCloud email is people often have two Apple IDs, and thus may have two iCloud email accounts. If you get confused about which one you're using, you may think you've deleted email when you actually haven't.)
    If the iCloud messages do ultimately delete across all devices, then it could be that some devices aren't set to "Push" but are instead set to "Fetch" the newest info from the server. Fetch can be set to as long as an hour between check-ins.
    The same holds true for Windstream if she's using an IMAP account there, too. If it's a POP account, then deleting a message one place will never delete it anywhere else—that's the way POP works.

  • How to change PowerPoint Template across multiple site collections

    I am failry new to SharePoint, and my organization has asked me to research how to change a PowerPoint template that is stored on multiple site collections. There are current PowerPoints based on the template and they wanted to be sure those wouldn't be
    affected, as well. They want a "quick and easy" way to update the template that the divisions in the company use without manually going into each site collection. A co-worker said she hopes to "replace the current...template at the site
    collection and it will modify the available content type when selecting new document."
    Any help on how to handle this would be appreciated.

    This will really depend how the template has been packaged.  If it's a content type, than editing this and making sure that the "update content type" radio is selected will do the trick. Can you ask someone who's made one to show you how they generate
    the template. If it's within the New --> XXX Document, than you're in luck
    If they're just deployed as normal files within a library, you'll have a much harder time.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to display timed events across multiple days in month view?

    Simple question I suppose, though I don't know if it has an answer. When I put an event spanning multiple days (say, a week long vacation) in iCal, and check the "All Day" box, it shows a nice, accurate, bar going across those days the event I'm entering covers. However, if I give it specific times for the event (e.g. the times of departure and return for said trip), even if those times are a week apart, the event still appears to only cover the starting date when viewed from the month perspective.
    Is there any way I can make the month calendar show all the days during which the event is "happening" so that at a glance I will realize that an entire week is busy?

    Hi,
    You can do it with keyboard shortcuts.
    Select the event. Press Cmd+X. Press Cmd and right or left arrow (depending if it is forward or back in months) until you are in the correct month. Press Cmd+V to pase on the same day in the new month.
    Best wishes
    John M

  • HOW TO INPUT TAX CODE AT MULTIPLE PO ITEM LEVEL AT A TIME

    If a PO  is having 100 line of items, how to input the tax code for all line items at a time, if tax code for all line of times is same.

    Hi
    Another option is to use the t-code MASS. I havenu2019t used in PO but I think it must run.
    Select BUS2012 in u201CObject Typeu201D field. Press F8.
    Select u201CPurchase Order Itemu201D in u201CTablesu201D tab, and click on the u201CFieldsu201D tab.
    Select the field name MASSEKPO-MWSKZ. Press F8.
    Assign the value to the PO field.
    In the menu, select u201CMass maintenanceu201D->u201DEnter new field valuesu201D.
    Assign the new value and press u201CTranferu201D button.
    Press F8. Click on the u201CCarry out a Mass Changeu201D button and click on the u201CSaveu201D button (Ctrl+S)
    Review the u201CMessages from the Update Tasku201D.
    Best regards.
    Paco M

  • How to collate same pages across multiple PDF files

    I have multiple reports in PDF that have specific employee data on each page. The employee page order is the same across each PDF (Employee #75 is on page 43 in each file). I would like to combine the first page from each file together, the second, and so on. That way I can provide this data to each employee without them having access to other employee's data. Is there a way to do this in Acrobat Pro?

    Hello try67,
    thank you for your help. I try it in the SDK forum. Anyway I appreciate any hint to solve this task :-)

Maybe you are looking for