Insert Table Content - Urgent

Hi All,
  I am getting weird error while Inserting record into Z-Table. It has 3 Key fields. 1st Key field is <b>Char</b> Type, 2nd Key field is <b>Date</b> Type & 3nd field <b>NUMC</b> Type.
<u>Lets consider the following scenario:</u>
Data Set 1: Key1 value -  H1273494
            Key2 Value - 20051212
            Key3 Value - 12
This record gets inserted successfully into Database table.
Data Set 2: Key1 value -  H1273494
            Key2 Value - 20051212
           <b> Key3 Value - 14</b>
This record failed to insert into Table. Although it has different key Combination. (3rd Field got different value)
Could you help me out please.
<b>I promise to return and reward the answers.</b>
Raja T

Hi All,
Thanks for you responce,
Here is the COde:
REPORT  ZCWRIT_TEST                             .
data: wa_zcwrit type zcwrit.
DATA: v_ctime(15).
       wa_zcwrit-CASE_GUID = '123423445566666'."ls_guid .
       wa_zcwrit-WRIT_ORDER_DATE = sy-datum.
       wa_zcwrit-COUNTY = '11'.
       wa_zcwrit-WRIT_NUMBER = 12 .
       wa_zcwrit-ISSUE_DATE = sy-datum.
       wa_zcwrit-END_DATE = sy-datum + 60 .         
       wa_zcwrit-SOURCE = '03' .              "03 for
       wa_zcwrit-SOURCE_DATE = sy-datum .
       if wa_zcwrit-ISSUE_DATE eq '00000000' .
           wa_zcwrit-ISSUE_DATE = sy-datum.
       endif.
       wa_zcwrit-CREATED_BY = sy-uname .
       wa_zcwrit-Changed_BY = sy-uname .              "Ptemp++
       concatenate sy-datum sy-uzeit into v_ctime .
       wa_zcwrit-CREATE_TIME = v_ctime .
do 2 times.
*wa_zcwrit-county = wa_zcwrit-county + 1.
wa_zcwrit-WRIT_ORDER_DATE =  wa_zcwrit-WRIT_ORDER_DATE + 1.
         modify zcwrit from wa_zcwrit .                  "P007--
*        insert into zcwrit values wa_zcwrit .             "P007++
    if sy-subrc = 0.
        commit work .
        else.
        rollback work.
        endif.
        enddo.
Here is the Table Structure:
MANDT     MANDT     CLNT     3     0     Client
CASE_GUID     SCMG_CASE_GUID     CHAR     32     0     Technical Case Key (Case GUID)
WRIT_ORDER_DATE     ZWRIT_ORDER_DATE     DATS     8     0     Writ Ordered Date
COUNTY     ZCOUNTY_FILED     NUMC     2     0     Generated Data Element County
WRIT_NUMBER     ZWRIT_NUMBER     CHAR     20     0     Writ Number
ISSUE_DATE     ZISSUE_DATE     DATS     8     0     Issue Date
END_DATE     BBP_END_DATE     DATS     8     0     End Date
SOURCE     ZWRIT_SOURCE     NUMC     2     0     Writ Source
SOURCE_DATE     ZSOURCE_DATE     DATS     8     0     Source Date
.INCLUDE     ZZM_CHANGEINFO     STRU     0     0     Record change info
CREATED_BY     SCMG_CREATE_USER     CHAR     12     0     Created By
CREATE_TIME     SCMG_CREATE_TIME     DEC     15     0     Created On
CHANGED_BY     SCMG_CHANGE_USER     CHAR     12     0     Last Changed by
CHANGE_TIME     SCMG_CHANGE_TIME     DEC     15     0     Last Changed On
Hope this info will be sufficient. If you need any info please let me know.
Raja T

