Sample data extracts wanted

My team is developing a custom reporting tool for the financial services industry. We are wondering if Oracle provides sample data (examples that we may see in the real world to test our reports). Does anyone know if Oracle provides sample data extracts?
Thank you!
-Mark

Thanks!-Please can you look at the amended attached VI. I am trying  to connect the two indicators to show the total number of over/undershoot values. In my test sample data that will be 1 and . How do I attach these indicaors to the for loop?
Regards,
Kadeel
PS I do not know what a thread is. How do I stop repeating this message?
Attachments:
Ass. MK 1.vi ‏13 KB

Similar Messages

  • I want some sample data on some fields

    hi,
    i want data how usually below these fields takes.....
    SALES ORGANIZATION----
    VKORG
    DISTRIBUTION CHANAL----
    VTWEG
    DIVISION----
    SPART
    SALES OFFICE----
    VKBUR
    FOR EXAMPLE : KUNNR is used for customer no
    sample data is -
    1000(custmer no)....like give some sample data
    if u have any theory about these words plz explain...what are these
    thanks & regards,
    kalyan

    You can check the sample data as well as the documentation through the following
    Goto transaction SPRO -> IMG
    Expand
    Enterprise Structure-> Definition-> Sales and Distribution-> (Define, Copy, delete, check sales organization) - FOR SALES ORG
    (Define copy, delete, check distribution channel) - FOR DISTRIBUTION CHANNEL
    (Maintain Sales Office) - FOR SALES OFFICE
    Click the documentation button to get the documentation
    Enterprise Structure-> Definition-> Logistic General -> (Define, Copy, Delete, check division) - FOR DIVISION
    Click the documentation button to get the documentation
    Sap has defined sample Org. structure which can be used to create your own org structure

  • Want to select query based on sample data.

    My Oracle Version
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    I am creating inventory valuation report using FIFO method . here sample data .
    create table tranx(
    TRXTYPE     varchar2(10) ,ITEM_CODE varchar2(10),     RATE number,qty number
    insert into tranx values('IN'     ,'14042014',     457.2     ,10);
    insert into tranx values('OUT','14042014',     0,          10);
    insert into tranx  values('IN','14042014',     458.1,     35);
    insert into  tranx values('OUT','14042014',     0,          11);
    insert into  tranx values('OUT','14042014',     0,          6);
    insert into  tranx values('IN','     14042014',     457.2     ,10);
    insert into tranx  values('OUT','     14042014',     0,          3);
    insert into tranx  values('OUT','     14042014',     0,          4);
    insert into tranx  values('IN','     14042014',     457.2,     20);
    insert into tranx  values('OUT','     14042014',     0,          5);
    insert into tranx  values('OUT','     14042014',     0,          9);
    insert into tranx  values('OUT','     14042014',     0,          8);
    current output
    TRXTYPE     ITEM_CODE     RATE      QTY
    IN     14042014     457.2     10
    OUT     14042014     0          10
    IN     14042014     458.1     35
    OUT     14042014     0          11
    OUT     14042014     0          6
    IN     14042014     457.2     10
    OUT     14042014     0          3
    OUT     14042014     0          4
    IN     14042014     457.2     20
    OUT     14042014     0          5
    OUT     14042014     0          9
    OUT     14042014     0          8above data populate based on first in first out . but out rate is not comes from that query. suppose fist 10 qty are OUT its rate same as IN. but when qty start out from 35 rate will be 458.1 till all 35 qty will not out. like out qty 11,6,3,4,5,9 now total are 38 .
    when qty 9 will out the rate are 6 qty rate 458.1 and other 3 out rate of 457.2 means total value of 9 out qty value is 4120.20 .
    Now 35 qty is completed and after that rate will continue with 457.2 till 10 qty not completed.
    I think you understand my detail if not please tell me .
    thanks
    i am waiting your reply.

    As SomeoneElse mentioned, there is no row order in relational tables, so you can't tell which row is first and which is next unless ORDER BY is used. So I added column SEQ to your table:
    SQL> select  *
      2    from  tranx
      3  /
    TRXTYPE    ITEM_CODE        RATE        QTY        SEQ
    IN         14042014        457.2         10          1
    OUT        14042014            0         10          2
    IN         14042014        458.1         35          3
    OUT        14042014            0         11          4
    OUT        14042014            0          6          5
    IN         14042014        457.2         10          6
    OUT        14042014            0          3          7
    OUT        14042014            0          4          8
    IN         14042014        457.2         20          9
    OUT        14042014            0          5         10
    OUT        14042014            0          9         11
    TRXTYPE    ITEM_CODE        RATE        QTY        SEQ
    OUT        14042014            0          8         12
    12 rows selected.
    SQL> Now it can be solved. Your task requires either hierarchical or recursive solution. Below is recursive solution using MODEL:
    with t as (
               select  tranx.*,
                       case trxtype
                         when 'IN' then row_number() over(partition by item_code,trxtype order by seq)
                         else 0
                       end rn_in,
                       case trxtype
                         when 'OUT' then row_number() over(partition by item_code,trxtype order by seq)
                         else 0
                       end rn_out,
                       count(case trxtype when 'OUT' then 1 end) over(partition by item_code) cnt_out
                 from  tranx
    select  trxtype,
            item_code,
            rate,
            qty
      from  t
      model
        partition by(item_code)
        dimension by(rn_in,rn_out)
        measures(trxtype,rate,qty,qty qty_remainder,cnt_out,1 current_in,seq)
        rules iterate(10) until(iteration_number + 1 = cnt_out[0,1])
         rate[0,iteration_number + 1]          = rate[current_in[1,0],0],
         qty_remainder[0,iteration_number + 1] = case sign(qty_remainder[0,cv() - 1])
                                                   when 1 then qty_remainder[0,cv() - 1] - qty[0,cv()]
                                                   else qty[current_in[1,0],0] - qty[0,cv()] + nvl(qty_remainder[0,cv() - 1],0)
                                                 end,
         current_in[1,0]                       = case sign(qty_remainder[0,iteration_number + 1])
                                                   when 1 then current_in[1,0]
                                                   else current_in[1,0] + 1
                                                 end
      order by seq
    TRXTYPE    ITEM_CODE        RATE        QTY
    IN         14042014        457.2         10
    OUT        14042014        457.2         10
    IN         14042014        458.1         35
    OUT        14042014        458.1         11
    OUT        14042014        458.1          6
    IN         14042014        457.2         10
    OUT        14042014        458.1          3
    OUT        14042014        458.1          4
    IN         14042014        457.2         20
    OUT        14042014        458.1          5
    OUT        14042014        458.1          9
    TRXTYPE    ITEM_CODE        RATE        QTY
    OUT        14042014        457.2          8
    12 rows selected.
    SQL> SY.

  • BODS 3.1 : SAP R/3 data extraction -What is the difference in 2 dataflows?

    Hi.
    Can anyone advise as to what is the difference  in using the data extraction flow for extracting Data from SAP R/3 ?
    1)DF1 >> SAPR/3 (R3/Table -query transformation-dat file) >>query transformation >> target
    This ABAP flow generates a ABAP program and a dat file.
    We can also upload this program and run jobs as execute preloaded option on datastore.
    This works fine.
    2) We also can pull the SAP R/3 table directly.
    DF2>>SAPR/3 table (this has a red arrow like in OHD) >> Query transformation >> target
    THIS ALSO Works fine. And we are able to see the data directly into oracle.
    Which can also be scheduled on a job.
    BUT am unable to understand the purpose of using the different types of data extraction flows.
    When to use which type of flow for data extraction.
    Advantage / disadvantage - over the 2 data flows.
    What we are not understanding is that :
    if we can directly pull data from R/3 table directly thro a query transformation into the target table,
    why use the Flow of creating a R/3 data flow,
    and then do a query transformation again
    and then populate the target database?
    There might be some practical reasons for using these 2 different types of flows in doing the data extraction. Which I would like to understand.  Can anyone advise please.
    Many thanks
    indu
    Edited by: Indumathy Narayanan on Aug 22, 2011 3:25 PM

    Hi Jeff.
    Greetings. And many thanks for your response.
    Generally we pull the entire SAP R/3 table thro query transformation into oracle.
    For which we use R/3 data flow and the ABAP program, which we upload on the R/3 system
    so as to be able to use the option of Execute preloaded - and run the jobs.
    Since we do not have any control on our R/3 servers nor we have anyone on ABAP programming,
    we do not do anything at the SAP R/3 level
    I was doing this trial and error testing on our Worflows for our new requirement
    WF 1 : which has some 15 R/3 TABLES.
    For each table we have created a separate Dataflow.
    And finally in between in some dataflows, wherein, the SAP tables which had lot of rows, i decided to pull it directly,
    by-passing the ABAP flow.
    And still the entire work flow and data extraction happens ok.
    In fact i tried creating a new sample data flow and tested.
    Using direct download and - and also execute preloaded.
    I did not see any major difference in time taken for data extraction;
    Because anyhow we pull the entire Table, then choose whatever we want to bring into oracle thro a view for our BO reporting or aggregate and then bring data as a table for Universe consumption.
    Actually, I was looking at other options to avoid this ABAP generation - and the R/3 data flow because we are having problems on our dev and qa environments - giving delimiter errors.  Whereas in production it works fine. Production environment is a old set up of BODS 3.1. QA and Dev are relatively new enviornments of BODS. Which is having this delimiter error.
    I did not understand how to resolve it as per this post : https://cw.sdn.sap.com/cw/ideas/2596
    And trying to resolve this problem, I ended up with the option of trying to pull directly the R/3 table. Without using ABAP workflow.  Just by trial and error of each and every drag and drop option. Because we had to urgently do a POC and deliver the data for the entire e recruiting module of SAP. 
    I dont know whether i could do this direct pulling of data - for the new job which i have created,
    which has 2 workflows with 15 Dataflows in each worflow.
    And and push this job into production.
    And also whether i could by-pass this ABAP flow and do a direct pulling of R/3 data, in all the Dataflows in the future for ANY of our SAP R/3 data extraction requirement.  And this technical understanding is not clear to us as regards the difference between the 2 flows.  And being new to this whole of ETL - I just wanted to know the pros and cons of this particular data extraction. 
    As advised I shall check the schedules for a week, and then we shall move it probably into production.
    Thanks again.
    Kind Regards
    Indu
    Edited by: Indumathy Narayanan on Aug 22, 2011 7:02 PM

  • Data extraction from r3 to sap bi 7.0

    Dear sirs,
    i am trying to transfer R/3 table into BI system.I created a DSO in Bi 7.o ,I can see the fields in BI 7.0 but I cannot see any data when i use that table for reporting . please tell me the steps that i should follow to get the data along with Fields.
    thankyou

    Hi,
        Are you using a Generic Datasource or Business Content ??
    If your R/3 table is not available in Business Content, then go for creating a Generic DS.
    1) Goto RSO2 Tx in R/31
    2) Enter a name for the DS in the "Transaction data"
    3) Click "Create" (F5)
    4) Enter the Appln component. (Select from the F4 list)
    5) Enter the descriptions (Short, Medium, Long)
    6) Click "Extractio0n from View"
    7) In the "View/Table", select the table from which u want to extract data.
    8) If you want to enable delta, then click on Generic Delta and follow the steps in the below doc.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    9) Then save and replicate the DS.
    10) Pull some sample data from that DS and check.
    It should work.
    Regards,
    Balaji V

  • Date extract

    Hi,
    How can I extract only the year from a date beginning from 1997-sysdate?

    Hi,
    sake1 wrote:
    SELECT EXTRACT(year FROM sysdate)
    FROM DUAL;
    result:EXTRACT(YEARFROMSYSDATE)
    2011
    But I want to begin from 1997 till sysdate???Sorry, it's unclear what you mean.
    Please post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using.
    Do you want the number of years from January 1, 1997 until SYSDATE? iF SO,
    MONTHS_BETWEEN ( SYSDATE
                , DATE '1997-01-01'
                ) / 12retuns a NUMBER, such as 14.8774453. In you want an integer, use the expression above as the argument to ROUND, TRUNC, CEIL or FLOOR.
    Edited by: Frank Kulash on Nov 17, 2011 9:50 AM

  • I'm doing a scan around a line by sampling data 360 degrees for every value of z(z is the position on the line). So, that mean I have a double for-loop where I collect the data. The problem comes when I try to plot the data. How should I do?

    I'm doing a scan around a line by sampling data 360 degrees for every value of z(z is the position on the line). So, that mean I have a double for-loop where I collect the data. The problem comes when I try to plot the data. How should I do?

    Jonas,
    I think what you want is a 3D plot of a cylinder. I have attached an example using a parametric 3D plot.
    You will probably want to duplicate the points for the first theta value to close the cylinder. I'm not sure what properties of the graph can be manipulated to make it easier to see.
    Bruce
    Bruce Ammons
    Ammons Engineering
    Attachments:
    Cylinder_Plot_3D.vi ‏76 KB

  • Generic Data Extraction From SAP R/3 to BI server using Function Module

    Hi,
    I want step by step procedure for Generic Extraction from SAP R/3 application to BI application
    using Functional module.
    If any body have any Document or any PPT then please reply and post it in forum, i will give point for them.
    Thanks & Regards
    Subhasis Pan

    please go thr this link
    [SAP BI Generic Extraction Using a Function Module|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/business-intelligence/s-u/sap%20bi%20generic%20extraction%20using%20a%20function%20module.pdf]
    [Generic Data Extraction Using Function Module |Re: Generic Data Extraction Using Function Module;

  • Master data extraction from SAP ECC

         Hi All,
    I am a newbie here and teaching myself SAP BI. I have looked through the forums regarding master data extraction from SAP ECC in all forums but could not answers for my question. Please help me out.
    I want to extract customer attributes from SAP ECC. i have identified the standard data source 0customer_attr and replicated in SAP BI. I have created infopackage for full update. I validated the extractor checker(RSA3) and found 2 records for 0customer_attr.
    When I run the info package, the info package remains in yellow state until it times out. Please let me know in case i am missing anything, Please let me know if there is any other process for master data extraction similar to transaction data extraction.

    Hi All,
    i did the below and afte clicking execute in the Simple job, it takes me back to the Monitor Infopackage screen.
    From your info pack monitor --> menu environment-->job overview--> job in the source system--> prompts for source system(ECC) user id and password, enter them, you will get your job at SM37(ECC), select job and click on log details icon. there you can see details about your error. please share that error screen shot.
    Please find the screenshots.
    I did an Environment -->Check connection and found the below,

  • Data extraction with PL/SQL

    Hi Expert
    My customer wants to use PL/SQL language for SAP data extraction in Oracle database. He doesn’t want to use ABAP code for this.
    In my opinion I think that it’s not correct to do this but I have no solid argument.
    Could anyone explain to me why it’s not advisable to use the ORACLE  database directly for this data extraction?
    Best regards

    Hi,
    PL SQL(Native SQL) statements bypass the R/3 database interface. There is no table logging, and no synchronization with the database buffer on the application server. For this reason, you should, wherever possible, use Open SQL(ABAP SQL) to change database tables declared in the ABAP Dictionary. In particular, tables declared in the ABAP Dictionary that contain long columns with the types LCHR or LRAW should only be addressed using Open SQL, since the columns contain extra, database-specific length information for the column. Native SQL does not take this information into account, and may therefore produce incorrect results. Furthermore, Native SQL does not support automatic client handling. Instead, you must treat client fields like any other.
    I think this will be useful for you

  • How to modify the VB examples in ni-scope to sample data simultaneously from two channels in PCI 5922?

     Dear all:
    I want to write VB programs to sample data simultaneously from two channels in PCI 5922. The niscope driver has some example VB programs to sample data from one channel, for example, the "save to file ", the program works well to sample the data from one channel.  When I modify it to sample data simultaneously from two channels, I always get error so I seek your help on how to write the program to sample two channels simulatenously. Thanks.  I attached the sample program here and what I tried to modify is the "channel name" and "waveform()"
    Regards
    Andy
    Attachments:
    savetofile.doc ‏42 KB

    Hi Bajaf, regarding the FFT of the four channels, the next link might be what your looking for:
    http://digital.ni.com/public.nsf/allkb/862567530005f09c8625671b00739970
    Respect the phase issue how are you doing the acquisition of the signals, are you doing two independent acquisitions? if you are controlling them as independent acquisitions try to synchronize them with triggers and the clock.
    How much are they out of phase?
    By the way we know have forums in Spanish
    Best Regards
    Benjamin C
    Senior Systems Engineer // CLA // CLED // CTD

  • Sample data for oracle 10.1.0.4

    Hi,
    On the companion cd samplel data are avialable for oracle 10g 10.1.0.2.
    I've upgraded the database to 10.1.0.4. Setup fails now.
    Two questions: can I install in a new oracle home?
    Are sample data available for 10.1.0.4?
    (I'm only interested in the odm sample data)
    Thanks in advance for any reaction.
    Leo

    For the first question, you cannot install the companion CD to a new oracle home which is different from the database home.
    Second, sample programs are in companion CD which is shipped with 10.1.0.2 base release. For a patch release, Oracle does not ship a companion CD. You can go to $ORACLE_HOME/demo directory to check whether you have installed any sample programs previously.
    If the database was upgraded from a 9.2.0.X release, you may want to upgrade it to 10.1.0.2 release first and install the companion CD at 10.1.0.2 level. You can upgrade it to 10.1.0.4 afterwards.
    Xiafang

  • Automatic Data Extract in ODI

    Hi,
    I want to do automatic data extract in ODI
    How do i achieve this?
    Thanks.

    Hi,
    If i understand your requirement correctly then scheduling in ODI will help you to do automatic data extraction at specific time/interval.
    Have a look,
    http://www.oracle.com/technology/obe/fusion_middleware/odi/creating_scheduling_scenario/creating_scheduling_scenario.htm
    You got what you are looking for?
    Thanks,
    Guru

  • Sample Data in ORDM

    I have just installed the ORDM with the Sample Schema and Reports.
    Can someone please clarify
    1.Where are the sample reports generated?
    2.Is there a Sample RPD file also generated? If yes,where?
    Regards,
    Akshatha
    Edited by: 887460 on Nov 10, 2011 11:16 PM

    HI,
    001 is copy of 000 client, if you install ides and want sample data from IDES use client 800
    regards,
    kaushal

  • Sample data need

    hello every body
    I want to start learning about data warehouse. As I understand we need to store the very large data in a database. Therefore, I am now looking for the free sample data.
    1. Does anyone know where can I download the data?
    2. Does Oracle provide such data?
    take care
    Alongkot Gongmanee

    Hi VJ,
    System will place a Hold only when there is mismatch between Purchase Data and Invoice data, if you get invoice details with all required details and this matches with PO ( even if the Receiving is entered in different PO line ), system will pass the Invoice.
    Hope this answers your query, please let me know if you are looking for any specific information.

Maybe you are looking for

  • Closing Web Browser from an Applet

    Does anyone knows how to close the Web Browser from an Applet ? Also Is there a way to close a browser which is intantiated from using ApplteContext ().showDocument ("....","_Blank"). Thanks Sohan

  • Implementing Sites for a new Single Domain Environment and effects on Exchange

    Copied from the Active Directory forums as the suggestion of replies. I didn't find exactly what I was looking for so decided to create my own question to get some direct feedback. Currently we have a single domain environment with two domain control

  • How to avoid dual maintainence of BP in R/3 and CRM

    Hello Everyone, As you are all aware we cannot maintain financial information (like company code data) in the CRM system and at the same time we cannot maintain marketing attributes in SAP R/3. What is the preferred approached used by Clients to over

  • Multiple operation using the same port does not work

    I am trying to have multiple operations on both ports here is my wsdl snapshot      <portType name="CommonAlerter">           <operation name="initiate">                <input message="client:CommonAlerterRequestInitMessage"/>           </operation>

  • I paid for cs6 and cannot download it

    i can not download my cs6... whch i paid for