Want to get a recordable signal

I recently purchase an M-audio fastrack pro audio interface and attempted to configure it into audition , but i have yet to
get a recordable signal . could you walk me through the steps in trying to get a signal.
I wanted to know if it was possible to record into the Adobe Audition 3 software in 16 bit quality vs. the standard amount available
now?
Will Adobe Audition 3.0 recogninze my interface ( int he device properties tab), to do some work in edit and multitrackview, if say
my interface is a protools digi 002?

To get your M-Audio Fastrack to record in Audition you need to configure it in Edit/Audio Hardware Setup menu. When it opens in the Edit View page you should be able to select M-Audio USB ASIO from the drop down list in the Audio Driver slot. Having selected that if you click on Control Panel the M-Audio panel will open where you can select your inputs and outputs and Sample Depth 16 or 24. The Control Panel should show connected at the top right if your USB Fastract is working. Close the Fastrack Control Panel and then you can check at the bottom of the Audio Hardware Setup panel which input and outputs Audition will use (01S is channel 1 stereo or  01M is mono). You will then have to select the Multitrack View to set up the M-Audio for multitrack use as well. Click on Apply then OK to close Setup and return to Audition.
When you select New file in Audition you can select the sample rate you want to record at and the bit depth, 16 or 32. There is not much point in recording 16 bit as Audition works at 32 internally and it is better to keep your files at 32 bit to retain quality until you have finished processing them. You can then always save them out as 16 bit when you need them as such.
I am afraid you won't have much luck with using a Digi 002 as a source for Auditon although it can sometimes be made to work with some difficulty. Digidesign have so set up the 002 drivers to only really be compatible with ProTools.

