Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: momo2000
  • Content: Threads
  • Order by date
  1. momo2000

    How do I add a 3rd condition to my vb.net code?

    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...
  2. momo2000

    How do I get the correct output in xslt?

    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>...
  3. momo2000

    I expect result to be true but I get false

    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>...
  4. momo2000

    How do I change existing xslt code to a simple statement?

    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 =...
  5. momo2000

    How to I add extra condition on my xslt count when statement?

    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...
  6. momo2000

    How do I get the right output using template?

    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>...
  7. momo2000

    How do I remove comma after the last variable value?

    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...
  8. momo2000

    How to I check for all Protection orders based on condition?

    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...
  9. momo2000

    How do I output all charges with with Pending ID?

    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...
  10. momo2000

    How do I get the first familyjudgement from xml doc?

    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>...
  11. momo2000

    How do I add exception to my xslt code

    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'...
  12. momo2000

    How do I get out put for required elements?

    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...
  13. momo2000

    How do I get the Status with the latest TimestampCreate date time?

    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...
  14. momo2000

    How do I return correct event elements

    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...
  15. momo2000

    How do I output un-deleted judgment?

    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...
  16. momo2000

    How do I display NcicCode matching VehicleMake (MncisCode)?

    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...
  17. momo2000

    How do I find and display CaseParty address?

    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...
  18. momo2000

    How do I display CommercialVehicleFlag?

    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...
  19. momo2000

    How do I display correct address type based on state code found in xml?

    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...
  20. momo2000

    How do I skip all child elements of a node if one specific element has no value?

    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...

Part and Inventory Search

Back
Top