Matching score for new records added to existing workflow

Hi SDNers,
My doubt is:
I have a 2 Workflows which are already in process. The triggering event for them is Manual, Record Import.
Now I manually assigned 20 records  to "Workflow A" based on Condition 1
Also, I manually assigned 20 records  to "Workflow B" based on Condition 2
I am importing 30 new records. Based on the condition, I want to assign these records to the existing Workflow A / Workflow B.
Note: There is a Match stencil, so the newly created records have to be matched against the existing records in the present Workflow itself.
Is it possible to add new records o existing workflow manually?
Also, what about the Matching score? will the records be matched?
Thanks & Regards,
Priti

Hi Priti,
I tried restricting records using Named Searhes and Masks but it includes all the records with Match step property Records Vs All. You have to perform some maunal step either by selecting records using some search criteria or you can use Named Searches i.e.
1. Create one field say New of type boolean and by default set it to NO.
2. Create one named search for this field value to YES.
3. Create one assignment which sets the value for this field to YES and add this assignment in the workflow as the first step.
4. When ever you import records, assignment will set New=YES for all the records imported. Now, when you add more records, search the previous records using Restore Named Search function which will give the list of records imported now. You can perform Matching and Merging operation.
5. Add one more assignment to the workflow as the last step which should set New=NO so that records should not appear next time for Matching
Regards,
Jitesh Talreja

