Dms-error-table doubt

Hello Team,
We were facing an error where we were not able to save a document in content repository. I took help of my abap friend to run one of the standard functional programs and he suggested that there are no entries maintained in tables TDW0, TDWD and TDWE. Also he said content server is windows 2008, but i find only unix (dev) files which has to be updated.
Now i am not able to know how to proceed further. Please help me.
regards,
sai

Hello Ajay,
Thanks a lot for the reply below are my comments,
1. Content repository - Connection is successful? * Make note that you have sent the certificate
Yes, certificate sent is also successful
2. Above Cont repo is assigned to storage category that you are using
Yes this is done
3. While attaching the file, you are using above storage category
Yes i am using the same.
4. Check the table SOFFPHIO the doc ID is update after successful attaching the file
I have not done this, only today when i used SE16 and gave this table and execute i was able to find i was not able to find any doc id field there only log documents,
Please suggest me and help as i am in fix from long time on this...and my fingers are crossed please help.
regards,
sai

Similar Messages

  • How to load error table from mapping

    i have one doubt regarding including error table in mapping.
    i am here with table structure,
    map_name varchar2(30),
    source_name varchar2(15),
    transformation_stage varchar2(100),
    source_name varchar2(30),
    target_table varchar2(30),
    error_field varchar2(100),
    error_message varchar2(225),
    Execution_date date.
    this table i have to include in all mappings and i have to load the errors in this table.please guide me
    how to include this table and load the errors.if you have any code please send me.
    with regards
    narendra.p.v

    just kind of workout(rather call it as template) as post mapping process...
    declare
    -- in this cusor, you can include mor attributes in SELECT clause
    cursor cur_audit is SELECT a.RTE_IID,
         a.RTA_IID,
         a.RTE_ROWKEY,
         a.RTE_SQLERRM,
         c.TASK_NAME,
    -- the return_result attribute, which will get the value only after the mapping completed(/ or exited) including post process
    case when a.RTE_IID is null then
    'SUCCESS'
    else
    'FAILURE'
    end RETURN_RESULT,
         c.RETURN_CODE,
         c.NUMBER_OF_TASK_ERRORS,
         c.NUMBER_OF_TASK_WARNINGS,
         c.CREATION_DATE, c.LAST_UPDATE_DATE
    FROM WB_RT_ERRORS a,
         WB_RT_AUDIT b,
         WB_RT_AUDIT_EXECUTIONS c
    WHERE b.RTe_ID = ANY(SELECT MAX(AUDIT_EXECUTION_ID) FROM WB_RT_AUDIT_EXECUTIONS)
         AND b.rta_iid = a.rta_iid(+)
         AND b.RTE_ID = c.AUDIT_EXECUTION_ID;
    begin
    for i in cur_audit
    loop
    insert into cs_event_template values(ccv_event_seq.nextval,i.task_name,i.return_result,i.return_code,i.number_of_task_errors,
              i.number_of_task_warnings,i.rte_sqlerrm,i.rte_rowkey,i.rta_iid,i.rte_iid,i.creation_date,i.last_update_date);
    end loop;
    commit;
    exception
         when others then
         dbms_output.put_line('Error:     '||SQLErrm);
    end ;
    You will get more than this and/or if you have just simple plan than this , would you mind to just let us know...

  • Erro "validadation error: Table (IT_NFE_IMP)

    Boa noite
    Atualizamos o SP do GRC para o 15 e estamos em fase de testes. Não podemos atualizar para o 16, pois o go-live está marcado para domingo 14/11. Ainda não estamos trabalhando na versão 2.0... estamos realizando os testes para a versão 1.0
    Ocorre que depois da atualização do SP e aplicação das notas referentes ao SP16 do GRC estamos tendo a mensagem de erro "validadation error: Table (IT_NFE_IMP)". O interessante é que estamosem contato com outros usuários SAP que fizeram o mesmo esquema que o nosso e não tiveram nenhum problema de validação durante os teses. Detalhe: temos uma BADI no GRC também ativada.
    Alguém tem uma idéia do que pode ser??
    Obs.: se eu tenho um erro de CEP para um fornecedor de importação o erro dá na mesma tabela, mas informa que é o formato do campo.
    Desde já agradeço a ajuda.
    Grata,
    Denise

    Bom dia Denise,
    Mesmo que ainda não esteja trabalhando com o layout 2.0 recomendo que implemente as notas do SP16 no seu sistema.
    Este erro que está enfrentando é corrigido pela SAP Note 1520853.
    Veja histórico completo aqui : Problema de validação... Validation error: Table (IT_NFE_IMP) Missing entry
    Atenciosamente, Fernando Da Ró

  • ERROR TABLE INCLUSION

    Hi,
    I am using error table to capture the records that failed to load into the target table.
    I have specified the data rules and the rule action is move to error for all the rules. Its row based generation and while executing the mapping, the error records are not getting into the error table and mapping stops when it reaches the maximum limit.
    Where is the problem ? I couldnt figure out. Can anyone help ???
    Thanks and Regards
    Ela

    OWB client version 10.2.0.1.31 and repository 10.2.0.1.0.
    DB is Oracle 10g.
    I specified the data rules in the object editor for the table and then specified the shadow table name. Then I dropped and recreated the table which resulted in the error table creation.

  • DML error table intermittently fails to generate error handling in package

    Hi!
    In OWB 11gR2 (11.2.0.1), we're seeing an issue when setting the DML Error table name on a target table. Sometimes, mostly on older and complex mappings, the error handling logic does not get generated when we deploy the mapping, and nothing is populated in the error tables for error conditions, though the errors display as warnings in the OWB UI.
    When I create a new mapping that is very simple - one table loading another - setting the DML Error table name always results in errors being put in the error table. That's great, but that doesn't help us with our more-complex mappings that aren't logging errors.
    We can't determine the cause of the issue. I can't see a difference in the configuration of the mappings that work and don't work. Generation Mode is All Operating Modes. Default Operating Mode is Set based fail over to row based. We've generated the error table using DBMS_ERRLOG.CREATE_ERROR_LOG. The target tables do not have primary keys.
    I've tried synchronizing the target table operator in the mapping as another forum thread suggested. No change.
    Has anyone else seen this issue or know of a workaround?
    Thanks,
    Jayce

    Which logic did you talk about ?
    For the version 10, you will find the error table more on the insert statement such as:
    INSERT INTO "TSALES"
      ("PROD_ID",
      "SALES"."AMOUNT_SOLD" "AMOUNT_SOLD"
    FROM
      "SALES"  "SALES"
    LOG ERRORS INTO TSALES_ERR (get_audit_detail_id) REJECT LIMIT 50;Come from here:
    http://blogs.oracle.com/warehousebuilder/2007/08/set_based_errors_dml_error_log.html
    Then check the insert SQL generated.
    Cheers
    Nico

  • Find error table created using DBMS_ERRLOG

    Hello,
    I am working on Oracle 10.2.0.5 and have a requirement to log the Error records without allowing the Load process to fail. In order to achieve this, I have decided to use the DBMS_ERRLOG functionality provided.
    However, there is a catch. The application has approx. 100+ database tables, which are loaded with data received in flat files, and many of them have length nearning 30 characters.
    Now, DBMS_ERRLOG, will automatically create an error table corresponding to database table, but will only consider first 25 characters. And since, many tables have similar names differing only towards the end. Hence, my question is, Is there any data dictionary view which might store the underlying database table name?
    I am aware of two options to achieve this:
    1. Maintain a document to reference each Error table to its database table. This being a manual approach, I am trying to avoid it.
    2. Use the USER_TAB_COMMENTS, which will store the table name in comment. Although I have seen this happening, but do not see this as sure-shot approach, since I do not remember reading this anywhere in documentation.
    Can anybody suggest a better approach to manage the situation?

    padders answer is a good one.  I do not see the problem since you can create the error log tables with names of your choosing in any schema you want.  Don't let oracle name the tables.  Use SQL to create the PL/SQL for all your tables based on a tag you put in the table comments or based on another table with the table names to be logged.
      DBMS_ERRLOG.create_error_log
        dml_table_name      => 'real_schema.my_thirty_character_table_name',
        err_log_table_name  => 'my_thirty_character_table_name',
        err_log_table_owner => 'error_schema',
        skip_unsupported    => TRUE
    Table_Name
    Error_Table_Name
    Error_SchemaHeader
    my_thirty_character_table_name
    my_thirty_character_table_name
    error_schema
    my_short_name
    my_short_name_err_log
    support
    With so many tables I would write a generator to create all the error log tables and the DML (insert, update or merge statements) with error logging for all the tables based on the above table and maybe put the DML in an API package that can be called from your app.

  • Usage of Error Table in OWB mapping

    WE uses ERROR tables to take care of defective items in a maping. We want the rows in the error-table to remain and acumulate for each loading. That is, we do not want to truncate between running the mapping. We have:
    Truncate table error = NO
    Roll-up errors = NO
    But the table is truncated between each load anyway.
    Does anyone have any experience of how to make the table not to truncated?
    We are using OWB 11.2.0.1
    /John

    Hi John
    This looks to be fixed in the 11.2.0.2 OWB patch.
    The bug is 9661088, otherwise you'd have to move/process the errors before re-run.
    Cheers
    David

  • How to use error table in mapping level?

    Hi all
    Any one please tell me how to use error table in mapping level or how to handle the errors in mapping.
    I am creating one error table in oracle but i dont know how to use it in mapping.
    Thanks in advance.
    Kumar

    Hi Kumar,
    You need to use Error Table along with the Data Rule .
    Error tables are used with Logical error handlers (Data Rules). Detailed description on using data rules is explained in the following document
    http://www.oracle.com/technology/products/warehouse/pdf/OWB10gR2_ETLandBusinessRules.pdf
    In a nut shell usage of error tables is as follows.
    1. Create a data rule associate it with a table (Target table or table in which you load data).
    2. Use the table in a mapping as target table.
    3. Deploy the table and mapping.
    Now in the target schema one more table will be created with the name <target table name>_ERR. When a mapping is executed the data which violates the data rule gets into this error table.
    The following has to be done to have error table name of customers choice.
    1. Right click on the table and click configure.
    2. Give the table name in "shadow table name" section.
    3. Deploy the table.
    4. Use this table in a mapping. Now in the mapping on this table properties in "Error Table Name" section the name of the table specified in "shadow table name" will be populated.
    Thanks,
    Sutirtha

  • How to capture Field validation errors in the Error table in ODI 11g

    Hello,
    We are using ODI 11g (11.1.1.5) and the scenario is to read the data from a flat file (.txt) and do a bulk insert into MS SQL Server database table.
    We need to capture the error records (if the source field size is greater than the target column size) into the error table. However the interface errors out at step "Loading - SrcSet0 - Load data (BULK INSERT)" with error message "SQLServer JDBC Driver][SQLServer]Bulk load data conversion error (truncation) for row 33, column 6" but these errors are not being inserted into the error table.
    Is there a way to capture these errors in the error table? Below is the KM details.
    LKM: LKM File to MSSQL (BULK)
    CKM: CKM SQL
    IKM: IKM MSSQL Incremental Update
    FLOW_CONTROL is set to true for the IKM.
    Thanks,
    Krishna

    Hello,
    I had the same problem with ODI when I was trying BULK INSERT of the txt file into MS SQL. Check the cell(s) in your source file (txt) - it looks like the value in hte cell has hiding symbols: when pressing F2 tryng edit the value in the cell the coursor appared far to the right from the right end of the value. So, try to use backspace to delete the hiding symbols and verify the above. If avasrything is OK, then modify your txt file. Let me know if it works.
    BTW , I've created procedure inside the MS SQL 2008R2, which BULK INSERTed records into temporary (#...) table and immediatelly, without any verification all the records were inserted into the final table in the DWH here is the statement:
    if object_id('TEMPDB..#<table>','U') is not null drop table #<table>
    CREATE TABLE [dbo].[#<table>] 
    [1] [varchar] (50) NULL, 
    [2] [varchar] (100) NULL, 
    [3] [varchar] (100) NULL, 
    [4] [varchar] (100) NULL, 
    [5] [varchar] (100) NULL, 
    [6] [varchar] (100) NULL, 
    [7] [varchar]  (100) NULL, 
    [8] [varchar] (100) NULL, 
    [9] [varchar] (100) NULL, 
    [10] [varchar] (100) NULL, 
    [11] [varchar] (100) NULL 
    ) ON [PRIMARY]
    bulk INSERT #<table> FROM 'N:\<table>.txt'
    with
    (FIRSTROW=2,KEEPNULLS,CODEPAGE=1252,FIELDTERMINATOR='\t'
    INSERT
    INTO <table>
    SELECT
    * FROM #<table>
    and it works! Let me also know if you find any other way around.
    regards
    Anatoli

  • Does "Target table" and "Error Table" need to be in same DB as OWB's?

    We get the following error ORA-00600: internal error code, arguments: [opixrb-3], [1036], ORA-01036: illegal variable name/number at the time of OWB execution
    OWB seems to successfully log the errors rows in the error table when a) target table and it’s b) error table are in the same database as OWB’s but throws ORA-01036 error when they are in a remote database from OWB's
    Any one has any information about this please...? It will be of great help
    Edited by: ghiyer on Jul 20, 2009 8:42 AM

    Oracle has come back to us saying that
    "DML error logging feature is not supported for distributed DML."
    Bug 5698887 has more information about this.

  • Viewing form in Preview Mode Failed. Error: Table not found  [131-183]

    Hi,
    I have created a user form in screen painter in SBODemo. Created UDT, UDF & Registered UDO through my SDK code.
    Everything works fine.
    But when i run my addon on any other DB, and open my custom form it gives an error : Table Not Found.
    I have checked the UDT's , UDF's & my UDO, all are in place and getting created in the DB.
    I tried checking the Form again in screen painter everything is in line. But when i try preview in screen painter it gives an error
    Viewing form in Preview Mode Failed. Error: Table not found  [131-183].
    I can't figure out the issue, i have checked my codes & forms many times.
    Regards
    John

    hi john smith,
    Check your screen painter, probably some fields are defined without the "@" character in front.
    for fields, check the "U_".
    nd.Q

  • Error Table not found ODBC -2004 [melding 131-183] when opening "Open documents"

    Hello, we get an error on opening the screen "Open Documents" in SAP B1 9.00
    It says : Error Table ................ not found ODBC -2004 [melding 131-183]
    Everytime a different table gets mentioned: OAIB - OWHT - WLS1 - CSHS.
    Last time when we created a new userprofile it was gone, but now after twoo weeks this error is back.
    Does anyone know how we can create a solid solution ?
    Thanks in advance - Jos Dielemans

    Hi,
    It is an application error. Please check SAP note:
    2008925 - You cannot run the Open Item List report for Purchase Requests
    Thanks & Regards,
    Nagarajan

  • Error - Table not found

    Hi Guys,
    Error - TABLLE NOT FOUND
    We are working on discovery server which comes preconfigured from SAP.
    I am able to work on the standard repositories like products available on this server for syndication and importing, but when I am trying to create the new repository I am getting the error TABLE NOT FOUND. Getting this error after entering the DBMS Server, Login Details and Repository Name and Port details.
    Thanks,
    MS

    Hi colleagues
    You should check follow:
    - DBMS-user can connect to DBMS from your workstation(where you run SAP MDM Console)
    - DBMS-user has premissions(grants) according to "installation guide".
    - restart SAP MDM Server
    - update DBMS Settings
    - create new repository
    Regards
    Kanstantsin

  • More than 50 rows in an error table?

    Hello All,
    In OWB 10.2.0.4 we are using the Error Tables (Shadow Table) functionality. This is working fine. However, during set based loading the number of errors that is logged into the error table is determined by the mapping configuration setting "maximum number of errors". You know, the one that has a silly default value of 50. This results in a bulk insert statement that has the following additional clause:
    LOG ERRORS INTO MY_ERR (get_audit_detail_id) REJECT LIMIT 50
    Now, this is what I would really want is:
    LOG ERRORS INTO MY_ERR (get_audit_detail_id) REJECT LIMIT UNLIMITED
    This is valid SQL, but I can't get the mapping configuration property to produce this value. It only accepts (positive) numbers. Any thoughts on how to get this to work?
    Regards,
    Ernst-Jan

    Hi Ernst-Jan
    The best you can do is pick a large number. Noo way to set UNLIMITED from the UI.
    Cheers
    David

  • OWB 10.2.0.1 - Error Table

    Hi All,
    how can I use successfully the Error Table in a Mapping ? I have created 2 table (t_source [col_1 varchar2(10)] and t_target [col_2 varchar2(5)] ). I have configured mapping as rowbased and created with DBMS_ERRLOG.CREATE_ERROR_LOG one error table for each table.
    But when i run mpaing (who discards every records ) i obtein empty error table ?!!
    What can i do ?
    Thanks,
    Marco
    Oracle 10Gr2
    OWB 10.2.0.1
    Unix
    Message was edited by:
    Marco A.
    Message was edited by:
    Marco A.

    Hi,
    I have not tried to implement what has been said in the link, this link I had got from one of the replies in this forum.
    One more approach you can try
    For each of the object in OWB you can create data rules. There is a set of built-in data rules and also you can create your own set of data rules.
    Once you have created these data rules on the fields of the table, you can deploy this table into your target schema. In the database, an error table is created for the table object.
    Now when you use this table as a target in a mapping, click over the target table operator you will find the data rules node. Expand the node corresponding to the data rules for which you want error logging and then select 'MOVE TO ERROR' as Rule action.
    Deploy the target table object and the mapping and execute it. Hopefully the rejections due to rule violations should get logged into error table, if you have set the Rule Action appropriately.
    HTH
    -AP

Maybe you are looking for

  • How do i retrieve information from the JSP into my SELECT statements?

    I need to retrieve the information that is being entered into JSP page.. So that i can use them to do an SQL statement.. but im not very sure if my codes are correct.. Following are my codes.. Pls help.. thx MyJSPPage.jsp <jsp:useBean id="user" class

  • How to execute the first program without using SUBMIT and RETURN

    Hi Experts, My requirement is , I need to select thet value from VA02 at runtime and need to pass that value to VF01 transaction and press save then it creates proforma document.The created document we can see in VA02 by clicking on document flow. My

  • Cannot find a solution

    Have tried all the advice online and cannot get my firefox to work. It started off having issues tuning script. I could not type in the search bar. Got that fixed by reinstalling Now I can not access any site without it saying it is an untrusted site

  • Default photo viewer

    I'm using PSE 8 and I would like for it to be my default photo viewer.  I always have to import my photos into PSE 8 to work with them.  Is there a setting I'm just not seeing?

  • Extending menu only across whole browser

    I'm wanting to place a menu on my iweb page that stretches across the whole browser, but allowing for the rest of the content to fit into a 900 mm width. Like this: http://www.switzer.com.au/ Appreciate any thought on how I can do it? Regards Dan