Distributing Tasks between Developers for my ADF Project

Dear All
i installed Team productivity center to manage subversion & distribute tasks between developers for my adf project, i successed to finish the subversion.
but how to make Team center contains a facility to distribute tasks to my developers, i think i need a JIRA repository to manage this issue, if yes kindly let me know how to make JIRA repository, otherwise inform me how to configure this facility in Team Productivity Center.
thanks

Hi
information about how to set up JIRA can be obtained from tis site:
http://www.atlassian.com/software/jira/
It has a first-time-user installation guide: http://confluence.atlassian.com/display/JIRA043/Installing+JIRA+Standalone
Note that TPC doesn't own JIRA nor ships with a licence for it.
For all other documentation, see the TPC website: http://www.oracle.com/technetwork/developer-tools/tpc/overview/index.html
Frank

Similar Messages

  • Best practices for large ADF projects?

    I've heard mention (for example, ADF Large Projects of documentation about dealing with large ADF projects. Where exactly is this documentation? I'm interested in questions like whether Fusion web applications can have more than one ViewController project (different names, of course), more than one Model project, the best way to break up applications for ease of maintenance, etc. Thanks.
    Mark

    I'd like to mention something:
    Better have unix machines for your development.
    Have at least 3 GB of RAM on windows machines.
    Create all your commonly used LOVs & VOs first.
    If you use web services extensively, create it as a seperate app.
    Make use of popups, it's very user friendly and fast too. You no need to deal with browser back button.
    If you want to use common page template, create it at the beginning. It's very difficult if you want to apply it later after you developed pages.
    Use declarative components for commonly used forms like address, etc.
    Search the forum, you will see couple of good util classes.
    When you check-in the code, watch out some of the files don't show up in JDev like connections.xml
    Make use of this forum, you will get answers immediately from great experts.
    http://www.oracle.com/technology/products/jdev/collateral/4gl/papers/Introduction_Best_Practices.pdf

  • Multiple ADF Business Components projects for one ADF project

    I have an ADF project where I have my own ADF Business Components Model, with View Objects, etc. Can I add another ADF Business Components from another project - they access a different database than I do with queries that I could use.

    I see two options:
    1. rename one of your Model.jpr to somthing else and then try again to add a dependency.
    2. create a jar out of the second model project and import the applcation module out of the jar into the other project. To import use file->import and select 'Business Components' from the list. Check tho docs ("Importing Business Components Created by Someone Else")

  • Need a way to equally distribute calls between queues for unknown area codes

    I have UCCX 8.0 SR2 installed where my script
    is utilizing an XML file with 240 area codes.  The script queries the Calling Number against the retrieved data from the returned data of the XPath.  Therefore, in my script I have set Enterprise data for a variable called "Unknown" for calls that have not been defined by area code in that file which is then sent to a single queue.  My customer does not have a the option to perform percent allocation in the cloud nor are they using Callmanager/gateway to perform this type of distribution since the analyzing of the area code is done at the script level.
    I need to find a way to distribute these calls between two queues evenly within the scripting.  For example for every odd numbered "Unknown" call the call is sent to the queue B and every even numbered call is sent to queue A.  How can I script for this in UCCX 8?

    What we did is to count the number of calls handled by these CSQs. Then do a MOD by 2 on this "count1" (1 to include the current call) to find if it is even or odd and then send to the respective CSQ.

  • Standard Images for a ADF project

    Hi All
    I am doing a small project in ADF and would need images for icons like home,search - Can someone help me get images for standard icons in oracle ? Like the ones in the Oracle GIT page.
    Thanx
    Varsha

    Hi,
    Oracle doesn't ship standard icons. However, if you Google for icons you find a range of them from royalty free to paid
    Frank

  • What is the best/suggested CI software for SVN+ADF+Weblogic

    What is the best Conitinuous Integration software for building ADF projects on every post-commit in subversion?
    By googling I could see that Jenkins (formerly Hudson) needs to be patched for the use with weblogic. Is this still true?
    Is there anything specific and working out of the box with Weblogic?
    Thanks

    hi, this will be a late response, but anyway...
    we set up continuous integration environment for our adf projects with Hudson v1.395(version before Jenkins fork). there is no need to patch hudson for weblogic deployments.
    system basically works like this; when a developer commits changes, hudson loops svn every minute. then it creates ADF Library jar file. we have 15 modules deployed as ADF Library. in every 2 hours, another hudson job deploys main application to weblogic dev and test environments.

  • Separate project for each ADF task flow?!

    Hi,
    We have a BPM process application which is having a few human tasks. The form for each of the human tasks is similar. We’d like to be able to share some page fragments or code between them and create single web application to handle all the human tasks for this BPM process application. Then I found the following in the Oracle document “Developer’s Guide for Oracle SOA Suite 11g Release 1 (11.1.1.4.0)”:
    “If the SOA composite contains multiple human tasks, create a separate project for each ADF task flow associated with each human task.”
    I wonder if we have to do that and if so, what is the reason.
    Do you have any clue? Please help.
    Thanks a lot,
    Helen

    This is answered in SOA forum: Re: Why Dev Guide says "create a separate project for each ADF task flow ..."

  • Why Dev Guide says "create a separate project for each ADF task flow ..."

    Hi,
    We have a BPM process application which is having a few human tasks. The form for each of the human tasks is similar. We’d like to be able to share some page fragments or code between them and create single web application to handle all the human tasks for this BPM process application. Then I found the following in the Oracle document “Developer’s Guide for Oracle SOA Suite 11g Release 1 (11.1.1.4.0)”:
    “If the SOA composite contains multiple human tasks, create a separate project for each ADF task flow associated with each human task.”
    I wonder if we have to do that and if so, what is the reason.
    Do you have any clue? Please help.
    Thanks a lot,
    Helen

    Hi Helen
    1. I do not know the reason why they mentioned like separate project for each human task. NO, this is not required and we can have just one UI Project like MyTaskForms and have all the JSPs in this same project for each Human Task.
    2. On our side, we have like 10 Human Tasks, all using the same Payload. So we have 10 .task file. For the very first .task file, we used Auto Generate Project and gave project name like OurAppTaskForms. The reason we did this is, so that it adds all the required dependent libraries, tag libs etc properly. For all remaining 9 .tasks file, we did NOT use auto generate. Instead we used standard New -> JSF From Human Task and select one task at a time and follow the steps. These steps are covered in the online documentation. At the end in our BPM App, we have just one UI Project with all the 10 screens.
    3. ALSO, all the 10 screens have some common data. This we put in a reusable JSF Fragment page. And associated a custom Managed Bean for this to set and get values from this fragment and also some Actions for some buttons in the JSF. Then we included this JSF in each taskform jsf file, uisng the include tag. We added this include tag, somewhere in the top. So all screens share common jsf fragment page.
    4. We can refine the above stuff further. As per above, we still have 10 JSF screens for each one of the 10 .tasks. Ofcourse all these 10 jsf have same common jsf fragment. BUT instead of 10 individual jsf screens, we can have only ONE Jsf screen also. Refer online docs for the details. The challenging part is, since we have only one jsf, there may be some bussiness stuff, validatoin stuff to take care of in custom ValidationCallback Handler classes. Say for Task1, we had to show some buttons, but NOT for Task2. So we had to handle this logic. Also in validation call back, we can always get each Tasks, title also. So we can workaround this issue also. We are in the process of doing this right now. But first 3, we already did and they are working fine.
    My personal suggestion is first go with single jsf fragment and include in all tasks jsp files. Any changes to common elements need to make only in one place i.e fragment page.
    Thanks
    Ravi Jegga

  • Missing Outcomes for Human Task in Auto-Generated ADF Project

    Hi
    I am using SOA Suite 11g (11.1.1.5) and have created a Human Task in my composite application and then auto-generated the appropriate task form using the wizard which has been successful and created the ADF project.
    My task has 3 outcomes the responses of which are then mapped out in the BPEL process.
    When the human task is raised it puts a notification in the BPM worklist as expected however the 'Actions' list on the notification is blank? I was expecting there to be 3 values in the Actions list one for each of my outcomes.
    I have tried re-building the ADF project from scratch from the task flow but still no joy.
    I have not changed the ADF project over its default.
    My next step is to look into the binding on the Actions picklist but I thought this was standard functionality and that the wizard handled this at the point of form generation.
    Any assistance greatly appreciated.

    Hi
    User error.
    I had sent the task to a group rather than a user. Before the task outcomes will display in the ADF page a user must first claim the notification using the 'Claim' button. On re-selecting the notification the task outcomes display as buttons.

  • Missing Task Outcomes in ADF Project for BPEL Human Task

    Hi
    I am using SOA Suite 11g (11.1.1.5) and have created a Human Task in my composite application and then auto-generated the appropriate task form using the wizard which has been successful and created the ADF project.
    My task has 3 outcomes the responses of which are then mapped out in the BPEL process.
    When the human task is raised it puts a notification in the BPM worklist as expected however the 'Actions' list on the notification is blank? I was expecting there to be 3 values in the Actions list one for each of my outcomes.
    I have tried re-building the ADF project from scratch from the task flow but still no joy.
    I have not changed the ADF project over its default.
    My next step is to look into the binding on the Actions picklist but I thought this was standard functionality and that the wizard handled this at the point of form generation.
    Any assistance greatly appreciated.

    Hi
    I am using SOA Suite 11g (11.1.1.5) and have created a Human Task in my composite application and then auto-generated the appropriate task form using the wizard which has been successful and created the ADF project.
    My task has 3 outcomes the responses of which are then mapped out in the BPEL process.
    When the human task is raised it puts a notification in the BPM worklist as expected however the 'Actions' list on the notification is blank? I was expecting there to be 3 values in the Actions list one for each of my outcomes.
    I have tried re-building the ADF project from scratch from the task flow but still no joy.
    I have not changed the ADF project over its default.
    My next step is to look into the binding on the Actions picklist but I thought this was standard functionality and that the wizard handled this at the point of form generation.
    Any assistance greatly appreciated.

  • Ant tasks for creating ADF Library

    Created an ADF declarative component, exported it as an ADF library and got it working fine. The ADF Library jar was created within JDeveloper by setting up a Deployment profile. The created ADF Library file has the TLD file and TagHandler / Component class files created on the fly and packaged.
    Not sure of how We could get the same ADF library created by an Ant task. Are there Ant tasks for creating ADF library available? http://www.connotea.org/user/jdeveloper/tag/ant has some details on the JDeveloper based ant tasks but doesn't have details on creating ADF library.

    You can use the ojdeply executable to create and deploy your ADF Library from the commandline:
    <Jdev-install-location>/jdeveloper/jdev/bin/ojdeploy -workspace /mydirectory/yourworkspace.jws -profile yourprofile -project yourproject.jpr

  • Technical documentation for ADF projects - how to and best practices

    Hi,
    I have a question how to create technical documentation for ADF project expecialy ADF BC and ADF Faces. Is there any tool or JDev plugin for that purpose? What informations should contains documentation for that project, any principles ?Has anybody any experienece. Are there something like documentation best practices for ADF projects? E.g. how to create documentation for bussiness components.
    Kuba

    I'm not sure there is "best practices" but some of the things that can help people understand are:
    An ADF BC diagram - this will describe all your ADF BC objects - just drag your components into a new empty diagram
    A JSF page flow - to show how pages are called.
    Java class diagram - for Java code that is not in the above two
    One more thing to consider - since ADF BC, JSF page flow and JSPX pages are all XML based - you could write XSL files that will actually transform them into any type of documentation you want.

  • Can anybody explain what is support for ADF Project and to solve the Issues

    Hi,
    I am new to ADF and i am currently associated to ADF Support Project.
    Can anybody explain what is support for ADF Project and to solve the Issues when the ADF Project is in Live.
    we are getting the Tickets for the Issues.
    Thanks in advance.

    I agree with Timo.
    It depends on the size of the project, user base, technologies, etc. We use lot of technologies in fusion middleware stack. We get tickets in many areas.
    In your case, it could be anything like user training issues (user may not know how to use the some system features), browser issues like blank screen, bugs in code like JBO errors (failed to validate, another user has changed row, failed to lock the record, NullPointerException, IllegalArgumentException etc), business logic issues, page may not render properly, performance issues, partial commit issues, application server issues, authentication issues. If you use web services you might get web services related problems.

  • Generating a sequence diagram for an ADF/BC project

    hi folks,
    is there an automatic way to produce a sequence diagram? Read something about debug mode but its not working that way.
    Any help apreciated

    Hi John,
    thanks for the info but the documentation says somewhat about break points, but where to set them isnt mentioned - so nothing gets drawn in the diagram. Any info on that would be appreciated. Do i need several break points and especially where do i set them?
    I was allready wondering how a sequence diagram for an adf/bc project would look like - especially if no beans are involved.

  • CHARM- No task list found for implementation project

    Hi All,
    I created an implementation project, and created a task list for the implementation project.
    But when i create a change request with normal correction, The Task list is not getting displayed.
    I am facing a conflict also, When i directly create a correction document without creating a change request. I am getting the task list for implementation project.
    Why is it am getting the task list for Implementation project in correction document and not in change request.
    When i tried to explore. found that in change request it is getting the list of maintenance cycles(Maintenance projects) and not the tasklist for other type of projects.
    Our customized flows are all dependent on the change request. So Is there any configuration i can do to get the task list of implementation project also in the list.
    Kindly guide on this issue.
    Thanks in advance.
    Regards,
    Subhashini.

    Hi Xavier,
    I  was also checking that one only.
    For the standard transaction type SDCR, it is working perfectly as you toldh when i select development(Implementation).
    But the problem is, here we have customized SDCR to ZDCR with our follow up documents.
    When i try to include the Code group of implementation(Implmntn), Nothing is happening.
    The subject is getting included in the list. but iam getting only the list of maintenance project only.
    I have made the changes in copy nsontrol also. but i dont see any difference.
    I could not able to trace where exactly i need to do the customizing to bring the list of implementation projects in my change request(ZDCR) when i select the subject( Project-implementation(SDMI))
    Kindly advice.
    Regards,
    Subhashini.

Maybe you are looking for