Missing wave source with smart recorder

' Hello . I have a problem with my smart recorder . With xp i had the option to choose "wave" as my source for recording .
Now with vista 64 this option is gone . I can choose the option "what u can hear" but the kwality is not the same anymore.
Is it normal this feature is gone with vista . I have a x-fi extreme music card and the latest drivers .

Are you recording to losless wave or directly to lossy mp3/wma/etc.
Some 'general' limitations
Wav format: ----------------------------------------------------------------------
The WAV format is limited to files that are less than 4 GB in size, due to its use of a 32 bit unsigned integer to record the file size header (some programs limit the file size to 2 GiB). Although this is equivalent to about 6.6 hours of CD-quality audio (44. kHz, 6-bit stereo), it is sometimes necessary to go over this limit.
The W64 format was therefore created for use in Sound Forge. Its 64-bit header allows for much longer recording times. This format can be converted using the libsndfile library. The RF64 format specified by the European Broadcasting Union has also been created to solve this problem.
(source: Wikipedia)
Filesystem: ----------------------------------------------------------------------
NTFS5 - Limit Only by Volume Size
NTFS - Limit Only by Volume Size
FAT32 - 4GB minus 2 Bytes
FAT6 - 2GB (Limit Only by Volume Size)
FAT2 - 6MB (Limit Only by Volume Size)
(source: http://www.ntfs.com/ntfs_vs_fat.htm)
Maybe your recording software has some limitations too.
jutapa

Similar Messages

  • Issue with Smart Recorder

    Hi all - sorry if this is the wrong section.
    Could someone tell me if there's a built in recording duration limit in Smart Recorder? It won't let me record more than 3 hours and 8 minutes (I need to be able to record a 4 hour DJ set live).
    The drive i'm pointing it at has about 120Gb free so it should be ample for 4 hours.
    Any clues??

    Hi,
    You might want to switch to the 1st tab ("Record Now") and select WMA format or WAV format with a lower sampling rate / bit rate so that you can have more than 4 hours of recording (WMA format is preferred). Hope this helps.

  • Recording LPs with smart recorder and sound quality off.....

    Hi,
    I have X-Fi Extreme music card on my PC and trying to record some LPs with SmartRecorder. These are classical LPs and I find that when played back, the orchestra (violins, choir, etc) sound like this was recorded in a tin can. Any ideas why this would be? I connected all my cables accordingly and?am still?getting this problem.

    Which type of connection are you using there?
    Do you have preamp stage w/ RIAA there before soundcard (you have connected the PC into your stereo system just the way
    like you connect a casette recorder or you have connected your turntable w/ RIAA preamp directly into soundcard) or
    have you connected your turntable (w/o RIAA + preamp) directly into soundcard?
    If you're using the latter method, you need to have EQ w/ RIAA compensation added into signal (you need some ASIO/VST
    capable recording software which allows you add FXs into signal (Hermann Seib's VSTHost) and an EQ capable for
    compensation curve +20dB (20Hz) - -20 dB (20 kHz) (ddmf:IIEQ). It's possible that you
    can't get levels set high enough w/o adding some gain plug-in into signal path. You can use Sonalksis FreeG VST (stereo)
    for this (in VSTHost, place (route) the FreeG either after or before the EQ (try which works better for you)).
    Also, check if the recording source is set correctly (w/ "What U Hear" option you get all added effects added
    into signal (EAX, CMSS) so it's best to set input as Line-In) and turn all effects OFF.
    If you record into lossy format as mp3 or wma, check that the bitrate is set high enough (I suggest you use bitrates
    256 - 320). Also, do not use addons like Chrystalizer, etc..
    If needed some software, http://www.head-fi.org/forums/showpost.php?p=282263&postcount=7
    jutapaMessage Edited by jutapa on 05-08-200704:02 PM

  • Selecting missing date range with previous records value

    Hello,
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SET DEFINE OFF;
    create table t(NBR_OF_S number, NBR_OF_C number, S_DATE date);
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (34, 40, TO_DATE('05/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (27, 29, TO_DATE('03/01/2012 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (21, 23, TO_DATE('12/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (19, 20, TO_DATE('10/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (18, 19, TO_DATE('09/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (17, 17, TO_DATE('08/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (16, 16, TO_DATE('06/01/2011 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (9, 9, TO_DATE('12/01/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (5, 5, TO_DATE('11/01/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into  T
       (NBR_OF_S, NBR_OF_C, S_DATE)
    Values
       (2, 2, TO_DATE('01/01/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'));
    COMMIT;
    SQL> select * from t order by 3 desc;
      NBR_OF_S   NBR_OF_C S_DATE
            34         40 01-MAY-12
            27         29 01-MAR-12
            21         23 01-DEC-11
            19         20 01-OCT-11
            18         19 01-SEP-11
            17         17 01-AUG-11
            16         16 01-JUN-11
             9          9 01-DEC-10
             5          5 01-NOV-10
             2          2 01-JAN-10
    10 rows selected.I want the output like as follows, all those missing date i need to carry on the last one's number
      NBR_OF_S   NBR_OF_C S_DATE
            34         40 01-MAY-12
            27         29 01-APR-12
            27         29 01-MAR-12
            21         23 01-FEB-12
            21         23 01-JAN-12
            21         23 01-DEC-11
            19         20 01-NOV-11
            19         20 01-OCT-11
            18         19 01-SEP-11
            17         17 01-AUG-11
            16         16 01-JUL-11
            16         16 01-JUN-11
             9          9 01-MAY-11
             9          9 01-APR-11
             9          9 01-MAR-11
             9          9 01-FEB-11
             9          9 01-JAN-11
             9          9 01-DEC-10
             5          5 01-NOV-10
             2          2 01-OCT-10
             2          2 01-SEP-10
             2          2 01-AUG-10
             2          2 01-JUL-10
             2          2 01-JUN-10
             2          2 01-MAY-10
             2          2 01-APR-10
             2          2 01-MAR-10
             2          2 01-FEB-10
             2          2 01-JAN-10Any help would be greatly appreciate.
    Note: The date value I have created for this sample is monthly, based on the condition the data value I may need to generate weekly also. That's Monthly or weekly either one
    Thanks,

    And what is AMT? You didn't provide such column in your original post. Anyway, MODEL solution based on original post:
    select  nbr_of_s,
            nbr_of_c,
            s_date
      from  t
      model
        partition by(rowid)
        dimension by(1 d)
        measures(
                 nbr_of_s,
                 nbr_of_c,
                 s_date,
                 months_between(lag(s_date) over(order by s_date desc),s_date) cnt
        rules(
              nbr_of_s[for d from 1 to cnt[1] increment 1] = nbr_of_s[1],
              nbr_of_c[for d from 1 to cnt[1] increment 1] = nbr_of_c[1],
                s_date[for d from 1 to cnt[1] increment 1] = add_months(s_date[1],cv(d) - 1)
      order by s_date desc
      NBR_OF_S   NBR_OF_C S_DATE   
            34         40 01-MAY-12
            27         29 01-APR-12
            27         29 01-MAR-12
            21         23 01-FEB-12
            21         23 01-JAN-12
            21         23 01-DEC-11
            19         20 01-NOV-11
            19         20 01-OCT-11
      NBR_OF_S   NBR_OF_C S_DATE   
            18         19 01-SEP-11
            17         17 01-AUG-11
            16         16 01-JUL-11
            16         16 01-JUN-11
             9          9 01-MAY-11
             9          9 01-APR-11
             9          9 01-MAR-11
             9          9 01-FEB-11
      NBR_OF_S   NBR_OF_C S_DATE   
             9          9 01-JAN-11
             9          9 01-DEC-10
             5          5 01-NOV-10
             2          2 01-OCT-10
             2          2 01-SEP-10
             2          2 01-AUG-10
             2          2 01-JUL-10
             2          2 01-JUN-10
      NBR_OF_S   NBR_OF_C S_DATE   
             2          2 01-MAY-10
             2          2 01-APR-10
             2          2 01-MAR-10
             2          2 01-FEB-10
             2          2 01-JAN-10
    29 rows selected.
    SQL> SY.
    Edited by: Solomon Yakobson on Jun 11, 2012 1:34 PM

  • Smart Recorder - Audigy 2 ZS - Win 7 - "no audio device available"

    LSmart Recorder - Audigy 2 ZS - Win 7 - "no audio device available"nI've got Windows 7 Ultimate 64 bit and a Creative Audigy 2 ZS. They've worked fine together, but I recently tried to install the programs that come on the CD and I can't get Smart Recorder to work.
    It has a message saying "There is no audio device available on the system. The application will now close."? I checked my control panel and it definitely shows a my Audigy 2.
    I found an old post that suggested using the CTZAPXX.EXE on the CD, but it didn't do anything. I watched the CPU go to 50% usage, but nothing happened for minutes. (http://forums.creative.com/t5/Sound-Blaster/Speaker-settings/m-p/40229)
    How can I fix this problem with Smart Recorder?
    Thanks,
    Mike

    Is it time to upgrade to X-Fi or another brand?

  • I HAVE A SOURCE TABLE WITH 10 RECORDS AND TARGET TABLE 15 RECORDS. MY WUESTION IS USING WITH THE TABLE COMPARISON TRANSFORM I WANT TO DELETE UNMATCHED RECORDS FROM THE TARGET TABLE ??

    I HAVE A SOURCE TABLE WITH 10 RECORDS AND TARGET TABLE 15 RECORDS. MY QUESTION IS USING WITH THE TABLE COMPARISON TRANSFORM .I WANT TO DELETE UNMATCHED RECORDS FROM THE TARGET TABLE ?? HOW IT IS ??

    Hi Kishore,
    First identify deleted records by selecting "Detect deleted rows from comparison table" feature in Table Comparison
    Then Use Map Operation with Input row type as "delete" and output row type as "delete" to delete records from target table.

  • Creative Smart Recorder with new driver

    'Creative Smart Recorder with new driver< I have a Sound Blaster Audigy 2v purchased and installed in Oct, 2005. I use the Smart Recorder a lot and all was fine until two weeks ago when I downloaded and installed new driver software from Creative. All of the rest of the software works fine (no change or improvement in the operation in the card, which is why I went for the new driver), but?now when I try to start the ?Smart Recorder I get a Windows message "Creative Smart Recofder has encountered a problem and needs to close. We are sorry for the inconvenience."? It asks if I want to Send Error Report. As far as I can tell Smart Recorder never opened. Other than putting my computer back into the what it was two weeks ago is there anything that I can do? I'm not sure that the previous driver, etc. is still there. Thank you.

    + Need to add something. I thought that if a program loaded I was okay. But, no. The media studio will load but is no longer connected, I mean nothing will record, not from the internet or the CD player. No connection. Whatever Creative gave me, it is not friendly with older versions of the software.

  • One problem with constraints missing in source and target database....

    DB Gurus,
    In my database I am going to export and import data using datapump but dont specify CONTENT clause.
    so when I start working on my application, I came to know there are some constraints are missing. now how to check what are the constraints are missing from Source database and how to create those missing constraints on Target database?
    Suggest me if you have any idea.

    Create a database link between source and target schema.
    Use all_/dba_/_user_constraints to generate the difference using MINUS operator.
    something like this:
    select owner,constraint_name,constraint_type from dba_constraints@source
    MINUS
    select owner,constraint_name,constraint_type from dba_constraints

  • Smart Recorder not working anym

    I don't know what happened but Smart Recorder seems to have stopped working. It doesn't pick up on the input source. I have the Peak Meter box checked and there is no activity on there. I've tried different input sources. Wave and What U Hear but none of them work. Help.Message Edited by FuturePilot on 0-2-200703:47 PM

    i can relate to your problem as i have nearly exactly the same . I am trying to record my old lp's to my hd ,i can hear the music not a problem but can't get smart recorder to work . I have tried different imputs including winamp through wave ,no worries about hearing the tracks but again no go with the recorder .Here are a few things that are happening , i to cannot get the peak meter register and when i click the box to remove hiss and clicks i lose the sound . The recorder used to work just fine ,i have updated drivers and programs frome the web site , the onboard sound has been disabled the x-fi card is the coms default . I had problems early on with conflicts between mb and sound card but a bios update fixed that (asus mb amd 64 x2 chip and X-fi platinum sound card.}Really want to find out what is happening as i like the pro for its one step does everything .
    Regards Ned

  • Item text in Purchase Order getting updated with info. record Purchase Order Text

    Hello All,
    I am working in a roll out project and facing issue in text repeating twice for the line item in the Purchase Order for the new company code for which rollout is happening
    Issue:
    Item text in Purchase Order getting updated with info. record Purchase Order Text
    01) PO Text is maintained in the material master under "Purchase Order Text" tab
    02) The PO text that is maintained in material master is getting updated in the Purchase Info. Record
    03) When Purchase Order is created, the "Item Text" gets updated in the Purchase Order automatically only for the new company code for which rollout is happening. when printed, this results in the text getting duplicated twice
    03.1) this behavior is not observed in the Plants/ Company code that is already Live
    Configurations in the system:
    The copying rules for the "Texts for Purchase Orders" is
    Source Object = "Info Record", Source Text="Purchase Order Text", Fix="*"
    We have modified the Purchase Order form to print one of  the condition types maintained for calculating the tax. Other than this there is no change to the plants that are already live.
    I could not locate any "Purchase Organization" / "Company Code" / "Plant specific configuration.
    Am I missing any configuration or where can I look in what is causing this error.
    Request help from the experts in the forum.
    with Regards,
    Dhandapani R

    There is no company/purchasing/plant specific customizing for purchase order text.
    The customizing copying rules for the "Texts for Purchase Orders" affects all equally .
    If the text in the purchase order in ME23N is already filled different to other plants, then you either have a modification in place, or the texts are differently maintained in the referenced data (vendor, material, info record, contract)

  • X-Fi Fatal1ty - Smart Recorder will not work in

    I think the 64-bit drivers for this puppy are still buggy. When I try to record my vinyl albums through Smart Record, Wave Studio or even the basic Windows Sound Recorder, I get screeching noise on playback.
    Everything appears to record normally, but when you play it back - screeching.
    My previous sound card, an Audigy 4, worked perfectly under Windows X64. I'll be returning my X-Fi and getting an Audigy 4 tomorrow.
    I really hate to waste time - I wish Creative would have provided better drivers for the X-Fi. I'm very disappointed.
    My system has 4 Gig of Ram in Abit Fatalty SLI Mobo, Nforce 4 SLI. I have the very latest bios from Abit, too.

    Want to let you all know that I think I solved the problem, or actually, two problems.
    Problem - I installed the 64-bit driver, which included the Audio Console. Then, when I installed the applications on the CD that came with the card, I unknowingly installed the Audio Console again, which was a 32-bit version. I took out the card, uninstalled everything, and then reinstalled only the 64-bit Driver/Audio Console which came from Creative's website.
    Bottom line - I installed the 32-bit Audio Console on top of the 64-bit Audio Console. Creative should write drivers or give better explanations so regular consumers can avoid this pitfall. I'm a computer tech and figured this out, but most folks wouldn't.
    Problem 2 - I can't blame Creative for this one. I turned off my onboard 394 (Firewire) port. I don't use it anyway.
    When I did those two things, my issue went away. The X-Fi Fatalty now works perfectly.
    Thanks to the two people who responded here. Hope this helps someone else.

  • Source data for Record Group

    Hello,
    I am very new to Oracle Forms and have been tasked with pointing some forms we have to a new server and adding a couple of columns to come areas. Everything was going ok until I got to a the point where I have to add a new column to an area on a form. The forms are pointing to the new tables and the searches are working, or at least seem to be working. How can I tell the data source for a data group? I checked properties for the record group (RECORD_STATISTICS) that populates a certain area on a form and it has query selected as the record group type but there is no query showing. I added the column needed to the column specifications list but it does not show up when I run the form. There is a spot for it because the extra hyphen is there.
    Here is the code that populates the fields on the form. The field I added is the ahs_site column. As mentioned earlier I added that field to the RECORD_STATISTICS data group as well as to all the procedures I can find but am missing something..
    DECLARE
    htree ITEM;
    num_selected NUMBER;
    current_node FTREE.NODE;
    v_note_value number;
    v_node_depth number;
         total_rows number;
    group_id          RecordGroup;
    v_selection_count NUMBER;
    BEGIN
    -- Find the tree itself.
    htree := Find_Item('BLOCK_STATISTICS_TREE.TREE_ITEM_STAT');
    v_selection_count := Ftree.GET_TREE_PROPERTY(htree, Ftree.SELECTION_COUNT);
    IF v_selection_count>0 THEN
              v_note_value := Ftree.Get_Tree_Node_Property(htree, :SYSTEM.TRIGGER_NODE, Ftree.NODE_VALUE);
              IF v_note_value IS NOT NULL THEN
                   group_id := Find_Group('RECORD_STATISTICS');
                   total_rows := Get_Group_Row_Count(group_id);
              v_node_depth := to_number(Get_Group_Number_Cell('RECORD_STATISTICS.NODE_DEPTH', v_note_value));
              -- :BLOCK_BUDGET_PARAMETER.DI_SELECTED2 := v_node_depth;
                   GO_BLOCK('BLOCK_STATISTICS_DETAIL');
                   CLEAR_BLOCK;
                   FOR i in v_note_value..total_rows LOOP
                        IF v_node_depth=4 THEN
                             :BLOCK_STATISTICS_DETAIL.DI_TEMPLATE_SEQ := Get_Group_Number_Cell('RECORD_STATISTICS.NODE_SEQ', v_note_value);
                             :BLOCK_STATISTICS_DETAIL.DI_DESCRIPTION := Get_Group_Number_Cell('RECORD_STATISTICS.SITE', v_note_value)
                             || ' - '|| Get_Group_Char_Cell('RECORD_STATISTICS.AHS_SITE',v_note_value)
                                                                                                                            || ' - '|| Get_Group_Char_Cell('RECORD_STATISTICS.PRIMARY_CD', v_note_value)
                                                                                                                            || ' - '|| Get_Group_Char_Cell('RECORD_STATISTICS.SECONDARY_CD', v_note_value)
                                                                                                                            || ' - '|| Get_Group_Char_Cell('RECORD_STATISTICS.SECONDARY_CD_DESC', v_note_value);
                             :BLOCK_STATISTICS_DETAIL.DI_YR_AND_MNTH := Get_Group_Number_Cell('RECORD_STATISTICS.YR_AND_MNTH', v_note_value);
                             :BLOCK_STATISTICS_DETAIL.TI_QUANTITY_STAT := Get_Group_Number_Cell('RECORD_STATISTICS.QUANTITY', v_note_value);
                        ELSE
                             IF Get_Group_Char_Cell('RECORD_STATISTICS.LEAF_NODE', i)='Y'
                                  AND v_node_depth < to_number(Get_Group_Number_Cell('RECORD_STATISTICS.NODE_DEPTH', i)) THEN
                                  :BLOCK_STATISTICS_DETAIL.DI_TEMPLATE_SEQ := Get_Group_Number_Cell('RECORD_STATISTICS.NODE_SEQ', i);
                                  :BLOCK_STATISTICS_DETAIL.DI_DESCRIPTION := Get_Group_Number_Cell('RECORD_STATISTICS.SITE', i)
                                  || ' - '|| Get_Group_Char_Cell('RECORD_STATISTICS.AHS_SITE',i)
                                                                                                                                 || ' - '|| Get_Group_Char_Cell('RECORD_STATISTICS.PRIMARY_CD', i)
                                                                                                                                 || ' - '|| Get_Group_Char_Cell('RECORD_STATISTICS.SECONDARY_CD', i)
                                                                                                                            || ' - '|| Get_Group_Char_Cell('RECORD_STATISTICS.SECONDARY_CD_DESC', i);
                                  :BLOCK_STATISTICS_DETAIL.DI_YR_AND_MNTH := Get_Group_Number_Cell('RECORD_STATISTICS.YR_AND_MNTH', i);
                                  :BLOCK_STATISTICS_DETAIL.TI_QUANTITY_STAT := Get_Group_Number_Cell('RECORD_STATISTICS.QUANTITY', i);
                                  Next_record;
                             ELSIF v_note_value<>i AND v_node_depth = to_number(Get_Group_Number_Cell('RECORD_STATISTICS.NODE_DEPTH', i)) THEN
                                  EXIT;
                             END IF;
                        END IF;
                   END LOOP;
                   First_record;
         END IF;
         END IF;
    END;
    Hope that made sense. I do not understand how data flows through forms just yet or how to phrase my question in terms that understandable. I do have some screen shots I could send anyone willing to help.
    Thank you.

    Adding a column to column specification does nothing.
    First of all, check the record group query in record group properties:
    1) In forms builder object tree find that record group, right-click > property palette.
    2) Look for property (just cann't remember exactly its name) where select query is specified.
    3) Add the column you need to the query. Column specification will refresh automatically.
    There is one more way to specify query for record group. Look for calls of POPULATE_GROUP_WITH_QUERY procedure in the form code.
    Forms 6i: menu program > find and replace pl/sql, Forms 10: edit > find and replace pl/sql. In the search field type POPULATE_GROUP_WITH_QUERY. Then see the results where your record group RECORD_STATISTIC is being populated programmatically. If no calls were found - the only data source is in record groups properties.

  • Identification Specification missing in Source structure!!!

    Hi,
    I'm Saikumar.
    I'm doing LSMW (in that recording for MAP1 and MAP2 transactions).
    I've created 2 source structures ZMAP1_SOURCE and ZMAP2_SOURCE and also assigned some fields.
    I  created only one flat file for these 2 source structures and I've assigned to them.
    But When I'm reading the data...it is giving the error<b> Identification Specification missing in Source structure ZMAP1_SOURCE</b>...
    Can any give me a solution to this error in detail.
    Thanks in Advance....

    Sai when we create two structures and assign it to the same file we need to specify an identifier for SAP which will specify which structure to use. Normally it will be done at the time of creation of the Source fields. when you create that there will be a field Identifying field values there you need to give the value to that.
    eg. If you have file with two hierarchial elements
    H a b c
    I  1 2 3 5 6
    where H and I denotes the hierarchy what you need to do is you need to set the identifying field values for the Header structure as H and for the Item structure as I. SAP automatically checks and populates the values..

  • Generic Data Source with Function Module data mismatch in BI

    Hi All,
    I'm using Generic Data Source with Function Module, When I execute the Function Module (Which I have Created), I'm getting 16000 records and when run extractor(in RSA3) im getting different no.of records(infact they are more no.).
    when I run the InfoPackage in BI im Getting more no. of records than what i got executing the function module..
    and single record is divided into 2 records in BI side(not all the records), how can it be possible???
    is there anything Im missing to explain you my issue???
    if understood please help me out.
    Thanks n Regards,
    ravi.

    the datasource frame work starts the function module several times.
    1. the initialization
    2. the serval times, until you "raise no_more_data".
    check you coding: have you refreshed necessary internal tables.
    Sven

  • Generic Data Source with Function Module data mismatch

    Hi All,
    I'm using Generic Data Source with Function Module, When I execute the Function Module (Which I have Created), I'm getting 16000 records and when run extractor(in RSA3) im getting different no.of records(infact they are more no.).
    when I run the InfoPackage  in BI im Getting more no. of records than what i got executing the function module..
    and single record is divided into 2 records in BI side(not all the records), how can it be possible???
    is there anything Im missing to explain you my issue???
    if understood please help me out.
    Thanks n Regards,
    ravi.

    HI rkiranbi,
    1. FIrst you excute function module according to your paramers, you will get some records. then goto tcode RSA3 --> excute
    Provide your Data source name and under setting we have options like Data records/calls, Display extractor calls and selections --> fields .
    in that options you have to increase the values. and then you have to pass paramers in RSA3 according to your function module
    selections in SE37. Now you will get equal values in both functin module selection and RSA3 Selection. if it fail means  you need to
    check coding logic in function module. 
    2. if your  are getting wrong values in BI System then check with
                  1. compare with PSA data and data target data (here you need to check with characterstic as well as keyfigures)
                  if you find any mistake you need change the coding in function module according to client requirement.
                  2. compare data with RSA3 and bi report data or data target data.
                                 check it properly above steps, you will get solution.
    thanks and regards,
    malli

Maybe you are looking for