Dataset changes

I finally have gotten around to asking a question prior to picking and poking and generally messing up my applications.
So what I would like to know is how to change the locations of an Access database then changing the properties of the dataset to reflect the change in location (without ruining the dataset in the process). 
Basically, I am using a database in a specific location with the dataset connected to that location of database.  However, I am just using this database for design work and want to be able to use a clean database at a different location for the published
application.  So how can I do this without wreaking havoc upon myself?  Also, what other changes to the application would be required?
gwboolean

Hello,
If the connection string for the database is in app.config which is placed there when creating your datasets via the IDE data wizard you can change the path and name of the database using
AppDomain.SetData("DataDirectory","C:\Somepath\somedatabase.accdb")
See reference
https://msdn.microsoft.com/en-us/library/37z40s1c(v=vs.110).aspx
Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem. Contact via my webpage under my profile
but do not reply to forum questions.

Similar Messages

  • Spry dataset: change URL and reload

    OK, gang. One here's another lump of code chum:
    I'm trying to be a bit more secure with my app, so I have a
    dataset that begins with some dummy data:
    var G_dsApprovedAssets = new
    Spry.Data.XMLDataSet("/_testData/dummyAssetOverview.xml",
    "root/assetList",{useCache:false});]
    Which stays as dummy data until a user logs in properly. At
    that point, I have data returned that changes the URL of the
    dataset and then reloads and refreshes:
    HTTPRequest data returned from login processor:
    $updateDs =
    "G_dsApprovedAssets.setURL('/data_engine.php?dt=assets&st=pending');";
    and in the main:
    eval($updateDs);
    G_dsApprovedAssets.loadData();
    Spry.Data.updateRegion('statusData');
    Is there a reason this isn't working? I've tried all sorts of
    things and it seems the data in the dataset isn't being refreshed
    with loadData() but the URL
    IS being set correctly.
    Any thoughts or ideas will be appreciated.
    Thanks!
    Scott.

    OK, gang. One here's another lump of code chum:
    I'm trying to be a bit more secure with my app, so I have a
    dataset that begins with some dummy data:
    var G_dsApprovedAssets = new
    Spry.Data.XMLDataSet("/_testData/dummyAssetOverview.xml",
    "root/assetList",{useCache:false});]
    Which stays as dummy data until a user logs in properly. At
    that point, I have data returned that changes the URL of the
    dataset and then reloads and refreshes:
    HTTPRequest data returned from login processor:
    $updateDs =
    "G_dsApprovedAssets.setURL('/data_engine.php?dt=assets&st=pending');";
    and in the main:
    eval($updateDs);
    G_dsApprovedAssets.loadData();
    Spry.Data.updateRegion('statusData');
    Is there a reason this isn't working? I've tried all sorts of
    things and it seems the data in the dataset isn't being refreshed
    with loadData() but the URL
    IS being set correctly.
    Any thoughts or ideas will be appreciated.
    Thanks!
    Scott.

  • Add/Remove data object from dataset

    Hello,
    I was working out a way to add and remove data from a dataset
    on the fly and could not figure out any built in methods to do
    this.
    As I have decided to include spry in my project I like to try
    and utilise as much as of its code as possible since it is
    complicated to explain I have created a simple example – a
    colour picker! (thought it might be more interesting…) of
    what I am trying to achieve at
    http://www.freshfresh.co.uk/spry/
    - if you have a go on this and maybe look at the source code (all
    the JS is embedded in HTML there are no modifications to other the
    other core files). I have only used spry effects etc, including the
    ‘accordion’ – which I have become quite attached
    to, it is really good for condensing pages down.
    You will see I am using the setDataFromDoc method to create
    the dataset – I tried the .data = myArrayOfData; .dataHash =
    hashTable; method i.e. creating from an object rather than array
    but it did’nt seem to play ball with the
    addDataChangedObserver method – it did’nt update itself
    each time it was modified (I am sorry I cannot remember exactly
    what I did – but I tried all kinds of ways…). I stuck
    with the string method because it worked - each time my new dataset
    changed it updated itself on the screen (you will have to have a
    look to understand.....sorry!!), but I would be interested to know
    how such a thing could be implemented using the object route if you
    believe this would be more efficient.
    My second question is more simple – is there a shorter
    way to add and remove a data object from a dataset? – as you
    can see from the source code I have effectively created an
    ‘interface’ to do these tasks…. I could’nt
    work out whether these methods are already built in. Maybe they
    are?
    Third question is… to extract a data object from a
    dataset I use the .dataHash[the_row_id] method – is this the
    right thing to do or could it lead to complications… that is
    using methods that might supposedly be private?
    Fourth question (observation really) – whilst creating
    that colour picker example I went over board with my datasets and
    loaded in several palettes some of which had over 1000 elements or
    data objects. Which inevitably was very slow (on my computer
    anyway) – but it got me thinking about trimming the contents
    of my spry regions for better performance. I am I right in thinking
    that the less HTML etc that there is in a spry region the quicker
    SPRY will process it. For example say you had spry repeat with an
    image tag in with some onclick, onmousover, onmouseout, style
    attributes etc and compare this to a spry repeat with a simple
    image with minimal attributes set. I suppose what I am trying to
    say is – does spry ‘store’ all the contents of
    each spry region somewhere? Or does it just process it and leave it
    to the browser dom?
    Fifth observation.... I find it really difficult to explain
    computer technicalities in writing. It must be tough reading these
    posts.... I know I find it difficult sometimes when dealing with
    written end user feedback!
    Andrew

    Just clarifying my questions a bit further....
    I found some old code regarding question 1 by using the
    object method I mean something like this...
    var mySwatches = [{'@hex':'ff0000'},{'@hex':'00ff00'}];
    var hashTable = [];
    function createDs(){
    for (var i = 0; i < mySwatches.length; i++)
    mySwatches
    .ds_RowID = i;
    hashTable = mySwatches
    dsMySwatches.data = mySwatches;
    dsMySwatches.dataHash = hashTable;
    dsMySwatches.loadData();
    i.e. not writing out a whole XML string string as the online
    example does. When using this way I did'nt seem to be able to get
    the HTML to refresh. I tried using [
    Spry.Data.updateRegion('mydata'); ] after recreating the dataset I
    also tried adding an [ .addDataChangedObserver ] (like in the
    string example) amongst numerous other ways but it just would not
    work like the string way. - Maybe I did something wrong somewhere.
    In question 3 I refer to the [ .hash ] method .... its not a
    'method' its a 'property' - my question should read - is it ok to
    access private properties (from a browser campatiblity/security
    point of view) that do not have specific methods to gain access to
    them. I suppose it does'nt really matter with JS...
    In question 4 I mention minimising the amount of code in a
    spry region to speed it up. A clearer example of this might be for
    example - a gallery with lots of images. As we know there will be a
    slight delay as SPRY writes all the html so to speed up that intial
    write I strip out all the image attributes such as onlclick do
    this, onmouse over do that... and add these after the images have
    loaded using a seperate function similar to my
    fillSwatches(ds,prefix) function in my online colorpicker example.
    I suppose it like a 2 tier processing of all the data. SPRY does
    the intial display writing to get everything in place and then
    another pass is made over to add any further functionality
    adjustments etc. I am still not sure if that makes any sense!
    ***edit
    Also on the subject of speed and the application as a whole
    i.e. including my PHP - In one example I was creating I ended up
    with an XML structure where each node has over 14 attributes i.e.
    <somenode att1=”x” ……..
    att14=”z”/> - as the file grew it obviously took
    longer to process particularly on the server side, i.e. added all
    those attributes just slowed it all down. So I did
    this…… <somenode att1=”x:y:z” /> i.e
    condensed selected attributes into a string that I could explode
    later on.
    Obviously this limits SPRYS ability to access the attributes
    using the {attr} syntax. I had to create a function to explode the
    array and do the ‘necessary’ on a second pass over the
    data – this works ok for me. But its interesting that in this
    particular case the server could not refresh the XML in an
    acceptable time without doing this – just thought that might
    be interesting to you. I suppose technically what I am doing is
    abusing the concept of an XML structure and simply using it as a
    ‘carrier’ to feed my application …. Which I
    suppose is where JSON comes in…. which is a bit more compact
    and maybe faster to manipulate on both the server and client side
    – I don’t really know, I have never used it –
    just throwing ideas around!!
    Andrew

  • Material Master Changes

    Hi All
    Is there a transaction where I can view all changes made to the material master {other than MM04 which shows material by material}
    I want to be able to view all materials per plant or material type
    Thank you
    Rukshana

    Rukshana,
    I am not aware of such a transaction.
    MM changes are held in the old standby tables CDHDR and CDPOS, which hold changes for many SAP datasets, in addition to the MM dataset changes you are interested in.  In most systems, CDPOS is extremely large, and unless you explicitly declare most or all of the keys when you are searching, the tables take forever to give up their information.  Relevant keys are MANDANT, OBJECTCLAS, OBJECTID, CHANGENR.for CDHDR, and MANDANT, OBJECTCLAS, OBJECTID, CHANGENR, TABNAME, TABKEY, FNAME, CHNGIND for CDPOS.
    If you elect to directly look at these tables, link on OBJECTCLAS, OBJECTID, and CHANGENR.  The records you are looking for will have Object class key field populated with 'MATERIAL'.  If you can limit the scope of your search by change number, it will run quicker.
    Good luck & Best regards,
    DB49

  • Customer Data Tab missing fileds.

    Hi Experts,
    We have upgrade from CRM 4 to CRM 5. ( I am totally new to CRM)
    When I entered tcode BP and choose Consumer , we have a Customer Data tab, in that tab some fields are missing. Do not phone , Do not Call fields. its there in CRM 4, but not in this version.
    Can someone please help me .. how to solve this problem.
    Thanks in Advance.
    Raghu

    Hi
    Check the Data sets of the role you are looking for BP and compare the CRM4.0 and 5.0 systems do compare the dataset changes and also check the field groupings  for BP role in CRM 5.0 system if any field radio button is turned to hide mode change it to optional radio button then save field grouping
    then you will see the fields
    reward points if helpful
    Regards
    Dinaker vikas K

  • FaceTime with a large amount of connections

    Just found out when u FaceTime with someone
    Then the browsing speed on other devices go extramly slow, and I checked the conection in my router setting, my 4s just hold 130+ conections when FaceTime is on and 30+ when it's off. Which makes the bandwidth of other devices went bad.
    Any one hv a issue with this? Any suggestion?

    Hello,
    1.want report just fetch the right amount of rows to display the current page
    In SSRS 2008 R2 and later version, Reports are processed and rendered page by page as a report user interactively reads through a report. The amount of data on each page influences the rendering time for each page.
    That means, when you preview the report, all data will be retrieved from the Oracle database, but it will just process and render the data in first page of the report, and then process and render next page when you choose to preview next page.
    In order to meet your requirement, you can place a page break at the end of a specified number of rows.For example, add a group in the report and group with following expression.When a page break is defined for the group, this expression results in a page break
    every 20 rows.
    =Ceiling(RowNumber(Nothing)/20)
    2.
    is it possible that the report service is changing my query to use the rownum column to reduce the amount of fetched data?
    No.Reporting Services cannot modify the dataset query. But you can filter report data before or after it is retrieved for a report dataset: change the query for each dataset to filter data before it is retrieved;To filter data after it is retrieved,
    create filter expressions in the report.
    Reference:http://technet.microsoft.com/en-us/library/dd239395.aspx
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • EEWB error

    Hi all,
    I am trying to create a new date field in Opportunity and got this error "no transport request exists for system workbench".
    Under created extension, I see error under tasks (CRM_BTX_ADD_NEWFIELD).
    I am not able to delete the extension:error:"extension could not be deleted"
    can someone guide me how to rectify the error or delete the extension?
    Regards
    PR

    Hi PR,
    Just that this thread is helpful to others as well,
    1. The problem arises because of the customizing in the table T000.
    Please check your customizing from:
    IMG: SAP Web Application Server-> Application Server > System Administration > Change & Transport
         system > Configure clients
    a. Select the desired client,
    b. Goto the details
    c. In the dataset 'Changes and Transport for Client-Specific Objects', set the option to 'Automatic recording of changes'
    d. Save the settings for the client.
    Now try to regenerate the eewb extension.
    2. Check your customizing in trx EEWC
    3.Problem deleting generated extensions: Kindly refer to the note 1068113 and delete the corresponding entries from OXT_GENOBJDEF and GOX_TR_OBJECTS tables.
    If you have resolved the issue using other means other than the ones mentioned above, please add the information in this thread.
    Best Regards, Adil

  • BOM explosion in CM25

    Hi,
    We have some issue regarding BOM not reexplodes when dispatch in CM25.
    Though we have a solution that to do an enhancement to CM25 where will change the BaPI MD_PLDORD_CHANGE, where we will copy the dispatch date to the explosion date, then after saving the change will reflect.
    My question is after we do the change, the change is already reflected in the explosion date, but the components for the planned order are not reexploded based in the explosion date. Is there any setting in the BaPi how it will be done? As far as doing it manually, we can reexplode the bom in MD12 by the Explode BOM button.
    Regards,
    JF

    Hi John
    The documentation of this BAdI on SE18 provides the following information:
    Note that in using this method, all fields of the structure CH_PLAF are offered for change, but that not all of the fields of this structure can be sensibly changed for further processing. Generally, there is no guarantee that the changes made with this BAdI will be supported in the further processes. No liability is taken for any mistakes which occur in subsequent processing after changes made using this method.
    Avoid the following changes to planned orders within this method, since they could lead to inconsistent datasets:
    Changes to explosion-relevant data (quantities, dates, production versions, and so on), since no new BOM explosion occurs after the method has run
    Therefore, this BAdI was not developed for such use and, even if you change the explosion date, there will be no BOM explosion.
    BR
    Caetano

  • Description of how XML upload staging works

    Is there anywhere that I can get an overview of how the xml upload staging process works and all of the pieces that need to be configured? If anyone can help with this, I would greatly appreicate it.

    At runtime the BIP Engine pulls all corresponding records and renders on to template and generate report.
    regarding other questions:
    1.The report shows complete data.
    2.Yes, the report shows with added data as well. It completely depends on the SQL in data set.
    3.Change the datasource(provided datasource is already configured) at datamodel level regenerate the xml. If different datasources are to be defined for different datasets, change the datasource at data set defination level save the datamodel, generate the xml data and save.
    Hope it answers the questions.

  • File Adapter - FTP from PI to Mainframe - change dataset name

    Hi,
    I am attempting to ftp a file to our mainframe server using a file adapter with FTP transport protocol.  I am able to successfully ftp the file there; however, it does not go into the requested dataset.  Let me explain:
    FTP account name:  ABCD.  When connecting via ftp the default starting point is the account name (ABCD).  When PI puts the file to the mainframe the dataset name is copied as ABCD.LEVEL1.FILENAME.
    However, we need to change levels to the top (above ABCD) and make the dataset name as LEVEL1.FILENAME.
    I've searched for hours on SDN and haven't found a good explanation on how to do this and if it is even possible.  Can someone provide some assistance?
    Thanks,
    Clinton

    As a follow-up, our team was able to resolve the issue.  In MVS dataset naming conventions (at least from a Unix client), you must enclose the absolute file pathname in single quotes, otherwise it will be interpreted as a relative file pathname; thatu2019s why files were written to 'ABCD.LEVEL1.FILENAME' under the home directory of the mainframe user id (ABCD).  Also the directory/file name components cannot be more than 8 characters.
    In our example, the target directory is 'LEVEL1' enclosed in single quotes and the filename is FILENAME without quotes.

  • XML dataset doesn't change in detail area

    Thanks in advance for any help you might be able to lend...
    My accordion layout has five panels all of which are using
    different XML datasets. I have been wracking my brain to figure out
    how to have multiple master data regions filter into one detail
    region - I have one setup correctly, but when I change the focus on
    the accordion menu, the other XML data is not displayed in the
    detail region.
    I understand why they do not populate, but I cannot figure
    out what to include to have all data regions filter into the detail
    area.
    Thanks again in advance!
    http://www.cateringlyons.com/menus.php

    "luke14free" <[email protected]> wrote in
    message
    news:f3bdm8$gsu$[email protected]..
    > I am a new AJAX spry developer and i would like to ask
    you a question.
    > I have done a code that modifies the content of an xml
    file after user
    > writes
    > something in a box. The code works(is written in php)
    and my problem is
    > that:
    > the xml dataset in the page doesn't refresh. I mean if I
    add something to
    > the
    > xml file the page isn't affected by the changes and
    continues to display
    > the
    > old xml-data. I checked manually the xml file and it's
    correctly writed
    > and
    > closed, and the file has the right permiossions. Can you
    tell me why?
    http://livedocs.adobe.com/en_US/Spry/1.4/WS95A48911-209C-4075-A90A-4FB06F6DAAA4.html
    Massimo Foti, web-programmer for hire
    Tools for ColdFusion and Dreamweaver developers:
    http://www.massimocorner.com

  • Change ZFS root dataset name for root file system

    Hi all
    A quick one.
    I accepted the default ZFS root dataset name for the root file system during Solaris 10 installation.
    Can I change it to another name afterward without reinstalling the OS? For example,
    zfs rename rpool/ROOT/s10s_u6wos_07b rpool/ROOT/`hostname`
    zfs rename rpool/ROOT/s10s_u6wos_07b/var rpool/ROOT/`hostname`/var
    Thank you.

    Renaming the root pool is not recommended.

  • Change XSD / XML dataset during runtime and display texts in field explorer

    Hi there,
    I am changing the datasource of a report during runtime. Afterwards, I would like to change the texts of the fields appearing in the field explorer.
    I tried:
    CrystalDecisions.ReportAppServer.DataDefModel.XMLDataSetClass xmlDS =
    new CrystalDecisions.ReportAppServer.DataDefModel.XMLDataSetClass();
    byte[] xmlContent = reportContent.getXmlContent();
    byte[] xsdContent = reportContent.getXsdContent();
    CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray xmlData =
    new CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray();
    CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray xsdData =
    new CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray();
    xmlData.ByteArray = xmlContent;
    xmlDS.XMLData = xmlData;
    xsdData.ByteArray = xsdContent;
    xmlDS.XMLSchema = xsdData;
    rasDoc.DatabaseController.SetDataSource(xmlDS, "", "");
    rasDoc.Database.Tables[0].Description = "POMMES";
    for (int i = 0; i < rasDoc.DatabaseController.Database.Tables[0].DataFields.Count; i++)
    rasDoc.Database.Tables[0].DataFields.Name = "TEST";
    MessageBox.Show(rasDoc.Database.Tables[0].DataFields.Name);
    rasDoc.Database.Tables[0].DataFields.HeadingText = "HOORAY";
    rasDoc.Database.Tables[0].DataFields.Description = "NOPE";
    MessageBox.Show(rasDoc.Database.Tables[0].DataFields.Description);
    MessageBox.Show(rasDoc.Database.Tables[0].DataFields.HeadingText);
    When running this, the message boxes include the right strings I set before but when this is done, the filed explorer still shows no changes. What am I doing wrong?
    Also, I would like to change the field texts that are displayed in the field explorer. How can this be done?
    Thanks,
    Pascal

    Also, I do not understand why I am not able to change the display of the fields in the filed explorer.
    This coding does not change a bit, but why??
    //preparation
    string tableName = reportDataSet.Tables[0].TableName;
                  // Get the table definition exactly like the definition of my own dataset.
                  CrystalDecisions.ReportAppServer.DataDefModel.Table table = GetTable(tableName);
                  table.ConnectionInfo = connectionInfo;
                  //delete all existing tables if there are any
                  foreach (CrystalDecisions.ReportAppServer.DataDefModel.Table oldTable in rasDoc.DatabaseController.Database.Tables)
                      rasDoc.DatabaseController.RemoveTable(oldTable.Name);
                  //add my new table with the IDs of the XSD
                  rasDoc.DatabaseController.AddTable(table, null);
                  //now I want to change the displayed fields texts
                  CrystalDecisions.ReportAppServer.DataDefModel.Tables modifyTables =
                      rasDoc.DatabaseController.Database.Tables;
                  CrystalDecisions.ReportAppServer.DataDefModel.Table myTable =
                      (CrystalDecisions.ReportAppServer.DataDefModel.Table)modifyTables[0];
                  Fields fields = myTable.DataFields;
                  for (int i = 0; i < fields.Count; i++)
                      ISCRField field = fields<i>;
                      ResultFieldController resultFieldController =
                         rasDoc.DataDefController.ResultFieldController;
                      try
                          resultFieldController.Remove(field);
                          string sText = "";
                          sText = "Bäschreibung" + i.ToString();
                          field.Description = new string(sText.ToCharArray());
                          sText = "Häding" + i.ToString();
                          field.HeadingText = new string(sText.ToCharArray());
                          //sText = "Näme" + i.ToString();
                          //field.Name = new string(sText.ToCharArray());
                          resultFieldController.Add(-1, field);
                      catch (Exception exp)
                          MessageBox.Show(exp.Message);
    I am completely stuck.
    Thanks for any help.
    Pascal
    Edited by: Pascal Schmidt-Volkmar on Sep 30, 2008 9:31 AM

  • Change rpool dataset name

    Can I change the dataset name for a root pool? When I built the system I modified the default dataset name to something less confusing. Now it need to change and rebuilding the system is not an option.
    Is this possible w/o damaging the system?
    Thanks

    You can rename the dataset using:
    # zfs rename rpool/ROOT/server-foo rpool/ROOT/app-server
    From the zfs(1M) man page:
         zfs rename filesystem|volume|snapshot
         filesystem|volume|snapshot
         zfs rename [-p] filesystem|volume filesystem|volume
             Renames the given dataset. The new target can be located
             anywhere  in  the  ZFS  hierarchy, with the exception of
             snapshots. Snapshots can  only  be  renamed  within  the
             parent  file system or volume. When renaming a snapshot,
             the parent file system of the snapshot does not need  to
             be  specified  as  part  of the second argument. Renamed
             file systems can inherit new mount points, in which case
             they are unmounted and remounted at the new mount point.
             -p
                 Creates  all  the   nonexistent   parent   datasets.
                 Datasets  created  in  this manner are automatically
                 mounted according to the mountpoint property  inher-
                 ited from their parent.
         zfs rename -r snapshot snapshot
             Recursively  rename  the  snapshots  of  all  descendent
             datasets.  Snapshots  are  the  only dataset that can be
             renamed recursively.You'll need to ensure the application is down so the umount works. Alternatively you can keep the current dataset name and change the mountpoint using 'zfs set mountpoint=/app-server rpool/ROOT/app-server'
    Am I indeed in the wrong forum?Yes. There isn't currently a dedicated ZFS forum so it's best to use the Solaris 10 or Solaris 11 forums. If you have a support contract there IS a dedicated ZFS area on http://communities.oracle.com

  • Changes to xml dataset not showing up on webpage

    Using spry, I added a spry:region to my home page that uses an xml dataset to post special announcements on the page. Since the people that maintain this are not technical I want to give them an easy way to post their announcement and the xml file makes a lot of sense. It will be easy for them to post their "School CLOSED today due to snow" announcement.
    So the whole spry dataset works great except that when I update the xml file, the new content does not show up on the web page. I assume its something to do with cache. I did select the no cache option. If I delete the temp files from the browser I can see the changes. This is obviously a problem. I need the changes to appear on the website when the xml file is updated. Is there some way to force the webpage to recreate the dataset everytime the page is loaded? or some other work around that will do what we need?
    You can see the page at www.tribecacommunityschool.com. At this moment there is a school closing announcement up. It may not be up tomorrow but the code will still be on the page if you want to view it.
    Thanks for any help. I did see a post from 2007 that asked this same question and there were no responses. I'm hoping for better luck and a slightly faster turn around.

    Thanks for the help... This additional explanation on Phil_W's post gave me what I need and the refresh works great.
    testxml.js
    var dsData = new Spry.Data.XMLDataSet("testxml.xml?cache=" + (new Date()).valueOf(), "/data/info", {useCache:false,  method:'GET'});
    var dsOne = new Spry.Data.XMLDataSet("testxml.xml?cache=" + (new Date()).valueOf(), "/data/info/one", { subPaths: ["test" ], useCache:false,  method:'GET'});
    function RefreshMe()
         var auctionxml = 'testxml.xml?cache=' + (new Date()).valueOf();
         dsData.setURL(auctionxml);
         dsData.loadData();
          dsOne.setURL(auctionxml);
         dsOne.loadData();
    testxml.xml file -------
    <?xml version="1.0" encoding="UTF-8"?>
    <data>
      <info id="1">
        <one>
          <test>test me sdfsdf</test>
        </one>
      </info>
    </data>
    html file----------
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script type='text/javascript' src="jquery.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/xpath.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/SpryData.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/SpryEffects.js"></script>
    <script language="JavaScript" type="text/javascript" src="testxml.js"></script>
    </head>
    <body >
    <div class="SpryHiddenRegion" spry:region="dsOne">
      <div id="test">{dsOne::test} </div>
    </div>
    <script language="JavaScript">
    // Switch on Refresh of auction data
    var AuctionInterval = 0;
    AuctionInterval = setInterval ( 'RefreshMe()', 5000 );
    </script>
    </body>
    </html>

Maybe you are looking for

  • Requirement in receiver determination

    Hi    We are on XI 3.0 SP18 and have the following requirement - I have two receivers - A and B for a message - asynchronous mode . I want the message to reach receiver B only if it has successfully reached A - ( technically successful - as in any as

  • Installing New Mac Mail Stationery Templates

    I'm trying to install a custom stationery template into my Mac Mail which I believe should be placed here. Library > Application Support > Mail > Stationery > Apple > Contents > Resources > Custom > Contents > Resources However, there's no "Mail" fol

  • Vbof deleted conditions

    Hi Gurus, I have created a rebate with two conditions. Then I have created the invoice and when I went to the conditions analysis they appear in it. Then I run the VBOF just because, or because a change in the rebate such as a rate in the accrual col

  • Net Connect 3.2.3 error messages

    SunOS 5.9 Generic_118558-24 sun4u sparc SUNW,Sun-Fire error log messages pr 5 10:44:00 sno00004 EventProvider[4984]: [ID 130514 daemon.error] new_PvrLock: already locked Apr 5 10:51:00 sno00004 EventProvider[5267]: [ID 130514 daemon.error] new_PvrLoc

  • Error while transferring Purchase Order from ECC to SUS

    we are working on plan driven procurement and transferring the PO from ECC to SUS, we are getting the error as "No partner found for partner number ECCSUS8". In ECC the Vendor No is ECCSUS8, trasfered vendor from ECC to SUS. Vendor registration is do