DSO New data table rejects data

Dear SDNers,
I have a critical issue.
I am loading data into a DSO (which has end routine, lookup DSO of 2crore records in production)
In development, it worked good.
In Production it took very long time to load data. I initially thought it might be because of the lookup DSO. But it never loaded the data into new data table. The data load monitor results in yellow always.
I used filter in DTP and loaded only limited data. But this also not loading data. The data load monitor results in yellow again.
Then I found that i am unable to access the new data table's data browser (from manage).
I checked with se11 also, I am able to see the table. But if I click contents, the system hangs.
So what I observe is New data table is not allowing to post any new entries?
Kindly give me some insight regarding solving this issue.
Thanks,
Guru

Hi Prasanth,
I didnt say as i am able to see data in change log. I said I am able to access the data browser of both Active and change log table.
and @Saveen, I donot want to load data manually to new data table.
To be Precise i ll answer pransanth questions here..
What is the status of the load in the monitor screen. Yellow (still running)
Is the load completed or not? what is the record count? No the load is not completing.
Is the request active in the DSo and available for reporting? Request is active
Are you facing this issue for the first time? Yes for the first time and only in this DSO.
Are you sure you have authorizations to check the data through manage screen, try to run the Authorization trace on your id and check if the roles are there for your id or not?  Yes, I am able to see active data table, change log etcc. even new table of other DSOs. Only new table of this DSO is inaccessible from manage
See, I used filter in DTP, so it ll bring only limited records from lookup DSO. So no issue with the performance deadlock.
And again I simulated the load and saw, Result package gets filled up perfectly, So the code also works fine.
but if I load the data itll be yellow status with no records added in new table.
In this scenario, New table is inaccesible from manage, So I am pretty sure that both are interrelated issues.
Can some one help me pls..
Thanks,
Guru

