Any way to duplicate XML data keeping it once in the structure?

I already started a related topic
zwettemaan, "Is there an equivelent tool to the "placeholders" in quark where one..." #25, 7 May 2008 3:12 pm but am hoping someone in the XML realm may have a solution...

Fair enough. That is the answer I keep getting and I DO understand that it is part of the nature of xml. believe me.
But let me explain the why behind why I think this needs a solution. I work in-house at a large medical company. We have many products, part numbers, marketing blurbs and prices scattered throughout dozens of marketing pieces. Lets say when a part number changes (which is in 2 or 3 places in the catalog, 3 places on the price list, 2 places on the data sheet and even once on the website). Sometimes it's a blurb that changes, sometimes it's a part number.
I am trying to make a system where if you have to change a price, you change it once and that's it. Isn't that one of the basic things a computer is meant to do?
Is there another programming language perhaps that can accomplish this?
It is hard to keep track of how many places in all of my materials I have that price. Plus these changes come often. Perhaps something like the shared content pallette in quark xpress should be developed.

Similar Messages

  • HT4848 Is there any way to recover all datas I lost after Reinstalling the mac OS X Lion ? because I couldn't back up

    Yesterday I got back home and turned on my macbook pro and it was being stuck at the grey apple booting part! I read the instruction on the Catelog that came along the Macbook and followed the instructions and opened the Mac OS X Utilities I had to erase the drive and I didnt have any clue how to back up from the Mac OS X utilities pane as I wasnt allowed to enter my user or go further that part! So I erased and repaired the drive and I am now Reinstalling my Mac OS X Lion but when I was selecting which disk would I like to reinstall I saw my disk that contains all my photos,songs,videos etc. (called Recovery HD) but when I wanted to select it they wouldn't allow me as it says " this disk is locked" on it. Is there any way to unlock and take back my data or any way to recover what I've had ?! I really need some help .. Please help!

    Good that you can boot from your recovery disks and see your data and kudos for having a current backup.  You need to get the internal drive to be healthy so you can boot from it.
    With your recovery disk booted use Disk Utility to examine your internal drive.  Does the S.M.A.R.T. status say "Verified" or some other status?  If it is not "Verified" stop and post back.  If it is "Verified" click on "Macintosh HD" (or an alternative name for your system drive) and do a Disk Repair.  Does it repair successfully?
    Follow the instruction at http://support.apple.com/kb/TS2570 and see if that fixes the problem. If you get to the part about erasing and resintalling post back before you do that.

  • Is there any way to read XML directly from a Web Page ??

    i have a url, which on sending request, shows XML in browser.
    Now i need to read this XML in browser and then manipulate it according to my need and display it on another page.
    actually the process is. :
    1) i have to first retrieve an xml from other site. (XML will only be shown in browser)
    2.)then i have to read the Xml and show it in according to my requirements.
    Is there any way to read XML directly from a Web Page ??
    is their logic to accomplish this.
    e.g in Servlet i can do somewhat like this :
    String wholeXml=Somemethod(url);
    Please Advice

    the average Java XML parser will accept an InputStream, so just open an URLConnection to the webpage, get the inputstream from it and feed that inputstream to the XML parser. If the URL has valid XML data, it will get parsed without problems.

  • Any way to clear application data in b2g/Firefox OS?

    Is there any way to clear application data without uninstalling the whole app?
    Say an app signs someone into Google, there is no way to clear that account data without directing them to a Google logout page. It would be nice to just be able to clear all the login/cookie data that gets stored in the app. This is useful with OAuth - the tokens can be cleared but the Google account can't be logged off (easily).

    There doesn't seen to be a way to clear data at this moment for apps, you can have a look into app permissions or try deleting the app and reinstalling.

  • In other words is any way bring back old data itunes kept in PC(was vista- crashed- now win7)...

    As stated briefly:
    My PC crashed
    I have all files but cannot run os vista was
    to run itunes in a new win7 pc with prior data: I must connect ipad and synchr (but this says This device (IPAD 1) synchr with another Library go and delete data and replace with current lib?)
    or exist other way use old data(Old hdd) of itunes in old PC to new itunes new pc??? so avoid deletion...
    in other words is any way bring back old data itunes kept in PC(was vista->crashed->now win7)...?

    If you want to transfer to a new computer here is the way-
    1. Without connecting your iPad to your new computer -
    A) Install iTunes / make sure the latest version of iTunes is installed.
    B) Go to the Store tab and click on "Authorise This Computer".
    C) Go to Edit, click on Preferences and click on Devices. Put a check mark in the box next to "Prevent  iPods/iPhones/iPads from syncing automatically". Click OK and close iTunes.
    2.  Connect your iPad to your computer -
    A) Start iTunes (if it does not do so automatically).
    B) Right click on your iPad under Devices in the left column. Select "Transfer purchases".
    C) When the transfer has completed, right click on your iPad again and select "Backup".
    D) When the backup has completed, left click on your iPad, click on the Apps tab, and put a check mark in the box next to "Sync Apps", and then click on "Apply" (bottom right).
    E) Unless you want to always do a manual sync (as I do), go back to Edit, Preferences and uncheck the box next to "Prevent your iPod.....".
    F) Finally, on your iPad, check that everything is syncing properly. If not, go back to iTunes and check all settings.
    NB You should not lose any apps. However, any 'purchased' missing apps can be downloaded again FOC. As with updates, this must be done with the Apple ID under which they were originally 'purchased'.
    Also see here as to moving your music to your new computer -
    http://support.apple.com/kb/HT4527

  • Is there any way too see all data on all enteties an user owns.

    Hi all,
    Is there any way to see all data an user owns in CRM2011?
    Maybe an custom report or view?

    I could only think of one solution to this, a little bit of code to get a list of records a user owns. The List contains Entity objects with the Id & LogicalName. You could do this with a report too but you'll have to query every entity...
    public List<Entity> GetOwningRecords(IOrganizationService service, Guid systemUserId)
    List<Entity> owningRecords = new List<Entity>();
    RetrieveAllEntitiesRequest retrieveAllEntitiesRequest = new RetrieveAllEntitiesRequest();
    retrieveAllEntitiesRequest.EntityFilters = EntityFilters.Entity;
    retrieveAllEntitiesRequest.RetrieveAsIfPublished = true;
    RetrieveAllEntitiesResponse retrieveAllEntitiesResponse = (RetrieveAllEntitiesResponse)service.Execute(retrieveAllEntitiesRequest);
    foreach (EntityMetadata entityMetadata in retrieveAllEntitiesResponse.EntityMetadata)
    if (entityMetadata.OwnershipType != OwnershipTypes.UserOwned)
    continue;
    try
    QueryExpression query = new QueryExpression(entityMetadata.LogicalName)
    ColumnSet = new ColumnSet("ownerid"),
    Criteria =
    Conditions =
    new ConditionExpression("ownerid",ConditionOperator.Equal, systemUserId)
    EntityCollection result = service.RetrieveMultiple(query);
    foreach (Entity entity in result.Entities)
    owningRecords.Add(entity);
    catch (FaultException<OrganizationServiceFault>)
    Console.WriteLine(String.Format("Couldn't retrieve the records for {0}", entityMetadata.LogicalName));
    catch (Exception)
    Console.WriteLine(String.Format("Unexpected error for {0}", entityMetadata.LogicalName));
    return owningRecords;
    Hope this helps

  • What is the best and easiest way to get xml data into the rtf document

    Hello Frenz
    I'm using rtf document(with bi publisher desktop plug in installed in the word document)... please suggest me the best way(to get the xml data from tables) to load the xml data into this rtf document..
    I'm not developing oracle apps reports. It is for Oracle retail...
    another doubt is... in the rtf document itself there is oracle bi publisher.. can it be used for generating xml data...
    please bear with me and suggest me a way out
    Thanks and regards

    What will you be using in your production system to generate XML? Or are you just trying out BIP?
    If you're familiar with dbms_xmlquery.getxml , you can pass your SQL to generate the XML output. Save the output in a file and use it in your RTF template.
    If you have Oracle reports, you can create XML output when you run the report.

  • Is there any way for updating wrong data in ODS and infocube?

    Hi all
        Is there any way for correcting wrong data in ODS and infocube?

    You could do a selective deletion, by specifying the filter values, so that you only delete a subset of the entire data. You could then do a re-load for the same selection so that there is no duplication of records.
    This is on the assumption, that your incorrect data is due to some incorrect update or transfer rules, which you have now corrected (before the re-load).
    mate, you have mentioned that You could then do a re-load for the same selection .
    could you please tell me how to do a re-load ?   thank you very much

  • Is there any way to access my data in case i didnt back up my data on icloud and also erased the data from my iphone?

    I accidentally erased all my data from my iphone and plus i also forgot to take the back up of the same, so i want to ask is there any way to get my data back?

    There might be an outside chance of getting the data back from your iPhone, if it hasn't been overwritten. There are some programs you can run on your computer to scavenge files from your iPhone, even though they have been deleted. You'll need to search on the Internet to find those programs, and then you'll have to buy one of them. And, it's always a "buyer beware" situation when you do that, so research carefully.
    Here's one search to start with ...
    https://www.google.com/#q=recover+deleted+iphone+files+no+backup

  • Is there any way to magage push data on the Q5 phone?

    Is there any way to magage push data on the Q5 phone?

    POP IMAP EAS
    http://kb.hpwebos.com/wps/portal/kb/mobile/common/article/18838_en.html
    go to settings, accounts, choose the account in question, tap on advanced on bottom, do you show server address and port 443 below it and using SSL with PUSH on? if no then you might not be using EAS (Exchange Active Sync). which usually syncs most PIM info like calendar and contacts.
    if using port 25,110,587, 465, 995 you are most likely using POP/SMTP and usually require a manual sync of contacts and calendar. Some services allow CalDAV and/or CardDAV connections
    if using port 143, 993 you are most likely using IMAP and some services require a CalDAV and/or CardDAV connection to sync content other than emails.
    Not all version of exchange sync everything with EAS
    http://en.wikipedia.org/wiki/Comparison_of_Exchange_ActiveSync_Clients
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Is there any way to turn off data and use only wi fi

    is there any way to turn off data and use only wi fi, going to a foreign country and do not want to use data but wi fi will be available. I want to be sure to use only wi fi

    Yes there is!
    Simply go into Settings, General, Mobile Data, Turn this off and make sure Data Roaming is also switched off! You can have wifi on and this will no charge your account for the data you use via Wi-Fi!

  • HT4759 i have lost my iphone i dont have iemi number but i used icloud id on that as there any way to locate my phone and if not located the plz tell my the way i remove my data from it. thanks

    i have lost my iphone i dont have iemi number but i used icloud id on that as there any way to locate my phone and if not located the plz tell my the way i remove my data from it. thanks

    Go to icloud.com.  Log in with your Apple ID & Password.  Go to the Find My iPhone section.  Perform a remote wipe of the device.
    You don't have to have downloaded any app.  You only have to have enabled the Find My iPhone option under Settings > iCloud.  If you did not do that, then you cannot remotely access the device.
    If that's the case, then change ALL of your account passwords; email, banking, etc.  All of them.  And then monitor those accounts very closely!

  • I had ordered a photo book print two years back. I want to reorder the same book again now. However, I have lost the album project in iphoto. Is there any way to see my print order history and reorder the same book for print ?

    I had ordered a photo book print two years back. I want to reorder the same book again now. However, I have lost the album project/photos from iphoto.
    Is there any way to see my print order history and reorder the same book for print ?

    No.  Apple only keeps the pdf file for a book for 30 days.  Without the library and book project you won't be able to reorder the same book.
    Even though the horse is out of the barn the following tutorial might be of help for future books, i.e. create a new library for each book): iP08 - Archiving an iPhoto Book for Editing and/or Ordering at a Later Date
    OT

  • The monitor on my macbook is turned off while I was working, I could not in any way to do it again, I could see through the screen off the open pages I was working on, I had to turn off the machine and restart it. and it runs. O.O?

    The monitor on my macbook is turned off while I was working, I could not in any way to do it again, I could see through the screen off the open pages I was working on, I had to turn off the machine and restart it. and it runs. WHAT 'success? The report says the console like this: (at approximately 12.30)
    No receipt for 'com.apple.pkg.JamPackWorldMusicInstruments' found at '/'.
    03/05/11 12:08:30 [0x0-0x1e01e]. Com.apple.garageband [239] No receipt for 'com.apple.pkg.JamPackWorldMusicInstruments' found at '/'.
    03/05/11 12:08:30 [0x0-0x1e01e]. Com.apple.garageband [239] No receipt for 'com.apple.pkg.JamPackOneInstruments' found at '/'.
    03/05/11 12:08:30 [0x0-0x1e01e]. Com.apple.garageband [239] No receipt for 'com.apple.pkg.JamPackOrchestralInstruments' found at '/'.
    03/05/11 12:08:30 [0x0-0x1e01e]. Com.apple.garageband [239] No receipt for 'com.apple.pkg.JamPackRhythmSectionInstruments' found at '/'.
    03/05/11 12:08:30 [0x0-0x1e01e]. Com.apple.garageband [239] No receipt for 'com.apple.pkg.JamPackRemixToolsInstruments' found at '/'.
    03/05/11 12:08:32 MIDIServer [255] MIDIServer [255] starting; arch = i386
    03/05/11 12:34:35 com.apple.launchd [1] *** launchd [1] has started up. ***
    03/05/11 12:35:06 com.apple.launchd.peruser.501 [86] (com.apple.ReportCrash) Falling back to default Mach exception handlers. Could not find: com.apple.ReportCrash.Self
    03/05/11 12:35:09 com.apple.launchd.peruser.501 [86] (com.apple.Kerberos.renew.plist [110]) Exited with exit code: 1
    03/05/11 12:35:25 [0x0-0xd00d]. Com.skype.skype [127] WirelessAttach: IOServiceOpen error: e00002c7
    03/05/11 12:35:25 [0x0-0xd00d]. Com.skype.skype [127] WirelessAttach: IOServiceOpen error: e00002c7
    03/05/11 12:35:26 [0x0-0xd00d]. Com.skype.skype [127] WirelessAttach: IOServiceOpen error: e00002c7
    03/05/11 12:35:26 [0x0-0xd00d]. Com.skype.skype [127] WirelessAttach: IOServiceOpen error: e00002c7
    03/05/11 12:35:32 [0x0-0xd00d]. Com.skype.skype [127] WirelessAttach: IOServiceOpen error: e00002c7
    03/05/11 12:35:33 [0x0-0xd00d]. Com.skype.skype [127] WirelessAttach: IOServiceOpen error: e00002c7
    03/05/11 12:35:33 [0x0-0xd00d]. Com.skype.skype [127] WirelessAttach: IOServiceOpen error: e00002c7
    03/05/11 12:36:06 com.apple.WindowServer [64] Tue May 3 12:36:06 MacBook-Pro-17-of-Admin.local WindowServer [64] <error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint () to catch errors logged as They Are.
    03/05/11 12:43:39 helpd [160] Response failed Because Listener can not find a port for this QueryID.
    03/05/11 12:43:43 helpd [160] Response failed Because Listener can not find a port for this QueryID.
    03/05/11 12:43:43 helpd [160] Response failed Because Listener can not find a port for this QueryID.

    Do you have backups of all the data on the startup drive? If not, do nothing else until you've backed up that data, if you still can.

  • Is there any way to restore it to factory settings with out the disk?

    I got a macbook off of a friend with all the proper disks, did the installation and set up and did all the updates. Now after having restarted the computer with the new updates I'm trying to install iworks(it always asks for the admin. name and password), but it keeps saying that I have the incorrect administrator name or password yet I can log on and off just fine. Is there any way I can fix this or reset it to the factory settings with out having to use the disk?

    OK, then you can try this instead:
    I lost my admin user (OS X 10.5)
    If you are unfortunate enough to delete your only admin user, or remove his admin capability, then as long as you have another user with login capability, you can give that user admin rights as shown below.  Print this post out in a mono-spaced font, and type carefully, paying attention to spaces and punctuation, since you cannot copy/paste in Single User mode.  Caution: in single user mode you have root privileges. Be careful!
    Substitute the name of 'youruser' below. 
    Boot into single-user mode which will eventually get you to a shell prompt (ending in #). Then type the following (Press RETURN after each command): 
    /sbin/fsck -fy 
    Repeat the above until it says your disk is OK. Then continue with 
    /sbin/mount -uw / 
    /usr/bin/dscl . -merge /groups/admin users youruser 
    If you get a message saying "invalid path", then type these two commands first:  
    /usr/bin/dscl . -create /groups/admin gid 80
    /usr/bin/dscl . -create /groups/admin passwd '*'
    and then repeat the "dscl ... -merge" command.
    Then:
    reboot 
    You will now be able to login as 'youruser' and have administrative privileges.  Membership of the 'admin' group is the only thing that distinguishes administrative users from ordinary users.

Maybe you are looking for

  • Getting null values from resources in jar

    My application uses a lot of icons, i have bundled these icons in a jar file which is there in the classpath. I am using these Icons from my class statically; i mean to say all the icons are initialized as final static. and when i run the application

  • Error in strating bam active data cache server

    operation system:win XP with sp2 After installation of bam,oracleBamCollaboration,Oraclebameventengine,oraclebamplanmonitor,oraclebamreportcache start normally.But error occured when i started the server of OracleBAMActiveDataCache,the error informat

  • Future Dated Payments in Oracle Accounts Receivables

    Hi Experts, Please help me on how to handle the Future Dated Payments in AR, here our Customer gives Future dated checks and the same we have to record in AR.. I know the process of Recording Future Dated Payment (Bills Payable) in AP but not in AR..

  • Block payroll data from cost center for all users except HR team

    Hello Expect, Could any body please advise me  how can I restrict some HR data  in cost center view from FICO,CRM,SRM and other team, Now when other team see cost centers it display all data booked there but my client want to restrict some HR data fr

  • ISE 1.1 - Error Custom Guest Portal

    Ciao, we are facing a strange problem on ISE Custom Guest Portal. After pressing the login button it returns an error: Error: Resource not found. Resource:/guestportal/ It seems like that te function "/guestportal/LoginCheck.action" is not able to re