How to merge request and dependent task

Hello,
I would like to merge some TOs generate during the last month and I see than I have some object which are missing because they are only present in tasks.
Is it possible to choose all objects contains in requests and dependant tasks when we have only the requests number?
Thanks for your answers
Regards,
Nico.

Tasks are designed to be run once. If you want restart functionality, use a service:
http://docs.oracle.com/javafx/2/api/javafx/concurrent/Service.html
The sample service I posted in the following thread demonstrates how to do this:
Multithreading
Use of Executors is not necessary as a Service encapsulates the execution thread management (though you can set your own executor on the service if you really needed it). All you need to do is make use of the service start, cancel, restart and reset methods as required. If you do use the cancel method, then you need to make sure that your service is properly interrupt aware for the cancel to function as you expect.

Similar Messages

  • How to merge theme and slideshow

    Hello Guys
    I need your help on how I can merge theme and slideshow. I am trying to save the slideshow to an external hard-drive where i store my movies without having to burn it. The options I have are:SAVING AS DISC IMAGE and SAVING AS VIDEO TS_FOLDER.
    If i save my project using either of the two, it saves them as a FOLDER and when you open the folder, there are 2 other folders which are AUDIO _TS and VIDEO_TS. This is where the slide gets SPLIT- result is you have the theme separated from the slide show. This then means that I have to play the theme first and then go on to select the slideshow.
    I just want it to be as simple as just clicking on the slideshow and then it plays the theme and gives me the option to start the slideshow just as it happens to a burned DVD.It will automatically play the theme first.
    Please help!

    Thanks for responding
    I am using an External hard drive which can be connected to a TV. Its one of those you can save all your videos and music ect...Yes the Audio_TS folder is empty.
    Just a bit more info for you-: If I burn a slideshow project with a theme, I can automatically see the theme and the title ect.. and can also click play to start the slideshow.
    But when saved as a DISK IMAGE or VIDEO_TS, It will ONLY start playing the slideshow without showing THEME,TITLE ect..

  • Task response and dependent task on response mapping

    Hi All,
    I am using OIM 10g. I was wondering if anybody has a query which gives task response vs dependent task on response mapping.
    For example if Tasks A's response is Success C then on that I will run Task B so the query should return all these three element.
    Thanks in advance.

    Hi,
    You can use this query as per you requirement,
    select pkg.pkg_name, mil.mil_name, rsc.rsc_data, rsc.sta_key, sta.sta_status, sta.sta_bucket, mil2.mil_name
    from pkg pkg, tos tos, mil mil, mil mil2, rsc rsc, sta sta, rgm rgm
    where pkg.pkg_key = tos.pkg_key
    and tos.tos_key = mil.tos_key
    and mil.mil_key = rsc.mil_key
    and rsc.sta_key = sta.sta_key
    and rgm.rsc_key = rsc.rsc_key
    and rgm.mil_key = mil2.mil_key
    and pkg.pkg_name = 'Exchange' -- Your application name
    order by pkg.pkg_name, mil.mil_name, rsc.rsc_data, sta.sta_status, mil2.mil_name.
    Thanks,
    Kuldeep

  • Transport Request and Transport task

    Hi,
    I have released a task, but cannot see the diff in the changes in the system it should hv been released to..can some one tell me what the procesdure is for transport.
    thanks in advance

    Hi
       Once the requests are released, they are ready for importing to other systems. Please note that requests released doesnt mean they are ready to use in other systems. These objects will be reflected with the changes after explicitly importing them.
       Each and every company has different procedures in importing the requests based on the transporting layer definitions.
       1. Via transaction: STMS. -> Click on Import Overview button on application toolbar. -> Select the server to which this has to be imported. -> Refresh the list to make sure that all released requests are here. Now select the request that has to be imported and use menupath: Request->Import(Ctrl+F11).
       2. Via UNIX, using script commands this can be done.
       Am not sure if there are any other procedures...
    Kind Regards
    Eswar

  • HT204053 how to merge iCloud and Apple IDs?

    How can I merge my iCloud and Apple ID's?

    I just got off the phone with Apple's support (got transferred several times, but they finally transferred me to an "expert" in the security department.
    I'm moving to the east coast, and my current ISP is only local to the California Bay Area, so I need to use a new email address for my AppleID.  I thought the obvious choice would be my icloud.com email address.
    The Apple support "expert" was confused, but eventually said I'd need to create a non-apple email to use as my email address for my existing AppleID if I didn't want two separate ID's.
    My response was "So Apple is recommending that I do NOT use iCloud and I should create an non-Apple email account?"  He said "Unfortunately, yes."
    Come on Apple - you look riduculous.  You're abandoning loyal long time customers by saying either create and manage two AppleID's or don't use "iCloud" so you can have a single AppleID.
    It's time for Apple to step up and fix this ridculous mess.

  • How to merge wireless and ethernet networks?

    I have a TC with one Mac connected through ethernet and the other Mac and iOS devices connecting through wireless. How can I merge the ethernet network and the wireless network so that I can share iTunes libraries between the 2 Macs? Thanks

    Thanks for you help.
    This would take care of the "normal" file sharing between the 2 Mac. But I'm trying to use the iTune feature called Home Sharing, which allow sharing music etc among familly computers that are on the same network, independantly (as far as I understand) of any file sharing set up in the Mac OS. However my experience so far is that the 2 Mac between which I want to apply this Home Sahring feature have to be on the same network. Indeed even if I only have a TC as my router, the 2 Mac have to be on the same wireless network (main or guest). Since one of my Mac is on the ethernet network and the other on the wireless (main) this does not seam to work. I feel that somehow this Home sharing feature looks for the name of the network and make sure that the 2 computers between which I'm trying to enable sharing use the same network (i.e. same name). However the ethernet network does not have a name....
    For now, the solution is to have the ethernet wired Mac to also be connected on the wireless network. I'm just not sure how the OS is handeling the connection to 2 networks (hopefully giving priority to the faster/more reliable ethernet one).

  • How to merge menubar and tab bar?

    Currently, the menubar and the tab bar are separate bars and therefore take up double vertical space.
    How can I merge them so that tabs would show to the right of the menubar?
    Please help.
    Thanks.

    Both the menu items and the tabs are tied to their own dedicated toolbar and can't be moved to another toolbar.
    Both allow other items to be placed on their toolbar and you can use an extension to subsequently hide empty toolbar if you can't do this in Firefox.
    You would need to use an extension that either makes it possible to merge the two toolbars or collapse the menu items in a toolbar button and place that button on the Tab bar.

  • How to start, stop and restart task

    Hello Everyone,
    Need advice on what is the correct way to start, stop and restart a Java task?
    I have tried with Executors.newCachedThreadPool() or fixedThreadPool() however I was only able to submit the task once. My program crashed when i tried to resubmit the task again after a shutdownnow command()

    Tasks are designed to be run once. If you want restart functionality, use a service:
    http://docs.oracle.com/javafx/2/api/javafx/concurrent/Service.html
    The sample service I posted in the following thread demonstrates how to do this:
    Multithreading
    Use of Executors is not necessary as a Service encapsulates the execution thread management (though you can set your own executor on the service if you really needed it). All you need to do is make use of the service start, cancel, restart and reset methods as required. If you do use the cancel method, then you need to make sure that your service is properly interrupt aware for the cancel to function as you expect.

  • How to merge PDF and html using vba

    I've successfuly implemented code to merge multiple PDFs.  However when pointing to an HTML file, my code seems to leave it out and continue to merge the rest of the PDF files.  What am I doing wrong with my code?
    Dim objCAcroPDDocDestination As acrobat.AcroPDDoc
    Dim objCAcroPDDocSource As acrobat.AcroPDDoc
    dateFormat = Format(Now, "mmddyy")
    dateformat2 = Format(Now, "mm-dd-yyyy")
    Dim sourcefile As String
    'Initialize the objects
    Set objCAcroPDDocDestination = CreateObject("AcroExch.PDDoc")
    Set objCAcroPDDocSource = CreateObject("AcroExch.PDDoc")
    'Open Destination, all other documents will be added to this and saved with
    'a new filename
    objCAcroPDDocDestination.Open ("location\Daily.pdf")
    'Do your loop here to open subsequent documents that you want to add
    'Do
      'Open the source document that will be added to the destination
       'objCAcroPDDocSource.Open (location & "07-" & "032613" & ".pdf")
      For count = 2 To 13
        If count < 10 And count <> 5 Then
            objCAcroPDDocSource.Open (location & "0" & count & "-" & dateFormat & ".pdf")
        Else
            objCAcroPDDocSource.Open (location & count & "-" & dateFormat & ".pdf")
        End If
        If count = 5 Then
            objCAcroPDDocSource.Open (location & "0" & count & "-" & dateFormat & ".html")
        End If
        If objCAcroPDDocDestination.InsertPages(objCAcroPDDocDestination.GetNumPages - 1, objCAcroPDDocSource, 0, objCAcroPDDocSource.GetNumPages, 0) Then
        Else
            '0 problem
        End If
        objCAcroPDDocSource.Close
      Next count
    'loop
    objCAcroPDDocDestination.Save 1, location & dateformat2 & "-Daily.pdf"
    objCAcroPDDocDestination.Close
    Set objCAcroPDDocSource = Nothing
    Set objCAcroPDDocDestination = Nothing

    Since I could open an .html file using Abode Acrobat 9 Pro, I thought I'd be able to pass .html to the .open() method. Am I going about this the wrong way? I have the option to select all files in a particular folder and combine them (.html and .pdf).  Does anyone know what method is called when I do this?  I have an option to "Combine Supported Files in Acrobat" when I right click on a group of files.

  • How to merge exchange and imcloud contacts

    I am using outlook at work and I sync my mail, calendar and calendar with my ipad through exchange.
    I activated icloud to have my contacts and calendar synchronized on my iphone, but the info of my outlook are not synchronized.
    Is there anyway to merge the icloud and exchange data?

    iCloud only syncs contacts in your iCloud account, not your exchange account.  You would have to copy or move your exchange account contacts to your iCloud account in order to have them sync with iCloud.  Unfortunately, you can't export them from Outlook in a compatible format to allow you to import them to iCloud.  You could, however, try using an app like Speed Names to do this on your phone.

  • How to merge FB and Microsoft account

    I'm a mac user, using latest OS. I have Skype with my FB account and also with my microsoft account [e-mail removed for privacy and security] I can't merge them. I follow instructions which imperfectly describe windows.

    Hello I am Alex I am using skype

  • How to merge standard and Custom BADI into one BADI..

    Hello all,
    I have two BADI's.
    1) standard BADI
    2) Custom BADI
    I need to merge these two into a single BADI. Is that Possible.
    If yes how to move forward, because I am new to BADI.
    Waiting for reply.
    Subba

    Solved...created a new implementation for this...

  • How to achieve Insert and delete task simultaneously.

    Hi,
    I inserted bulk record from localDatabase to Sql Server.  (Done)
    private void Form2_Load(object sender, EventArgs e)
    using (SqlConnection destinationConnection = new SqlConnection(connectionString))
    progressBar1.Minimum = 0;
    progressBar1.Maximum = sourceData.Rows.Count;
    destinationConnection.Open();
    using (SqlBulkCopy bulkCopy = new SqlBulkCopy(destinationConnection.ConnectionString, SqlBulkCopyOptions.TableLock))
    bulkCopy.SqlRowsCopied += new SqlRowsCopiedEventHandler(OnSqlRowsTransfer);
    bulkCopy.NotifyAfter = 1;
    bulkCopy.BatchSize = 2;
    bulkCopy.ColumnMappings.Add("email", "email");
    bulkCopy.ColumnMappings.Add("fulname", "fulname");
    bulkCopy.ColumnMappings.Add("sex", "sex");
    bulkCopy.ColumnMappings.Add("date", "date");
    bulkCopy.DestinationTableName = "MagData";
    bulkCopy.WriteToServer(sourceData);
    SqlDataAdapter adap = new SqlDataAdapter();
    private void OnSqlRowsTransfer(object sender, SqlRowsCopiedEventArgs e)
    progressBar1.Value = Convert.ToInt32(e.RowsCopied);
    I also want to delete data from localDatabase that copied to server.
    How can i complete this task?
    Any help....
    Kind Regards, Anurag Prajesh

    I tried with TransacTion Scope,data is still there.My First Form Cotain below code on Button click. private void button1_Click_1(object sender, EventArgs e)
    DataSet ds = new DataSet();
    DataTable sourceData = new DataTable();
    SqlCeConnection con = new SqlCeConnection(localConnectionString);
    SqlCeDataAdapter adap = new SqlCeDataAdapter("select * from LocalData", con);
    adap.Fill(ds);
    sourceData = ds.Tables[0];
    Form2 obj = new Form2(sourceData);
    obj.Show();
    }My Form2 contain below code. Now progress bar also not working.private void Form2_Load(object sender, EventArgs e)
    SqlConnection destinationConnection = new SqlConnection(connectionString);
    SqlCeConnection con = new SqlCeConnection(@"Data Source=|DataDirectory|\LocalDB.sdf ;Persist Security Info=False;");
    progressBar1.Minimum = 0;
    progressBar1.Maximum = sourceData.Rows.Count;
    destinationConnection.Open();
    con.Open();
    using (TransactionScope scope=new TransactionScope())
    using (SqlBulkCopy bulkCopy = new SqlBulkCopy(destinationConnection.ConnectionString,SqlBulkCopyOptions.Default))
    bulkCopy.SqlRowsCopied += new SqlRowsCopiedEventHandler(OnSqlRowsTransfer);
    bulkCopy.NotifyAfter = 2;
    bulkCopy.BatchSize = 1;
    bulkCopy.ColumnMappings.Add("email", "email");
    bulkCopy.ColumnMappings.Add("fulname", "fulname");
    bulkCopy.ColumnMappings.Add("sex", "sex");
    bulkCopy.ColumnMappings.Add("date", "date");
    bulkCopy.DestinationTableName = "FinMagData";
    bulkCopy.WriteToServer(sourceData);
    destinationConnection.Close();
    using (con){
    con.Open();
    SqlCeCommand cmd = new SqlCeCommand("delete from LocalData",con);
    cmd.ExecuteNonQuery();
    con.Close();
    scope.Complete();
    scope.Dispose();
    private void OnSqlRowsTransfer(object sender, SqlRowsCopiedEventArgs e)
    progressBar1.Value = Convert.ToInt32(e.RowsCopied);
    Kind Regards, Anurag Prajesh

  • QT 7.1.5: How to merge Video and Audio tracks?

    I have a movie without a sound track and a mp3-file which I want to merge. I know that both should have the same length.
    First I opened the audio file, selected all, copied it - then opened the video file, selected all and pasted it. Sounds good and functioned properly.
    Trying to start the movie on another Macintosh, QT asks for the mp3-file. What went wrong, what to do?
    Greetings from the middle of Germany
    Herbert

    You failed to save the new file as "self-contained".
    You should use Save As and check the box for self-contained.

  • HT3702 I got billed for an upgrade that I didnot know would include a charge. How do I request and adjustment?

    I got billed for an app upgrade that I didnot know would inlcude a charge. How do I get a credit?

    You can try contacting iTunes Support and see if they will refund or credit you : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

Maybe you are looking for

  • Touchpad Adobe Reader stuck at opening screen

    Hi, I downloaded the update for adobe reader version 10.3.351 and now the reader is stuck at the opening screen. I have tried opening my pdf files through quickoffice, restarted the touchpad and nothing seems to work. WebOS doctor is not giving me an

  • Message attachments not restoring on new device

    I just upgraded to an iPhone 6 from an iPhone 5, and everything was updated and restored as expected, except for any photos or attachments in my text messages/iMessages that aren't photos saved in my albums. I've tried backing up my iPhone 5 multiple

  • VIPCA problem: PRKH-1010 : Unable to communicate with CRS services.

    I have installed clusterware across 2 nodes recently in a virtual environment. I have been following a guide on how to do this and everything has gone as expected apart from when i try to run VIPCA manually (as detailed in the guide). When trying to

  • Library organization

    Hi, I don't understand why the music folder separates tracks according to artist and the featured artist. For example, "Dreamgirls" is split into multiple ablums depending on who the artist and featured artists are for that song. How can I fix this s

  • Change Highlight Selection Color

    The default color when a cell or item is selected is a light cyan. On my computer it is very hard to discern text because the light cyan highlight color and the white text run together. How can I adjust the highlight/selection color so that text is l