Similar Messages

  • Importing data tables into data tablespace and indexes into tablespaces

    Hi
    I want to import data into new schema and i want to store tables into data tablespaces and index into index tablespace ...can anyone tell me how it will possible...

    I want to import data into new schema and i want to store tables into data tablespaces and index into index tablespace ...can anyone tell me how it will possible...
    imp userid=/user/passwd show=y indexfile=import.sql indexes=n full=y
    imp userid=/user/passwd show=y indexfile=import2.sql full=y
    Edit the import.sql and import2.sql to modify the tables' tablespace and indexes tablespace.
    execute import.sql the script in the database. this will create the tables in their respective tablespace.
    imp userid=/user/passwd full=y ignore=y indexes=n constraints=y - to import just the data since the tables have already been created.
    imp userid=/user/passwd full=y ignore=y rows=n  - to import just the indexes since the tables and data have already been imported.

  • Why in SE16 we can not  see New Data Table for standard DSO

    Hi,
    We says that there is three tables (New Data Table, Active Data Table and Change Log Table) of Standard DSO, Then Why in SE16 we can not  see New Data Table of Standard DSO.
    Regards,
    Sushant

    Hi Sushant,
    It is possible to see the 3 DSO tables data in through SE16. May be you do not have authorization to see data through SE16.
    Sankar Kumar

  • Extra non bound Row in a data table

    We have the following question, which we believe is possible with creator:
    In a data table, whose data source is a database table or Object List or EJB, is it possible to have the fisrt row (the row that comes after the column titles row) not bound to any data and used for another purpose? We want to use this row as a Query By Example (QBE) row, so that an application user may enter arbitrary search criteria into textbox columns in this row, column by column. When they click on a find button, data that meets the criteria is returned. We want something similar to the following html dislpay:
    <table width="401" border="1">
    <tr>
    <th scope="col">Employee ID </th>
    <th scope="col">First Name </th>
    <th scope="col">Last Name </th>
    </tr>
    <tr>
    <td>Text Box here for ID criteria </td>
    <td>Text box here for First Name Criteria </td>
    <td>Text Box here for last name criteria </td>
    </tr>
    <tr>
    <td>101</td>
    <td>David</td>
    <td>Keen</td>
    </tr>
    <tr>
    <td>102</td>
    <td>Mary </td>
    <td>Linda</td>
    </tr>
    <tr>
    <td>103</td>
    <td>Kevin</td>
    <td>Lees</td>
    </tr>
    <tr>
    <td>104</td>
    <td>James </td>
    <td>Bent</td>
    </tr>
    </table>
    One possibility that we have considered is to dynamically create a table, using the following code. But this is not working as expected. First, the QBE row is not rendered( there is a message that says No Data Found). And second, the pagination controls do not display.
    public HtmlPanelGrid getGridPanel1() {
    //return gridPanel1;
    Table dynamicTable = createTable();
    gridPanel1.getChildren().add(dynamicTable);
    return gridPanel1;
    private Table createTable(){
    Table table = new Table();
    table.setId("table1");
    table.setTitle("Dynamically Created Table");
    table.setPaginateButton(true);
    table.setPaginationControls(true);
    // Create the Table Row group dynamically
    createRowGroupQBE(table);
    createRowGroupData(table);
    return table;
    private TableRowGroup createRowGroupQBE(Table tbe)
    TableRowGroup rowGroup = new TableRowGroup();
    rowGroup.setId("rowGroup1");
    //rowGroup.setPaginated(false);
    //rowGroup.setSourceVar("currentRow");
    //rowGroup.setValueBinding("sourceData", getApplication());
    //rowGroup.setRows(5);
    //rowGroup.setRows(1);
    // Add the table row group to the table as a child
    tbe.getChildren().add(rowGroup);
    // Create the first table Column
    TableColumn tableColumn1 = new TableColumn();
    tableColumn1.setId("tableColumn1");
    tableColumn1.setHeaderText("Data Item");
    // Add the first table Column to the table row group
    rowGroup.getChildren().add(tableColumn1);
    TextField staticText1 = new TextField();
    // Add the static text to the table column1
    tableColumn1.getChildren().add(staticText1);
    // Create the first table Column
    TableColumn tableColumn2 = new TableColumn();
    tableColumn2.setId("tableColumn2");
    tableColumn2.setHeaderText("Data Item Name");
    // Add the first table Column to the table row group
    rowGroup.getChildren().add(tableColumn2);
    StaticText staticText2 = new StaticText();
    // Add the static text to the table column2
    tableColumn2.getChildren().add(staticText2);
    // Create the first table Column
    TableColumn tableColumn3 = new TableColumn();
    tableColumn3.setId("tableColumn3");
    tableColumn3.setHeaderText("System Code");
    // Add the first table Column to the table row group
    rowGroup.getChildren().add(tableColumn3);
    StaticText staticText3 = new StaticText();
    // Add the static text to the table column3
    tableColumn3.getChildren().add(staticText3);
    // Create the first table Column
    TableColumn tableColumn4 = new TableColumn();
    tableColumn4.setId("tableColumn4");
    tableColumn4.setHeaderText("Description");
    // Add the first table Column to the table row group
    rowGroup.getChildren().add(tableColumn4);
    StaticText staticText4 = new StaticText();
    // Add the static text to the table column4
    tableColumn4.getChildren().add(staticText4);
    // Create the first table Column
    TableColumn tableColumn5 = new TableColumn();
    tableColumn5.setId("tableColumn5");
    tableColumn5.setHeaderText("Column Heading");
    // Add the first table Column to the table row group
    rowGroup.getChildren().add(tableColumn5);
    StaticText staticText5 = new StaticText();
    // Add the static text to the table column5
    tableColumn5.getChildren().add(staticText5);
    return rowGroup;
    private TableRowGroup createRowGroupData(Table tbe)
    // Create the Table Row group dynamically
    TableRowGroup dataRowGroup = new TableRowGroup();
    dataRowGroup.setId("rowGroup2");
    dataRowGroup.setSourceVar("currentRow");
    dataRowGroup.setValueBinding("sourceData", getApplication().createValueBinding("#{newPage.dictionarySessionRemoteGetAllDictionaries1}"));
    //dataRowGroup.setPaginated(true);
    dataRowGroup.setRows(5);
    // Add the table row group to the table as a child
    tbe.getChildren().add(dataRowGroup);
    // Create the first table Column
    TableColumn dataTableColumn1 = new TableColumn();
    dataTableColumn1.setId("dataTableColumn1");
    // Add the first table Column to the table row group
    dataRowGroup.getChildren().add(dataTableColumn1);
    StaticText dataStaticText1 = new StaticText();
    dataStaticText1.setValueBinding("text", getApplication().createValueBinding ("#{currentRow.value['dataItem']}"));
    // Add the static text to the table column1
    dataTableColumn1.getChildren().add(dataStaticText1);
    // Create the first table Column
    TableColumn dataTableColumn2 = new TableColumn();
    dataTableColumn2.setId("dataTableColumn2");
    // Add the first table Column to the table row group
    dataRowGroup.getChildren().add(dataTableColumn2);
    StaticText dataStaticText2 = new StaticText();
    dataStaticText2.setValueBinding("text", getApplication().createValueBinding ("#{currentRow.value['dataItemName']}"));
    // Add the static text to the table column2
    dataTableColumn2.getChildren().add(dataStaticText2);
    // Create the first table Column
    TableColumn dataTableColumn3 = new TableColumn();
    dataTableColumn3.setId("dataTableColumn3");
    // Add the first table Column to the table row group
    dataRowGroup.getChildren().add(dataTableColumn3);
    StaticText dataStaticText3 = new StaticText();
    dataStaticText3.setValueBinding("text", getApplication().createValueBinding ("#{currentRow.value['systemCode']}"));
    // Add the static text to the table column3
    dataTableColumn3.getChildren().add(dataStaticText3);
    // Create the first table Column
    TableColumn dataTableColumn4 = new TableColumn();
    dataTableColumn4.setId("dataTableColumn4");
    // Add the first table Column to the table row group
    dataRowGroup.getChildren().add(dataTableColumn4);
    StaticText dataStaticText4 = new StaticText();
    dataStaticText4.setValueBinding("text", getApplication().createValueBinding ("#{currentRow.value['description']}"));
    // Add the static text to the table column4
    dataTableColumn4.getChildren().add(dataStaticText4);
    // Create the first table Column
    TableColumn dataTableColumn5 = new TableColumn();
    dataTableColumn5.setId("dataTableColumn5");
    // Add the first table Column to the table row group
    dataRowGroup.getChildren().add(dataTableColumn5);
    StaticText dataStaticText5 = new StaticText();
    dataStaticText5.setValueBinding("text", getApplication().createValueBinding ("#{currentRow.value['columnHeading1']}"));
    // Add the static text to the table column5
    dataTableColumn5.getChildren().add(dataStaticText5);
    return dataRowGroup;
    Any ideas?

    Here is a suggestion. I have not tried it myself
    Add another method
        public void setSelected(RowKey rowkey, Object object) {
            if (rowKey != null) {
                tablePhaseListener.setSelected(rowKey, object);
        }

  • Sales order cancel / reject date

    Dear all ,
    I need to know the Sales Order cancel date or rejection date if the sales order is been cancelled.
    Where can i get this date from ,which table?
    VBAK or VBAP?
    Please advice.
    Thanks,Swati

    hi,
    we can check the status of the sales order using the following table and fields.by checking the status we can get the dates also.
    VBUK-ABSTK.
    this is at header level
    VBUP-ABSTA
    this is at item level
    regards
    muthuraman.d

  • How mapping sharepoint list Columns to Sql server data table columns programaticlly

    Hi ,
     I have one Verification List in share Point ,in that list i have 10 columns.And we have sql server in that sql server we have one data table Verification_Table
    in that table we have 25 column, my requirement is all list data  move to  sql data table[ what ever columns mapping to list--->data table that data store in data table reaming column is  Null]
     using grammatically not in BCS

    Hello,
    You can create SQL connection and use Datareader to read from SQL.Firs create a connection string and put this string in web application web.config file of your sharepoint site.
    Now use below code to call your connectionstring in your webpart.
    SqlConnection con = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["ConnectionString"]);
    Here is link to read the data from SQL:
    http://www.akadia.com/services/dotnet_data_reader.html
    Here is one MSDN link to read SP list data:
    http://msdn.microsoft.com/en-us/library/dd490727%28v=office.12%29.aspx
    Let me know if you have any doubt
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Web report data provider change from Master data table to InfoCube

    hi Experts,
    I have created one report on top of multiprovider but in the selection screen when i check the values for a variable I came to know that data is coming from master data table and not from data provider(InfoCube).Can any one help to change the data selection from master data table to data provider(InfoCube) and i am sure that there is no ODS involved in the multiprovider.
    Thanks in advance
    With Regards,
    Bala

    Hello,
    If u are using Analyser then just put a Analysis Grid on the output of the query(should cover all the rows and column) , click on the grid and put the dataprovider. and do auto fit.
    Rohit

  • Data exists in DSO New table but not in Active table

    Guys,
    I am loading data from one DSO to another DSO, in my target DSO I have 6 fields which 2 of them are mapped in Transformation and remaining 4 will be populated by Start routine and End routines. Before Activating I am seeing all 6 fields got populated in New data table but after activating I am only seeing the 2 fields in Active data table but not those that are populated through Start and End rouitnes.
    I have only one Key in my DSO, am I missing something here?please let me know.
    Thanks,
    KK

    Hi,
    beside end routine, there will be one icon.
    click on that.
    you will see two options.
    select the option "populate values into fields with out active transformation rules"
    don't remember the words correctly but gives the same meaning...
    Activate the transformation.
    this will solve your problem
    Regards,
    Raghu
    Edited by: Raghu tej harish reddy on May 2, 2009 11:10 PM

  • DSO activation: Data in new data table but missing in active data table?

    we use an end routine in transformation to populate a data field in DSO.
    it works as we can see the value populated in new data table.
    when we activate (activation) DSO, we see the value is deleted from this data field.
    why?
    this data field is set as an characteristic info obj in the data field portion of the DSO.
    we are using 2004s, I forget to check the SP level.
    George

    good job ,thanks for the update and good luck.
    I saw it late on this, else i never miss OSS notes
    Chetan
    @CP..

  • Data not going from active data table to new data table -DSO activation iss

    Hi Experts,
    Data is going from DSO1 to DSO2. I see some of the records are getting missed in DSO 2 which are supposed to come.
    There is start routine from DSO1 TO DSO2 and as per the start routine some records should come but they are getting missed.
    Apart from that..to  DSO 2 there are 4 other DSO sending data.
    I tried to send single record and saw that data is going

    Hi Experts,
    Data is going from DSO1 to DSO2. I see some of the records are getting missed in DSO 2 which are supposed to come.
    There is start routine from DSO1 TO DSO2 and as per the start routine some records should come but they are getting missed.
    Apart from that..to  DSO 2 there are 4 other DSO sending data.
    I tried to send single record and saw that data is going to New data table and upon activation it does not go to Active data table.
    Please suggest.
    Regards
    Sudha

  • Error while activating data from new table of DSO to active table

    HI,
    while activating data from new table of DSO to active table i am getting
    error message as "Error occurred while deciding partition number".
    Plz any idea hoe to resolve this one.
    thanks & regards
    KPS MOORTHY

    Hi
    You are trying to update/upload the Records which are already been there in the DSO Active Data Table which has the partition.
    Try to see the Record Nos already been activated and update/upload with selective, if possible.
    You can trace the changes at Change log table for the same.
    Hope it helps
    Edited by: Aduri on Jan 21, 2009 10:38 AM

  • How to delete the data in New data table Because...

    Hi all,
    I have an urgent issue :
    in the process chain DSO has finished a delta load with 18592 data entries transfered and added, and activated , but when I checked New data table , there are still 18592 data entries there. This will cause problem I think, because this chain has to run daily, so next run will make the data in new data table added twice, so could you pls let me know the way to delete data in new data table?
    thanks in advance

    Dear Ryan Zhang  ,
    When activation DSO will automatically clears New table and places records in active table and change log table.
    If records still exist in New table means it has not activated properly.
    Check in active table and change log table if any entries are found.
    If not ,try activation again.
    If entries are there in active table then try these
    Go to SE14
    Give the active table name..
    Click on Edit
    Click on activate and adjust database.
    Load again and try to activate.
    Hope it helps
    Regards
    Bala

  • Data is not Loading into Active data table on DSO in BI 7.0

    Hi,
    Iam loading data from a flat file to ODS in BI 7.0, the data is loading up to PSA and New data table , But the DSO is not activating, after all possible steps like, automatically setting/ manualy doing  /  through Process Chain....still unable to do it....Cud u pls tell the reason and solution.

    Hi Sri,
    Did you get any solution for this issue. Your input is highly appreciated.
    We are also running on the same boat, I am using the End-Routine to fill up the 2 fields (one is Key figure and Characteristics) from one DSO to the other. In my case along with all other fields this key figure is also populating before and after the Activation of DSO. But the new Characteristics is populating in the update table (/BIC/A***40) before activating the DSO, once I activated the DSO the new characteristics is not filling up in the (/BIC/A***00), rest are coming without issues.
    I built the same logic for other current data DSO (write optimized) from other DSO to fill the same fields with the similar logic in the end routine, it is up and running without any issues.
    Thanks,
    Dileep

  • Error activating of new data to active data in DSO?

    hi friends,
    in DSO i want move data from new data to active data , i selected request num and trying to activate, i am getting error, how can i solve it.
    Activation of Data / 24.07.2007 / 18:56:08
    Time limit exceeded. No return of the split processes
    Resource error. No batch process available. Process terminated
    Resource error. No batch process available. Process terminated
    SID Generation
    Resource error. No batch process available. Process terminated
    Preprocessing and Postprocessing / 24.07.2007 / 19
    Activation of M records from DataStore object DSO_ANI terminated
    ple let me know how can i solve
    regards
    suneel.

    Hi Suneel,
    I think this problem remains unanswered.
    The issue behind this problem is, during parellel activation the child jobs acknowledge the parent job about status. If the child job takes long time to read data from active data table, then it times out and fails.
    Check the primary index on Active data table and it should be missing in your case. See the se11 index or db02 missing indexes. That is the reason that causes time out. Rebuild the primary index by asking your basis folks and repeat the activation. It should succeed.
    Thanks,
    Sri.

  • Problem in Activating from  New data to Active data in DSO

    Hi All,
    For   my DSO I am fetcdhing some fields from other DSO table ,    through END Routine ,. After  running the DTP , I am getting data for the fileds which i am fetching through routine in New data Table.
    After Activating the New data table to Active data table I cant able to see my data.
    ie in Active data table there is no data for the fields which i am fetching through end routine after activating the request . One more thing my request is activated sucessfully.
    it shows ready for reporting.
    Please help me on this................................

    Hi ,
    After unchecking the checkboxes mentioned in my previous post and still if you dont find data in active table then I think the problem might be  because of Database Statistics not being up-to-date for your ODS tables which causes a delay in data load completion process. You can try refreshing the Database Statistics of your ODS both tables and indexes (active data table, change log table and new data table). This probably may resolve your problem.
    Srikanth.

Maybe you are looking for

  • Alert using Dynamic text in BPM.

    Hi, I am using dynamic text function in alrtcatdef transaction for raising an alert using BPM. But in the alert inbox I am not getting the an alert error message which is passed to alert catagory in control step of BPM. Can anyone please let me know

  • How much would a repair cost for a ipod touch 4th Generation?

    I have had my ipod touch 4th generation for a long timke with a broken screen and a BIG dent on where the usb goes and and its been really embarassing when people ask oh can i see your ipod and i always make something up like its in the car or at hom

  • PE9 Wedding template issues

    Hi everyone, I'm the super happy recent owner of PE9, and I started my first projects recently, one of which is a wedding ceremony. As I used the first available wedding template called "mariage extérieur" (must be something like ouside wedding or so

  • Why won't Google Drive open in Firefox 34.0?

    The tab at the top of the page flashes "redirecting" multiple times, then I get the broken robot saying "Invalid Request". Gmail, Sites, & Groups work fine. I have tried turning off Block pop-up windows and in "Warn me when sites try to install add-o

  • JSF 2 performance ?

    Can JSF 2 / Facelets used in high volume sites because of it's high resource (memory) consuption ? Or is the problem with third party libs ( RichFaces, ICEFaces, ...) ? What are the best practices to avoid resource consumption ? The seems to be vario