Similar Messages

  • URGENT--------------------Problem in Inserting Japanese Content TO CLOB

    Hello,
    We are trying to insert the xml file containing japanese content into database table.
    I am getting some garbage characters inserted, if we try to insert the content of xml file into column of database table of type CLOB.
    PreparedStatement pstmt = conn.prepareStatement(insertQuery.toString());
                   pstmt.setString(1, fileContent.toString());
                   pstmt.executeUpdate();If i make dotabase column as BLOB type and insert the data then actual content is getting inserted.
    PreparedStatement pstmt = conn.prepareStatement(insertQuery.toString());
                   pstmt.setBytes(1, fileContent.toString().getBytes());
                   pstmt.executeUpdate();Could you anybody figure out the problem?
    Its very urgent.
    Thanks in advance
    Venkat.

    at last i got the root cause of the problem. It was in Database side.
    Thanks

  • Display Table contents using HTMLB...Urgent Help Plz...

    Hello All,
    Im working on EP SP14 and SQL Server 2000.
    I have successfully established database connection.
    I want to know <b>how can I display Table contents using TableViewModel in HTMLB</b>.
    Please help.
    Its urgent.
    Awaiting Reply.
    Thanks in advance,
    Uday<b></b>

    See /thread/80270 [original link is broken]
    (please stop crossposting every question into two forums; thanks in advance)

  • How to get value in function insert table test ?

    Hi
    I use function insert table test in order to get value in table for use in code page but i don't know how to get value in table.If somebody have any idea.Please give me some advice.
    Thank you,
    Waruja

    You will need to grab the contents with VBA
    Table test is user interface only.
    This thread may help
    http://qazone.empirix.com/thread.jspa?threadID=748&tstart=0

  • Inserting XML content into Database

    Hallo
    i´m new to Oracle.
    i want to insert xml content into the database. for testing i installed the version 10g on a windowsxp computer.
    i read the oracle xmldb developer´s guide. on page 3-4 ff. it is explained how i can insert content into the database. that´s how i did it (with isqlplus):
    create table example1(key_column varchar2(10) primary key, xml_column xmltype)
    -->works fine
    create table example2 of xmltype
    -->works fine
    now i made a directory under c:\myXmlFilesForDb in WinXp
    create directory xmldir as 'c:/myXmlFilesForDb in WinXp'
    (also tried: create directory xmldir as 'c:\myXmlFilesForDb in WinXp')
    --> in this directory is a file named: mydokument.xml
    --> works fine
    insert into example2 values(xmltype(bfilename('xmldir','mydokument.xml'), nls_charset_id('AL32UTF8')))
    the following error message is displayed (in German):
    ORA-22285: Verzeichnis oder Datei für FILEOPEN-Vorgang nicht vorhanden
    ORA-06512: in "SYS.DBMS_LOB",Zeile 523
    ORA-06512: in "SYS:XMLTYPE",Zeile 287
    ORA-06512: in Zeile 1
    whats wrong? can anybody help me please?
    ohhh....
    thank you very much
    cu
    George

    Directory entries are case sensitive.
    Select * From dba_directories to ensure you case is the same as you are using in your insert statement.
    Are you using the same user? if not grant read on directory directoryname to username;
    try to just select.
    select dbms_lob.getLength(BFileName('directoryname','filename.xml'))
    as length
    from dual;

  • How to archieve table contents?

    Hi All,
    I want to archieve (move) some DB table contents to another custom table. I got to know that some 'Relocation Program' has to be run to move this contents. The same can be revert back to original table after re-running the relocation program.
    Please let me know if you know that program name. Otherwise just let meknow if you have any other good approach in place.
    Thanks & Regards,
    Suman

    need small program
    select entries from standard table to internal table
    insert Ztable with internal table. if both tables are same strctures......

  • Program to upload and download table content

    Hi,
    I need to create a program which should upload and download table content from PC and to PC.
    How can i develop this program..Should i use BDC or any function module?
    Ezhil.

    The 2 program requested.....
    Program to Download
    REPORT ztable_download.
    PARAMETERS: table LIKE dd02d-tabname,
                                file(50) LOWER CASE.
    DATA: code(72) OCCURS 10,
                w_code(72),
                prog(8),
                msg(120),
                lin(3),
                wrd(10),
                off(3).
    DATA: BEGIN OF rectest,
          tprec(1) VALUE '0',
          nometab(16),
          utente(20),
          data(10),
          ora(8),
    END OF rectest.
    DATA: BEGIN OF recdett,
          tprec(1) VALUE '1',
          tab LIKE table,
    END OF recdett.
    DATA: BEGIN OF rectot,
        tprec(1) VALUE '2',
        tot(9),
    END OF rectot.
    OPEN DATASET file FOR OUTPUT IN TEXT MODE.
    rectest-nometab = table.
    rectest-utente = sy-uname.
    rectest-data = sy-datum.
    rectest-ora = sy-uzeit.
    TRANSFER rectest TO file.
    APPEND 'PROGRAM SUBPOOL.'  TO code.
    CONCATENATE 'TABLES ' table '.' INTO w_code SEPARATED BY space.
    APPEND w_code TO code.
    APPEND 'FORM DYN1 USING FILE.' TO code.
    CONCATENATE 'SELECT * FROM ' table '.'
    INTO w_code SEPARATED BY space.
    APPEND w_code TO code.
    CONCATENATE 'TRANSFER ' table ' TO FILE.'
    INTO w_code SEPARATED BY space.
    APPEND w_code TO code.
    APPEND 'ENDSELECT.' TO code.
    APPEND 'ENDFORM.' TO code.
    GENERATE SUBROUTINE POOL code NAME prog
    MESSAGE msg LINE lin WORD wrd OFFSET off.
    IF sy-subrc <> 0.
       WRITE: / 'Error during generation in line', lin,
                    / msg,
                    / 'Word:', wrd, 'at offset', off.
    ELSE.
       PERFORM dyn1 IN PROGRAM (prog) USING file.
       WRITE: / 'Esportati ',sy-dbcnt,' records.'.
    ENDIF.
    Program to upload
    REPORT Ztable_upload.
    PARAMETERS: FILE(50) lower case,
                               TEST AS CHECKBOX.
    DATA: CODE(72) OCCURS 10,
                W_CODE(72),
                PROG(8),
                MSG(120),
                LIN(3),
                WRD(10),
                OFF(3).
    DATA: BEGIN OF RECTEST,
          TPREC(1) VALUE '0',
          NOMETAB(16),
          UTENTE(20),
          DATA TYPE D,
          ORA TYPE T,
    END OF RECTEST.
    DATA: BEGIN OF RECTOT,
          TPREC(1) VALUE '2',
          TOT(9),
    END OF RECTOT.
    OPEN DATASET FILE FOR INPUT IN TEXT MODE.
    READ DATASET FILE INTO RECTEST.
    WRITE:/ 'Tabella..:',RECTEST-NOMETAB.
    WRITE:/ 'Utente...:',RECTEST-UTENTE.
    WRITE:/ 'Data.....:',RECTEST-DATA,RECTEST-ORA.
    IF TEST = 'X'.
        APPEND 'PROGRAM SUBPOOL.'  TO CODE.
       CONCATENATE 'TABLES ' RECTEST-NOMETAB '.'
       INTO W_CODE SEPARATED BY SPACE.
      APPEND W_CODE TO CODE.
      APPEND 'FORM DYN1 USING FILE.' TO CODE.
      APPEND 'DATA W_COUNT TYPE P.' TO CODE.
      CONCATENATE 'SELECT * FROM' RECTEST-NOMETAB '.'
      INTO W_CODE SEPARATED BY SPACE.
      APPEND W_CODE TO CODE.
      CONCATENATE 'DELETE' RECTEST-NOMETAB '.'
      INTO W_CODE SEPARATED BY SPACE.
      APPEND W_CODE TO CODE.
      APPEND 'ENDSELECT.' TO CODE.
      APPEND ' DO.' TO CODE.
      CONCATENATE 'READ DATASET FILE INTO' RECTEST-NOMETAB '.'
      INTO W_CODE SEPARATED BY SPACE.
      APPEND W_CODE TO CODE.
      APPEND ' IF SY-SUBRC NE 0.' TO CODE.
      APPEND ' EXIT.' TO CODE.
      APPEND ' ENDIF.' TO CODE.
      CONCATENATE ' INSERT ' RECTEST-NOMETAB '.'
      INTO W_CODE SEPARATED BY SPACE.
      APPEND W_CODE TO CODE.
      APPEND 'ADD 1 TO W_COUNT.' TO CODE.
      APPEND 'ENDDO.' TO CODE.
      APPEND ' write: / ''Importati'' ,W_COUNT, ''records''.' TO CODE.
      APPEND 'ENDFORM.' TO CODE.
      GENERATE SUBROUTINE POOL CODE NAME PROG
      MESSAGE MSG LINE LIN WORD WRD OFFSET OFF.
      IF SY-SUBRC <> 0.
         WRITE: / 'Error during generation in line', LIN,
         / MSG,
         / 'Word:', WRD, 'at offset', OFF.
      ELSE.
         PERFORM DYN1 IN PROGRAM (PROG) USING FILE.
      ENDIF.
    ENDIF.
    Edited by: robcom69 on Feb 23, 2010 2:35 PM

  • Update a table content in database MS access

    Hi
    In my application i am using Database toolkit to write a table in to MS access.
    i am able to write a table in to database but i am facing problem in editing a perticular cell in a table which is there in data base, how this can be achieved?
    When i use insert data vi, a row of data is being inserted. but in my application i need to keep updating the data in the same field.
    Ex: If i have writen a data in the 1st row i should keep updating the values of the 1st row basically i need to edit table contents.
    regards
    anil 

    Anil
    You can DB Tools Execute Query to run an UPDATE query. Take this example where I use the example labview.mdb database in ...\examples\database directory. This VI allows the user to UPDATE the PhoneNumber field for record with CustomerID=23311 which is the first record.
    Hope this helps
    David
    Message Edited by David Crawford on 10-07-2006 09:37 AM
    Attachments:
    Example to Update PhoneNumber Labview MDB (8.0).vi ‏16 KB
    Update Phone Number.jpg ‏17 KB

  • Insert Table is grayed out

    In my DW CS3 insert tables is grayed out also in the Common
    tab area it's grayed out?
    [email protected]

    Now - whatever you do, DO NOT GO BACK to layout mode. It's
    the source of a
    high percentage of all the posts here (in one way or
    another).
    In my opinion, there are three serious problems with Layout
    Mode -
    1. Perhaps most importantly, it sits between you and *real*
    HTML tables,
    and fools you into believing that concepts like "layout cell"
    and
    "autostretch" really mean something. They do not. As long as
    you use
    Layout Mode, you'll never learn one of the most important
    things for new web
    developers - how to build solid and reliable tables.
    2. Actually, #1 wouldn't be *so* bad, except that the code
    that is written
    by Layout Mode is really poor code. For example, a layout
    table contains
    MANY empty rows of cells. This can contribute to a table's
    instability.
    In addition, if your initial positioning of the table's cells
    is a bit
    complex,
    Layout Mode will throw in col- and rowspans aplenty as it
    merges and splits
    cells willy-nillly to achieve the pixel-perfect layout you
    have specified.
    Again,
    this is an extremely poor method for building stable tables,
    because it
    allows
    changes in one tiny cell's shape (i.e, dimensions) to ripple
    through the
    rest
    of the table, usually with unexpected and sometimes
    disastrous consequences.
    This is one of the primary reasons for the final result's
    fragility - read
    this -
    http://apptools.com/rants/spans.php
    3. The UI for Layout Mode is beyond confusing - many options
    that you might
    want to use are inaccessible, e.g., inserting another table,
    or layer onto
    the page.
    I can understand the new user's desire to use this tool to
    make their life
    easier,
    but the cost is just too heavy in my opinion.
    To make good tables, keep it simple. Put a table on the page,
    and begin to
    load your content. If you would want a different table
    layout, instead of
    merging or splitting cells, consider stacking tables or
    nesting simple
    tables instead, respectively.
    And above all, do not try to build the whole page with a
    single table!
    Luckily, Adobe understands the problems created for the
    unsuspecting user
    who falls into this trap, and has elected to remove this
    feature altogether
    from the next version of DW. The time is right for you to
    begin working
    with tables properly!
    To read more about this approach, visit the DW FAQ link in my
    sig, and run
    through the table tutorials.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "James Bechdel" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thank you, that fixed it.

  • How to Use and Filter Table contents after execution of Bapi

    Can anybody guide me how to Use and Filter the table Contents which i got after successful execution of a Bapi
    I used Component Controller in my Project
    Ex: My table contains Redundant data for a single column but i want to display the column contents with out Redundancy
    Name
    Raghu
    Raghu
    Raghu
    Debasish
    Debasish
    I want to filter the table contents and i want to display the table with out Redundancy
    and Even when i am using a Dropdown i selected a Column  from a Table as the values for that Dropdown  but that table is having redundant data and the same data is getting displayed in that Dropdown i want the Dropdown to display data with out redundancy
    Thanks

    I also got that problem recently and after debuging for a while I figured out, that it was resulting from an error in my table's model: When the model received new items to display I
    1.) Fired an delete event for the old items
    2.) Fired an insert event for the new items
    Problem was that when firing the delete event I didn't already assigned the new items to the model. Therefore it had still the old row count.
    Maybe you have also a faulty table model?...

  • Delete all the database table content

    Hello Friends,
    I have a z table with 5 fields (all the key fields) and I want to delete all the table content and load fresh content from internal table.
    I tried using syntax 'delete ztable' but sy-subrc value is coming as 4, means no table content is getting deleted.
    Please suggest me any alternative way to delete all the database table content.
    Thanks in advance,
    Shreekant

    Hi,
    try using
    delete from ztable.
    This will delete all records from your ztable. After this command u can fill your ztable from itab by the following command
    select *
    from std table
    into corresponding fields of itab.
    insert ztable from table itab.
    Hopefully this will solve your problem.
    Regards,
    Ibrar

  • Inserting HTML content into an animated DIV

    Can you, and if so how, insert HTLM content into an EGDE animated Div box? Specificaly an HTML table?  I can get the html code in the box but it won't read/render it as html code. In flash you can tell the program that the contents of the box is html code and it will read it as such but I don't see any way to do that here. I've tried several ways and I can get the code to display in the box but it won't render the code instruction in the boxCan it be done ??
    Thanks
    joel

    Hi,
    1) Your json file is not valid.
    You can copy and paste your datas here: http://jsonlint.com/
    Red commas must be deleted.
          "player": [
                "image": "images/player1.jpg",  //this is the URL I want to retrive
               "name": "player1",
                "image": "images/player2.jpg",
                "name": "player2", 
                "image": "images/player3.jpg",
                "name": "player3", 
                "image": "images/player4.jpg",
                "name": "player4",
    2)An example from http://docs.jquery.com/Ajax/jQuery.getJSON:
    3) compositionReady Tests.
    On compositionReady, i write:
    var profiles = {
                   "player": [
                        "image": "images/player1.jpg",
                        "name": "player1",
                         "image": "images/player2.jpg",
                         "name": "player2", 
                         "image": "images/player3.jpg",
                         "name": "player3", 
                         "image": "images/player4.jpg",
                         "name": "player4",
    console.log(profiles.player[1].image); // this line returns: "images/player2.jpg"
    Note: i deleted the first "[" and the last "]".

  • CS6 Inserting table breaks editable region

    In DW CS6 I am building out a site based on one template with three editable regions. I generally work in split view building PHP-MySQL sites such as the current one, and I have been building template-driven sites in Dreamweaver since 1998; but this problem has me stumped. Everything works fine until I insert a table into one of the editable regions. That region immediately becomes non-editable in design view (but I can edit in code view). It doesn't matter how I insert the table -- whether I paste code from another page where the table is being delivered, whether I use the DW Insert Table function, or hand-code from scratch. The result is the same -- I can no longer place a cursor in that editable region, in any design window.
    I seem to remember from CS5 a similar situation with a workaround that included triple clicking somewhere, but I have not been able to find that in this forum or in my notes. Any suggestions?

    The issue exists both at home and at the office. There may be minor differences.  I am now at the office .
    Mac OSX ver. 10.9.4
    DW v. 12.0 Build 5861
    xxxxxxxxxxxxxx
    TEMPLATE CODE
    xxxxxxxxxxxxxxx
    <!doctype html>
    <html>
    <head>
    <meta id="p7PM3" name="viewport" content="width=device-width">
    <meta charset="utf-8">
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Advanced Reporting</title>
    <!-- TemplateEndEditable -->
    <link href="../3D/p7affinity/p7affinity-5.css" rel="stylesheet" type="text/css" media="all">
    <link href="../3D/p7affinity/p7mobius-animate.css" rel="stylesheet" type="text/css" media="all">
    <script type="text/javascript" src="../3D/p7ehc/p7EHCscripts.js"></script>
    <link href='http://fonts.googleapis.com/css?family=Federo' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
    <link href="../3D/p7dmm/p7pm3/p7PM3-01.css" rel="stylesheet" type="text/css" media="all">
    <script type="text/javascript" src="../3D/p7dmm/p7pm3/p7PM3scripts.js"></script>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body>
    <div id="layout">
      <div id="logo">
        <?php include('../3D/includes/logo_content.php'); ?>
      </div>
      <div id="top-navigation">
        <?php include('../3D/includes/primarynav.php'); ?>
      </div>
    <div id="content"><!-- TemplateBeginEditable name="Action Call" -->
      <div class="column-content border-bottom colored-black"> Lorem ipsum dolor sit amet, ne sea vocent scripta abhorreant. </div>
    <!-- TemplateEndEditable -->
      <div class="affinity-row">
        <div class="affinity-column percent70 reverse-float">
          <div class="column-content border-left p7ehc-1"><!-- TemplateBeginEditable name="Main Section" -->
          <h1>Main section heading</h1>
          <p>Lorem ipsum dolor sit amet, </p>
          <h3>Coming up soon...</h3>
          <p>Lorem ipsum dolor sit amet, ne sea vocent </p>
          <!-- TemplateEndEditable --></div>
        </div>
        <div class="affinity-column percent30 reverse-float">
          <div class="column-content p7ehc-1"><!-- TemplateBeginEditable name="Sidebar" -->
          <p><img class="p7-animate zoom-out" src="../3D/art/mobius-art-04.jpg" width="520" height="713" alt=""></p>
          <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque congue tristique eros. Nulla facilisi. Quisque sem mauris, ullamcorper ac, gravida id, mattis id, sapien. Nullam adipiscing enim dapibus felis.</p>
          <!-- TemplateEndEditable --></div>
        </div>
      </div>
    </div>
        <?php include('../3D/includes/footertext.php'); ?>
    </div>
    </body>
    </html>
    Will send child separately

  • Transport of total table contents iso only the changes within that table

    Dear experts,
    Due to some errors i'm now stuck in a situation where in DTAP clients a custom built table is not consistant any more. e.g. In T(est) client some entries exist that are not present in D(evelopment) any more. Modifications of entries in the table will result in a transport only containing the modifications.
    I'm looking for a way that I can overwrite (delete and re insert) the whole table in the DTAP clients in stead of only the modifications.

    you should be able to create a transport and manually add the table entries.
    SE10 and create a transport, and workbench request.
    double click to get to the objects screen and go to change mode.
    entry program id : R3TR
    object : TABU
    Object name : your z table name
    you will see a key symbol appear on the line, click this,
    then double click the empty line to add the key field values of the entries you want to add to the transport.  You should be able to find wild card values to select all entries of the table.
    on the tool bar is a 'table contents' specified by the key entries which will let you test select the entries from the table.
    This transport can then be released and transported.

  • How to extract HTML table contents

    Does someone know how to extract HTML table contents? I want to download a html file which contains table from internet and extract the table contents. Finally, insert the table contents into database.

    To do this you have to user a Parser to parse your html file and retrieve the information you want.
    Please have a look at the following classes:
    HTMLEditorKit.ParserCallback
    ParserDelegator()
    Here is an example which retrives the FRAMSET src of an html file. The purpose here is to find if the html file describes a multi-frame page or not. If so it add the frame src name to a Vector
    HTMLEditorKit.ParserCallback callback =
    new HTMLEditorKit.ParserCallback() {                      public void handleSimpleTag(HTML.Tag t,      MutableAttributeSet a, int pos)
         if (t.equals(HTML.Tag.FRAME))
    {                                          Logger.debug(this, "Frame tag found in "+f.getURL());                      Enumeration e = a.getAttributeNames();
    while (e.hasMoreElements())
                             Object name = e.nextElement();
                             if (name.toString().equals("src"))
                                  Object ob = a.getAttribute(name);                     
                                  Logger.debug("found an src "+ob);
                                  currentFrameSrc.add(new String(ob.toString()));
                   Reader reader = new FileReader(aFile);
                        new ParserDelegator().parse(reader, callback, false);
    It's not clean but I hope it will help :-)
    Stephane

Maybe you are looking for

  • I am trying to update my software through the app store but for some reason an error occurs and will not allow me to do so

    I am trying to update my software through the app store but for some reason an error occurs and will not allow me to do so. And when i go online to log into my apple id account it states that there is an error. Can someone help me solve this issue, i

  • Authorization on 0008 Infotype

    Hello experts, I have scenario regarding the Authorization of infotype 0008 - Basic Pay. We have two users and client want that Level 2 user can not see the salary part(0008 IT) of Director level employee. Director's E subGrp is DR and Payscale group

  • ITunes now in Chinese - cannot switch to English

    Everything was working fine with iTunes and my iPhone, and then I went to a buddy of mines house who was checking out his myspace page or god knows what - When I came home and sync my iPHONE, iTunes comes up and it's in Chinese charactaer font. Becau

  • PXIe-4330 Remote Sense

    I'm trying to get the remote sense on the PXIe-4330 to work. I've have a bridge based sensor connected as the manual shows it. I cannot find a property node that enable the remote sense. Does the remote sense automatically work when hooked up or does

  • Reduce noise question

    I'm able to set my noise print, but after setting the noise print, the menu will never highlight the option to remove noise. Does this mean the noise print was set incorrectly/empty?