Data collection table in database

Hi,
In our SAP ME WIP databse we are not able to see the parameter values for data collection ,as entered by operator.
We tried searchin in WIP db as system rule setting for '
Store Data Collection Results in ODS ' is false.
Are there any other settings apart from those mentioned in "how-to-guide" for datacollection that stores data in ODS database?
Or are we going wrong somewhere?
Attached is the reccomended landscape that we have used in our project.
Regards
Mansi
P.S.

I think this post is in the wrong forum, but what table are you looking in for your data? 
Did you figure out the answer to this problem?

Similar Messages

  • Automation of transaferring Excel data to table in Database

    Hi,
           I am new to SSIS. I need to do automation process to transfer data from excel to table in database. I will get the report daily. So how to make the automation process without manually placing the excel table into excel source everyday?
    1. The excel names changes everyday.
    2. Everyday the excel must be load into same table.
    3. while loading the excel I need to get rid of some rows in excel. Is it is possible in automation process?
    4. Will automation process can form a column with current date as a new column while transferring the data? 
    Thanks in advance....
    BALUSUSRIHARSHA

    Hi BALUSUSRIHARSHA,
    After testing the issue in my environment, we can refer to the following steps to achieve your requirement:
    Create two variables, VarFolderPath stores the folder path in which our files exist, VarFileName stores the date value in the file name like below:
    (DT_STR, 4, 1252) DATEPART("yy" , GETDATE())+ "-" + RIGHT("0" + (DT_STR, 2, 1252) DATEPART("mm" , GETDATE()), 2) + "-" + RIGHT("0" + (DT_STR, 2, 1252) DATEPART("dd"
    , GETDATE()), 2)
    In the Data Flow Task, drag an Excel Source with the as Excel Connection Manager.
    Add the property below the Excel Connection Manger expression:
    Property: ExcelFilePath      Expression: @[User::VarFolderPath] + @[User::VarFileName]
    Drag a Conditional Split Transformation that connect to the Excel Source, then add some conditions to filter some rows.
    Drag a Derived Column Transformation that connect to the Conditional Split Transformation, then add a Derived Column Name with <add a new column> option and use GETDATE() as Expression.
    Drag an OLE DB Destination that connect to the Derived Column Transformation, then configure a table to store the data.
    The following screenshot are for your references:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Comaparing Data within Tables in Database

    Hi All,
    I need to write a PL/SQL Procedure to Compare Data within Tables in a Database.
    For Ex :- There is two tables A and B . A has id as 101 and B has is has 101. I need to comapre the Data . If no match is found within the tables i need to have those table name and column name printed. Please help.

    Assuming that you want to compare tables with identical structure here is one query that will give you all the records that exist in TABLE_A but do not in TABLE_B
    select 'exist in A but doesn't in B' desc, a.*
    from TABLE_A a
    MINUS
    select 'exist in A but doesn't in B' desc, b.*
    from TABLE_B bfrom the other hand if you want to get the oposite result you can transform the query above to
    select 'exist in B but doesn't in A' desc, b.*
    from TABLE_B b
    MINUS
    select 'exist in B but doesn't in A' desc, a.*
    from TABLE_A afinally, if you want to get all the records that are missing in some of the tables, you can do a UNION of the queries above:
    select 'exist in A but doesn't in B' desc, a.*
    from TABLE_A a
    MINUS
    select 'exist in A but doesn't in B' desc, b.*
    from TABLE_B b
    UNION
    select 'exist in B but doesn't in A' desc, b.*
    from TABLE_B b
    MINUS
    select 'exist in B but doesn't in A' desc, a.*
    from TABLE_A aNow the question is, which records do you want to print?
    Also this query might work quite slow if TABLE_A and TABLE_B are large tables.
    I hope this will give you some ideas.

  • Standard Data Collection Failing with Error ORA-04054: database link  does not exist.

    Hi Gurus,
    When I am running Standard Data Collection in ASCP(APS) instance R12.1.3, its failing with error : ORA-04054: database link  does not exist.
    There is no such Database link exits which is showing in above error.
    Also the database link name in the above error is not profile values in the database.
    I think, concurrent might be fetching this database link name  from some tables related to plan.
    I am not having much knowledge about how this ASCP/APS works.
    Need your help to resolve this issue.
    Thanks,

    Hi,
    ASCP Collections looks at the dblink from instances definitions from.
    1. Responsibility: Advanced Planning Administrator
    2. Navigation: Admin > Instances
    You may review the note in support.oracle.com - Understanding DB Links Setup for APS Applications - ASCP and ATP Functionality (Doc ID 813231.1)

  • Export data from database table before database migration

    Hello,
    We are planning to migrate our SAP ERP 6 Ehp4/NW7.01 from Oracle 11.2 to IBM DB2 v. 9.7 database. During test migrations I have established that we spend a lot of time for one particular table (COEP). Because we donu2019t have possibility to archive this table before migration I have an idea to export data from previous years from this table to the file system (using an ABAP report), delete those data from table before migration and then after migration, import back to the database from the file system.
    Does anybody have any concerns or suggestions about this idea?
    Thank you for your answers
    Andrej

    Hello Andrej,
    I strongly do not recommend to do so.
    I am not sure whether technically this could work at all..
    Even it if would work .. In order to really save time, the export and the import would have to be a dirty one (meaning the system is operational and in production). With this there is a high risk to produce inconsistencies on this table.  And you most likely will receive no support if something unforeseen happens and you end with problems.
    Also  your approach (if it should work at all) , would have to be tested thoroughly by you , also protecting the table from any changes.
    I do not believe that this can save any effort compared to implementing advanced migration techniques like table splitting.
    On top, you would go high risk to end with an unsupported system, with not using official migration procedures
    Hans-Juergen

  • Table in which system updates data collected through KKRV

    Hi,
    Can any one tell me the table in which system updates data collected through KKRV?
    and the correct procedure to collect the data for product drilldown.
    can i run KKRC alogwith KKRV to get summerized reports?
    Thanks in advance
    Regards,

    You could probably trace them at COSP or COSS tables where the object starts with VD (summarization object).
    Summarization transaction are better if run separately. First KKRV for summarising plant level information and then KKRC for hierarchy summarization.

  • Import  data in excel to database table

    How to insert data from excel to database table ? any suggestion ?

    Hi,
    1. Save your file as csv (say having empno, ename, sal and deptno columns).
    2. Create a HTML page with file browse item.
    3. Create a button.
    3. Create the following process to be executed on pressing button on your region.
    BEGIN
    DECLARE
    v_blob_data BLOB;
    v_blob_len NUMBER;
    v_position NUMBER;
    v_raw_chunk RAW(10000);
    v_char CHAR(1);
    c_chunk_len number := 1;
    v_line VARCHAR2 (32767) := NULL;
    v_data_array wwv_flow_global.vc_arr2;
    v_rows number;
    v_sr_no number := 1;
    v_rows_loaded NUMBER;
    BEGIN
    -- Read data from wwv_flow_files</span>
    select blob_content into v_blob_data
    from wwv_flow_files
    where last_updated = (select max(last_updated) from wwv_flow_files where UPDATED_BY = :APP_USER)
    and id = (select max(id) from wwv_flow_files where updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- Read and convert binary to char</span>
    WHILE ( v_position <= v_blob_len ) LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved </span>
    IF v_char = CHR(10) THEN
    -- Convert comma to : to use wwv_flow_utilities </span>
    v_line := REPLACE (v_line, ',', ':');
    -- Convert each column separated by : into array of data </span>
    v_data_array := wwv_flow_utilities.string_to_table (v_line);
    --DELETE OLD DATA
    -- Insert data into target table </span>
    IF v_sr_no >1 THEN
    EXECUTE IMMEDIATE 'INSERT INTO EMP(EMPNO, ENAME, SAL, DEPTNO)
    VALUES (:1, :2, :3, :4)'
    USING
    -- v_sr_no,
    v_data_array(1),
    v_data_array(2),
    v_data_array(3),
    v_data_array(4);
    END IF;
    -- Clear out
    v_line := NULL;
    v_sr_no := v_sr_no + 1;
    END IF;
    END LOOP;
    END;
    COMMIT;
    END;
    Hope this helps.
    Regards,
    Zahid

  • Data structure similar to database table

    i have the need for a data structure that will essentially be the same as a database table. this "table" can be queried against and sorted.
    currently, i am using an interface to abstract this "table" datastructure, and implementing the interface via jdbc calls.
    may someone point me in the right direction?
    in .NET, they have the DataTable and DataSet data structures, which do exactly as i require. These are objects essentially correspond to a database table and database, respectively. They are used as in-memory database.
    i have already tried using HSQL, but was wondering if there was a "better" way (i.e. more light-weight, intuitive, easier to use).
    thanks.

    Use an array and put your records in it.
    Efficient querying (simple queries) requires you to build indices for each element you wish to query on. The type of index depends on the kind on search you want to perform. Exact matches can use Hashes. Sorting, prefix or postfix matching can be performed using various tree indices.
    Complex queries (i.e. those that query on multiple parameters generally require query optimisers to figure out how to use the indies you have in the most efficient manner possible (well as close as the optimizer can get to it).
    cheers
    matfud

  • Joins between DATA COLLECTIONS and TABLES

    I would like to know if is there any way to create one data collection with a query result, but I must join this data collection with an exist table, I cant use the GLOBAL TEMPORARY TABLE because I cant create a table in the module. I would like to do just what the SQL Server do with the @.

    sql>create type tnumbercollection as table of number;
      2  /
    Type created.
    sql>declare
      2    c  tNumberCollection;
      3  begin 
      4    select employee_no bulk collect
      5      into c
      6      from mrt_user_master
      7     where rownum <= 5;  -- build collection of 5 employee numbers
      8 
      9    for r in (select um.last_name
    10                from user_master um, table(cast(c as tNumberCollection)) t
    11               where um.employee_no = t.column_value) loop  -- join the collection to the table
    12 
    13      dbms_output.put_line( r.last_name);          
    14 
    15    end loop; 
    16  end;
    17  /
    PL/SQL procedure successfully completed.

  • [JAVA] How to input data collected in a table

    Hello!
    I'm writing a program that monitors the signal of a sensor in a chart. Now I want to insert into a table of data collected by the sensor using a JTable.The problem is that if I run the program, data are not included in the table.
    Where did I go wrong?
    Here's part of the source code.
    ArrayList<Data> datiArray = new ArrayList<Data>();
    DataTableModel dtm= new DataTableModel(datiArray);
    public class DataTableModel extends AbstractTableModel {
        private ArrayList<Data> datiArray;    // <---- Il table model ha la collezione
        public DataTableModel(ArrayList<Data> datiArray) {
            this.datiArray=datiArray;
        public void addData(Data d) {
            datiArray.add(d);
    int row = datiArray.size()-1;
    fireTableRowsInserted(row,row);
             private String colName[] = {"Time", "G-value" };
            public String getColumnName(int col) {
                return colName[col];
            public int getRowCount() {
                return datiArray.size();
            public int getColumnCount() {
                return 2;
            public boolean isCellEditable(int row, int col) {
                return false;
              public Class getColumnClass(int c) {
              return (c == 0) ? Long.class : Double.class;
    public Object getValueAt(int row, int column) {
            Data d = datiArray.get(row);
            switch (column) {
                case 0: return dati.getTime();
                case 1: return dati.getGvalue();
            return null;
        private class Data  {
            public long time;
            public double gvalue;
            public Data(long time, double gvalue) {
                this.tempo = tempo;
                          this.gvalue = gvalue;
    public long getTime() { return time; }
        public double getGvalue() { return gvalue; }
    RecordButtonAction
        private void recordButtonActionPerformed(java.awt.event.ActionEvent evt) {                                            
            int i=0;
    int j= graphView.getSampleTime();
    int k=graphView.getIndexMax();
    System.out.println(j);
    System.out.println(k);
            while(i<k){
    Data dr= new Data(graphView.getTime(i),graphView.getGvalue(i));
    //datiArray.add(dr);
    dtm.addData(dr);
    //these System.out.println are served to me to check if the values were actually included in the class Data and DataTableModel
    System.out.print(graphView.getTime(i));
    System.out.println("/t"+graphView.getGvalue(i));
    System.out.println(dr.getTime());
    System.out.println(dtm.getValueAt(i ,1 ));
            i=i+j;
            readyRecord = false;
    Sorry for my bad English.

    Please don't cross-post the same question in multiple forums. Especially since you've already been given directions as to how to ask the question smartly.

  • How to view data in tables by selecting the synonym from the database objec

    I could not figure out how to view data in tables by selecting the synonym from the database objects navigation tree. I had to first choose the synonym, view the details of the synonym to determine the table name, and then select the table from the database objects tree. Is this the only way available?

    This functionality currently does not exist. I don't see it on the 1.1 statement of direction either, so perhaps someone from Oracle can give some insight as to when this could be expected.
    Eric

  • Copying data from KeyFigures to database table in APO

    Hi Experts,
    Is there any way to copy the key figure values to APO database table?
    Can we use any macro function to satisfy this requirement?
    Is there any function module/BAPI which might be helpful to copy the KF data to DB table within APO?
    Thanks for looking into it..
    Rgds/
    Jay

    In the standard macro environment, there is a simple database table where you can store and retrieve data from, table /SAPAPO/ADV_SERI, with four keys and almost as many numbers as you want (combining some predefined column space and an iteration field). It only works for numbers.
    You can use TS_SET to save data and TS_GET to store, please check the macro online help for the complete syntax.
    Hope this helps,
    Pablo

  • Hoa to delete data from the SE11 database table

    Hi Friends,
    Need some urgent help.
    While uploading data to infotype 6 (addresses) in subtype 4(emergency address), I have uploaded the data twice and it has created a duplicate record now in table PA0006.
    I have done this in the quality server. Will this effect the user acceptance testing(UAT) in anyway and how can I delete this data from table PA0006
    Pls help me urgently.
    Bye
    Naveen

    Hi  Naveen ,
    1 .Check what is the time constraint for address infotype .
    2.If it is 2 , it would have delimited the record , if it is 3 it would have created another record , if it is one there will be no problem as it would have deleted the recored provided u have given the dates into consideration .
    3.It will not be  a problem for UAT . If it is not required do  a scat for deletion of records .
    Regards
    Gajalakshmi

  • Is there any easy way to compare LIKE Addresses from one table, which contains 3rd party data, to another table, our database source

    We have a 3rd party that is supplying us data and we need to compare the addressing between the 3rd party data to our source database addressing. I'd like to make it somewhat flexible meaning I'd like to somehow use the LIKE comparison rather than comparing
    the exact address values. (I have noticed that the 3rd party addressing sometime has a leading <space> at the beginning of the address...why I'd prefer to use LIKE)
    Is there any easy way to do this? Or does this dictate using a CURSOR and processing through the CURSOR of 3rd party data and plugging in the address LIKE as dynamic SQL?
    Please let me know your thoughts on this and I appreciate your review and am hopeful for a reply.

    Yes, it's possible and there are a variety of options but it's may not be for the faint of heart.
    The last time I did it, I ended up taking several passes at the data.
    1st pass was a straight up comparison with no modifications or functions.
    2nd pass was the same but with all special characters removed.
    3rd pass involved splitting the numeric portion of address and comparing just the street numbers and used a double meta-phone function (kind of like a soundex on steroids) to compare the street names.
    Jason Long

  • What is the use of XML data collections

    Dear all,
    I have open the Adventure works database sample and have few technical design question about it :
    1- I have seen that seen that some function has been define. IN which case we should use function vs Store procedure ? so far I always have used SP.
    2- I have notice also that in some table, there is a field which contains XML content and this XML content is coming from the XML Schema collections. Some shemas has been define here for different tables.
        - What are those shema used for in here ?
        - How they are created ?
        - how they get inserted to Table colum ?
    I am not a DBA and knows some basics but not all so thanks for simple explaination :-)
    regards

    Hi wakefun,
    About your questions, I recommend you review the following articles for understanding user function , Store procedure and XML Schema collections in Adventureworks database.
    1. Stored Procedures in AdventureWorks;
    2.
    User-Defined Functions in AdventureWorks;
    3. XML Schema Collections (SQL Server).
    The XML schema collection is a metadata entity like a table in the database. You can create, modify, and drop them.
    the XML stored in a column or variable that a schema is associated with is referred to as typed XML, because the schema provides the necessary data type information for the instance data.
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

Maybe you are looking for

  • Check(Cheque) Printing

    Hello Guys, My requirements here is to print checks without payment advise. The steps what I have followed is as follows: 1) I have created a separate page format Zdemo with following specifications:  width : 210 mm and height : 24 LN (check size). 2

  • Navigate to next page based on inputtext input

    hi i have a situation where i have to enter value in inputtext and navigate to next page and display values in lov in next page based on the value entered in inputtext,and able to make selection in lov and navigate to next page and display value on l

  • Printing multiple zoomed slides per page

    I'm having trouble configuring Adobe Reader's print settings. I want to print 2 slides per page at 130% zoom for each. I can currently print a page zoomed in at 130% and print 2 slides per page, but I can't do both at the same time. David

  • Got it on ebay with no dvd.now i can not reset the password.What can i do???help please

    I have the Mac from ebay and the guy didn't have the DVD with it.i changed the Password,but now it doesn't except it anymore. so what can i do now?? Need some Help.can not update I tunes and drivers. regards Freddy

  • PS 7 Installation

    Hi, Am trying to set up the portal server for our university research institute. I downloaded the newly available PS 7 installer for Solaris 10 X86 from http://www.sun.com/download/products.xml?id=43b9e006. The installation after running the installe