How to update a file in ODI

HI Experts,
I have one file daily coming form the source database in the form of .csv that is being converted into the loaded format for the Reporting Cube by an interface .
My Question is how to clear the content of the file which was previously   loaded with the converted data and load new converted  data into the file .
Thanks

It sounds like the converted file is appending data so it will contain the old data, are you saying the converted file contains all the old data, if so you need to follow the process through and understand why the old data is there and then clear it out, which could be manual?
Sorry I can't offer more because it is not easy to visualise what is happening.
Cheers
John

Similar Messages

  • How to update html file in clob column in oracle

    hi,
    please help me how to update html file in clob column in oracle
    Thanks

    This is your main query as i am able to understand and you want to update your html file into terms columns based on conditions :
    SELECT     b.terms As terms
             FROM chklst_item_x_enrlmnt_type a, prvdr_enrlmnt_agreement b
            WHERE a.enrlmnt_type_cid = 1
              AND a.chklst_item_cid = b.chklst_item_cid
              AND a.chklst_item_cid = 79
              AND a.oprtnl_flag = 'A'
              AND b.oprtnl_flag = 'A'
              AND TRUNC (SYSDATE) BETWEEN b.from_date AND b.TO_DATE;So i suggest below one but you need to create a directory where you can store your html file and then you can update .. And remaining consult Experts suggestions too as your
    question is improperly posted . . .
    DECLARE
       vclob     CLOB;
       v_bfile   BFILE := BFILENAME ('YOUR_DIR', 'filename.html');
    BEGIN
       SELECT     b.terms
             INTO vclob
             FROM chklst_item_x_enrlmnt_type a, prvdr_enrlmnt_agreement b
            WHERE a.enrlmnt_type_cid = 1
              AND a.chklst_item_cid = b.chklst_item_cid
              AND a.chklst_item_cid = 79
              AND a.oprtnl_flag = 'A'
              AND b.oprtnl_flag = 'A'
              AND TRUNC (SYSDATE) BETWEEN b.from_date AND b.TO_DATE
       FOR UPDATE;
       DBMS_LOB.fileopen (v_bfile);
       DBMS_LOB.loadfromfile (vclob, v_bfile, DBMS_LOB.getlength (v_bfile));
       DBMS_LOB.fileclose (v_bfile);
    END;
    / Regards..

  • HOw to update XML file residing in DAM by component JSP in run-time?

    i have made a component which reads xml file residing in DAM.
    Content Author can fill some values in dialog of this component, as soon as author provide the values,i have to update these values in XML file and component reloadsby reading the updated xml file.
    i am trying to achieve this by making object of XML file and giving it's path., but i ma unable to access the XML file.
    Can anyone help me out to how to update XML file by component JSP in run-time?

    Now the changed data must be exported back into the XML file, meaning that the content of certain elements must be updated. How can this be done with XSLT?
    XSLT approach:  check these online tutorial
    http://www.xml.com/pub/a/2000/08/02/xslt/index.html
    http://www.xml.com/pub/a/2000/06/07/transforming/index.html
    ABAP approach:
    for example you have the xml (original) in a string called say xml_out .
    data: l_xml  type ref to cl_xml_document ,
            node type ref to if_ixml_node  .
    create object l_xml.
    call method l_xml->parse_string
      exporting
        stream = xml_out.
    node = l_xml->find_node(
        name   = 'IDENTITY'
       ROOT   = ROOT
    l_xml->set_attribute(
        name    = 'Name'
        value   = 'Charles'
        node    = node
    (the above example reads the element IDENTITY and sets attribute name/value to the same)
    like wise you can add new elements starting from IDENTITY using various methods available in class CL_XML_DOCUMENT
    so how do I access the XML file in order to update it?
    you have already read this XML into a ABAP variable right?
    Sorry couldnt understand your whole process, why do you need to read local XML file?
    Raja

  • How to update XML file through UCCX script ?

    Hi,
    I have an UCCX script with MENU step. One of the step is for technical support team. When caller chose this step, information about date and time of the call and calling number should be recorded on a XML file located on the web server.
    This XML is uploaded into the web server , but I don't know how to update it through UCCX script.
    Here is how the XML file looks like:
    <?xml version="1.0" ?>
    <rss version="2.0">
    <channel>
    <title>CALL LOG</title>
    <link></link>
    <description>Support Call log</description>
    <ttl>1</ttl>
    <item>
    <title>2011-08-24 14:56:39 - 00044 123 123 123</title>
    <link></link>
    <description></description>
    </item
    </channel>
    </rss>
    Any idea?
    Thanks,
    O

    Hi
    The 'keyword transform' step uses the template XML file to generate the actual XML file you want to post... the template would be a plain text file uploaded to the repository, and would look like so:
    <?xml version="1.0" ?>
    CALL LOG
    Support Call log
    1
    %%calldatetime%% - %%clinumber%%
    Now - if you had that bit of XML, with correct time/number in it - have you verified know that you can definately just post that XML to a certain URL to get it on the server? Check with whoever manages that server exactly what you need to do to get it to appear - then worry about how you do that from UCCX. It may not be a matter of posting up that XML, you may need it in a different format or something..
    Aaron

  • How to update "Estimated File Size"

    As I fiddle around with my Export Settings (CS4), I don't see any update in the "Estimated File Size" info at the bottom left of the screen.
    It seems to me that as I move the Target Bitrate and Maximum bitrate (as well as the other options), I would see the Estimated File size increase or decrease so I can have real time feedback on my settings.
    Is there a setting I need to change or a command I need to make in order to see an updated "Estimated File Size"?
    Thanks
    ...Rowby

    Nevermind. I see that the sliders do indeed give me a reak time updated file size.  Don't know how I missed it.
    Rowby

  • How to Update Jar Files

    Can u tell me how to update an JAR file .
    I have a jar file ,I would like to add a class in that jar.
    I am able to add it but it goes
    into the root folder where as i want it go in one of the sub folder.
    Eg
    TEST.JAR
    The structure is
    Server\a.class
    Server\folder1\b.class
    Server\folder2\c.class
    Now when i add the class it goes to
    Server\a.class
    Server\folder1\b.class
    Server\folder2\c.class
    my.class
    where as i want it to go in
    Server\folder1\my.class

    Show the code you use to add it to the JAR, and we will attempt to fix it. Don't forget to put it around [code]  tags

  • JProgressBar,how to update in file transfer?

    Hi ..
    I have the following copy code that uses java nio package, how to update jProgressBar to indicate movement in file transfer?
    I needn't use progress monitor...
        public static void copyFile(File sourceFile, File destFile) throws IOException {
    if(!destFile.exists()) {
      destFile.createNewFile();
    FileChannel source = null;
    FileChannel destination = null;
    try {
      source = new FileInputStream(sourceFile).getChannel();
      destination = new FileOutputStream(destFile).getChannel();
      destination.transferFrom(source, 0, source.size());
    //JOptionPane.showMessageDialog(null, destination.position());
    finally {
      if(source != null) {
       source.close();
      if(destination != null) {
       destination.close();
        }Thanks..
    Feras

    Inorder to update your progress bar, you have to have it in a different thread and update it--you also have to do the copy in segmented fashion... if you have one stream running continuously, then you cannot update anything.

  • How to update the file in simple java archive file on Netweaver2004s

    We have a J2EE application containing few properties file packed inside a java archive. These properties are Configuration properties which we are required to change few times after deployment.We are using SAP Visual Administrator to deploy\undeploy our application.We found out that Visual Administrator dose not support update of files packed in a simple Java Archive in Single File Update Option. It only allows updates of EJB Modules archive.
    Please let us know if there is any other way we can update a file inside a simple java archive.

    Well, Thanks for the help but,. i didn't understand
    try not opening the file every time. As I only know that I need to open a file if i would like to update the records..
    The update is not happening :
    Firstly it shows like this (new.txt):
    STOPSecondly it must show like this (new.txt) BUT NOT HAPPENING AS I EXPECTED:
    STOPSTOPBut it's not hapenning

  • How to execute .sql file using ODI

    Hi All,
    I need to execute .sql file using ODI.
    I tried @{path}{file} command in ODI procedure selecting oracle technology.but it is failing.
    Do any one have any other idea to execute .sql file.
    Thanks in advance

    Ohk...I think you can try creating batch file(.bat) if its Windows & call that from ODIOSCommand.
    The bat file should contain scripts which call .sql file using sqlplus  & there you can use @{path}{file} format.
    See if this helps.
    Regards,
    Santy

  • How to update XML file from the program

    i am new in abap , and i have the following issue,so plz anyone who knows how to do it
    Background :
    An XML file is used as the datasource for a Flex Application. From time to time this requires updating with new staff details.
    i have already saved the xml file in the c drive with the name C:\AdvAC\AC1\bin-debug\assets\staff
    Requirement :  Write a Dialog transaction with the following text input fields.
    Reference Indicator.     (Char10)
    Staff No          (NUMC, Length 5)
    Name               (Char50)
    Room               (Numc, length 3)
    Phone               (Numc Length 7)
    Mail               (char30)
    in screen 100
    The transaction should also have an u201CUpdate Fileu201D button, which when pressed :
    1) Loads the file C:\AdvAC\AC1\bin-debug\assets \ into an ITAB.
    2) Inserts the data into the ITAB using the following XML format.
    <staff>
    <ref_ind> Reference Indicator.</ref_ind>
    <staff_no> Staff No </staff_no>
    <name> Name </name>
    <room> Room </room>
    <phone> Phone </phone>
    <mail> Mail </mail>
    </staff>
    all should be inside  <allstaff> </allstaff> tagsu2026.
    Writes the ITAB back to the file.
    thanx all

    this is what i have done but i dont know how to do the rest. i will apprecite any help from u.
    Edited by: man700s on Feb 16, 2010 6:58 AM
    REPORT  Z_XML_FILE_UPDATE.
    TYPES: BEGIN OF ts_staff,
             REF_IND(10)  TYPE c,
             Staff_No(5)  TYPE c,
             Name(50)     TYPE c,
             Room(3)      Type n,
             Phone(7)     Type n,
             Mail(30)     Type c,
           END OF ts_staff.
    DATA: t_staff TYPE TABLE OF ts_staff WITH HEADER LINE.
    DATA: w_staff Type ts_staff.
    DATA T_STRING TYPE TABLE OF STRING.
    DATA W_STRING TYPE STRING.
    call SCREEN 100.
    PERFORM upload_xml_file.
    PERFORM update_xml_tab.
    *PERFORM download_xml_file.
    MODULE USER_COMMAND_0100 INPUT.
    W_STRING = '<allstaff>'.
      APPEND w_string to t_string.
      loop at t_staff into w_staff.
      w_string ='<staff>'.
      APPEND w_string to t_string.
      if T_staff-Ref_Ind = 'X'.
      CONCATENATE '<Ref_Ind>' w_staff-Ref_Ind '</Ref_Ind>' into w_string.
      APPEND w_string to t_string.
      ENDIF.
      if T_staff-staff_no = 'X'.
      CONCATENATE '<staff_no>' w_staff-staff_no '</staff_no>' into w_string.
      APPEND w_string to t_string.
      ENDIF.
      if T_staff-name = 'X'.
      CONCATENATE '<name>' w_staff-name '</name>' into w_string.
      APPEND w_string to t_string.
      ENDIF.
    if T_staff-room = 'X'.
      CONCATENATE '<room>' w_staff-room '</room>' into w_string.
      APPEND w_string to t_string.
      ENDIF.
      if T_staff-phone = 'X'.
      CONCATENATE '<phone>' w_staff-phone '</phone>' into w_string.
      APPEND w_string to t_string.
      ENDIF.
      if T_staff-mail = 'X'.
      CONCATENATE '<mail>' w_staff-mail '</mail>' into w_string.
      APPEND w_string to t_string.
      ENDIF.
      w_string = '</staff>'.
      append w_string to t_string.
    ENDLOOP.
      W_STRING = '</allstaff>'.
      APPEND w_string to t_string.
    ENDMODULE.               
    Edited by: man700s on Feb 16, 2010 7:01 AM

  • How to update image files in web pages generated by servlet without redeploying

    HI,
    I have a servlet which generates html pages with images. Those images changes
    as they are graph generated regularly. They are placed in s directory where the
    application is deployed. It is necessary because I have made some security constraints
    for the location of those files. However it seems that when I deploy my application
    on WLS all files contained in the application directory are cached, and when for
    ex. I delete some of them they are still appear in generated html pages. only
    Redeployment of application updates the state of those files.
    Is there a way to make the application to be aware of any changes in images files
    and to load updated ones??
    i would be interested in a situatioin like with default WLS servelt (DefaultWeb
    Application) where any new files are seen as soon as they are placed in Default
    WebApplication directory.
    Is there a way to periodically redeploy application from CLI?
    thx in advance
    Michal

    889096 wrote:
    Hello!
    In SQL Developer when we run htp package then we see the generated code in OWA Output, But how to invoke or show the webpage by Oracle tools/plsql program.
    and
    Without copying the code and save it to textfile.html and open it with browser.
    I heard it is possible by configuring Apache server.
    Please give me brief details, as i am beginner with ORACLE 10g
    And
    If you are using the htp package, you are presumably developing for an application server? Can the people who set that up not help you with your development environment?
    Setup is too complicated to cover here. Check out the Oracle HTTP Server documentation on oracle's documentation pages.
    Briefly, you need to install Oracle HTTP Server and then configure a data access desciptor to connect to your database.
    How to see the generated code in "QUEST TOAD"? I am not able to see OWA output in TOADYou will have to ask this question in a Toad forum.

  • How to update XML file using XSLT

    Hi there,
    I have a "small" issue with exporting data to an XML file using XSLT.
    A two steps process is needed to import data from a non-hierarchical XML file into ABAP, change the data, and then update the XML file with new values. The problem is not trivial, since the format of the XML file is a complex one: there are many interdependent elements on the same level, pointing to each other by using id and ref attributes. Based on these values the data can be read and written into an internal table. I use XSLT and XPath for that. So the inbound process is done and seems to work correctly. I have to mention that the file contains much more data than I need. I am working only with a small part of it.
    Now the changed data must be exported back into the XML file, meaning that the content of certain elements must be updated. How can this be done with XSLT? I can pass only the internal table to the transformation, so how do I access the XML file in order to update it? I have tried to use the <B>xsl:document()</B> function to access the content of the file store locally on my PC, but it fails each time by throwing and URI exception. I have tried the absolute path without any addition and the path with the file:/// addition. Same result. Please advise.
    Many thanks,
    Ferenc
    P.S. Please provide me with links only if they are relevant for this very matter. I will not give points for irrelevant postings...

    Now the changed data must be exported back into the XML file, meaning that the content of certain elements must be updated. How can this be done with XSLT?
    XSLT approach:  check these online tutorial
    http://www.xml.com/pub/a/2000/08/02/xslt/index.html
    http://www.xml.com/pub/a/2000/06/07/transforming/index.html
    ABAP approach:
    for example you have the xml (original) in a string called say xml_out .
    data: l_xml  type ref to cl_xml_document ,
            node type ref to if_ixml_node  .
    create object l_xml.
    call method l_xml->parse_string
      exporting
        stream = xml_out.
    node = l_xml->find_node(
        name   = 'IDENTITY'
       ROOT   = ROOT
    l_xml->set_attribute(
        name    = 'Name'
        value   = 'Charles'
        node    = node
    (the above example reads the element IDENTITY and sets attribute name/value to the same)
    like wise you can add new elements starting from IDENTITY using various methods available in class CL_XML_DOCUMENT
    so how do I access the XML file in order to update it?
    you have already read this XML into a ABAP variable right?
    Sorry couldnt understand your whole process, why do you need to read local XML file?
    Raja

  • How to update photoshop files in DW8

    I had purchased a template from dreamtemplates.com #0064 to
    save me some time and get my site up sooner. I do not have a url
    yet to show you all. The template came with the images prepared in
    photoshop included in a psd file along with the images and html
    files. I was told to just doubleclick the psd file in dreamweaver
    and when photoshop opened edit the layers with the new text I
    wanted and then save to web. I have a good looking set of images
    now with the text I wanted in the pictures but save to web left me
    with 0064.html a file I can look at but not edit in dreamweaver. I
    thought when you saved to web it would update all of the image and
    html files so I could finish developing the site.
    If you can figure out how to get this to work please clue me
    in. It looks like the template shortcut with photoshop pictures is
    perhaps the long way around however it has made me look at
    everything and it got me here.

    >>I have a good looking set of images now with the
    >> text I wanted in the pictures but save to web left
    me with 0064.html a
    file I
    > >can look at but not edit in dreamweaver.
    Can you upload that file (0064.html) to your web host and
    then give us a
    link so we can review the page and its underlying code? Then,
    we might be
    able to help you.
    >>I was told to just doubleclick the psd
    >> file in dreamweaver and when photoshop opened edit
    the layers with the
    new text
    > >I wanted and then save to web
    That's a red flag. Building a page in an image editor (e.g.
    Photoshop) and
    then "saving to web" is a terrible way to build web sites.
    You should only
    use Photoshop and the like to build the images. Page layout,
    text, etc.
    should be assembled in DW.
    BTW there is no website
    http://www.dreamtemplates.com/.
    What is the correct
    name and URL for the company you bought the template from?
    Walt
    "phoenixmentor" <[email protected]> wrote in
    message
    news:e5qt97$h96$[email protected]..
    > I had purchased a template from dreamtemplates.com #0064
    to save me some
    time
    > and get my site up sooner. I do not have a url yet to
    show you all. The
    > template came with the images prepared in photoshop
    included in a psd file
    > along with the images and html files. I was told to just
    doubleclick the
    psd
    > file in dreamweaver and when photoshop opened edit the
    layers with the new
    text
    > I wanted and then save to web. I have a good looking set
    of images now
    with the
    > text I wanted in the pictures but save to web left me
    with 0064.html a
    file I
    > can look at but not edit in dreamweaver. I thought when
    you saved to web
    it
    > would update all of the image and html files so I could
    finish developing
    the
    > site.
    > If you can figure out how to get this to work please
    clue me in. It looks
    like
    > the template shortcut with photoshop pictures is perhaps
    the long way
    around
    > however it has made me look at everything and it got me
    here.
    >

  • How to update Illustrator files?

    I've been told I can 'update' linked image files...
    Illustrator files I have imported into the library. But the
    'update' menu option keeps coming up as gray. anyone know why?
    thanks... or any other tips of how to edit my images in illustrator
    and somehow have them be updated in in Flash? without manually
    re-importing them, etc?

    Show the code you use to add it to the JAR, and we will attempt to fix it. Don't forget to put it around [code]  tags

  • How to update project files in Archive ?

    Hi there,
    When we start up our 10.0.6, it will ask us whether we want to update the project files.
    For effieciency purposes, I moved a lot of my project files to an acrhived folder so that FCPX doesn't search for it when loading.
    Thus, I believe, the projects files in the archive folder will not be updated. So, how will these be updated ?
    Thanks

    andynick wrote:
    I move all my updated Events and Projects to a new (temporary) folder, then move the archived Events and Projects (a few at a time) to their relevant folders where FCP X will detect them on launch, and update them.
    Andy
    OIC, so when the FCPX is launched, it will come out with a message asking you to update whenever you move an old Project files and/or Event files to the "correct" folder ?
    Thanks

Maybe you are looking for

  • PowerMac G5 and OS 10.4.8 - Sleep problems

    Hello, After I upgraded to version 10.4.8 from 10.4.7, my G5 dualcore won't wake up from sleep. If I try to wake the machine, it's drives spin up but the screen stays black, and the keyboard is dead. After a little while, the fans are going crazy. I

  • Do I need to refresh Info Providers when I chg the Mast Data attri to Nav

    Hai Gurus,    Can any tell me, When I change an attribute of master data, material to a navigation. Do I need to refresh data to info provider, cube?. If this cube is part of the multi provider. In What sequence I need to make the changes?. I assume.

  • Inconsistent view - Item Supply/Demand form

    We are seeing an unexplained difference between the On Hand and Available values on the Item Supply/Demand form. Opened TAR with Oracle Support, they said the difference is the move orders that we have allocated. The form does not show the move order

  • Marquee tool and shape tool not working properly

    I have Photoshop CS five, and today while working in it, the behavior of all of my tools changed. Tools are now defaulting to "select from center" mode, which normally requires holding down the option key. As another clue, if I create a marquee selec

  • MobileMe doesn't "turn on"

    I am unable to sync MobileMe on my Powerbook G4. I have installed 10.5.5 with all updates. I have MobileMe running on my iMac and iPod - they sync just fine. I open MobileMe in Sys Prefs, it shows that I am signed into MobileMe, shows correct account