Tasks - Workspace & personal

Hi!
I'm wondering if there is a posible to connect / link workspace tasks that applies to a user to be shown also in personal task (calendar component) as default?
If I assign an employee to a certain task it's shown only in workspace task list for a user but not in his calendar (personal) task view.
Thank you.

I have the same problem. According to me, this functionality is pretty stupid.
Anyway I found following answer on Oracle Workspaces (Web Client)
Troubleshooting and FAQs
http://www.oracle.com/technology/products/cs/user_info/oworkspaces/index.html
FAQ ID: 010001
Updated: 2005-07-15
Version: 10.1.1
Browser: ALL
Do workspace tasks appear in a user's personal Oracle Calendar tasks?
Tasks in a workspace are considered workspace tasks and are owned by the workspace. They are meant to be managed within the context of a workspace, and as such, they do not appear in a user’s personal Oracle Calendar tasks.

Similar Messages

  • Download notifications based on main work center and edit based on task level person responsible

    Hi Experts,
                   My requirement is to download notifications based on main work center.The downloaded notifications contains task level person responsible.If the notification contains four task assigned to different persons.Let suppose one task is assigned to the mobile user and other three task to another user.Now the first mobile user should able to edit the task  assigned to him ,but he should able to see all other task in disable mode that are assigned to other user.Iam using agentry work manager 5.3
    Please help me to achieve this requirement as soon as possible.Thanks in advance.
    Thanks & Regards,
    Sravanthi Polu
    Tags edited by: Michael Appleby

    Please refer my earlier posting for Work Order related requirement similar logic can be extended even to your Notification requirement.
    Also refer.
    Work Order and Notification Assignment Types Supported In Work Manager 5.3
    Thanks
    Manju

  • Relationship Job, Task and person

    HI expert.
    I'm coding report of Module HR, my report to show Relationship between Job, task and person.
    but i don't know this relationship. please guide me how to know they replationship on tables ?
    Thanks anh best regards,

    Hi
    All the OM relationship are present in HRP1001 table. Here you can find all the relationship between different object types.
    Thanks
    Sheetal Gupta

  • Help me with some question about Worker/Service/Task in JavaFx 2

    I have read some articles in the forum adout mutithreading in JavaFx2, and now I know if I want to do some long-run jobs, i should use Service/Task.
    But my application needs a function like this:
    1. here is a long-run job(something like getting data from database or other resources);
    2. If I clicked a button, then the job started and get the data.
    3. When the job is done, I show the data in the tableview of my JavaFx application.
    4. then the job waiting some random time(such as 100 seconds).
    5. then the job started again automaticlly.
    so, the steps are 2->3->4->5->3->4->5->3->4->5->........
    so, the important things is that the job runs many times automaticlly.
    I know I should implements the job as a Service or Task in javaFx, But where should I put my "while(true){ job.start();sleep(random_time);}" loop code to make the job start automaticlly after some random sleep time.
    I wonder what is the best practice for this use case.
    My english is poor, but i hope you can understand what i'm dealing with.
    Thank you very much!
    Edited by: user9529194 on 2011-12-18 下午8:20

    Hi,
    Based on the response from John,
    I think you can acheive the functionality as below.
    // Creating the tableview.
    TableView<Person> personTable = new TableView<Person>()
    // Instantiating the personlist.
    ObservableList<Person> persons = FXCollections.observableArrayList();
    // Setting the list to the table.
    personTable .setItems(persons)
    final Button button = new Button("Refresh");
    final Timeline repeatTimeLine = new Timeline(
          new KeyFrame(Duration.seconds(100), new EventHandler<ActionEvent>() {
                @Override
             public void handle(ActionEvent event) {
                    // Call the service method to update the list.
                       PersonService.updatepersons(persons );
    button.setOnAction(new EventHandler<ActionEvent>() {
         @Override
         public void handle(ActionEvent arg0) {
                 repeatTimeLine.setCycleCount(Timeline.INDEFINITE);
                 repeatTimeLine.play();
    });And in the Service class...
    public void updatepersons(final ObservableList<Person> persons){
              final Task<List<Person>> getPersonTask = new Task<List<Person>>() {
              @Override
              protected List<Person> call() throws Exception {
                   return getPersonService().getPersons();
         getPersonTask .stateProperty().addListener(new ChangeListener<State>() {
              @Override
              public void changed(ObservableValue<? extends State> arg0, State arg1, State newState) {
                   switch (newState) {
                   case SUCCEEDED:
                        persons.clear();
                        persons.addAll(getPersonTask .getValue());
                        break;
                   case FAILED:
                        break;
         ThreadManager.getInstance().schedule(this.getClass(), getPersonTask );
    }I hope this code can give you some idea.
    Happy Coding !! :)

  • Human Task UI generation

    Is there any other tool / method to create human task UI without using the "Auto -Generate" the task form from the JDeveloper. I mean it can be any tool or procedure that is outside of JDev

    Hi user080811,
    Thanks for the reply. I already know about ADF Task Flow based on Human Task . But I heard we can develop UIs for the task workspace without using even jdeveloper. Is that true? if possible, how it can be?

  • Workflow - Assign serial tasks

    Hi,
    Perhaps I'm overthinking this or I just have got my brain in a knot, but I'm so confused.  What I want to do using Designer is set up a workflow that does this (at its most basic):
    InfoPath form is submitted
    1) Send a task to person A (listed on the form)
    2) When A is done, send a different task to B
    3) When B is done, send a different task to C
    (Etc.)  There are 6 individual tasks that make up this "project".  There maybe a document created, maybe not.
    I want to get a little fancier in that there are due dates and would need to set reminders but I'm struggling with task vs approval.  I created a task list and have the form adding a task to the list, but this isn't really getting me where I need to
    go with tracking what's done.
    Anything else that can get my head in the right place would be appreciated.

    Hi,
    According to your description, my understanding is that when a InfoPath form is submitted, you want to send tasks to A,B,C,D,E,F with serial (one at a time).
    For your issue, you can create a SharePoint Designer workflow with "start workflow automatically when an item is created". Then you can set approval task with Participants: A;B;C;D;E;F , Serial (one at a time). Also you can set Due Date for Task
    Process.
    For more information, please refer to these blogs:
    http://plexhosted.com/billing/knowledgebase/226/How-to-create-a-simple-approval-workflow-in-SharePoint-Designer.html
    http://www.nothingbutsharepoint.com/2013/02/25/5-steps-to-enhance-sharepoint-2010-approval-workflow-aspx/
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • UWL - System doesnt support multiple tasks assignment for the same assignee

    Hi all,
    we have some tasks coming from our back- end system. When a certain task needs to be substituted to a colleague, no problem ... for one task. When we wish to assign him a second task, we get following message :
    <i>System does not support multiple tasks assignment for the same assignee</i>
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/0b/1fc20097b74c41b38621ec2a9454bb/frameset.htm">help.sap.com - substitution</a> :
    <i> System does not support multiple tasks assignment for the same assignee 
    For example: User can only assign one task to an assignee at a time in workflow.
    Collaboration Task does not support other tasks at all.</i>
    Is substitution only limited to one task per person? What would be a workaround? It's possible to create for each combination of tasks a definition in the back- end which is available from the substition drop down list, but this is not what our customer would like to see.
    Many thanks,
    Kevin

    Hi Boris,
    we're using the WebflowConnector.
    Thanks,
    Kevin

  • Common OCS problems

    Some of the questions might repeat on threads below.
    In this thread I'm trying to mention every problem(s) that with have with OCS.
    1. Workspace tasks (personal tasks)
    Workspace task defined for assignee doesn’t appear in personal tasks of that user (it’s not normal that I spend an hour by coffee in the morning to check what are my new tasks on certain projects/workspaces).
    I read some threads on metalink where this "problem" is mentioned under BUG section. Any idea?
    2. Content Services history
    Is it possible to have a review, history of accesses to a certain file (list of accesses to file).
    3. Discussion mails
    I have discussions opened in workspaces. Policy for receiving posts from outer mails is allowed. If I send an e-mail with attachment to the forum message (topic) is received, but there is no attachment inside! (from workspace discussion view).
    If I view topic under general discussion (workspace forums, ....) a link to attachment is included in message? Why the topic view is different? What to do?
    Thank you for replies if anyone.

    http://jakarta.apache.org/tomcat/faq/

  • CONNECT KEYBOARD TO APPLE TV

    I SHOULD LIKE TO CONNECT A BLUETOOTH KEYBOARD TO MY APPLE TV, IN ONDER TO HAVE ACCESS TO INTERNET LIKE WITH MY COMPUTER BUT IN MY SALOON-TV.
    IS THIS POSIBLE?

    Internet browsing is not an AppleTV feature - we all know that being a computer at heart it could do all sorts of things it doesn't currently, but it's a product aimed at specific tasks.
    Personally I wouldn't want to browse the net via AppleTV, but I can see why people would.
    In all honesty though I'd rather Apple invested time in improving the things it does currently and does well, without adding extraneous features to the detriment of it's core functionality.
    AC

  • Can I sync multiple .mac accounts with my address book???

    i have an idisk membership with 5 email accounts. i finally got around to syncing my address book to my .mac account. in doing this i found that i had to sync from my 'master' account. it worked fine, but when i sign on to one of my other .mac accounts my contacts are not there in the address book.
    can i only sync to the master account??? if so, this really ***** because i have multiple email addresses for various tasks (business / personal / junk). i'm really gonna be bummed.
    any help greatly appreciated!!!
    ...c

    Yes, if all the music is in the same iTunes library.
    (75555)

  • Best way to implement m to n relation?

    Could you please give me some advice on the best way to implement m-n relations in apex?
    Example: I want to store server and database info. A server can have multiple database of course. But in case of a RAC database, the database can be running on multiple servers. So I have tables:
    create table SERVERS (id number primary key, name varchar2(30));
    create table DATABASES(id number primary key, name varchar2(30))
    and an m-to-n table
    create table SERV_DB(serv_id number references SERVERS(id), db_id number references DATABASES(id), instance_name varchar2(30))
    So the table SERV_DB can tell me e.g. that database PROD is running on server 'prdsrv1' with instance PROD1 and on server 'prdsrv2' with instance name PROD2
    How would you design an apex page to maintain this information (adding relations, updating instance names, etc)? I have a solution using checkboxes and 2 for-loops over htmldb_application.g_f40 (to process checkboxes) and g_f41 (to process text fields with instance names) and some delete statements but the logic behind it looks too complex for me. I am convinced that this can be done more simpler. Seems like a common problem to me, so I wonder if there is no out-of-the-box solution in apex for this?
    Could you please show me or create a small demo application with the solution that looks most elegant to you?
    Thanks,
    Geert

    Thanks for your reply. You modified the question slightly, but conceptually it is still the same. What you call the instances table corresponds with my serv_db table. I understand the solution you propose using the tabular report. If I see it correctly, you would have an insert button above the tabular report for each new relation (instance - server) you would want to add. This is ok for the case i used (databases, servers, instances) because there are relatively few relations. However I would not like this solution for other cases. E.g.:
    case: you have a list of persons and a list of tasks. You want to assign tasks to persons in a way that each person has multiple tasks to do and each task can be assigned to multiple persons.
    Suppose you add a new person, and you want to assign 15 tasks to him. The solution above (with the tabular report) would be quite some work because you would have to click 15 times on the insert button and on each click select a task from the select list. In this case it would be more appropriate to, after selecting the new person, see a list of all tasks (e.g. 30 tasks) with a checkbox in front, so you can mark 15 out of the 30 checkboxes and press submit. It gets more complex when you want to assign also an attribute to the relation, i.e. showing the list with all tasks, a checkbox in front and a select list next to each task where you can choose from e.g. "priority high" or "priority low" to indicate that this task is high or low priority for that person. Is there an easy way to implement that?

  • How to update Payload in existing BO using Event SubProcess( Non Interrupt)

    Hi ,
    I am using oracle BPM 11.6 Version.
    Let me explain the Problem :
    1. CoreProcess contains Three Human Task.Following Roles
    1) Approver One .
    2) Approver Two.
    3) Approver Three.
    2. Request Created through external Application ( As-Synchronous Process )
    3. PAN Card number as Correlation Key and Maintain Status element also.
    Status like -- Created, cancelled ,opened, Re-opened.
    4. External system have to update status on CoreProcess , using Event Subprocess ( as non interrupting Event to update Current Payload ).
    Problem I am facing :
    When I try to update Status , Not updated in my coreProcess payload.when ever coreProcess instance wait in any human task workspace.
    Using Event subProcess ( Non interrupt Event to achive this ) but my coreProcess pay load information not changed.I tried with Update Task to achive but no option to achive this.
    Can any one please help me . Thanks in advance.
    Regards
    krishna Moorthi p

    A non-interrupting even subprocess will no work on a copy of the data, it works on the same copy of the data as the rest of the process. Your problem is coming from the fact that human tasks are handled by the TaskService which is external to the BPMN engine. When the human task is created a copy of the payload is sent to the TaskService. This data is kept there until the task is completed at which time the updated payload is sent back to BPM.
    In your case you are updating the process data objects but that does not update the task payload as well. Unfortunately the Update Task activity does not seem to support updating the payload. I think the 2 options you would have are:
    1. Use the TaskService directly as a web service to update the payload
    2. Try updating the payload and then withdrawing the task. You can then possibly model a loop back to your human task in the process.

  • Macbook Pro 13" or Mac Air 13"

    Hey, can anyone offer reasons to go with the 13" Macbook Pro over the new Mac Air 13". Plan on keeping this as my primary for the next few years. I heard a rumor that a new version of the Macbook Pro will be coming out in the next few months. Is it worth the wait ??

    Next macbook pro is at least 7-8 months the new one just came out in March.... It's hard to make a recommendation when we don't know what your using the macbook for.... Do you travel alot? Do you carry the macbook to school or work? What sort of battery life are you looking for? What sort of applications will you be running? These are all things that matter when it comes to choosing any computer for certain tasks... As your primary I'm guessing mostly email, web, music, movies and that sort of thing?
    The ssd is definately a plus for the AIR. But like the previous user stated; your not going to be upgrading anything internally on the AIR yourself. If you get a macbook pro, you could always buy an aftermarket SSD and swap at a later time as well as upgrade your ram, change the battery yourself after the warranty expires, etc.... If you need a graphically demanding machine do not get either one, you'll be dissapointed if your doing anything that requires a decent gpu. These both have integrated ones GPU's unlike the 15" macbook pro model. However, for the everyday user, the specs are plenty good enough to do most tasks.
    Personally, I would go with the 13" macbook air. If not only because it comes with an SSD and was just released like a week ago, but also because RAM doesn't really matter when your using an SSD, 4GB is plenty enough. Hands down 13" macbook air with the 256GB SSD.

  • BCC FlexUI fails to show all Assets involved in a Project

    In the BCC for ATG 10.0.2 there are 2 different UIs with which to configure a CA Project; The Flex UI is accessed via the Merchandising Menu and the Workflow UI is accessed via "Browse Projects" and the "To Do List". I have observed that the FlexUI consistently shows less assets than the project actually has. The Workflow UI always shows all the assets. In particular, the Flex UI never seems to see any Products that have been changed or added in my Project, only Catageories, SKUs, and Catalogs. What's up with that? Is this an ATG Flex UI bug?

    I dont think assignment of task through merchandising UI was available in previous versions of ATG also.
    Assignments of tasks can be done only through Content Administration > Browse project or through the To Do list on home page.
    In Flex UI you can only proceed till the deployment step and FlexUI will force you to go to home page when you click deploy to staging/production. This is how FlexUI works. Nothing can be done for it.
    So this is how assignment will work in this case; Author will assign the Ready to Review task to a person A. Person A will go to flexUI and review the asset changes, move the project one step ahead and come back to home page and assign next task to person B. Assignment will not be possible through FlexUI
    And regarding assets to be seen in FlexUI; you can see you added assets when you click on the project name on the top of the FlexUI screen. I have seen all my assets in the project and never got any issue with the asset count mismatch, though never tried with too many assets(just below 20). I dont know if it fails to show assets which are large in number.
    But definitely it shows products,categories,skus etc.

  • How to Obtain taskId of a particular process instance

    Hi All
    I have a requirement to receive input & feed the received input for approval (through human task). I would like to bypass the login aspect for the human task & directly display the particular instances task details. I don't want to display all the pending tasks (in a worklist fashion).
    My flow will be as follows:
    Person A initiates the process & feeds input.
    The next task is a human task.
    Person A/Person B should see the input fed by person A in the human task for this current instance.
    Is there a way to pass instance id or task id across the entire workflow? Based on task id, I can display the payload form directly for human task.
    Thanks
    Badri

    http://download.oracle.com/docs/cd/E12483_01/integrate.1013/b28985/oracle/bpel/services/workflow/query/ITaskQueryService.html

Maybe you are looking for