Program to extract only changed/new records

Hi,
Is there any program in R/3 to extract only changed/new records into a flat file?
babu

Magesh,
you could use a generic extractor and use the delta functionality and using RSA3 you can export it to Excel ??? but then if you want to automate - you can have the same done in a function module extractor and point the output to a flat file.
Arun
Assign points if useful

Similar Messages

  • No "before new record saved" trigger event in workflow definition ?

    Hello,
    I have following problem: I have to make a simple integration, where products have information about available quantity of given product . Assume we have field - it is called "Available amount" and it tells how many products are on stock. Now suppose we have created an opportunity, and we want to add Opportunity Product Revenue - we're selecting product and then quantity. I want to make OCOD to display message and prevent from adding opportunity product revenue, when its quantity is greater than "Available amount" field which is present in associated product record. I've created small C# application and used workflows to create Integration events. It works - but not exaclty how I want it - when I add a new record the workflow generates integration event - but I'd like to generate integration event before a record is created, also I'd like to show a notification from OCOD. But for "revenue" we do not have a trigger event called for example : "before new record saved" - we have only "when new record saved" and "before modified record saved".

    Hi,
    From your requirement, it seems you, want some kind of check. Did you try puting this validation on field level, i guess you would need to join fields and compare in field validation. So, whenever user creates a new record this validation kicks and user is notified of the error.

  • 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.

  • Material Valuation Transaction Codes to fill the new records in MBEW table

    Hi Experts,
    May i know the Material Valuation Transaction Codes because i want to fill the MBEW table with changed(new) records.
    Thanks in advance.
    Regards,
    <BMP>

    Hi,
    Please check the T-codes as follows which be helpful to you :----
    ME61                 Maintain Vendor Evaluation                        
    ME62                 Display Vendor Evaluation                         
    ME63                 Evaluation of Automatic Subcriteria               
    ME64                 Evaluation Comparison                             
    ME65                 Evaluation Lists                                  
    ME6A                 Changes to Vendor Evaluation                      
    ME6B                 Display Vendor Evaln. for Material                
    ME6C                 Vendors Without Evaluation                        
    ME6D                 Vendors Not Evaluated Since...                    
    ME6E                 Evaluation Records Without Weighting              
    ME6F                 Print                                             
    ME6G                 Vendor Evaluation in the Background               
    ME6H                 Standard Analysis: Vendor Evaluation              
    ME6Z                 Transport Vendor Evaluation Tables                
    Hope this helps........
    Regards,
    Suman

  • Settings for update/insert new records

    Hi everybody,
    I'm at the beggining of learning the OWB in order to create a Data Warehouse environment.
    I have successfully created a table in the target schema , which is a match of columns found in 4 tables in the source schema.
    Which settings(steps) are necessary in order to update some records according to the update done in 4 tables in source schema , which have already been inserted in the table in target schema- using the execute pop-up menu command?
    Additionally , how can I insert only the new records to the target schema by using the execute command in pop-up menu ...
    Thanks , a lot
    Simon

    Hi Simon,
    If you have constraints set on your target table, and the operator properties are set to "Match by Constraints = All Constraints", then the process recognizes automatically when to update which fields and when to insert new records.
    If you have no constraints on your target then the operator properties are set to"Match by Constraints = No Constraints", and in this case you should set the Loading properties for each attribute (Field) in the target table.
    Greetings,
    Ilona Tielke

  • SSIS DataFlow - copy only changed and new records

    I am copying a few tables each night from one SQL server to another. At the moment I delete every record from the destination table, and then copy all records from the source table with a SSIS Data Flow Task. 
    That works fine so far, but I would like to copy only changed or new rows. What would be the best way with SSIS to achieve this? I am quite new to SSIS, I have no idea if my goal is possible and how...

    I am copying a few tables each night from one SQL server to another. At the moment I delete every record from the destination table, and then copy all records from the source table with a SSIS Data Flow Task. 
    That works fine so far, but I would like to copy only changed or new rows. What would be the best way with SSIS to achieve this? I am quite new to SSIS, I have no idea if my goal is possible and how...
    Many ways:
    1st way
    1.use Merge function from source to destination table where you can have this conditions like load when not matched and don't load when matched.
    2. follow this ssis steps:
    execute sql task where you can write merge function from source to destination 
    http://blog.sqlauthority.com/2008/08/28/sql-server-2008-introduction-to-merge-statement-one-statement-for-insert-update-delete/
    2nd way:
    oledb source 2.lookup outputlookup 3. oledb destination table 
    and you can mention in lookup as no match output.
    3rd way:
    you can use scd transformation task in ssis...
    4th way:
    you can use if exists update  if not exists insert.. see below
     http://blogs.msdn.com/b/miah/archive/2008/02/17/sql-if-exists-update-else-insert.aspx
    http://sequelserver.blogspot.com/2011/02/alternate-to-if-exists-update-else.html
    - please mark correct answers

  • Save only edited or new records

    Hi,
    I have a block based on a table and display a few records on the form after retrieving records from the table behind. Now I should be able to edit a record or add a new record to the existing records on the screen. So when i click the save button I only want the rows which are new or have been edited to go back into the db. This is the piece of code I was using for the save button in the on-button-clicked action.
    IF alert_button=alert_button1 THEN
    GO_BLOCK('my_block');
    IF NOT Form_Success THEN RAISE Form_Trigger_Failure;
    END IF;
    /* ** Commit if anything is changed */
    IF :System.record_Status IN ('CHANGED','NEW') THEN Commit_Form;
    END IF;
    msg_info('Your changes have been saved.');
    END IF;
    When I do this all the records on the screen gets inserted into the table instead of only the one's I have edited or newly inserted. I only want to insert rows which are new or edited into the table after I click the save button.

    If the only reason for your procedure is to filter the records, Forms handles this natively when you place the Form in "Enter Query" mode (Forms 6i = F7, Forms 9i or higher = F11). A user can enter their search criteria in each field displayed (to include Oracle Wildcard charaters) and then execute the query using F8 (Forms 6i) or Ctrl+F11 (Forms 9i or higher). This is one of the great features of Forms is that it doesn't require additionaly programming to accomodate searches. Once has queried the records into the data block, Forms keeps track of which records were modified or are new. When you Save (Commit_Form), Forms will update or insert as needed to save the changes the user made.
    As Inol suggested, if you need to gather search criteria fro m your us er a different way, you can use the criteria to change the W here Clause of the data block to display records. In this situation, you would code your "Search" button to modify the w here clause. Here's an example w here a user can search on an employee's first name, last name, employee id or any combination of the three:
    First Name [                  ]    Last Name [                      ] Emp ID [                     ]
    [SEARCH]
    /* Sample When-Button-Pressed trigger for Search button */
    /* Example of searching by Last Name */
    DECLARE
       v_def_where    VARCHAR2(500);
    BEGIN
       IF ( :search_block.first_name IS NOT NULL ) THEN
          v_def_where := 'first_name = :search_block.first_name';
       END IF;  
       IF ( :search_block.last_name IS NOT NULL ) THEN
          IF (v_def_where IS NOT NULL ) THEN
             v_def_where := v_def_where || ' and ';
          END IF;
          v_def_w here := v_def_w here || ' last_name = :search_block.last_name';
       END IF;
       IF ( :search_block.employee_id IS NOT NULL ) THEN
          IF (v_def_where IS NOT NULL ) THEN
             v_def_w here := v_def_w here || ' and ';
          END IF;
          v_def_w here := v_def_w here || ' last_name = :search_block.employee_id';
       END IF;
      IF ( v_def_w here IS NOT NULL ) THEN
          /* Forms 6i */
          S et_B lock_Property('DATA_BLOCK',DEFAULT_W HERE, v_def_w here);
          /* Forms 9i or Higher */
          S et_B lock_Property('DATA_BLOCK',ONETIME_W HERE, v_def_w here);
          Execute_Query;
       ELSE
          Message ('No Search Criteria was entered.');
          Message ('No Search Criteria was entered.');
          RAISE Form_Trigger_Failure;
       END IF;
    END;NOTE: As you can see I had to EDIT this post numerous times to get it to save. X-( There are spaces embedded in the code sample.
    Hope this helps,
    Craig B-)
    If a response is helpful or correct, please mark it accordingly.
    Edited by: CraigB on May 17, 2010 12:21 PM
    Edited by: CraigB on May 17, 2010 12:22 PM
    Edited by: CraigB on May 17, 2010 12:23 PM
    Edited by: CraigB on May 17, 2010 12:24 PM
    Edited by: CraigB on May 17, 2010 12:24 PM
    Edited by: CraigB on May 17, 2010 12:24 PM
    Edited by: CraigB on May 17, 2010 12:26 PM
    Edited by: CraigB on May 17, 2010 12:28 PM
    Edited by: CraigB on May 17, 2010 12:29 PM
    Edited by: CraigB on May 17, 2010 12:31 PM
    Edited by: CraigB on May 17, 2010 12:33 PM
    Edited by: CraigB on May 17, 2010 12:34 PM
    Edited by: CraigB on May 17, 2010 12:36 PM
    Edited by: CraigB on May 17, 2010 12:37 PM
    Edited by: CraigB on May 17, 2010 12:37 PM

  • Question on SFSF Adapter : Delta sync to fetch only changed records.

    Hi All ,
    As per the SAP Document on SFSF Communication channel, one of the feature supported by SP00 release of the connectivity add-on 1.0 is :-
    1. Delta sync to fetch only changed records
    SFSF Adapter: Delta Sync
    The delta sync features enables you to fetch only the records that were modified after the last successful data fetch from the SuccessFactors system.
    This increases the efficiency of query operation.
    So below are my question accross Successfull run date feature :
    Is it SAP PI Connector internally maintains this last successful run date ?
    what would be Time-Zone of Successful run date : Is it where SF DC is located or where PI Box is Located ?
    what is it mean from successful run date ? - is it process successful run date or is it just communication channel successful run date ?
    For Delta extraction - This Successful Run Date - Is it maintained internally for  Interface wise or Communication Channel wise ?
    eg. If i have 5 Delta Interface - will SAP PI maintain 5 Successfull run dates w.r.t to each connector or w.r.t each Process ?
    for more information please open below URL.
    http://help.sap.com/saphelp_nw-connectivity-addon100/helpdata/en/1e/22aaf0780d4b78b6f889157f6a8035/frameset.htm
    Regards
    Prabhat Sharma

    Hello all,
    I have the same question : in the "official" documentation (SuccessFactors (SFSF) Adapter for SAP NetWeaver Process Integration) is mentioned this :
    Delta Sync - The delta sync features enables you to fetch only the records that were modified after the last successful data fetch from the SuccessFactors system. This increases the efficiency of the query operation.
    Anyway I cant find any specification on how to use this feature. Do you have any suggestion on how to implement it or any reference to an existing documentation?
    Do I need to write you an email to get the info?
    Regards

  • When syncing iPod touch to MacBook, I have selected to sync only events newer than 360 days. Yet I get message that sync will change 8000 events on "this computer"  most of which are years old and many are recurring events.  I'm afraid to proceed

    When syncing iPod touch to MacBook, I have selected to sync only events newer than 360 days. Yet I get message that sync will change 8000 events on "this computer"  most of which are years old and many are recurring events.  I'm afraid to proceed with sync. 

    Having the same problem here. As a first time mac user, Apple has certainly made a bad first impression.
    For me, the issue seems to occur when transferring files between computers that are connected to the same access point (when transferring files from wired computers on the network there is no issue). My vista laptop and every laptop I have tried has worked perfectly fine with this access point so I am 100% convinced it is the mac. Basically when I copy the files, after about 100mb, I am unable to access anything on the local network or internet until I restart Airport. The weird thing is that even though I am unable to access anything, the airport utility says it is connected. I might also note that the wireless signal strength is full.
    If I can't get this figured out in a few days, this computer is going back to the store where it came from and I will officially label myself anti-mac. This type of issue is just unacceptable for something so main stream.

  • Just transferred data to iMac from working Mac Pro that is using Parallels and Windows 7 and the Biblesoft 5  and it will not open on the iMac the only change is the my new iPhone number is  OS.  Any ideas?

    Just transferred data to iMac from working Mac Pro that is using Parallels and Windows 7 and the Biblesoft 5  and it will not open on the iMac the only change is the new Maverick OS from the macpro Lion OS.  Any ideas?
    <Personal Information Edited by Host>

    Setup Assistant and Migration Assistant do not restore MS Windows, it only does the OS X partition. All of your Windows stuff must be backed up and restore using a MS Windows application. If no one on this forum is able to answer your question then I'd repost it on a Parallels forum to see how other Windows users approach this.

  • Sql query to Load only new records,or update old records

    Hi,
    I need a query (not stored procedure) to insert only new records otherwise update existing records.
    I tried by creating "Merge statement in SQl", but the sql query is wrong,it is not updating,always inserting records(replicating..1,2,4,8,16,32..).
    below is my sample query,
    Here "FACT_mytbl -FCT" is my fact table.(which need to update if already records found ,otherwise insert as new records).
    *Inside select ---the table   E_tbl1,E_tbl2  is the business logic table ,using this two table only ,"FACT_mytbl" was created  .So the "S" alias will be the source
    table and "FCT" will be target table. based on this we have to insert or update records.   
      ---Query starts-------------------------------------                    
     MERGE INTO [FACT_mytbl]  FCT
     USING  (
           SELECT 
           FCT1.ID
          ,FCT1.PKcol1
          ,FCT1.FKcol1
          ,FCT1.col1
          ,FCT1.col2
         , FCT1.col3     
       FROM  [FACT_mytbl] FCT1 WITH(NOLOCK)        
       LEFT JOIN dbo.E_tbl1 CT WITH(NOLOCK)
    ON CT.PKcol1=FCT1.PKcol1
       LEFT JOIN dbo.E_tbl2 CT1 WITH(NOLOCK)
    ON CT1.PKcol1=FCT1.PKcol1
       ) S  
       ON FCT.PKcol1 = S.PKcol1 
     WHEN MATCHED AND (FCT.PKcol1 ! = S.PKcol1 ) THEN
     UPDATE SET       
           FCT.col1
          ,FCT.col2
          ,FCT.col3     
     WHEN NOT MATCHED THEN 
     INSERT VALUES
           S.ID
          ,S.PKcol1
          ,S.FKcol1
          ,S.col1
          ,S.col2
         , S.col3     
    --query ends----------------
    any suggestions,
    Thanks,
    R.B

    Hi Bhupesh_Rajasekaran,
    According to your description, if you want to insert only new records which does not exist in destination and update existing records which does exist in destination. We usually accomplish these in two statement.
    1.A join statement to update records.
    2.A insert statement for new records.
    Also we can use MERGE in SQL Server to insert, update at the same time. You specify a "Source" record set and a "Target" table, and the join between the two. You then specify the type of data modification that is to occur when the records between the two
    data are matched or are not matched. For more information, there is an similar example about merge in SQL Server, you can review the following article.
    http://www.codeproject.com/Tips/590085/Merge-in-SQL-Server
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Change Data Capture: Unsubscribed column results in new change set record

    I have an installation using Oracle 11g Change Data Capture in synchronous mode. As of writing, I have a single publication and a single subscription. The setup is pretty basic:
    PUB_TABLE
    PUB_ID*
    PUB_NAME*
    PUB_USELESS_FLAG
    * columns are included in both the PUBLICATION and the SUBSCRIPTION. The final column is of no consequence and is excluded from both the PUBLICATION and SUBSCRIPTION.
    My problem is that any time PUB_USELESS_FLAG gets updated (even if no other columns are changed), a record is written to not only the change table but the change table view. The table in question has a significant number of transactions logged against it, but only a subset of those changes are of note to the subscriber (which is why the subscriber does not listen to every column). However, since the subscription is receiving records for every change to the source table, the result is an enormous amount of overhead as the subscriber is forced to sift through numerous records that are of no consequence.
    I read the Change Data Capture manual for Oracle 11g; I could not find any reference to the observed functionality. Is this a consequence of using synchronous vs. asynchronous modes of capture? Is there an option to only receive changes on subscribed columns?
    Thanks in advance

    Bring this to the top because I have the same question. This website (http://www.bikinfo.com/HTML/CDC/CDC_Article.html) makes it sound like this problem is unavoidable.
    Edited by: nik_m on Nov 10, 2011 8:04 AM
    Edited by: nik_m on Nov 10, 2011 8:05 AM

  • If I want to record the screen with Quicktime I dont find the "Built-in Input: Line in" There I can only change between "None" or "Built-in-Microphone: Internal microphone"

    If I want to record the screen with Quicktime I dont find the "Built-in Input: Line in" There I can only change between "None" or "Built-in-Microphone: Internal microphone"

    Have a look at Soundflower at this link:
    http://www.macworld.com/article/1159440/soundflower_capture.html

  • Changed DB table def and now screen no longer writes to new record to DB

    I'm very new to HTMLDB.
    I've create a Create/Update screen which create about 80 records in the DB.
    I've now changed the table definition, added fields and removed fields.
    Now the screen will no longer insert new records.
    (However, it does update existing records)
    I receive the error,
    "ORA-06550: Line 1, coluns 377:PL/SQL:ORA-000904: "Other_instruction":invalid identifier ORA-06550: line 1, column 7:PL/SQL Statement ignored"
    other_instruction is indeed one of the new fields added.
    I tried recreating the 'PROCESS Badge Request' process incase this was necessary because of the DB change BUT I get the same error.
    Any ideas?!?

    Thanks!
    In getting the new page to run I realized that I was referencing the DB table column name in lowercase characters.
    I don't remember if I read this somewhere BUT the application seems to want the DB table column names references in UPPERCASE characters.
    Thanks again!

  • HT201210 hi , this iphone is change new one to me, but i use only 1 day it broken again ! i can not restored

    hi , this iphone is change new one to me, but i use only 1 day it broken again ! i can not restored
    Model A1429
    Imei  : 013717001187438
    Sirim No. RAXF/63B/1012/S(12-1823)
    Notis - An unknown error occurred (14)

    It seems the iPhone before the update was not officially unlocked from the carrier it is locked to. Which would mean it had been unlocked to use on your carriers sim by jailbreaking(hacking) or by using third party hardware.

Maybe you are looking for

  • Thinking of MacBook Air - flash storage enough?

    I currently have a MacBook Pro 15-inch.  I've had it for a couple of years and love it. I have all my files and apps on it and do back-up regularly.  Howver now, I'm looking at a MacBook Air to replace it.  I'm wondering the size of the hard drive or

  • OWB 9.2: Active Job Does not Exist !

    OWB:9.2.0.2.8 I have opened a TAR for this, not much headway so far Error Message: ORA-20211: Active job does not exist, cannot link to job record. Here is the sequence of events 1) A test database was cloned fom production 2) We were able to to get

  • Can't save FrameMaker 10 document to PDF

    I was able to do save to PDF last week and now it won't save anything to PDF. The whole program stalls and quits on any size FM document.

  • Elements 5.0 error message

    Recently I have started getting an error message when after working an image I go to "save as".  It tells me that it cannot complete the action due to a program error.  I ran the repair from the installation disc, but it did not help.  I am using Win

  • Adobe Reader X stuck on "print to file"

    I have a problem with Adobe Reader 10.1.0 not saving my print settings after I close it.  I am running Windows Vista and trying to print to a RICOH printer/scanner/copier machine.  I checked "Print to file" by accident once and tried to print, and no