Search found 7 matches

by wscott44
Wed Jun 19, 2013 10:50 pm
Forum: General XML Questions
Topic: export & import a Transformation Scenario with XQuery?
Replies: 3
Views: 2658

Re: export & import a Transformation Scenario with XQuery?

This suggestion from Costin worked perfectly. I am very pleased.
by wscott44
Wed May 22, 2013 8:53 pm
Forum: General XML Questions
Topic: export & import a Transformation Scenario with XQuery?
Replies: 3
Views: 2658

Re: export & import a Transformation Scenario with XQuery?

Hello Costin and Thank You!!! I hadn't noticed the menu options in the upper right corner of the Configure Transformation Scenarios window.

Best Regards,
Wayne Scott
by wscott44
Wed May 22, 2013 1:01 am
Forum: General XML Questions
Topic: export & import a Transformation Scenario with XQuery?
Replies: 3
Views: 2658

export & import a Transformation Scenario with XQuery?

Is there a way in Oxygen 14.1 or above to export & import a Transformation Scenario with XQuery?

My main objective is to make it easier on my colleagues to configure the "Edit scenario" dialog and its tabs with the special parameters that took me a while to figure out.
by wscott44
Wed Dec 12, 2012 4:25 pm
Forum: General XML Questions
Topic: need method to extract element with particular name-value pair
Replies: 4
Views: 3480

Re: need method to extract element with particular name-value pair

Alex, thanks a billion. It's a tremendous help knowing what I can and cannot do. I'll try your suggestion when I get to the office (on iPhone now). Can you recommend a good technical reference that can help me gain better XML understanding? I have lots of comp science / IT experience, but many topic...
by wscott44
Wed Dec 12, 2012 1:49 am
Forum: General XML Questions
Topic: need method to extract element with particular name-value pair
Replies: 4
Views: 3480

Re: need method to extract element with particular name-value pair

How can I add a simple counter to be incremented every time it finds a match? XQuery was looking like a traditional programming language, until I started searching for solutions to this simple problem.
by wscott44
Wed Nov 14, 2012 10:41 pm
Forum: General XML Questions
Topic: need method to extract element with particular name-value pair
Replies: 4
Views: 3480

Re: need method to extract element with particular name-value pair

I figured it out with XQuery and I am quite pleased. <DLS_RatePlans> { for $plan in doc("myfunky.xml")/catalog/prd, $prop in $plan/prpty where ( (compare($prop/@name, "locationId") eq 0) and (compare($prop/@value, "DLS") eq 0) ) return $plan } </DLS_RatePlans>
by wscott44
Sat Nov 10, 2012 1:08 am
Forum: General XML Questions
Topic: need method to extract element with particular name-value pair
Replies: 4
Views: 3480

need method to extract element with particular name-value pair

I'm using <oXygen/> XML Editor 14.1 Enterprise. I'm working with an XML file we receive from a client. It contains ~5000 rows of product elements, each with 22 rows of properties. The ones I need to focus on have this item in the list of 22: <prpty name="locationId" value="DLS"/>...