In the xml document below, I would like to check for 3 things
1. If Phone/@Current ='true'
2. If Type/@Word ='HOME'
3. If Invalid is not true
I have done 1 and 2 but I am not sure how to do 3 in the same line of code.
My xml document which is put into an object objxmlPhoneNode
<?xml...
I would like to get the following output from my xml document. When the dateofbirth is present in the input document (xml doc) I want the result to show pass.
Expected
<?xml version="1.0" encoding="UTF-16"?>
<EditReport xmlns="http://www.courts.state.mn.us/02/MW">
<EditResult>...
My xslt is not working as I expect it to. I expect to get <flag>true</flag> but my output is displaying <flag>false</flag>
The result I want should look like this.
<?xml version="1.0" encoding="UTF-16"?>
<EditReport>
<EditResult>
<EditNumber>4</EditNumber>...
I have the following existing xslt code. I would like to replace this code with a simple statement where I check the first three characters of CaseType/@Word = CNV instead.
<xsl:variable name="ConvertedFELOrGMD">
<xsl:choose>
<xsl:when test="CaseType/@Word =...
I have a when statement that I would like to add one more condition.
I would like to add CaseParty with an Op='A' to my existing count.
How do I do that?
Here is my xslt when test count statement
<xsl:when test="(count(CaseParty[((ObservedRace/@Op='E') or (ObservedEthnicity/@Op='E')) and...
I would like to get correct output but my template is returning wrong output.
Correct output should be
<EditReport>
<MessageIdentification>Case:1097</MessageIdentification>
<SourceLocation>111</SourceLocation>
<SourceUser>Tester</SourceUser>
<EditResult>
<EditNumber>001</EditNumber>...
I would like to remove a comma after the last variable value in my output. I am not sure how to apply sub string.
Here is the output that I need to remove comma after last value. My output could have 1 to many values from the variable. If there is only one value, there should not be a comma...
My template is correctly displaying output when any CasePartyName has an Op='E'.
It is also correctly displaying output when any CaseParty/ObservedRace has an Op='E' or CaseParty/ObeservedEthnicity has an Op='E' and Connection/@Word='RSP'
Current output
<NotificationEvent...
I would like to output all Charge elements for all Charges, when OffenseID/ID ID=PENDING.
The important thing to note is that the element <OffenseCite>xyz</OffenseCite will be output as <StatuteNumber>xyz</StatuteNumber>
Sample Output for each Charge should look like this. I did not include...
I would like to output the first FamilyJudgement from my xml document. How do I do it?
Expected output
<FamilyJudgment judgmentKey="3928551">
<JudgmentEventTypeText>Custody order</JudgmentEventTypeText>
</FamilyJudgment>
xml document
<?xml version="1.0" encoding="UTF-8"?>
<CaseNotification>...
I had this question posted but since I had to edit that question after an answer was provided, I think the best thing to do is posting a new question instead.
I have 4 TransactionTypeText being handled by xslt code which include TransactionTypeText='Charge', TransactionTypeText='Payment'...
My xslt code is return correct output when TransactionTypeText='Charge', TransactionTypeText='Payment', TransactionTypeText='Credit', and TransactionTypeText='Disbursement'.
I would like to add code so I also get the output when TransactionTypeText is other than Charge, Payment, Credit or...
I would like to get the Status whose TimestampCreate matches ControlPoint Timestamp.
I am not sure how to change my xslt to get matching Status TimestampCreate.
To compare Status TimestampCreate to ControlPoint TimeStamp I am using a fuction to convert these to numeric
Here is my function...
I have a xml 1.0 document with 3 JudgmentEvent.
What I would like to get as output is
1. JudgmentEvent whose parent have not been deleted.
2. JudgmentEvent that have no parent and they have not been deleted.
I do not know how to do this.
My output should look like this:
<JudgmentEvent...
I have added new xml code because the previous code was incomplete.
I would like to return (output) only non-deleted judgment information, the original (base judgment information) when all of the amendments to it have been deleted and only a single instance of each judgment.
How do I do this...
My xml document has /Integration/Case/Charge/Vehicle/VehicleMake/@Word where the @Word is the MncisCode that is found in the Mapping of the referring document and it should be matched to NcicCode in the Mapping.
I am not sure what to change on my xsl to loop through the Mapping looking for...
My xml document has 2 addresses.
One under
/Integration/Case/CaseParty/Address
and another one under
Code:
/Integration/Party/Address[@PartyCurrent='true']
I only want to display the Address which is under
/Integration/Party/Address[@PartyCurrent='true']
but if that there is no Address there...
I have modified this question by adding a more detailed xsl code showing two templates that I am using. CommercialVehicleFlag can be under Charge which is under Case or under Citation which is under Case.
I want to check for CommercialVehicleFlag in both places that is under...
I would like to display Party address as non-standard or standard or Foreign address based on the CaseParty/State or Party/State found in the in the xml document. In my xsl I have already checked for the State in the referring xsd document. If the State is not found in the two referring...
I would like to Check if VehicleLicensePlateNumber in xml document has a value.
In my xslt this is presented as nc:IdentificationID.
If VehicleLicensePlateNumber has a value, then I want to display it and all child elements of j:ConveyanceRegistrationPlateIdentification in xslt code.
If the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.