|
I dont know about .net bootstrapper.
Bootsrap loader is a program used to start up an operating system such as Windows which loads the required services and the process in the memory.
But what is .net bootstrapper.
Do you mean the installation file or something?
Keshav Kamat
India
|
|
|
|
|
I suspect he wants a way to distribute a .NET app so running it installs the framework, or the framework is not required.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
initially my xml file is
<?xml version="1.0" ?>
<lasers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="laserProp.xsd">
<laser LaserName="Laser1" ModelName="Nufern v1.0" SerialNo="1" ManufacturerName="Nufern v1.0" Maximumpower="200w">
<properties>
<image>CW-Waveform.jpg</image>
<WaveTypes>
<WaveType Name="CW Waveform" url="CWwaveform.html" isavailable="true" />
<WaveType Name="Relaxation Oscillation Envelope" url="RelaxOscillation.html"
isavailable="true" />
</WaveTypes>
<tabular>
<property id="300" name="System active" currval="0" prgbar="false" selected="false" min="0"
max="100" pwd="true" units="C" gauge="true" thresholdval="10"/>
<property id="301" name="Enable laser" currval="0" prgbar="true" selected="false" min="0"
max="100" pwd="true" units="C" gauge="true" thresholdval="10"/>
</tabular>
</properties>
</laser>
</lasers>
And my xsd is
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="lasers">
<xs:complexType>
<xs:sequence>
<xs:element name="laser">
<xs:complexType>
<xs:sequence>
<xs:element name="properties">
<xs:complexType>
<xs:sequence>
<xs:element name="image" type="xs:string" />
<xs:element name="WaveTypes">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="WaveType">
<xs:complexType>
<xs:attribute name="Name" type="xs:string" use="required" />
<xs:attribute name="url" type="xs:string" use="required" />
<xs:attribute name="isavailable" type="xs:boolean" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="tabular">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="property">
<xs:complexType>
<xs:attribute name="id" type="xs:integer" use="required" />
<xs:attribute name="name" type="xs:string" use="required" />
<xs:attribute name="currval" type="xs:integer" use="required" />
<xs:attribute name="prgbar" type="xs:boolean" use="required" />
<xs:attribute name="selected" type="xs:boolean" use="required" />
<xs:attribute name="min" type="xs:integer" use="required" />
<xs:attribute name="max" type="xs:integer" use="required" />
<xs:attribute name="pwd" type="xs:boolean" use="required" />
<xs:attribute name="units" type="xs:string" use="required" />
<xs:attribute name="gauge" type="xs:boolean" use="required" />
<xs:attribute name="thresholdval" type="xs:integer" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="LaserName" type="xs:string" use="required" />
<xs:attribute name="ModelName" type="xs:string" use="required" />
<xs:attribute name="SerialNo" type="xs:integer" use="required" />
<xs:attribute name="ManufacturerName" type="xs:string" use="required" />
<xs:attribute name="Maximumpower" type="xs:string" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
now it is working fine, but when xml file has more than one laser(laser is child node of lasers) then it is giving validation error like
"The element lasers has invalid child element laser"
Help me on this
Thanks in advance
|
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="lasers">
<xs:complexType>
<xs:sequence>
<xs:element name="laser" maxOccurs="Unbounded">
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook www.troschuetz.de
|
|
|
|
|
Thanks very much
praveenkumar Palla
|
|
|
|
|
initially my xml file is
<lasers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nonamespaceschemalocation="laserProp.xsd">
<laser lasername="Laser1" modelname="Nufern v1.0" serialno="1" manufacturername="Nufern v1.0" maximumpower="200w">
<properties>
CW-Waveform.jpg
<wavetypes>
<wavetype name="CW Waveform" url="CWwaveform.html" isavailable="true">
<wavetype name="Relaxation Oscillation Envelope" url="RelaxOscillation.html"
isavailable="true">
<tabular>
<property id="300" name="System active" currval="0" prgbar="false" selected="false" min="0"
max="100" pwd="true" units="C" gauge="true" thresholdval="10">
<property id="301" name="Enable laser" currval="0" prgbar="true" selected="false" min="0"
max="100" pwd="true" units="C" gauge="true" thresholdval="10">
And my xsd is
<xs:schema attributeformdefault="unqualified" elementformdefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="lasers">
<xs:complextype>
<xs:sequence>
<xs:element name="laser">
<xs:complextype>
<xs:sequence>
<xs:element name="properties">
<xs:complextype>
<xs:sequence>
<xs:element name="image" type="xs:string">
<xs:element name="WaveTypes">
<xs:complextype>
<xs:sequence>
<xs:element maxoccurs="unbounded" name="WaveType">
<xs:complextype>
<xs:attribute name="Name" type="xs:string" use="required">
<xs:attribute name="url" type="xs:string" use="required">
<xs:attribute name="isavailable" type="xs:boolean" use="required">
<xs:element name="tabular">
<xs:complextype>
<xs:sequence>
<xs:element maxoccurs="unbounded" name="property">
<xs:complextype>
<xs:attribute name="id" type="xs:integer" use="required">
<xs:attribute name="name" type="xs:string" use="required">
<xs:attribute name="currval" type="xs:integer" use="required">
<xs:attribute name="prgbar" type="xs:boolean" use="required">
<xs:attribute name="selected" type="xs:boolean" use="required">
<xs:attribute name="min" type="xs:integer" use="required">
<xs:attribute name="max" type="xs:integer" use="required">
<xs:attribute name="pwd" type="xs:boolean" use="required">
<xs:attribute name="units" type="xs:string" use="required">
<xs:attribute name="gauge" type="xs:boolean" use="required">
<xs:attribute name="thresholdval" type="xs:integer" use="required">
<xs:attribute name="LaserName" type="xs:string" use="required">
<xs:attribute name="ModelName" type="xs:string" use="required">
<xs:attribute name="SerialNo" type="xs:integer" use="required">
<xs:attribute name="ManufacturerName" type="xs:string" use="required">
<xs:attribute name="Maximumpower" type="xs:string" use="required">
now it is working fine, but when xml file has more than one laser(laser is child node of lasers) then it is giving validation error like
"The element lasers has invalid child element laser"
Help me on this
Thanks in advance
PraveenKumar Palla
|
|
|
|
|
Dear all,
As per the need in my application i need to convert doucment to pdf.Can any body can help from this situation please send the code or guidance so that i can complete the task
thanks and regards,
Balasubramanyeswar.A
|
|
|
|
|
ASP.NET is irrelevant, it has nothing to do with your task.
There are commercial libraries for PDF generation. There are free ones too, but not sure if they do doc->pdf.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
1. You must setup Adobe Acrobat 7.0 Professional,postscript.exe,gs811w32.exe
2. ConvertDoc2PDF.js
var files = WScript.Arguments;
var fso = new ActiveXObject("Scripting.FileSystemObject");
var word = new ActiveXObject("Word.Application");
var PDF = new ActiveXObject("PDFDistiller.PDFDistiller.1");
word.ActivePrinter = "MS Publisher Color Printer";
//files(0) document file name
//files(1) PDF file path
var docfile = files(0);
var psfile = files(1) + fso.GetBaseName(files(0)) + ".ps";
var pdffile = files(1) + fso.GetBaseName(files(0)) + ".pdf";
var logfile = files(1) + fso.GetBaseName(files(0)) + ".log";
try{
var doc = word.Documents.Open(docfile);
//Convert WORD to PS;
word.PrintOut(false, false, 0, psfile);
doc.Close(0);
//Convert PS to PDF;
PDF.FileToPDF(psfile,pdffile,"");
// Delete PS
fso.GetFile(psfile).Delete();
// Delete Log
fso.GetFile(logfile).Delete();
word.Quit();
WScript.Echo("isuccess");
WScript.Quit(0);
}
catch(x)
{
word.Quit();
WScript.Echo("isfail");
WScript.Quit(0);
}
3.C#
using System;
using System.Diagnostics;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
public void StartConvertPDF()
{
Process proc = new Process();
proc.StartInfo.FileName = "cmd.exe";
proc.StartInfo.WorkingDirectory = @"c:\";
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.RedirectStandardInput = true;
proc.Start();
proc.StandardInput.WriteLine(@"cscript //nologo c:\ConvertDoc2PDF.js c:\test.doc c:\");
proc.StandardInput.WriteLine("exit");
proc.WaitForExit();
}
private void button1_Click(object sender, System.EventArgs e)
{
Thread thConvert = new Thread(new ThreadStart(StartConvertData));
thConvert.Start();
}
PS:
Download Adobe Acrobat 7.0 Professional,postscript.exe,gs811w32.exe
web : itbaby.jss.cn
email : zerodj@163.com,javasuki@itbaby.jss.cn
|
|
|
|
|
there is a error when i run my prog. it says "A namespace does not directly contain members such as fields or methods" the error is with "writeID" can anyone help?? thanks
private void cmdWrite_Click(object sender, EventArgs e);
}
writeID(txtTxmID0.Text.ToUpper(),txtTxmID1.Text.ToUpper(),txtTxmID2.Text.ToUpper(), txtTxmID3.Text.ToUpper(), txtTxmID4.Text.ToUpper(),txtTxmID5.Text.ToUpper());
}
|
|
|
|
|
}
writeID(txtTxmID0.Text.ToUpper(),txtTxmID1.Text.ToUpper(),txtTxmID2.Text.ToUpper(), txtTxmID3.Text.ToUpper(), txtTxmID4.Text.ToUpper(),txtTxmID5.Text.ToUpper());
}
->
{
writeID(txtTxmID0.Text.ToUpper(),txtTxmID1.Text.ToUpper(),txtTxmID2.Text.ToUpper(), txtTxmID3.Text.ToUpper(), txtTxmID4.Text.ToUpper(),txtTxmID5.Text.ToUpper());
}
The compiler already tell you you write someting in a namespace
|
|
|
|
|
I assume that this code segment appears as the very end of the class definition. Your errors are the semi colon at the end of the method declaration and the use of a closing bracket instead of an opening bracket immediately afterwards. Rewrite this as:
private void cmdWrite_Click(object sender, EventArgs e)
{
writeID(txtTxmID0.Text.ToUpper(),txtTxmID1.Text.ToUpper(),txtTxmID2.Text.ToUpper(), txtTxmID3.Text.ToUpper(), txtTxmID4.Text.ToUpper(),txtTxmID5.Text.ToUpper());
}
}
Deja View - the feeling that you've seen this post before.
|
|
|
|
|
After build the application , i want to copy the assembly from local bin folder to some xyz folder. I have created an Environment Variable the the Path, where the assembly needs to be copied. But unable to set that Environment variable in Post-Build evnt, something like
xcopy /y $(Targetpath) $<environment variable="">
Thanks
kumar
|
|
|
|
|
xcopy /Y "$(Targetpath).." "YourDirectory"
|
|
|
|
|
I would rather suggest that set the project option in such a way that are stored in common folder and then write a bat file which copies these assemblies to the required place !!!
Regards,
Jaiprakash M Bankolli
jaiprakash.bankolli@gmail.com
Blog: http://jaiprakash.blog.com/
Suggestions: http://jaitoimprove.blog.com/
|
|
|
|
|
Instead of Directory path as suggested by Martin and Jaiprakas'suggestion. I just want to specify Environment variable for my Targeted Path where i want to copy:
xcopy /y "$(TargetPath)" "[Environment Variable]"
Environment variable contains the Target directory path.
Thanks
kumar
|
|
|
|
|
How to Display data from Child form to Parent Form Control.
Sanjit.rajbanshi@wlinktech.com
|
|
|
|
|
Well, you mean pass data, I presume ? If the child is modal, just expose it as a property. Otherwise, use a delegate to pass it along.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
I would suggest that create a property and assign this property in the child form. Use parent property to display at the required place
Regards,
Jaiprakash M Bankolli
jaiprakash.bankolli@gmail.com
Blog: http://jaiprakash.blog.com/
Suggestions: http://jaitoimprove.blog.com/
|
|
|
|
|
one way of doing that.. is to declare a object of parent form on the client form and access the properties of of parent from child through that object and do whatever u want to do.
but u have to typecast that parent object on the child's parent object so that u get the same object reference
other way of doing it (i think) is through delegates
|
|
|
|
|
i use
[code]
string strQuery =
"USE HMDTest"
+ " \nGO"
+ " \nsp_addrole 'HMEmpManager'"
+ " \nGO"
+ " \nsp_addrole 'HMEmpViewer'";
SqlCommand sqlCom = new SqlCommand(strQuery, sqlCon);
sqlCom.ExecuteNonQuery();
[/code]
but it throw a exception with message: "incorrect syntax near 'GO'...", i need help, thanks.
|
|
|
|
|
The three queries are separate, so you must execute them with three statements.
Cheers,
Vikram.
"But nowadays, it means nothing. Features are never frozen, development keeps happening, bugs never get fixed, and documentation is something you might find on wikipedia."
- Marc Clifton on betas. Join the CP group at NationStates. Password: byalmightybob
|
|
|
|
|
I would suggest that write a SP and call that from Application .... here it will take two parameter <hmempmanager> and <hmempviewer>
Regards,
Jaiprakash M Bankolli
jaiprakash.bankolli@gmail.com
Blog: http://jaiprakash.blog.com/
Suggestions: http://jaitoimprove.blog.com/
|
|
|
|
|
Hi Everyone
I have One csv file that file is contains data like in this following format:
1aDOCSTART_3 |DOCTYPE BILL|
GENEVAVERSION 5.0
BILLSTYLE 2
BILLTYPE 1|
BILLTEMPLATE 3|
BILLSEQ 1|
BILLVERSION 1|
ACCCURRENCYCODE GBP|
BILLLANGID 1|
BILLLANGNAME English (UK)|
BILLLANGLOCALE en_GB|
PAYMETHODID 4
FORMATREQ TEST014/0001|
COPYBILLNUM 0|
BILLPURPOSE 1
BILLPURPOSENAME Master Bill|
ADDRESS1 11 Richmond Road
ADDRESS4 London|
ZIPCODE SW1V 1QP
COUNTRY United Kingdom|
BSTARTACCFADDR |
ACCFADDR_1 11 Richmond Road|
ACCFADDR_2 London|
ACCFADDR_3 SW1V 1QP|
ACCFADDR_4 United Kingdom|
BENDACCFADDR |
CUSTOMERREF TEST014
CUSTOMERTYPE UK Consumer Shop Customer|
ACCTAXSTATUS Exclusive|
INVOICINGCONAME Genie Mobile|
ACCOUNTNO TEST014
DEPOSIT 000|
CUSTCONTACTADDR1 11 Richmond Road|
CUSTCONTACTADDR4 London|
CUSTCONTACTZIP SW1V 1QP|
CUSTCONTACTCOUNTRY United Kingdom|
BSTARTCUSTFADDR |
CUSTFADDR_1 11 Richmond Road|
CUSTFADDR_2 London|
CUSTFADDR_3 SW1V 1QP|
CUSTFADDR_4 United Kingdom|
BENDCUSTFADDR |
PREPAY F|
BSTARTBFSTATEMENT |
BFSTATEMENTDATE 20030301|
BALFWD 000|
BSTARTBFPAYSUMMARY |
ACCBALPAYTOT 000|
ACCBALREFTOT 000|
ACCBALFPAYTOT 000|
ACCDEPPAYTOT 000|
ACCDEPREFTOT 000|
ACCDEPFPAYTOT 000|
ACCDEPPREVTOT 000|
ACCDEPCHANGE 000|
ACCDEPCURRTOT 000|
BENDBFPAYSUMMARY |
BALOUT 000|
CHARGES 9301|
NEWBAL 9301
BSTARTBFPAYDETAILS |
ACCDEPPREVTOT 000|
ACCDEPCHANGE 000|
ACCDEPCURRTOT 000|
BENDBFPAYDETAILS |
BENDBFSTATEMENT |
BILLREF TEST014-0001|
BILLDATE 20030301|
NEXTBILLDATE 20030401|
BSTARTPAYMENTDUEINFO |
PAYMENTDUEDATE 20030315|
DEBTSTARTDATE 20030301|
PAYMENTDUEDAYS 14|
BENDPAYMENTDUEINFO |
INVOICEACTUALDATE 20030301|
INVOICETAXDATE 20030301
INVOICESTART 20030201|
INVOICEEND 20030228|
TSTARTSAPROD |
1aSAPROD
Monthly Charges
1277
20030201
20030228
4
P
Online Data 5 (R2)
0
07787991003~
1
1
0
1
United Kingdom
TEST014
10000
1277
000
|
1aSAPROD
Monthly Charges
1277
20030301
20030331
4
P
Online Data 5 (R2)
0
07787991003~
1
1
0
1
United Kingdom
TEST014
10000
1277
000
|
1aSAPROD
Monthly Charges
2553
20030201
20030228
4
P
Online 200 (R2)
0
07787991003~
1
2
0
1
United Kingdom
TEST014
10000
2553
000
|
1aSAPROD
Monthly Charges
2553
20030301
20030331
4
P
Online 200 (R2)
0
07787991003~
1
2
0
1
United Kingdom
TEST014
10000
2553
000
|
TENDSAPROD |
TSTARTO2PRODSUMM |
1aO2PRODSUMM
2
20030201
20030228
3830
4|
1aO2PRODSUMM
2
20030301
20030331
3830
4|
TENDO2PRODSUMM |
O2PRODTOT 7660|
BSTARTPRODSTATUS |
PRODSTATUSCUSTOMERREF TEST014|
PRODSTATUSPRODUCTSEQ 1|
TSTARTPRODSTATUS |
PRODSTATUS OK,20030201,000000, , ,5, |
TENDPRODSTATUS |
BENDPRODSTATUS |
BSTARTPRODSTATUS |
PRODSTATUSCUSTOMERREF TEST014|
PRODSTATUSPRODUCTSEQ 2|
TSTARTPRODSTATUS |
PRODSTATUS OK,20030201,000000, , ,5, |
TENDPRODSTATUS |
BENDPRODSTATUS |
BSTARTPRODSTATUS |
PRODSTATUSCUSTOMERREF TEST014|
PRODSTATUSPRODUCTSEQ 3|
TSTARTPRODSTATUS |
PRODSTATUS OK,20030201,000000, , ,5, |
TENDPRODSTATUS |
BENDPRODSTATUS |
1aTSTARTEVENTS |
1aEVENTS
07787991003
256
256
000
4
UK Standard VAT Rate
0
07787991003~
1
Voice Calls
20030202
20030224
1
United Kingdom
|
TENDEVENTS |
O2EVENTSTOT 256|
NETTOTAL 7916|
NETSAVE 000|
BSTARTTAXDETAILS |
1aTSTARTTAXCODE |
TAXCODE
4
UK Standard VAT Rate
3
UK VAT
7916
20010423
1750
1385
000
9301
|
TENDTAXCODE |
1aTSTARTTAXTYPE |
TAXTYPE
3
UK VAT
1385
|
TENDTAXTYPE |
INVTOTALTAX 1385|
BENDTAXDETAILS |
INVTOTAL 9301|
INVTOTALROUNDED 9301|
TOTALSAVE 000|
BSTARTPRODUCTINFO |
PROD_LASTUPGRADEDATE 20030201|
PRODINFOPRODNAME Usage|
PRODINFOPRODSEQ 3|
PRODINFOBUDGETSEQ 1|
PRODINFOBUDGETNAME 07787991003~|
PRODINFOCUSTOMERREF TEST014|
PRODINFOSTARTDATE 20030201|
PRODINFOENDDATE 20030301|
PRODINFOOUTPUTREASONCODE 85|
BENDPRODUCTINFO |
TSTARTBUDGETCENTREKEY |
BUDGETCENTREKEY 1,07787991003~|
TENDBUDGETCENTREKEY |
BSTARTBUDGETCENTRESUMM |
TSTARTBUDGETCENTRE |
BUDGETCENTRE 07787991003~,1,1,000,7660,000,000,000,000,000,256,000,7916, , , , , , , , , , |
BUDGETCENTRE NULLBUDGETCENTRE,0,1,000,000,000,000,000,000,000,000,000,000, , , , , , , , , , |
TENDBUDGETCENTRE |
BUDGETCENTREINITTOT 000|
BUDGETCENTRERECURTOT 7660|
BUDGETCENTRETERMTOT 000|
BUDGETCENTREEARLYTERMTOT 000|
BUDGETCENTREREACTOT 000|
BUDGETCENTRESUSPRECURTOT 000|
BUDGETCENTRESUSPTOT 000|
BUDGETCENTREUSAGETOT 256|
BUDGETCENTREOTHERTOT 000|
BUDGETCENTRETOTAL 7916|
BENDBUDGETCENTRESUMM |
BSTARTO2BUDGETCENTRESUMM |
TSTARTO2BUDGETCENTRE |
1aO2BUDGETCENTRE
07787991003~
1
1
000
7660
000
000
000
000
000
256
000
7916
7660
7916|
1aO2BUDGETCENTRE
NULLBUDGETCENTRE
0
1
000
000
000
000
000
000
000
000
000
000
000
000|
TENDO2BUDGETCENTRE |
O2BUDGETCENTREINITTOT 000|
O2BUDGETCENTRERECURTOT 7660|
O2BUDGETCENTRETERMTOT 000|
O2BUDGETCENTREEARLYTERMTOT 000|
O2BUDGETCENTREACTOT 000|
O2BUDGETCENTRESUSPRECURTOT 000|
O2BUDGETCENTRESUSPTOT 000|
O2BUDGETCENTREUSAGETOT 256|
O2BUDGETCENTREOTHERTOT 000|
O2BUDGETCENTRETOTAL 7916|
BENDO2BUDGETCENTRESUMM |
O2BUDGETCENTRECOUNT 1|
1aBSTARTPRODITEM |
PRODNAME |
BSTARTITEM_1 |
RATINGTARIFF_1 O2 Leisure Time Plus|
BSTARTEVENTLIST_1 |
EVSOURCE_1 07787991003|
EVENTSTEXT_1 Voice Calls|
EVTOTALITEM_1 0000|
EVCOMPTOTALITEM_1 0000|
EVINTTOTALITEM_1 0000|
EVEXTTOTALITEM_1 0000|
EVTOTALNOTITEM_1 2560|
EVCOMPTOTALNOTITEM_1 0900|
EVINTTOTALNOTITEM_1 0000|
EVEXTTOTALNOTITEM_1 0000|
EVTOTAL_1 256|
EVCOMPTOTAL_1 090|
EVINTTOTAL_1 000|
EVEXTTOTAL_1 000|
BENDEVENTLIST_1 |
BENDITEM_1 |
TOTALEVCOST 256|
TOTALSAVING 000|
BENDPRODITEM |
1aBSTARTPRODITEM |
PRODNAME |
TSTARTRATINGDISCOUNTUSAGE |
RATINGDISCOUNTUSAGE TEST014,1,Monthly Charges,Online 5 Mb Data,5 Mb GPRS allowance for Online Data 5 (RTD), ,20030301,20030331,0,5120,0,000,0,0,000,8, , |
RATINGDISCOUNTUSAGE TEST014,1,Monthly Charges,Online 5 Mb Data,5 Mb GPRS allowance for Online Data 5 (RTD), ,20030201,20030228,0,5120,0,000,0,0,000,8, , |
TENDRATINGDISCOUNTUSAGE |
TOTALEVCOST 000|
TOTALSAVING 000|
BENDPRODITEM |
1aBSTARTPRODITEM |
PRODNAME |
TSTARTRATINGDISCOUNTUSAGE |
RATINGDISCOUNTUSAGE TEST014,2,Monthly Charges,Online 500 Free Minutes WAP,Online free WAP 500 mins (RTD), ,20030301,20030331,0 hours 0 minutes 0 seconds, 8 hours 20 minutes ,0 hours 0 minutes 0 seconds,000,0 hours 0 minutes 0 seconds,0 hours 0 minutes 0 seconds,000,1, , |
RATINGDISCOUNTUSAGE TEST014,2,Monthly Charges,Online 500 Free Minutes WAP,Online free WAP 500 mins (RTD), ,20030201,20030228,0 hours 0 minutes 0 seconds, 8 hours 20 minutes ,0 hours 0 minutes 0 seconds,000,0 hours 0 minutes 0 seconds,0 hours 0 minutes 0 seconds,000,1, , |
RATINGDISCOUNTUSAGE TEST014,2,Monthly Charges,Online 200 Free Minutes,Online 200 Free Minutes (RTD), ,20030301,20030331,0 hours 0 minutes 0 seconds, 3 hours 20 minutes ,0 hours 0 minutes 0 seconds,000,0 hours 0 minutes 0 seconds,0 hours 0 minutes 0 seconds,000,1, , |
RATINGDISCOUNTUSAGE TEST014,2,Monthly Charges,Online 200 Free Minutes,Online 200 Free Minutes (RTD), ,20030201,20030228, 12 hours 33 minutes 21 seconds,0 hours 0 minutes 0 seconds, 3 hours 20 minutes ,1388, 12 hours 33 minutes 21 seconds, 3 hours 20 minutes ,1388,1, , |
RATINGDISCOUNTUSAGE TEST014,2,Monthly Charges,2 Mb GPRS,2 Mb GPRS (RTD), ,20030301,20030331,0,2048,0,000,0,0,000,8, , |
RATINGDISCOUNTUSAGE TEST014,2,Monthly Charges,2 Mb GPRS,2 Mb GPRS (RTD), ,20030201,20030228,0,2048,0,000,0,0,000,8, , |
RATINGDISCOUNTUSAGE TEST014,2,Monthly Charges,500 Free Text Messages,500 Free SMS Messages (RTD), ,20030301,20030331,0,500,0,000,0,0,000,2, , |
RATINGDISCOUNTUSAGE TEST014,2,Monthly Charges,500 Free Text Messages,500 Free SMS Messages (RTD), ,20030201,20030228,0,500,0,000,0,0,000,2, , |
TENDRATINGDISCOUNTUSAGE |
TOTALEVCOST 000|
TOTALSAVING 000|
BENDPRODITEM |
1aBSTARTO2RTDUSAGE |
1aTSTARTO2RTDBC_1 |
1aTSTARTO2RTDUSAGEEVT_8 |
1aO2RTDUSAGE
TEST014
1
Monthly Charges
Online 5 Mb Data
5 Mb GPRS allowance for Online Data 5 (RTD)
20030201
20030228
0
5120
0
000
0
0
000
8
5120
5120
1|
1aO2RTDUSAGE
TEST014
2
Monthly Charges
2 Mb GPRS
2 Mb GPRS (RTD)
20030201
20030228
0
2048
0
000
0
0
000
8
2048
2048
1|
TENDO2RTDUSAGEEVT_8 |
O2RTDTOTALEVT_8
0
7168
0
000
0
0
000
7168
7168
1|
1aTSTARTO2RTDUSAGEEVT_1 |
1aO2RTDUSAGE
TEST014
2
Monthly Charges
Online 500 Free Minutes WAP
Online free WAP 500 mins (RTD)
20030201
20030228
00:00:00
08:20:00
00:00:00
000
00:00:00
00:00:00
000
1
08:20:00
08:20:00
1|
1aO2RTDUSAGE
TEST014
2
Monthly Charges
Online 200 Free Minutes
Online 200 Free Minutes (RTD)
20030201
20030228
12:33:21
00:00:00
03:20:00
1388
12:33:21
03:20:00
1388
1
03:20:00
03:20:00
1|
TENDO2RTDUSAGEEVT_1 |
O2RTDTOTALEVT_1
12:33:21
08:20:00
03:20:00
1388
12:33:21
03:20:00
1388
11:40:00
11:40:00
1|
1aTSTARTO2RTDUSAGEEVT_2 |
1aO2RTDUSAGE
TEST014
2
Monthly Charges
500 Free Text Messages
500 Free SMS Messages (RTD)
20030201
20030228
0
500
0
000
0
0
000
2
500
500
1|
TENDO2RTDUSAGEEVT_2 |
O2RTDTOTALEVT_2
0
500
0
000
0
0
000
500
500
1|
TENDO2RTDBC_1 |
O2TOTALMONEYSAVEDBC_1 1388|
O2TOTALMONEYSAVED 1388|
BENDO2RTDUSAGE |
PERIODEND 20030301|
POINTSBALANCE 0|
POINTSEARNED 0|
POINTSREDEEMED 0|
POINTSADJUST 0|
NEWPOINTSBALANCE 0|
DOCEND |
1aDOCSTART_3 |DOCTYPE BILL|
GENEVAVERSION 5.0
BILLSTYLE 2
BILLTYPE 1|
BILLTEMPLATE 3|
BILLSEQ 1|
BILLVERSION 1|
ACCCURRENCYCODE GBP|
BILLLANGID 1|
BILLLANGNAME English (UK)|
BILLLANGLOCALE en_GB|
PAYMETHODID 2
FORMATREQ TEST027/0001|
COPYBILLNUM 0|
BILLPURPOSE 1
BILLPURPOSENAME Master Bill|
BUSINESSNAME Testing Client 027|
ADDRESS1 4 Richmond Road
ADDRESS4 London|
ZIPCODE SW1V 1QP
COUNTRY United Kingdom|
BSTARTACCFADDR |
ACCFADDR_1 4 Richmond Road|
ACCFADDR_2 London|
ACCFADDR_3 SW1V 1QP|
ACCFADDR_4 United Kingdom|
BENDACCFADDR |
CUSTOMERREF TEST027
CUSTOMERTYPE Business - SME|
ACCTAXSTATUS Exclusive|
INVOICINGCONAME O2 UK|
ACCOUNTNO TEST027
DEPOSIT 000|
CUSTCONTACTADDR1 4 Richmond Road|
CUSTCONTACTADDR4 London|
CUSTCONTACTZIP SW1V 1QP|
CUSTCONTACTCOUNTRY United Kingdom|
BSTARTCUSTFADDR |
CUSTFADDR_1 4 Richmond Road|
CUSTFADDR_2 London|
CUSTFADDR_3 SW1V 1QP|
CUSTFADDR_4 United Kingdom|
BENDCUSTFADDR |
PREPAY F|
BSTARTBFSTATEMENT |
BFSTATEMENTDATE 20030301|
BALFWD 000|
BSTARTBFPAYSUMMARY |
ACCBALPAYTOT 000|
ACCBALREFTOT 000|
ACCBALFPAYTOT 000|
ACCDEPPAYTOT 000|
ACCDEPREFTOT 000|
ACCDEPFPAYTOT 000|
ACCDEPPREVTOT 000|
ACCDEPCHANGE 000|
ACCDEPCURRTOT 000|
BENDBFPAYSUMMARY |
BALOUT 000|
CHARGES 15423|
NEWBAL 15423
BSTARTBFPAYDETAILS |
ACCDEPPREVTOT 000|
ACCDEPCHANGE 000|
ACCDEPCURRTOT 000|
BENDBFPAYDETAILS |
BENDBFSTATEMENT |
BILLREF TEST027-0001|
BILLDATE 20030301|
NEXTBILLDATE 20030401|
BSTARTPAYMENTDUEINFO |
PAYMENTDUEDATE 20030315|
DEBTSTARTDATE 20030301|
PAYMENTDUEDAYS 14|
BENDPAYMENTDUEINFO |
INVOICEACTUALDATE 20030301|
INVOICETAXDATE 20030301
INVOICESTART 20030201|
INVOICEEND 20030228|
TSTARTCONTRACT |
CONTRACT TEST027,Mighty Schema, ,Fixed contract,20030201,20050131,2,Y, , , , , |
TENDCONTRACT |
TSTARTSAPROD |
1aSAPROD
Monthly Charges
5500
20030201
20030228
4
P
O2 Business Option Surf 50 Mb
0
07787991215~
1
1
0
2
O2 UK
TEST027
10000
Mighty Schema
5500
000
|
1aSAPROD
Monthly Charges
5500
20030301
20030331
4
P
O2 Business Option Surf 50 Mb
0
07787991215~
1
1
0
2
O2 UK
TEST027
10000
Mighty Schema
5500
000
|
TENDSAPROD |
TSTARTO2PRODSUMM |
1aO2PRODSUMM
1
20030201
20030228
5500
4|
1aO2PRODSUMM
1
20030301
20030331
5500
4|
TENDO2PRODSUMM |
O2PRODTOT 11000|
BSTARTPRODSTATUS |
PRODSTATUSCUSTOMERREF TEST027|
PRODSTATUSPRODUCTSEQ 1|
TSTARTPRODSTATUS |
PRODSTATUS OK,20030201,000000, , ,5, |
TENDPRODSTATUS |
BENDPRODSTATUS |
BSTARTPRODSTATUS |
PRODSTATUSCUSTOMERREF TEST027|
PRODSTATUSPRODUCTSEQ 2|
TSTARTPRODSTATUS |
PRODSTATUS OK,20030201,000000, , ,5, |
TENDPRODSTATUS |
BENDPRODSTATUS |
1aTSTARTEVENTS |
1aEVENTS
07787991215
2126
2126
000
4
UK Standard VAT Rate
0
07787991215~
1
Voice Calls
20030206
20030226
2
O2 UK
|
TENDEVENTS |
O2EVENTSTOT 2126|
NETTOTAL 13126|
NETSAVE 000|
BSTARTTAXDETAILS |
1aTSTARTTAXCODE |
TAXCODE
4
UK Standard VAT Rate
3
UK VAT
13126
20010423
1750
2297
000
15423
|
TENDTAXCODE |
1aTSTARTTAXTYPE |
TAXTYPE
3
UK VAT
2297
|
TENDTAXTYPE |
INVTOTALTAX 2297|
BENDTAXDETAILS |
INVTOTAL 15423|
INVTOTALROUNDED 15423|
TOTALSAVE 000|
BSTARTPRODUCTINFO |
PROD_LASTUPGRADEDATE 20030201|
PRODINFOPRODNAME Usage|
PRODINFOPRODSEQ 2|
PRODINFOBUDGETSEQ 1|
PRODINFOBUDGETNAME 07787991215~|
PRODINFOCUSTOMERREF TEST027|
PRODINFOSTARTDATE 20030201|
PRODINFOENDDATE 20030301|
PRODINFOOUTPUTREASONCODE 85|
BENDPRODUCTINFO |
TSTARTBUDGETCENTREKEY |
BUDGETCENTREKEY 1,07787991215~|
TENDBUDGETCENTREKEY |
BSTARTBUDGETCENTRESUMM |
TSTARTBUDGETCENTRE |
BUDGETCENTRE 07787991215~,1,1,000,11000,000,000,000,000,000,2126,000,13126, , , , , , , , , , |
BUDGETCENTRE NULLBUDGETCENTRE,0,1,000,000,000,000,000,000,000,000,000,000, , , , , , , , , , |
TENDBUDGETCENTRE |
BUDGETCENTREINITTOT 000|
BUDGETCENTRERECURTOT 11000|
BUDGETCENTRETERMTOT 000|
BUDGETCENTREEARLYTERMTOT 000|
BUDGETCENTREREACTOT 000|
BUDGETCENTRESUSPRECURTOT 000|
BUDGETCENTRESUSPTOT 000|
BUDGETCENTREUSAGETOT 2126|
BUDGETCENTREOTHERTOT 000|
BUDGETCENTRETOTAL 13126|
BENDBUDGETCENTRESUMM |
BSTARTO2BUDGETCENTRESUMM |
TSTARTO2BUDGETCENTRE |
1aO2BUDGETCENTRE
07787991215~
1
1
000
11000
000
000
000
000
000
2126
000
13126
11000
13126|
1aO2BUDGETCENTRE
NULLBUDGETCENTRE
0
1
000
000
000
000
000
000
000
000
000
000
000
000|
TENDO2BUDGETCENTRE |
O2BUDGETCENTREINITTOT 000|
O2BUDGETCENTRERECURTOT 11000|
O2BUDGETCENTRETERMTOT 000|
O2BUDGETCENTREEARLYTERMTOT 000|
O2BUDGETCENTREACTOT 000|
O2BUDGETCENTRESUSPRECURTOT 000|
O2BUDGETCENTRESUSPTOT 000|
O2BUDGETCENTREUSAGETOT 2126|
O2BUDGETCENTREOTHERTOT 000|
O2BUDGETCENTRETOTAL 13126|
BENDO2BUDGETCENTRESUMM |
O2BUDGETCENTRECOUNT 1|
1aBSTARTPRODITEM |
PRODNAME |
BSTARTITEM_1 |
RATINGTARIFF_1 Business First|
BSTARTEVENTLIST_1 |
EVSOURCE_1 07787991215|
EVENTSTEXT_1 Voice Calls|
EVTOTALITEM_1 0000|
EVCOMPTOTALITEM_1 0000|
EVINTTOTALITEM_1 0000|
EVEXTTOTALITEM_1 0000|
EVTOTALNOTITEM_1 21260|
EVCOMPTOTALNOTITEM_1 0900|
EVINTTOTALNOTITEM_1 0000|
EVEXTTOTALNOTITEM_1 0000|
EVTOTAL_1 2126|
EVCOMPTOTAL_1 090|
EVINTTOTAL_1 000|
EVEXTTOTAL_1 000|
BENDEVENTLIST_1 |
BENDITEM_1 |
TOTALEVCOST 2126|
TOTALSAVING 000|
BENDPRODITEM |
1aBSTARTPRODITEM |
PRODNAME |
TSTARTRATINGDISCOUNTUSAGE |
RATINGDISCOUNTUSAGE TEST027,1,Monthly Charges,Surf 50 Mb All Day 1 mth Rollover,Surf 50 Mb All Day 1 mth Rollover, ,20030301,20030331,0,102400,0,000,0,0,000,8, , |
RATINGDISCOUNTUSAGE TEST027,1,Monthly Charges,Surf 50 Mb All Day 1 mth Rollover,Surf 50 Mb All Day 1 mth Rollover, ,20030201,20030228,0,51200,0,000,0,0,000,8, , |
TENDRATINGDISCOUNTUSAGE |
TOTALEVCOST 000|
TOTALSAVING 000|
BENDPRODITEM |
1aBSTARTO2RTDUSAGE |
1aTSTARTO2RTDBC_1 |
1aTSTARTO2RTDUSAGEEVT_8 |
1aO2RTDUSAGE
TEST027
1
Monthly Charges
Surf 50 Mb All Day 1 mth Rollover
Surf 50 Mb All Day 1 mth Rollover
20030201
20030228
0
51200
0
000
0
0
000
8
51200
102400
1|
TENDO2RTDUSAGEEVT_8 |
O2RTDTOTALEVT_8
0
51200
0
000
0
0
000
51200
102400
1|
TENDO2RTDBC_1 |
O2TOTALMONEYSAVEDBC_1 1388|
O2TOTALMONEYSAVED 1388|
BENDO2RTDUSAGE |
PERIODEND 20030301|
POINTSBALANCE 0|
POINTSEARNED 0|
POINTSREDEEMED 0|
POINTSADJUST 0|
NEWPOINTSBALANCE 0|
DOCEND |
1aDOCSTART_3 |DOCTYPE BILL|
GENEVAVERSION 5.0
BILLSTYLE 2
BILLTYPE 1|
BILLTEMPLATE 3|
BILLSEQ 1|
BILLVERSION 1|
ACCCURRENCYCODE GBP|
BILLLANGID 1|
BILLLANGNAME English (UK)|
BILLLANGLOCALE en_GB|
PAYMETHODID 4
FORMATREQ TEST029a/0001|
COPYBILLNUM 0|
BILLPURPOSE 1
BILLPURPOSENAME Master Bill|
BUSINESSNAME Testing Client 029|
ADDRESS1 6 Richmond Road
ADDRESS4 London|
ZIPCODE SW1V 1QP
COUNTRY United Kingdom|
BSTARTACCFADDR |
ACCFADDR_1 6 Richmond Road|
ACCFADDR_2 London|
ACCFADDR_3 SW1V 1QP|
ACCFADDR_4 United Kingdom|
BENDACCFADDR |
CUSTOMERREF TEST029
CUSTOMERTYPE Business - SME|
ACCTAXSTATUS Exclusive|
INVOICINGCONAME O2 UK|
ACCOUNTNO TEST029a
DEPOSIT 000|
CUSTCONTACTADDR1 6 Richmond Road|
CUSTCONTACTADDR4 London|
CUSTCONTACTZIP SW1V 1QP|
CUSTCONTACTCOUNTRY United Kingdom|
BSTARTCUSTFADDR |
CUSTFADDR_1 6 Richmond Road|
CUSTFADDR_2 London|
CUSTFADDR_3 SW1V 1QP|
CUSTFADDR_4 United Kingdom|
BENDCUSTFADDR |
PREPAY F|
BSTARTBFSTATEMENT |
BFSTATEMENTDATE 20030301|
BALFWD 000|
BSTARTBFPAYSUMMARY |
ACCBALPAYTOT 000|
ACCBALREFTOT 000|
ACCBALFPAYTOT 000|
ACCDEPPAYTOT 000|
ACCDEPREFTOT 000|
ACCDEPFPAYTOT 000|
ACCDEPPREVTOT 000|
ACCDEPCHANGE 000|
ACCDEPCURRTOT 000|
BENDBFPAYSUMMARY |
BALOUT 000|
CHARGES 7010|
NEWBAL 7010
BSTARTBFPAYDETAILS |
ACCDEPPREVTOT 000|
ACCDEPCHANGE 000|
ACCDEPCURRTOT 000|
BENDBFPAYDETAILS |
BENDBFSTATEMENT |
BILLREF TEST029a-0001|
BILLDATE 20030301|
NEXTBILLDATE 20030401|
BSTARTPAYMENTDUEINFO |
PAYMENTDUEDATE 20030315|
DEBTSTARTDATE 20030301|
PAYMENTDUEDAYS 14|
BENDPAYMENTDUEINFO |
INVOICEACTUALDATE 20030301|
INVOICETAXDATE 20030301
INVOICESTART 20030201|
INVOICEEND 20030228|
TSTARTSAPROD |
1aSAPROD
Monthly Charges
2553
20030201
20030228
4
P
Online 200 (R2)
0
07787991212~
1
4
0
2
O2 UK
TEST029
10000
2553
000
|
1aSAPROD
Monthly Charges
2553
20030301
20030331
4
P
Online 200 (R2)
0
07787991212~
1
4
0
2
O2 UK
TEST029
10000
2553
000
|
TENDSAPROD |
TSTARTO2PRODSUMM |
1aO2PRODSUMM
1
20030201
20030228
2553
4|
1aO2PRODSUMM
1
20030301
20030331
2553
4|
TENDO2PRODSUMM |
O2PRODTOT 5106|
BSTARTPRODSTATUS |
PRODSTATUSCUSTOMERREF TEST029|
PRODSTATUSPRODUCTSEQ 4|
TSTARTPRODSTATUS |
PRODSTATUS OK,20030201,000000, , ,5, |
TENDPRODSTATUS |
BENDPRODSTATUS |
BSTARTPRODSTATUS |
PRODSTATUSCUSTOMERREF TEST029|
PRODSTATUSPRODUCTSEQ 5|
TSTARTPRODSTATUS |
PRODSTATUS OK,20030201,000000, , ,5, |
TENDPRODSTATUS |
BENDPRODSTATUS |
1aTSTARTEVENTS |
1aEVENTS
07787991212
860
860
000
4
UK Standard VAT Rate
0
07787991212~
1
Voice Calls
20030202
20030226
2
O2 UK
|
TENDEVENTS |
O2EVENTSTOT 860|
NETTOTAL 5966|
NETSAVE 000|
BSTARTTAXDETAILS |
1aTSTARTTAXCODE |
TAXCODE
4
UK Standard VAT Rate
3
UK VAT
5966
20010423
1750
1044
000
7010
|
TENDTAXCODE |
1aTSTARTTAXTYPE |
TAXTYPE
3
UK VAT
1044
|
TENDTAXTYPE |
INVTOTALTAX 1044|
BENDTAXDETAILS |
INVTOTAL 7010|
INVTOTALROUNDED 7010|
TOTALSAVE 000|
BSTARTPRODUCTINFO |
PROD_LASTUPGRADEDATE 20030201|
PRODINFOPRODNAME Usage|
PRODINFOPRODSEQ 5|
PRODINFOBUDGETSEQ 1|
PRODINFOBUDGETNAME 07787991212~|
PRODINFOCUSTOMERREF TEST029|
PRODINFOSTARTDATE 20030201|
PRODINFOENDDATE 20030301|
PRODINFOOUTPUTREASONCODE 85|
BENDPRODUCTINFO |
TSTARTBUDGETCENTREKEY |
BUDGETCENTREKEY 1,07787991212~|
TENDBUDGETCENTREKEY |
BSTARTBUDGETCENTRESUMM |
TSTARTBUDGETCENTRE |
BUDGETCENTRE 07787991212~,1,1,000,5106,000,000,000,000,000,860,000,5966, , , , , , , , , , |
BUDGETCENTRE NULLBUDGETCENTRE,0,1,000,000,000,000,000,000,000,000,000,000, , , , , , , , , , |
TENDBUDGETCENTRE |
BUDGETCENTREINITTOT 000|
BUDGETCENTRERECURTOT 5106|
BUDGETCENTRETERMTOT 000|
BUDGETCENTREEARLYTERMTOT 000|
BUDGETCENTREREACTOT 000|
BUDGETCENTRESUSPRECURTOT 000|
BUDGETCENTRESUSPTOT 000|
BUDGETCENTREUSAGETOT 860|
BUDGETCENTREOTHERTOT 000|
BUDGETCENTRETOTAL 5966|
BENDBUDGETCENTRESUMM |
BSTARTO2BUDGETCENTRESUMM |
TSTARTO2BUDGETCENTRE |
1aO2BUDGETCENTRE
07787991212~
1
1
000
5106
000
000
000
000
000
860
000
5966
5106
5966|
1aO2BUDGETCENTRE
NULLBUDGETCENTRE
0
1
000
000
000
000
000
000
000
000
000
000
000
000|
TENDO2BUDGETCENTRE |
O2BUDGETCENTREINITTOT 000|
O2BUDGETCENTRERECURTOT 5106|
O2BUDGETCENTRETERMTOT 000|
O2BUDGETCENTREEARLYTERMTOT 000|
O2BUDGETCENTREACTOT 000|
O2BUDGETCENTRESUSPRECURTOT 000|
O2BUDGETCENTRESUSPTOT 000|
O2BUDGETCENTREUSAGETOT 860|
O2BUDGETCENTREOTHERTOT 000|
O2BUDGETCENTRETOTAL 5966|
BENDO2BUDGETCENTRESUMM |
O2BUDGETCENTRECOUNT 1|
1aBSTARTPRODITEM |
PRODNAME |
BSTARTITEM_1 |
RATINGTARIFF_1 Business First|
BSTARTEVENTLIST_1 |
EVSOURCE_1 07787991212|
EVENTSTEXT_1 Voice Calls|
EVTOTALITEM_1 0000|
EVCOMPTOTALITEM_1 0000|
EVINTTOTALITEM_1 0000|
EVEXTTOTALITEM_1 0000|
EVTOTALNOTITEM_1 8600|
EVCOMPTOTALNOTITEM_1 0900|
EVINTTOTALNOTITEM_1 0000|
EVEXTTOTALNOTITEM_1 0000|
EVTOTAL_1 860|
EVCOMPTOTAL_1 090|
EVINTTOTAL_1 000|
EVEXTTOTAL_1 000|
BENDEVENTLIST_1 |
BENDITEM_1 |
TOTALEVCOST 860|
TOTALSAVING 000|
BENDPRODITEM |
1aBSTARTPRODITEM |
PRODNAME |
TSTARTRATINGDISCOUNTUSAGE |
RATINGDISCOUNTUSAGE TEST029,4,Monthly Charges,Online 500 Free Minutes WAP,Online free WAP 500 mins (RTD), ,20030301,20030331,0 hours 0 minutes 0 seconds, 8 hours 20 minutes ,0 hours 0 minutes 0 seconds,000,0 hours 0 minutes 0 seconds,0 hours 0 minutes 0 seconds,000,1, , |
RATINGDISCOUNTUSAGE TEST029,4,Monthly Charges,Online 500 Free Minutes WAP,Online free WAP 500 mins (RTD), ,20030201,20030228,0 hours 0 minutes 0 seconds, 8 hours 20 minutes ,0 hours 0 minutes 0 seconds,000,0 hours 0 minutes 0 seconds,0 hours 0 minutes 0 seconds,000,1, , |
RATINGDISCOUNTUSAGE TEST029,4,Monthly Charges,Online 200 Free Minutes,Online 200 Free Minutes (RTD), ,20030301,20030331,0 hours 0 minutes 0 seconds, 3 hours 20 minutes ,0 hours 0 minutes 0 seconds,000,0 hours 0 minutes 0 seconds,0 hours 0 minutes 0 seconds,000,1, , |
RATINGDISCOUNTUSAGE TEST029,4,Monthly Charges,Online 200 Free Minutes,Online 200 Free Minutes (RTD), ,20030201,20030228, 16 hours 07 minutes 27 seconds,0 hours 0 minutes 0 seconds, 3 hours 20 minutes ,1404, 16 hours 07 minutes 27 seconds, 3 hours 20 minutes ,1404,1, , |
RATINGDISCOUNTUSAGE TEST029,4,Monthly Charges,2 Mb GPRS,2 Mb GPRS (RTD), ,20030301,20030331,0,2048,0,000,0,0,000,8, , |
RATINGDISCOUNTUSAGE TEST029,4,Monthly Charges,2 Mb GPRS,2 Mb GPRS (RTD), ,20030201,20030228,0,2048,0,000,0,0,000,8, , |
RATINGDISCOUNTUSAGE TEST029,4,Monthly Charges,500 Free Text Messages,500 Free SMS Messages (RTD), ,20030301,20030331,0,500,0,000,0,0,000,2, , |
RATINGDISCOUNTUSAGE TEST029,4,Monthly Charges,500 Free Text Messages,500 Free SMS Messages (RTD), ,20030201,20030228,0,500,0,000,0,0,000,2, , |
TENDRATINGDISCOUNTUSAGE |
TOTALEVCOST 000|
TOTALSAVING 000|
BENDPRODITEM |
1aBSTARTO2RTDUSAGE |
1aTSTARTO2RTDBC_1 |
1aTSTARTO2RTDUSAGEEVT_1 |
1aO2RTDUSAGE
TEST029
4
Monthly Charges
Online 500 Free Minutes WAP
Online free WAP 500 mins (RTD)
20030201
20030228
00:00:00
08:20:00
00:00:00
000
00:00:00
00:00:00
000
1
08:20:00
08:20:00
1|
1aO2RTDUSAGE
TEST029
4
Monthly Charges
Online 200 Free Minutes
Online 200 Free Minutes (RTD)
20030201
20030228
16:07:27
00:00:00
03:20:00
1404
16:07:27
03:20:00
1404
1
03:20:00
03:20:00
1|
TENDO2RTDUSAGEEVT_1 |
O2RTDTOTALEVT_1
16:07:27
08:20:00
03:20:00
1404
16:07:27
03:20:00
1404
11:40:00
11:40:00
1|
1aTSTARTO2RTDUSAGEEVT_8 |
1aO2RTDUSAGE
TEST029
4
Monthly Charges
2 Mb GPRS
2 Mb GPRS (RTD)
20030201
20030228
0
2048
0
000
0
0
000
8
2048
2048
1|
TENDO2RTDUSAGEEVT_8 |
O2RTDTOTALEVT_8
0
2048
0
000
0
0
000
2048
2048
1|
1aTSTARTO2RTDUSAGEEVT_2 |
1aO2RTDUSAGE
TEST029
4
Monthly Charges
500 Free Text Messages
500 Free SMS Messages (RTD)
20030201
20030228
0
500
0
000
0
0
000
2
500
500
1|
TENDO2RTDUSAGEEVT_2 |
O2RTDTOTALEVT_2
0
500
0
000
0
0
000
500
500
1|
TENDO2RTDBC_1 |
O2TOTALMONEYSAVEDBC_1 1404|
O2TOTALMONEYSAVED 1404|
BENDO2RTDUSAGE |
PERIODEND 20030301|
POINTSBALANCE 0|
POINTSEARNED 0|
POINTSREDEEMED 0|
POINTSADJUST 0|
NEWPOINTSBALANCE 0|
DOCEND |
Iam facing a lot of problem to parse this file into XML file.
Please anyone suggest me, how to convert to this file into XMl.
If u send the code that is more helpful.
please send me as soon as possible.
I hope i will get positive replies from you
Thanks&Regards
RENU
|
|
|
|
|
DON345 wrote: Iam facing a lot of problem to parse this file into XML file.
I am sure, everybody will have problems reading this file. BTW is this a single record or multiple records ? Also my understanding about CSV (Comma Seperated Values) is comma seperated fields and new line seperated records. Is the file in same format ? Or even this file can be called as CSV ?
"A good programmer is someone who looks both ways before crossing a one-way street." -- Doug Linder
coolestCoder
|
|
|
|
|