Similar Messages

  • Cannot get a recording signal for acoustic guitar thru Mbox 2. All cords, batteries, etc are checked and good.

    Done this a million times. Today it decides to ignore the input. Done all the usual checks in system preferences, batteries, cords, rebooted, etc.

    Thanks for the help mate, just gave the speed tester another bash and managed to get something back.....As predicted, results werent exactly brilliant....
    FAQ
    Test1 comprises of two tests
    1. Best Effort Test: -provides background information.
    Download Speed
    55 Kbps
    0 Kbps
    250 Kbps
    Max Achievable Speed
     Download speedachieved during the test was - 55 Kbps
     For your connection, the acceptable range of speedsis 100-250 Kbps.
     Additional Information:
     Your DSL Connection Rate :287 Kbps(DOWN-STREAM), 440 Kbps(UP-STREAM)
     IP Profile for your line is - 135 Kbps
    The throughput of Best Efforts (BE) classes achieved during the test is - 2.17:4.67:93.87 (SBE:NBEBE)
    These figures represent the ratio while sententiously passing Sub BE, Normal BE and Priority BE marked traffic.
    The results of this test will vary depending on the way your ISP has decided to use these traffic classes.
    2. Upstream Test: -provides background information.
    Upload Speed
    259 Kbps
    0 Kbps
    440 Kbps
    Max Achievable Speed
    >Upload speed achieved during the test was - 259 Kbps
     Additional Information:
     Upstream Rate IP profile on your line is - 440 Kbps
    This test was not conclusive and further testing is required.This might be useful for your ISP to investigate the fault.

  • How to get the record set into array?

    Hi,
    I want to get the record set into array in the procedure and do the processing of the array later in procedure.
    below is the stored procedure i am working on:
    procedure bulk_delete_group(p_group_id in Array_GroupListID) as
    begin
    for i in p_group_id.first..p_group_id.last loop
    --Here I have to get the list of user id before deleting group
    SELECT user_id into *<SOME ARRAY>* FROM group_members WHERE group_id = p_group_id(i);
    DELETE group WHERE group_id = p_group_id(i);
    --Process the user id array after group deletion..
    end loop;
    end bulk_delete_group;
    Thanks in advance
    Aditya

    Something like this ->
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:00.20
    satyaki>
    satyaki>
    satyaki>select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          9999 SATYAKI    SLS             7698 02-NOV-08      55000       3455         10
          7777 SOURAV     SLS                  14-SEP-08      45000       3400         10
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       4450                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       7000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
    13 rows selected.
    Elapsed: 00:00:02.37
    satyaki>
    satyaki>create type np is table of number;
      2  /
    Type created.
    Elapsed: 00:00:03.32
    satyaki>
    satyaki>Create or Replace Procedure myProc(myArray np)
      2  is
      3    i   number(10);  
      4    rec emp%rowtype;  
      5  Begin  
      6    for i in 1..myArray.count
      7    loop  
      8      select *  
      9      into rec 
    10      from emp 
    11      where empno = myArray(i); 
    12     
    13      dbms_output.put_line('Employee No:'||rec.empno||' Name:'||rec.ename); 
    14    end loop; 
    15  End myProc;
    16  /
    Procedure created.
    Elapsed: 00:00:00.88
    satyaki>
    satyaki>
    satyaki>declare
      2    v np:=np(9999,7777);  
      3  begin  
      4    myProc(v);  
      5  end;
      6  /
    Employee No:9999 Name:SATYAKI
    Employee No:7777 Name:SOURAV
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.30
    satyaki>Regards.
    Satyaki De.

  • HOW TO GET "N" RECORDS, URGENT

    Hi,
    Can any one please tell me what will be the SQL statement to get 10 records for each department . I dont want top 10 , i just want to get 10 records for each department from the employee table. or lets say 10 orders for each day for last 30 days from the order table. This is very URGENT. Please help.
    Thanks in Advance

    Hi,
    Thanks for your reply . But you didnt get my question I guess. I said I dont want the top "N" records. I want a query to pull N records for each department . Here is a sample, which shows 3 records for each department. Though there can be many records in the table for each department, the select staement pulls only three records for each department. I want that select statement.
    Thanks
    Feroz
    deptno------------empno----------ename
    10 -------------------100------------feroz
    10--------------------110------------anwar
    10--------------------120-------------liakat
    20-------------------200--------------zahir
    20------------------210---------------inzam
    20------------------220---------------shakil
    30------------------300---------------rameh
    30------------------310--------------rajesh
    30-------------------320-------------ritesh

  • How to get the records which has a specified x/y coordinates

    Hi,
    How to get the records which has a specified x/y coordinates. I have a table which has street data. And another table has a point data. Now I just want to get the records from street data which includes the points in the point data table. Can any one give your suggestions
    Thanks and Regards
    Aravindan

    Aravinda,
    If you want to find the line segments which intersect the given
    set of points, you can do that with SDO_RELATE.
    siva

  • No recording signal on new Garageband - Help!

    Hi there - prob being stupid but need help? I recently got a new iMac with the latest Garageband on - used to be able to poodle away without probs on my old 2007 version but I am struggling. I don't seem to be able to get a recording signal despite the track to which I am recording seemingly being 'armed'. Here's what I am doing;
    1. Creating a new track
    2. Selecting the guitar
    3. Connecting the guitar via an Apogee One interface.
    4. Guitar seems to register against track but with little input volume? I've checked and double checked things are turned up and also tried with manual and auto recording level.
    5. I arm track - when I start the track is clearly recording but it's not picking up the signal from the guitar and I just can't understand what I am doing wrong?
    6. Have tried other guitars - still the same.
    7. Also, despite clicking the monitor button I am not getting anything.
    Totally exasperated so if anyone can gfive me some idiotproof guidance I'd be mighty grateful?
    Thanks
    Simon / London

    why did it work OK last week when the lock was in place?
    When the enclosure lock is locked, the server will only recognize devices that are attached at boot time. It won't recognize any device plugged in after the server has booted.
    Is is possible that the devices that were working last week were attached at boot time?

  • I am using the Order Analysis Toolkit and want to get more information about the compensation for "Reference Signal Processing", which is scarce in the manuals, the website and the examples installed with the toolkit.

    I am using the Order Analysis Toolkit and want to get more information about the compensation for "Reference Signal Processing", which is scarce in the manuals, the website and the examples installed with the toolkit.
    In particular, I am analyzing the example "Even Angle Reference Signal Processing (Digital Tacho, DAQmx).vi", whose documentation I am reproducing in the following:
    <B>DESCRIPTIONS</B>:
    This VI demonstrates how to extract even angle reference signals and remove the slow-roll errors. It uses DAQmx VIs to acquire sound or vibration signals and a digital tachometer signal. This VI includes a two-step process: acquire data at low rotational speed to extract even angle reference; use the even angle reference to remove the errors in the vibration signal acquired at normal operation.
    <B>INSTRUCTIONS</B>:
    1. Run the VI.
    2. On the <B>DAQ Configurations</B> tab, specify the <B>sample rate</B>, <B>samples per channel</B>, device and channel configurations, and tachometer channel information.
    <B>NOTE</B>: You need to use DSA PXI-447x/PXI-446x and PXI TIO device in a PXI chassis to run this example. The DSA device must be in slot 2 of the PXI chassis.
    3. Switch to <B>Extract Even Angle Reference</B> tab. Specify the <B>number of samples to acquire</B> and the <B># of revs in reference</B> which determines the number of samples in even angle reference. Click <B>Start</B> to take a one-shot data acquisition of the vibration and tachometer signals. After the acquisition, you can see the extracted even angle references in <B>Even Angle Reference</B>.
    4. Switch to the <B>Remove Slow-roll Errors</B> tab. Click <B>Start</B> to acquire data continuously and view the compensate results. Click <B>Stop</B> in this tab to stop the acquisition.
    <B>ORDER ANALYSIS VIs USED IN THIS EXAMPLE</B>:
    1. SVL Scale Voltage to EU.vi
    2. OAT Digital Tacho Process.vi
    3. OAT Get Even Angle Reference.vi
    4. OAT Convert to Even Angle Signal.vi
    5. OAT Compensate Even Angle Signal.vi
    My question is: How is the synchronization produced at the time of the compensation ? How is it possible to eliminate the errors in a synchronized fashion with respect to the surface of the shaft bearing in mind that I am acquired data at a low rotation speed in order to get the "even angle reference" and then I use it to remove the errors in the vibration signal acquired at normal operation. In this application both operations are made in different acquisitions, therefore the reference of the correction signal is lost. Is it simply compensated without synchronizing ?
    Our application is based on FPGA and we need to clarity those aspects before implementing the procedure.
    Solved!
    Go to Solution.

    Hi CracKatoA.
    Take a look at the link bellow:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=255126&requireLogin=False
    Regards,
    Filipe Silva

  • I would like to transfer old reel-to-reel tapes to an iMac. There are different recordings on the left and right channel of the tapes. When I connect the tape deck to the Mac, I get one recording on the left, the other on the right speaker. What to do?

    I was about to transfer some music from a reel-to-reel machione to my Mac. There are different sound recordings on the left and right channels. When I connect with RCA cables and Y-connector, I hear one recording from the left speaker, another from the right side. How do I record only one side, but hear it from both speakers?
    Detlef

    You don't say what end, or connectors are plugged into what. I'm assuming the RCA connectors are on the reel-to-reel end. Since the tape has two different mono recordings, one on each track, you of course only want one at a time during playback. Otherwise, the Mac (or any recording setup) can only treat it as a stereo recording with the standard Left-Right tracks.
    1)  There are multiple ways to connect different types of cables to get a mono signal down to a stereo output at the Mac. Here's one way.
    2) Plug any RCA cable (single cable or stereo) into only the right or left RCA output of the reel-to-reel.
    3) On the other end of the RCA cable, plug in an adapter like this. That will feed the single RCA output into a mono 1/8" plug.
    4) Then plug that adapter into this. That turns the 1/8" mono signal into a "stereo" output with the same single track audio being fed to the Mac on both the left and right channels.
    5) Record either the left or right output of the reel-to-reel. Rewind the tape and switch the RCA connector on the reel-to-reel to the right channel (if you started with the left) and record that mono signal as stereo.
    Or, avoid all of this hardware mumbo-jumbo in the first place and do this:
    1) Record the audio just the way you have it. Two different recordings, one on each channel.
    2) Copy the audio recording to a new name and open it in your editor.
    3) Highlight the left track and copy/paste it into the right track. Presto! Mono recording of the left track on both channels. Save the recording.
    4) Repeat, only copy/pasting the right track into the left track and save the second recording.

  • Record signal

    Hi,
    I am Chan. Recently, i have bought a NI card (PCI 6120) to do my soil testing research. I need this card to generate (voltage output) continuous sine wave to piezoelectric (transmitter) and then record (voltage input) the signal from piezoelectric (transmitter and receiver). This mean the NI card (PCI 6120) has to generate 1 output signal and get 2 input signal. All the signal are in voltage. The piezoeletric is penetrated into a soil sample. I would like to study the wave signal travel in the soil sample from transmitter to receiver.
    I did try using the NI card to generate a continuous sine wave and record it using a PicoScope oscilloscope to record the signal. But, the signal is not smooth and look like a staircase.
    I need your help to write me a labview (vi) to generate (1 output) the continuous sine wave signal (maximum 5000 Hz) and record the signal (2 input) (like oscilloscope). Then, i need this record data for my analysis. Labview is new software for me, therefore i need time to study it. But, now i need the (vi) to run my soil testing test first. I do wish to have more time to learn. I do appreciate your help. Thank you. Best wishes.

    Hi Chan,
    This attached VI ( taken from Labview examples )should do the kind of synchronised Generation and Acquisition that you want to achieve.
    Regards
    Dev
    Message Edited by devchander on 01-03-2006 02:40 AM
    Attachments:
    Multi-Function-Synch AI-AO.llb ‏122 KB

  • Possible to get "Live" recording playback with X-FI Xtre

    Hi, I have the X-Fi soundblaster card, and I want to know how I can get "Li've" playback through my speakers, i used to use a cheapo soundcard through the motherboard and it was fine, but with the X-Fi, there is lag.
    For example, I have RCA cables plugged into the front Auxiliary ports, these are set to record audio, however, the audio coming from the computer speakers is about second behind the actual audio, why is there a lag/buffer with the sound?
    I want realtime playback and recording? is something wrong?

    Are you sure you don't use software monitoring feature for output (direct monitoring should not have much latency). If that wasn't your issue, you need to use ASIO device driver to get low enough latency (as like 2-5 ms). I don't know if you can set this as global for every source in X-Fi mixer (creation mode) ... if not (i.e. you need some software that supports ASIO) then, try w/ Hermann Seib's VSTHost -> stream the input through this software using ASIO drivers (latency set to as low as needed). You need to add one VST plugin (like EQ, volume control, meters, etc.) into signal path w/ this software. Sure there are others you can use. VST plugins can be found from KVR. It's easy to set up ... just set
    - install the plugin(s) you want add into signal path and the VSTHost application
    Settings needed in VSTHost:
    - audio device to ASIO -> Devices...Wave..ASIO (set driver, samplerate and buffer size (52)
    - I/Os -> Devices...ASIO Channel Selection (for output either wave or front, for input the port you have connevted your external source)
    - latency -> Devices...ASIO Control Panel (set to 5ms)
    - add plugin -> File...New Plugin... select th one you like to use (you can add several but you need to modify some parameters to get signal routed through all added either as parallel or serial.
    - for recording ... open the recorder settings panel...make settings (channels, bit-depth)
    DL links for
    VSTHost:
    http://www.hermannseib.com/english/vsthost.htm
    Here are some plugins you can use:
    EQ:
    http://www.aixcoustic.com/index.php/posihfopit_edition/30/0/
    http://www.karmafx.dk/
    Level:
    http://www.sonalksis.com/index.php?section_id=99
    Metering:
    http://www.rogernicholsdigital.com/inspector.htm
    http://www.voxengo.com/product/SPAN/
    jutapaMessage Edited by jutapa on 2-3-200605:48 PM

  • How to get multiple records from internal table through BDC

    PERFORM DYNPRO USING:
      'X'  'SAPMM61L'  '0500',
      ' '  'BDC_OKCODE'  '=NEWC',
      'X'  'SAPMM61L'  '0500',
      ' '  'BDC_CURSOR'  'PLPTU-PLWRK(01)',
      ' '  'BDC_OKCODE'  '=TAKE',
      ' '  'PLPTU-PLWRK(01)' '2531'. (2531 is a plant)
    This is the recording used to get plant via BDC of MS31.
    Using this code i can get only single plant...
    If i want to get multiple plants from an internal table,how i can change this code?
    Since it is a recording i cant put this code in LOOP..ENDLOOP.
    Suggest any method for doing this....
    Awaiting for ur reply...

    Hi,
    While recording also record the scroll down button.
    The you can place different plant in the BDC using loop and endloop
    Regards
    Arun

  • How to get multiple records using fn-bea:execute-sql()

    Hi,
    I created Proxy service(ALSB3.0) to get records from DB table. I have used Xquery function(fn-bea:execute-sql()). Using simple SQL query I got single record, but my table having multiple records. Please suggest how to get multiple records using fn-bea:execute-sql() and how to assign them in ALSB variable.
    Regards,
    Nagaraju
    Edited by: user10373980 on Sep 29, 2008 6:11 AM

    Hi,
    Am facing the same issue stated above that I couldnt get all the records in the table that am querying in the Proxyservice.
    For example:
    fn-bea:execute-sql('EsbDataSource', 'student', 'select Name from StudentList' ) is the query that am using to fetch the records from the table called StudentList which contains more than one records like
    Id Name
    01 XXX
    02 YYY
    03 ZZZ
    I tried to assign the result of the above query in a variable and while trying to log the variable, I can see the below
    <student>
    <Name>XXX</Name>
    </student>
    I want to have all the records from my table in xml format but it's not coming up. I get the value only from the first row of my table.
    Please suggest.
    regards,
    Venkat

  • I want to get the correct cables

    Hello, I have a 13" MacBook and I'd like to hook it up to my 42" LCD TV to play games and watch and edit movies and pictures. It's a 42" Vizio VU42L (manual located at Vizio's Site). I have HDMI inputs and RGB PC (VGA) inputs on the back of the TV and would like to get what's the best quality that will work in my situation. I would normally just order cables but I've seen a lot of posts with people in my same situation getting cables they didn't need. I'd rather just buy the right thing the first time. I think what I need is the mini-dvi to VGA cable but I don't know if it'll convert the digital signal to an analog signal. Or is there a way to get an HDMI converter for it?
    Will either look decent on that large of a screen?
    Will this work, or should I get Apple's version? Best Buy Cable Apple Cable at Best Buy</a. (Neither are available at my local bestbuy so i'd rather get what's best since I have to order online anyway)
    Sorry I'm very new to apple so I just want to get it correct
    Any help would be wonderful

    DoocesWild22 wrote:
    ...I have HDMI inputs and RGB PC (VGA) inputs on the back of the TV and would like to get what's the best quality...
    The HDMI would be better digital quality, the VGA is analog. The adapter you linked to would give you the analog output from the Mac, which you could then use with a standard VGA monitor cable into the TV. It is an Apple brand adapter, but you might prefer to use the mini-DVI to DVI adapter for the digital video output from the MacBook with a DVI-HDMI cable.
    Although you may have to experiment with the settings of the TV, and the System Preferences:Displays:Color: Calibration... settings on the MacBook to get the best color output. Sometimes you may get different results with the VGA compared to DVI for a particular TV.
    VGA is usually a single plug of 15 pins, RGB are individual RCA plugs for red-green-blue component video inputs, you might have these terms mixed up. Note that some DVI sources, like on a third party video card might contain both digital and analog signals so that you could just use a DVI-to-VGA adapter to pass through the analog signal. The Apple mini-DVI to DVI is only digital, so you can't chain that with a DVI-to-VGA adapter.

  • I want to update multiple record in database which is based on condition

    hi all,
    I am using Jdev 11.1.2.1.0
    I have one table named(Pay_apply_det) in this table i want to update one column named(Hierarchy) every time and according to change i want to update or i want to maintain my log table named(pay_apply_appr).It based on level wise approval when the lowest person approve the record show on next level but if the second
    level person back it will be show only previous level hierarchy.And when the final approval happen the Posting_tag column of pay_apply_det will be updated too with hierarchy column.
    i have drag pay_apply_det's data control as a table in my .jsf page and add one column approve status in UI .in the approve status i used radio group which return A for approve B for back R for reject through value binding i make it get or set method in it baking bean.
    in backing bean class i have written code
        public void approveMethod(ActionEvent actionEvent) {
            ViewObject v9=new UtilClass().getView("PayApplyDetView1Iterator");
            int h5=0;
            Row rw9= v9.getCurrentRow();
            String x=(String) rw9.getAttribute("RemarkNew1");
            System.out.println(x);
            String z=getR2();
            System.out.println(z);
            if(( z.equals("R") || z.equals("B") )&& x==null)
                FacesMessage fm1 = new FacesMessage("Plz Insert Remark Feild");
                fm1.setSeverity(FacesMessage.SEVERITY_INFO);
                FacesContext context1 = FacesContext.getCurrentInstance();
                context1.addMessage(null, fm1);  
            else{
            ADFContext.getCurrent().getSessionScope().put("Radio",getR2().toString());
            String LogValue=(String)ADFContext.getCurrent().getSessionScope().get("logid");
            ViewObject voH=new UtilClass().getView("PayEmpTaskDeptView1Iterator"); 
            voH.setWhereClause("task_cd='449' and subtask_cd='01' and empcd='"+LogValue+"'");
            voH.executeQuery();
            Row row1= voH.first();
            int h1=(Integer)row1.getAttribute("Hierarchy");
              System.out.println("Login Person Hierarchy on save button press.."+h1);
            ViewObject vo9=new UtilClass().getView("PayApplyDetView1Iterator");
            Row row9= vo9.getCurrentRow();
            if(getR2().equals("A")&& h1!=1)
             row9.setAttribute ("ApprHier",h1);
                row9.setAttribute("IsClaimed","N");
                row9.setAttribute("ClaimedBy",null);
                row9.setAttribute("ClaimedOn", null);
            else if(getR2().equals("B") ) {
                ViewObject voO=new UtilClass().getView("LoHierViewObj1Iterator");
                voO.setNamedWhereClauseParam("QHVO", LogValue);
                Row rowO = voO.first();
               h5=(Integer)rowO.getAttribute("LPrehier");
                System.out.println("Back lower hier..."+h5);
                row9.setAttribute ("ApprHier",h5);
                row9.setAttribute("IsClaimed","N");
                row9.setAttribute("ClaimedBy",null);
                row9.setAttribute("ClaimedOn", null);
              else if((h1==1) &&(getR2().equals("A")) )
                      row9.setAttribute ("PostingTag","Y");
                      row9. setAttribute ("ApprHier", h1);
                        row9.setAttribute("IsClaimed","N");
                        row9.setAttribute("ClaimedBy",null);
                        row9.setAttribute("ClaimedOn", null);
              else if(getR2().equals("R"))
                row9.setAttribute ("ApprHier",-1);
                row9.setAttribute("IsClaimed","N");
                row9.setAttribute("ClaimedBy",null);
                row9.setAttribute("ClaimedOn", null);
            BindingContext BC=BindingContext.getCurrent();
            BindingContainer ac=BC.getCurrentBindingsEntry();
            OperationBinding ob=ac.getOperationBinding("Commit");
            ob.execute();
           vo9.executeQuery();
            FacesMessage fm = new FacesMessage("Your Data Successfully Commited..");
            fm.setSeverity(FacesMessage.SEVERITY_INFO);
            FacesContext context = FacesContext.getCurrentInstance();
            context.addMessage(null, fm);
        }here i put my approve status radio value in session variable because i also want to update my pay_apply_appr table which code i written in pay_apply_det IMPL class.
    Every thing is running well when i update single record but when i want to update multiple record then my current row only updated in pay_apply_det but log table( pay_apply_appr) created for all record.
    so is there any solution plz help me.
    thanks
    RAFAT

    Hi Rafat,
    If you are able to insert into, all you need to do is iterate through the rows. For this , before the first IF condition
    if(getR2().equals("A")&& h1!=1)Get the row count using int numRows =vo9.getRowCount(); , and then write it before the IF condition
    if (int i=0;i<numRows;i++} After
    row9.setAttribute("ClaimedOn", null);
            }write vo9.next(); to iterate to next row,
    Hope this will work.
    Nigel.

  • Conversion File - Getting one record and skip the rest

    Hi Experts,
    I have one issue using conversion file. Is it possible to get only the records that we want without using SKIP? Example below:
    Product
    Partner
    Invoice No
    P1111
    PA1
    INV1
    P2222
    PA2
    INV2
    P5555
    PA3
    INV3
    P9999
    PA1
    INV4
    Let's say I want to get all the product number for partner - PA1.
    Instead of using skip in the conversion file as below, is there another way to do in conversion file?
    Internal
    External
    PA2
    *SKIP
    PA3
    *SKIP
    The reason is because I might have partner PA4, PA5 in future and i will need to modify the conversion file to include to SKIP PA4 and PA5.
    Is there a way to get the data for partner PA1 only?
    Appreciate your advice.
    Thank you!
    Best regards,
    Ng

    Hi Bishwajit,
    Thank you for the response. I actually tried to use java script previously but I can't get it working. I am not really good at it. I tried several ways using if condition and SKIP but it keeps on fail with error saying "Java scription JS:IF(%EXTERNAL%!=PA1 THEN *SKIP) evaluation error".
    Followings are the list of sample I have tried so far:
    Internal - *
    External - JS:IF(%EXTERNAL%!=PA1 THEN *SKIP) or
                   JS:IF(%EXTERNAL%.string!=PA1 THEN *SKIP) or
                   JS:IF(%EXTERNAL%!=PA1 THEN SKIP) or
                   JS:IF(%EXTERNAL%.string!=PA1 THEN SKIP) or
                   JS:IF(%EXTERNAL%.string()!=PA1 THEN *SKIP) and etc.
    I am not sure if we can use SKIP in that way. Appreciate if you can advice on this.
    Thank you.
    Best regards,
    Ng

Maybe you are looking for