July 9, 2016 at 6:20 am
Hi Experts,
I am using SQL Server 2005 for this requirement.
I have a requirement to modify XML file to delete few nodes and return result as XML.
Source XML file structure:
<SyncContract xmlns:ns2="http://schema.abc.com/ABCOAGIS/2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.abc.com/ABCOAGIS/2" xsi:noNamespaceSchemaLocation="http://schema.abc.com/ABCOAGIS/2">
<ns2:ApplicationArea>
<ns2:Sender>
<ns2:LogicalID>lid://abc.cm.cm</ns2:LogicalID>
<ns2:ComponentID>clcm</ns2:ComponentID>
</ns2:Sender>
<ns2:CreationDateTime>2016-06-28T14:08:54.707Z</ns2:CreationDateTime>
<ns2:BODID>infor.cm.cm:Sync.Contract:1467122934707</ns2:BODID>
</ns2:ApplicationArea>
<DataArea>
<Contract>
<ContractHeader>
<AlternateDocumentID>
<ID>Services Work Order</ID>
</AlternateDocumentID>
<Description>ABC QA Contract6</Description>
<DocumentDateTime>2016-06-28T14:08:54.707Z</DocumentDateTime>
<DocumentID>
<ID variationId="0">Manual.3000</ID>
</DocumentID>
<LastModificationDateTime>2016-06-28T14:08:03.229Z</LastModificationDateTime>
<Status>
<Code>INTERNAL_REVIEW</Code>
</Status>
<UserArea>
<ClmUserArea>
<Agreement id="3000" name="Services Work Order">
<AgreementValue>8720.0</AgreementValue>
<Attributes id="18946" name="ReApprovalRequired">NA</Attributes>
<Attributes id="18945" name="Entity">US0AB</Attributes>
</Agreement>
</ClmUserArea>
</UserArea>
</ContractHeader>
<ContractSchedule/>
</Contract>
<Sync>
<AccountingEntityId>ABCMLC_TRN</AccountingEntityId>
<ActionCriteria>
<ActionExpression actionCode="Add"/>
</ActionCriteria>
<TenantID>ABCMLC_TRN</TenantID>
</Sync>
</DataArea>
</SyncContract>
Result XML file required after deleting <SyncContract> and <Sync> nodes from source XML is followed:
<DataArea>
<Contract>
<ContractHeader>
<AlternateDocumentID>
<ID>Services Work Order</ID>
</AlternateDocumentID>
<Description>ABC QA Contract6</Description>
<DocumentDateTime>2016-06-28T14:08:54.707Z</DocumentDateTime>
<DocumentID>
<ID variationId="0">Manual.3000</ID>
</DocumentID>
<LastModificationDateTime>2016-06-28T14:08:03.229Z</LastModificationDateTime>
<Status>
<Code>INTERNAL_REVIEW</Code>
</Status>
<UserArea>
<ClmUserArea>
<Agreement id="3000" name="Services Work Order">
<AgreementValue>8720.0</AgreementValue>
<Attributes id="18946" name="ReApprovalRequired">NA</Attributes>
<Attributes id="18945" name="Entity">US0AB</Attributes>
</Agreement>
</ClmUserArea>
</UserArea>
</ContractHeader>
<ContractSchedule/>
</Contract>
</DataArea>
Your help is highly appreciated.
July 9, 2016 at 9:01 am
Duplicate post. Please, let's keep all the answers in one spot. Don't post on this thread. Go to the thread already accumulating answers here http://www.sqlservercentral.com/Forums/Topic1800658-3412-1.aspx instead.
Thanks folks.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply