Adding Telephone number fields to XML and CSV files in JAVA

geosecreigui

New Member
I need to add the following fields in a program\[code\]Field Name: ---- Backbone Mapping: ---- Type:Toll Free Number - SCAddress.AFTollFreeNumber String[20] Secondary Phone Number : SCAddress.AFSecondaryPhone String[20] \[/code\]I need to add this to the PersonPartiesLoaderSpec.xml file and the PersonPartyData.csv fileHere is the XML File I am supposed to insert the two new fields after communciatinsMode, but I am not sure of the syntax\[code\]<source name="load_file" class="delimited_file_parser"> <property name="filename" value="http://stackoverflow.com/questions/14061313/${FILENAME}"/> <property name="delimiters" value="http://stackoverflow.com/questions/14061313/,"/> <property name="headerRows" value="http://stackoverflow.com/questions/14061313/0"/> <property name="quote_chars" value="http://stackoverflow.com/questions/14061313/""/> <indexed_field name="taxId" index="0"/> <indexed_field name="contactType" index="1" translator="contact_type_translator"/> <indexed_field name="street1" index="2"/> <indexed_field name="street2" index="3"/> <indexed_field name="city" index="4"/> <indexed_field name="state" index="5" translator="jurisdiction_translator"/> <indexed_field name="country" index="6" translator="country_translator"/> <indexed_field name="zipCode" index="7"/> <indexed_field name="emailAddress" index="8"/> <indexed_field name="phoneNumber" index="9"/> <indexed_field name="cellPhone" index="10"/> <indexed_field name="faxNumber" index="11"/> <indexed_field name="communicationMode" index="12" translator="communication_mode_translator"/></source>\[/code\]And then enter in the corresponding information in the PersonPartyData.csv file at the endHere is the part of the PersonPartyData.csv file that needs it to be added to, but I am not sure of the syntax\[code\]Name Prefix,First Name,Middle Name,Last Name,Preferred Name,Name Suffix,Date of Birth,Gender,SSN,Ethnicity,Role1,Role2,Contact Type,Address Line 1,Address Line 2,City,State, Country, ZipCode, Email Address,Phone Number, Cell Phone,Fax Number,Communication Mode to try first,Party Status,Status Reason,Status Start Date,Status End Date,\[/code\]Can Somebody please help me with how to insert this for my project????What does "SCAddress.AFTollFreeNumber" mean??
 
Back
Top