Similar Messages

  • HT201303 I have a new ipod added to existing laptop itunes account it is now asking a security question i have not answered help

    I have a new ipod added to existing laptop itunes account it is now asking me a security question I have not answered - can anyone help please ?

    Click here for information. If the option to have the answers emailed to you isn't available or doesn't work(the email may take a few hours to arrive), contact the iTunes Store staff via the link in that article.
    (88450)

  • ALV Grid default values for new rows added with Add/Insert buttons

    Hi!
    Help, please,  to find a way how to set default values for new rows added with Add/Insert buttons in
    ALV Grid.

    I have found salution:
    ALV Grid u2013 Insert row function
    Sometimes we need to assign some default values when we create a new row in a grid using standard ALV Append row button. In our scenario we will see how to assign default values to Airline Code (CARRID), Flight Connection Number (CONNID) and Flight date (FLDATE) when a new row is created. To do that we need to handle DATA_CHANGED event in the program like mentioned below.
    Definition of a class:
    Code:
          CLASS lcl_event_receiver DEFINITION
    CLASS LCL_EVENT_RECEIVER DEFINITION.
      PUBLIC SECTION.
    METHODS:
         handle_data_changed
         FOR EVENT data_changed OF cl_gui_alv_grid
         IMPORTING er_data_changed
                           e_ucomm.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    Implementation of a class:
    Code:
    CLASS LCL_EVENT_RECEIVER IMPLEMENTATION.
      METHOD HANDLE_DATA_CHANGED.
        DATA: dl_ins_row TYPE lvc_s_moce.   " Insert Row
          FIELD-SYMBOLS: <fs> TYPE table.    " Output table
    Loop at the inserted rows table and assign default values
        LOOP AT er_data_changed->mt_inserted_rows INTO dl_ins_row.
          ASSIGN er_data_changed->mp_mod_rows->* TO <fs>.
          loop at <fs> into ls_outtab.
            ls_outtab-carrid  = 'LH'.
            ls_outtab-connid  = '400'.
            ls_outtab-fldate  = sy-datum.
            MODIFY <fs> FROM ls_outtab INDEX sy-tabix.
          endloop.
        endloop.
      ENDMETHOD.                    "handle_data_changed
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
    Register the events to trigger DATA_CHANGED event when a new row is created.
    Code:
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_ENTER.
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.

  • Dbadapter has to pool for new records in a particular date

    i have requirement dbadter has to pool for new records in a particular date.
    what is the property to achieve this requirement and where i can set that property.
    please provide me solution....
    Edited by: 939689 on Jun 11, 2012 4:04 AM

    Ok I misunderstood the question.
    If a scheduler is not possible although easy to implement, you can also try something like this on your poller.
    select * from table where sysdate in (list_of_dates)
    I just typed the query in, but you get the idea I hope. I had a similar requirement and this is how I achieved it:
    Re: Scheduling BPEL Process to run at a particular Time

  • How to write the new records not with existing records.

    hi,
    I have a script.If i execute the script it writes the records.but its writing with the exisiting records.It writes not only the new records but also the old records.
    for eg: the exisiting records are:
    1111115-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111116-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111117-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111118-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111119-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    but now what happend is the new records such as
    1111116-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111117-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111118-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111119-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    it gets appended with the old existing records,
    1111117-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111118-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111119-2,USD,DINESH,1,1,,,,9,,,,123456184001,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111113-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111114-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111115-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111116-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111117-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111118-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    1111119-2,USD,DINESHBABU,1,1,,,,9,,,,123456184003,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9999,,,,
    there will be some problem happens when we are going to upload a bulk data of say 25000 records.if its gonna update 20000 records,rest 5000 records i have to do it in next step,if this is going to happen then the first 20000 records will be displayed forever.because it have the capacity to write 20000 records.thenext 500 records will not be written.so there is a chance of redundancy.how to avoid this redundancy while running this script
    my script is
    create or replace procedure input_tables(table1 in varchar2)
    is
    str varchar2(32767);
    cnt number(2);
    cursor c1(tname in varchar2)
    is
    select column_name
    from all_tab_columns
    where table_name = tname
    order by column_id;
    rec c1%rowtype;
    begin
    cnt:= 1;
    str:= 'declare '||
    'cursor c2 '||
    'is '||
    'select ';
    open c1(table1);
    loop
    fetch c1 into rec;
    exit when c1%notfound;
    if cnt = 1 then -- Added New
    str:= str||rec.column_name; -- Added New
    cnt:= cnt + 1; -- Added New
    else -- Added New
    str:= str||'||'',''||'||rec.column_name; -- Added New
    end if; -- Added New
    end loop;
    close c1;
    str:= str||' SRC from '||table1||';'||
    ' r2 c2%rowtype;'||
    ' ft UTL_FILE.file_type;'||
    ' str2 varchar2(200);'|| --Added New
    ' begin '||
    ' ft := UTL_FILE.fopen(''SAMPLE'',''OUTPUT.csv'',''w'');'||
    ' for r2 in c2'||
    ' loop '||
    ' UTL_FILE.put_line(ft,r2.SRC);'||
    ' end loop;'||
    ' UTL_FILE.fclose(ft);'||
    ' end;';
    execute immediate(str);
    end;
    thanks,
    Ratheesh.

    Hi!
    U can check the following script --
    create or replace procedure input_tables(table1 in varchar2,start_col in number,last_col in number)
    is
         str varchar2(32767);
         cnt number(2);
         cursor c1(tname in varchar2)
         is
           select column_name
           from all_tab_columns
           where table_name = tname
           order by column_id;
         rec c1%rowtype;
    begin
         cnt:= 1;
         str:= 'declare '||
         'cursor c2 '||
         'is '||
         'select ';
         open c1(table1);
         loop
              fetch c1 into rec;
              exit when c1%notfound;
                   if cnt = 1 then -- Added New
                        str:= str||rec.column_name; -- Added New
                        cnt:= cnt + 1; -- Added New
                   else -- Added New
                        str:= str||'||'',''||'||rec.column_name; -- Added New
                   end if; -- Added New
         end loop;
         close c1;
         str:= str||' SRC from '||table1||
         ' where rownum between '||start_col||' and '||last_col||';'|| -- Added New
         ' r2 c2%rowtype;'||
         ' ft UTL_FILE.file_type;'||
         ' str2 varchar2(200);'|| --Added New
         ' begin '||
         ' ft := UTL_FILE.fopen(''SAMPLE'',''OUTPUT.csv'',''w'');'||
         ' for r2 in c2'||
         ' loop '||
         ' UTL_FILE.put_line(ft,r2.SRC);'||
         ' end loop;'||
         ' UTL_FILE.fclose(ft);'||
         ' end;';
         execute immediate(str);
    end;
    / To print first ten rows --
    exec input_tables('EMP',1,10);  --first 10 rowsTo print next remain rows --
    exec input_tables('EMP',11,15);N.B: No tested....
    Regrads.
    Satyaki De.

  • Cutover approach - new fields added to existing DataSources / DSOs / Cubes

    My current project has been phased across multiple releases. The phase 1 go-live was a few months ago and there is already a reasonable amount of data in the production environment. We will soon cutover from our QA to production environment. Some of our developments involve the addition of new fields (not key fields) to datasources.
    For existing delta-enabled DataSource we are going to adopt the following approach:
    1- Source system transports deployed
    2- DataSources replicated in BI system
    3- Before InfoObject / InfoProvider transports are sent we will delete data
    4- The INIT flag will be deleted
    5- Full Repair loads will be executed
    6- INIT without Data Transfer will be executed
    For new delta-enabled DataSources we are going to:
    1- Source system transports deployed
    2- DataSources replicated in BI system
    3- INIT loads executed
    4- DELTA loads executed
    Does this approach seem correct? Does this avoid the risk of losing any data? Will it lead to delta loads functioning correctly? Will we get data loaded in the new fields for existing records?

    One approach that we used for getting around having to delete and re-fill setup tables (which, by the way can be done without downtime - I wrote a blog on that about 1 year or more ago), is to create generic DataSources (some with generic deltas) for the additional data, ensuring that we had the keys for the target InfoProviders in the DataSource and then used those as an additional transformed source to the InfoProviders.
    Example:
    Was
    2LIS_XX_XXX -> 0XX_DSXX
    Now
    2LIS_XX_XXX  \
                              >    0XX_DSXX (with appended columns)
    ZLIS_XX_XXX /
    Edited by: Dennis Scoville on Oct 13, 2010 10:28 AM

  • Creating new records while querying existing record

    Hi,
    I have one master - detail form.
    First i created 1 record. Request ID is the primary key. Now request id generated. For ex.: 10
    Request Id, date, requestor , location, status fields are in header block.
    In lines block, i hv some other fields.. and one field called 'Activity'.
    While creating first record, the activity will be 'New'.
    Then i'll query the record '10'.
    when i'm changing the activity 'New' into 'Upgrade', it should create new record with new request ID.
    How to do this?
    I hv written procedure that, i'm taking field values to local variables. Then assigning the local variable values to field values.
    It is not creating as new record. It overwriting the existing record with new values. Existing record is missing.
    Pl. give steps.
    Thanks
    Kavi

    Hi,
    Okk, you will have to do two things. Create two trigger on block level on which you want to do your changes.
    1. First trigger. (PRE-UPDATE)
    In pre-update trigger u will have to write the complete insert statement into the same table with new req id. like
    DECLARE
    vReqNo DATA_TYPE;
    BEGIN
    SELECT MAX(REQ_ID)
    INTO vReqNo
    FROM your_table;
    INSERT INTO your_table
    (req_no, fields....)
    VALUES
    (vReqNo, :forms_values);
    END;
    2. Create 2nd trigger on block level (ON-UPDATE)
    write in this trigger
    NULL;
    for viewing the inserted record. What u have to do is in ON-UPDATE after null; create one timer NO_REAPEAT.
    and in timer u will have to set the block property to req_id = generated_req_id_from_pre_update_trigger and
    execute_query;
    hope it will work...
    -Ammad

  • New MovieClips added to existing SWC library not available in Flash Builder

    To be as brief as possible with this...
    I have 2 swc libraries in my Flash Builder Project. One is in a "Common" project and the other one is in a MobilePlayer project. Obviously the "common" project contains UI assets that apply across the board, while the MobilePlayer version contains assets specific to that version of the application.
    Both swc files are in the respective libraries for each project we are referencing. Up until yesterday I could add new MovieClips to the "common.swc" and they would be available across the board instantly.
    Sometime yesterday I could not get new MCs added to my "common.swc" to show up in the intellisense, or become avaialble whatsoever.
    For troubleshooting I am creating a Square, turning it into a MC symbol, exported for AS with a classname of "Fubar"
    whenever I try and create a new instance of :Fubar() to anything anywhere in my applicatioin I get the Call to possibly undefined method Fubar error message. It does not show up in intellisense menus and it is NON EXISTENT.
    HOWEVER — Named movieclips within my .swc library I have already been using such as "CompanyLogo()" etc etc are STILL fully available and can be referenced from anywhere in my application. I can add a new CompanyLogo()  anywhere I want with no problem.
    As ANOTHER test, I REMOVED the movieclips CompanyLogo (and others) from my Library and re-saved the SWC.
    All of a sudden Flash Buider generates a compiler error (undefined method) for each missing referenced MC in the swc file (obviously, because they are no longer there).
    However, those named MCs still show up in intellisense menus etc etc.
    Basically what I can determine is that Flash Builder is not updating and picking up any changes to this SWC library whenever anything is added or removed from it. At some point it became "locked" in memory (for lack of a better term) and it refuses to recognize that the file has been changed.
    When I extract the catalog.xml from the SWC and read through it, I can find nodes for every single NEW mc I've created yet I cannot get them to show up in Flash Builder. I refresh, close and restart Flash Builder and have done everything I can possibly think of to get my updates to register and they refuse.
    On the other hand my "mobile.swc" updates just fine as I make changes to it. If I add a new MC to it, it is instantly available. If I take away a MC it FB instantly recognizes that it is gone.
    Am I doing something wrong here or am I correct in my assumption that for some reason FB refuses to update the contents of my "common.swc" library into memory?
    Any insight would be appreciated as I cannot find a single relevant answer in 3 hours of Google searching.

    OK,
    Now I see what is really going on. I am trying to reference MCs from my "common.swc" lib which is in a different project, and the reason they are showing up and available is because I used them in MXML files within the "common" project that are called upon and loaded before the mobile specific login screen MXML is loaded.
    I just did a quick test to see if the new button I created would be available within the "common" project and it is there, and shows up with intellisense etc etc as expected.
    When I add an instance of my new button to a MXML file being loaded before the mobile specific stuff I can then drop it into my mobile specific screens and it shows up.
    I either need to figure out how to reference MCs within a swc inside of a different project directly, or just declare them when the application first loads.

  • Requery Drop Down after new record added

    Hi,
    I have a form built with ADDT. There is a dropdown box tied to the buyers table (ID, Name) and a button to add new buyers. The buyers table has full contact info in it so I can't use the editable drop down. I need to be able to requery the drop down box after the user clicks the add buyer button, which opens a window with the add buyer form, so that it checks the table again and shows the new buyer in the drop down list.
    At the moment I have it all working except that when the user adds a new buyer they have to refresh the page, losing any data already entered, in order to see the newly entered data in the drop down. Is there a way to requery the drop down after a new record has been entered or when the user clicks the submit button of the add buyer form? Or, maybe requery when the user clicks on the control again after entering the new buyer?
    Any help is much appreciated,
    Tony

    Thanks again Gunter,
    Sorry, I've been out for a few days. I ended up solving the problem by adding a preform search form to search for the buyers in the table before hitting the form. If the buyer isn't there it's added before going to the form. Works for me.
    I do have another question about a javascript I've been trying to get working on the same form. It converts numbers in one field to words in another (http://javascript.about.com/library/bltoword.htm) and looks fairly simple, but I think the way ADDT creates the fields names I can't figure out how to make it work. I was able to get it to work on a simple html form, but not the ADDT form. Here's some code with the two fields and the button that calls the javascript. Below that is the call in the head section. The link is also there, but I don't need to post it.
    I know this can work but I really could use some help.
    Thanks for any help
    <td class="KT_th"><label for="guarantee_<?php echo $cnt1; ?>">Guarantee:</label></td>
    <td><input type="text" name="guarantee_<?php echo $cnt1; ?>" id="guarantee_<?php echo $cnt1; ?>" value="<?php echo KT_escapeAttribute($row_rscontracts['guarantee']); ?>" size="10"/>
    <?php echo $tNGs->displayFieldHint("guarantee");?> <?php echo $tNGs->displayFieldError("contracts", "guarantee", $cnt1); ?>
    <label>
    <input type="button" onclick="form1.price_text_1.value = toWords(form1.guarantee_1.value);" value="Convert to Text" />
    </label></td>
    <td width="106" class="KT_th"><label for="foreign_exchange_<?php echo $cnt1; ?>">Curreny:</label></td>
    <td width="150"><select name="foreign_exchange_<?php echo $cnt1; ?>" id="foreign_exchange_<?php echo $cnt1; ?>">
    <option value=""><?php echo NXT_getResource("Select one..."); ?></option>
    <?php
    do {
    ?>
    <tr>
    <td width="109" valign="top" class="KT_th">Price Text:</td>
    <td width="197" valign="top"><span class="KT_th">
    <textarea name="price_text_<?php echo $cnt1; ?>" cols="32" id="price_text_<?php echo $cnt1; ?>"><?php echo KT_escapeAttribute($row_rscontracts['price_text']); ?></textarea>
    </span></td>
    This is in the head section:
    <script language="JavaScript" type="text/javascript">
    <!--
    // Call num to words script
    var words = toWords(num);
    //-->
    </script>

  • Matching Displays For New iMacs

    Just wondering if Apple is considering making a MATCHING display for the new iMac line? It's great to be able to attach a second display to an iMac, but it would be even more kicking if it matched the look of the iMac with aluminum and glass. Any rumblings from Apple about this. I'm ready to buy!

    Hi Priti,
    I tried restricting records using Named Searhes and Masks but it includes all the records with Match step property Records Vs All. You have to perform some maunal step either by selecting records using some search criteria or you can use Named Searches i.e.
    1. Create one field say New of type boolean and by default set it to NO.
    2. Create one named search for this field value to YES.
    3. Create one assignment which sets the value for this field to YES and add this assignment in the workflow as the first step.
    4. When ever you import records, assignment will set New=YES for all the records imported. Now, when you add more records, search the previous records using Restore Named Search function which will give the list of records imported now. You can perform Matching and Merging operation.
    5. Add one more assignment to the workflow as the last step which should set New=NO so that records should not appear next time for Matching
    Regards,
    Jitesh Talreja

  • DB Adapter: Polling For New Records returns the First record multiple Times

    I Polling for New or Chnaged Records against DB2 on iSeries. The DB Adapter returns the first record from the Table multiple Times. If the Table has 5 records it displays the first record 5 times. I am using BPEL 10.1.3.1 Can anyone help me with this.

    Hi there,
    please check out the DBAdapter trouble-shooting guide:
    http://download-east.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/app_trblshoot.htm#CIHFEHFA
    I am copying an entry from there into here:
    A.1.21 Some Queried Rows Appear Twice or Not at All in the Query Result
    Problem
    When you execute a query, you may get the correct number of rows, but some rows appear multiple times and others do not appear at all.
    This behavior is typically because the primary key is configured incorrectly. If the database adapter reads two different rows that it thinks are the same (for example, the same primary key), then it writes both rows into the same instance and the first row's values are overwritten by the second row's values.
    Solution
    Open Application Sources > TopLink > TopLink Mappings. In the Structure window, double-click PHONES. On the first page, you should see Primary Keys. Make sure that the correct columns are selected to make a unique constraint.
    Save and then edit the database partner link.
    Click Next to the end, and then click Finish and Close.
    Open your toplink_mappings.xml file. For the PHONES descriptor, you should see something like this:
    <primary-key-fields>
    <field>PHONES.ID1</field>
    <field>PHONES.ID2</field>
    </primary-key-fields>
    Thanks
    Steve

  • Logic Express for news recording and editing?

    Based on the recommendation of many friends who work in public radio I bought a Digidesign M-Box 2 Mini and got ProTools to use for doing audio editing on news and spoken word projects. The thing has been a real pain in the butt causing me hundreds of system crashes and endless problems with my MacBook Pro (Late 2008). Digidesign has admitted that their M-Box driver is defective but they can't fix the current drivers 'cause they are soooo busy working on support for Snow Leopard (Which they may deliver sometime in Spring 2010). ProTools also requires that you have the M-Box connected to your system in order to launch the program.
    I'm fed up with being forced to connect a defective interface to my laptop every time I want to use ProTools and ready to try something else. Are the audio editing tools in the new Logic Express 9 good enough to use for this kind of work?
    I could almost get away with using Garage Band but it's a bit limited with support for only 16-bit audio (most news sources are pretty quiet and need boosting) and the GB interface makes me crazy.

    I think Logic is overkill for what you need - you'll never use 95% of it for recording/editing spoken word audio files.
    Although I'm not familiar with manipulating audio for news use, I'd think that something like Amadeus Pro would do the job.
    http://www.hairersoft.com/AmadeusPro/AmadeusPro.html
    with an interface such as an AudioFire like this:
    http://www.echoaudio.com/Products/FireWire/AudioFire4/index.php
    which is very good quality, reliable, and not expensive.
    BTW, recent versions of GarageBand do support 24-bit recording.
    http://support.apple.com/kb/HT1016

  • Can't get new photos added to existing iPhoto albums to sync with iPhone

    I tried talking about this in the iTunes area, but there was no response:
    https://discussions.apple.com/message/20660036#20660036
    I thought I'd drop by the iPhone discussion area next.
    The problem in a nutshell is that I can't get new photos added to iPhoto albums to sync with my iPhone 5. I can even unselect the albums, sync, see the albums deleted on the iPhone, select the albums again, sync, see the albums recreated - but the recreated albums don't include the photos I added yesterday.
    I don't know if this is an iTunes 11 bug, an iPhoto bug or an iPhone bug.
    Any suggestions?
    Thanks,
    doug

    Yes, but which album will be empty?
    Anyway, as soon as I saw how creating albums locally on the iPhone actually worked I said to myself, "This is not reasonable" and as much as I dislike iPhoto decided to keep doing it there until that feature is improved.
    It seems like an obvious thing to improve. Then the albums can sync between the iPhone, iPhoto and other iOS devices more like "it just works" (which it doesn't do now).
    doug

  • Missing support for new datatypes added in 9i and 10g

    Oracle has added a few useful datatypes in the last
    releases of the database, but ``forgot'' to add them
    into both the web and Java versions of the Oracle
    Enterprise Manager (oemapp console and Oracle Enterprise
    Manager 10g Database Control).
    These datatypes are missing, the list is probably not
    complete:
    INTERVAL YEAR TO MONTH
    INTERVAL DAY TO SECOND
    BINARY_FLOAT
    BINARY_DOUBLE
    Why?

    i have a solution, and i borrowed from the way i had to build a package for OTA Enterprise Distribution about a year ago. a mac is needed, you will need xcode. also note that i used flash CC with beta air 3.9.1.1080.
    refer to this site for building your package from xcode: http://fpstudios.com/2011/08/flash-enterprise-builds/
    the difference i figured out this morning is that the archive you duplicate is an archive that you used to submit to apple, not just any ol' debug archive (the Info.plist varies between the two archives)
    once you have a new "archive" in xcode organizer for your app, go ahead and unpack the ipa flash creates. if you show package contents of the .app inside the Payload folder you will find a Info.plist. use xcode to edit this file and add the new icons to the appropriate array.
    now show package contents of the "archive." in the Products > Applications directory, replace the .app with the .app that was inside the flash Payload folder.
    now you need to edit the Info.plist from the "archive." make sure the icon array is the same as the array in the Info.plist from your .app
    you will also need to change the application path, the bundle id, both bundle versions, the name, and the scheme name
    IMPORTANT - i forgot to mention that on the "general" publish setting tab in flash, make sure to include the new icon files.
    once you do all this, you can use organizer to submit the app to the apple store and you should see a confirmation message like the one that i received this morning after following the steps from above:

  • How to insert new record or update existing record using a complex view?

    Currently I created this screen, there is no problems on display data, only on the update funtionality (it means insert / update / delete on the table for which the view is based on).
    I have a table and a complex view in order to display the information from the table in a tabellar form (i.e up to 70 record in same "record" in the form, one for each item)
    The view is like this
    select a.f1, a.f2, get_value(a.pk1,1) a1, get_value(a.pk1,2) a2, get_value(a.pk1,3) a3............
    from my_table a
    where a.proj_id = user
    and I want to permit the update of the field a1, a2, a3 in a multiposition canvas (tabellar).
    I created an INSTEAD-OF trigger.
    But it not work only in the form. I receive the error FRM-40654 when I try to change the existing value in the running form based on that view.
    The view is woking and updatable using sql-plus.
    If I query
    select * from ALL_UPDATABLE_COLUMNS where table_name = 'SPV_BOQ_BOM_POS_ACTIVITIES';
    in which 'SPV_BOQ_BOM_POS_ACTIVITIES' is the name of my view.
    The question is: why if the view is updatable using SQL*Plus, is not updatable using Oracle Form 10gR2 ?
    Someone could help me asap?
    Thanks

    I removed on the datablock three items that are not showed, one of this is the Sysdate of update on the table for which the view is based.
    I removed also the on-lock trigger and the update from the form is NOT working fine.
    But for now I can still mantaing the ON-LOCK trigger.
    Is not a priority to remove this trigger.
    I still have the problem when the field is null, it mean that in the table SP_BOQ_BOM_POS_ACTIVITIES the record not exist.
    I try now to explayn better.
    SPV_BOQ_BOM_POS_ACTIVITIES is the name of the view.
    SP_BOQ_BOM_POS_ACTIVITIES is the name of the table.
    This are the desc
    desc SPV_BOQ_BOM_POS_ACTIVITIES
    Describing SPV_BOQ_BOM_POS_ACTIVITIES....
    NAME Null? Type
    BOQ_HEADER_ID NOT NULL NUMBER(12,0)
    BB_ID NOT NULL NUMBER(12,0)
    BOQ_ID NOT NULL NUMBER(12,0)
    PROJ_ID NOT NULL VARCHAR2(10)
    ACT_GROUP_CODE VARCHAR2(30)
    TOTAL_QTY NUMBER
    ACT_CODE_1 VARCHAR2(4000)
    QTY_1 NUMBER
    ACT_CODE_2 VARCHAR2(4000)
    QTY_2 NUMBER
    ACT_CODE_3 VARCHAR2(4000)
    QTY_3 NUMBER
    ACT_CODE_4 VARCHAR2(4000)
    QTY_4 NUMBER
    ACT_CODE_5 VARCHAR2(4000)
    QTY_5 NUMBER
    ACT_CODE_6 VARCHAR2(4000)
    QTY_6 NUMBER
    USR_ID NOT NULL VARCHAR2(10)
    LMOD NOT NULL DATE
    INT_REV NOT NULL NUMBER(6,0)
    The field QTY_1, QTY_2.... QTY_6 are calculated with a customer stored function from the table SP_BOQ_BOM_POS_ACTIVITIES.
    Also the field ACT_CODE_1, ACT_CODE_2, .... ACT_CODE_6 are calculated with a customer stored function from the table SP_BOQ_BOM_POS_ACTIVITIES.
    desc SP_BOQ_BOM_POS_ACTIVITIES
    Describing SP_BOQ_BOM_POS_ACTIVITIES....
    NAME Null? Type
    BBPA_ID NOT NULL NUMBER(12,0)
    BOQ_HEADER_ID NOT NULL NUMBER(12,0)
    BB_ID NOT NULL NUMBER(12,0)
    BOQ_ID NOT NULL NUMBER(12,0)
    PROJ_ID NOT NULL VARCHAR2(10)
    ACT_GROUP_CODE NOT NULL VARCHAR2(30)
    ACT_CODE NOT NULL VARCHAR2(30)
    QTY NUMBER(12,0)
    FLG_MANUAL_CHANGE VARCHAR2(1)
    USR_ID NOT NULL VARCHAR2(10)
    LMOD NOT NULL DATE
    INT_REV NOT NULL NUMBER(6,0)
    If I use SQL Navigator this insert working fine
    insert into SPV_BOQ_BOM_POS_ACTIVITIES
    (BOQ_HEADER_ID, BB_ID, BOQ_ID, PROJ_ID, ACT_GROUP_CODE, ACT_CODE_1, QTY_1)
    values (5050, 5015, 30486, 'B39368', 'TEST', '0101010101010101', 1709)
    1 row(s) inserted
    Instead using the Screen, at runtime, I receive the message:
    FRM-40400 Transation Complete: 1 records applied and saved
    but nothing is saved in the table SP_BOQ_BOM_POS_ACTIVITIES, and the view SPV_BOQ_BOM_POS_ACTIVITIES contain the calculated QTY_1 for the 'key', with null value.
    Moreover If in the field QTY_1 (NUMBER) I put a character, instead a Number, just to see if the Screen attempts or not an UPDATE or AN INSERT, the message is FRM-40509: Oracle Error. UNABLE TO UPDATE RECORD. Why happen an Update and not an INSERT using the Screen?
    In effect, the trial using SQL navigator of the following statement
    insert into SPV_BOQ_BOM_POS_ACTIVITIES
    (BOQ_HEADER_ID, BB_ID, BOQ_ID, PROJ_ID, ACT_GROUP_CODE, ACT_CODE_1, QTY_1)
    values (5050, 5015, 30486, 'B39368', 'TEST', '0101010101010101', 'r');
    I got Invalid Number and it's ok as answer from the database.
    Edited by: fmariani on 30-apr-2009 1.51

Maybe you are looking for

  • SAP and Database Encrption on SQL Server 2005 or 2008

    Hi.  I searched as best I could for any existing threads on this topic, and could not find any, so I hope it's OK to raise a new one. We're running SAP ECC 6.0 on a SQL 2005 database.  Database size is around 3.3 TB, with Trans Log of about 550GB, st

  • Triggering a workflow when the payment proposal F110 is confirmed/finished.

    Hi All, Please kindly give me your good advices that how can I start to create a workflow for payment proposal F100. The requirement is that after the payment proposal has been confirmed and completed. It needs to be triggered and automatically send

  • Boot stops and F2 requires clicking to proceed and sound doesn't work

    I recently updated my 3000 J205 desktop to Win 7..generally works Ok but on booting up the process stops and informs me that I need to press F2 to continue or F1 for setup. I've gone into setup and the boot order seems OK..(HD first) Also I cannot ge

  • Drag and drop to illustrator

    Hi All, Using CS6 Mac, I am  un successful in dragging and dropping a scanned image from PS to Illustrator. In the past i was able to do this with CS3 PC. Is this task possible? Mike

  • How can I get a tooltip to show up on a custom button obj on a dashboard?

    I have added a ClearAll button object (to clear the filter criteria) on a dashboard that I am working on, and have added some text in the comments section of the properties. I can see the resulting tooltip when I hover over the button in the Client S