Dear Experts,
I need your valuable help on achieving my mapping requirement. My Source & Target structure is same like mentioned below
MT_SOAP_Response
--->Family Id
--> Feature ID
--->content set
---->Feature Id
-----> Description.
My source system will send the all the family id and feature id's along with it's description.
I have 2 requirements
1)Selecting the Family ID & Feature ID it details from the entire source feed and populate below Family ID's
(
MD-,BS-,EN-,TR-,PAA,SW1,#T#,000) and along with it's feature details
I am able to populate Family node having selected family id's and it's feature id's using below UDF.
for(int i=0; i<id.length; i++)
{
if( id[i].equals("MD-") || id[i].equals("BS-") || id[i].equals("EN-") || id[i].equals("TR-") || id[i].equals("PAA" ) || id[i].equals("SW1") || id[i].equals("#T#") || id[i].equals("000"))
{
result.addValue("");
}
else
result.addValue(ResultList.SUPPRESS);
}
I am able to achieve my first requirement with out having any issues, I am facing issue on the 2nd requirement.
2)Need to populate the feature id's and it's descriptions of of slected family id's(
(
MD-,BS-,EN-,TR-,PAA,SW1,#T#,000)
from the source feed i will receive all the feature id's description.
I need to populate feature id' and descriptions of slected family id's which mentioned above(
(
MD-,BS-,EN-,TR-,PAA,SW1,#T#,000) .
Kindly suggest me how i can achieve my requirement.
Source XML. feed.
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Header/>
<SOAP:Body>
<ns2:MT_SOAP_Response xmlns:ns2="http://Gforce_POC_Retrive_Catalog_Codes">
<catalogid id="WANAB-TFC-2016-F-150"/>
<config>
<productoutline>
<Family id="EN-">
<Feature id="EN-MF"/>
</Family>
<Family id="JBC">
<Feature id="JBCAL"/>
</Family>
<Family id="SE#">
<Feature id="SE#AM"/>
</Family>
<Family id="DGA">
<Feature id="DGAAB"/>
</Family>
<Family id="AAA">
<Feature id="AAAHB"/>
</Family>
<Family id="AAG">
<Feature id="AAGAA"/>
</Family>
<Family id="SUP">
<Feature id="WANAB"/>
</Family>
<Family id="AB5">
<Feature id="AB5DA"/>
</Family>
<Family id="VL*">
<Feature id="VL#FC"/>
</Family>
<Family id="J3C">
<Feature id="J3CAA"/>
</Family>
<Family id="ABE">
<Feature id="ABEAA"/>
</Family>
<Family id="YB6">
<Feature id="YB6AA"/>
</Family>
<Family id="ABT">
<Feature id="ABTAA"/>
</Family>
<Family id="YRP">
<Feature id="YRPAA"/>
</Family>
<Family id="AD2">
<Feature id="AD2AB"/>
</Family>
<Family id="AD6">
<Feature id="AD6PA"/>
</Family>
<Family id="AED">
<Feature id="AEDAB"/>
</Family>
<Family id="AEU">
<Feature id="AEUAA"/>
</Family>
<Family id="A5M">
<Feature id="A5MAB"/>
</Family>
<Family id="YEH">
<Feature id="YEHAA"/>
</Family>
<Family id="YEJ">
<Feature id="YEJAA"/>
</Family>
<Family id="AG1">
<Feature id="AG1AA"/>
</Family>
<Family id="HDH">
<Feature id="HDHAB"/>
</Family>
<Family id="YFH">
<Feature id="YFHAA"/>
</Family>
<Family id="YFJ">
<Feature id="YFJAA"/>
</Family>
<Family id="FBA">
<Feature id="FBAAD"/>
</Family>
<Family id="F2A">
<Feature id="F2AAC"/>
</Family>
<Family id="A9S">
<Feature id="A9SAA"/>
</Family>
<Family id="YZK">
<Feature id="YZKAA"/>
</Family>
<Family id="DR-">
<Feature id="DR--B"/>
</Family>
<Family id="HIA">
<Feature id="HIAAE"/>
</Family>
<Family id="D19">
<Feature id="D19AH"/>
</Family>
<Family id="TR-">
<Feature id="TR-C3"/>
</Family>
<Family id="FF1">
<Feature id="FF1AB"/>
</Family>
<Family id="TAB">
<Feature id="TABAL"/>
</Family>
<Family id="TAD">
<Feature id="TADAL"/>
</Family>
<Family id="TAJ">
<Feature id="TAJSG"/>
</Family>
<Family id="TAK">
<Feature id="TAKSG"/>
</Family>
<Family id="YKT">
<Feature id="YKTAA"/>
</Family>
<Family id="HJE">
<Feature id="HJEAB"/>
</Family>
<Family id="YLB">
<Feature id="YLBAA"/>
</Family>
<Family id="YLK">
<Feature id="YLKAA"/>
</Family>
<Family id="HLD">
<Feature id="HLDAA"/>
</Family>
<Family id="HLI">
<Feature id="HLIAA"/>
</Family>
<Family id="SAT">
<Feature id="SATAB"/>
</Family>
<Family id="DEB">
<Feature id="DEBAA"/>
</Family>
<Family id="C3A">
<Feature id="C3AAA"/>
</Family>
<Family id="B1B">
<Feature id="B1BAA"/>
</Family>
<Family id="JB4">
<Feature id="JB4AA"/>
</Family>
<Family id="BCA">
<Feature id="BCAAB"/>
</Family>
<Family id="DGG">
<Feature id="DGGAH"/>
</Family>
<Family id="JCB">
<Feature id="JCBAA"/>
</Family>
<Family id="A1P">
<Feature id="A1PBN"/>
</Family>
<Family id="BU6">
<Feature id="BU6AA"/>
</Family>
<Family id="AC-">
<Feature id="AC--B"/>
</Family>
<Family id="IBM">
<Feature id="IBMAB"/>
</Family>
<Family id="BVR">
<Feature id="BVRAB"/>
</Family>
<Family id="YD3">
<Feature id="YD3AA"/>
</Family>
<Family id="AEA">
<Feature id="AEAAE"/>
</Family>
<Family id="AF1">
<Feature id="AF1AA"/>
</Family>
<Family id="GRB">
<Feature id="GRBAB"/>
</Family>
<Family id="YZA">
<Feature id="YZBAB"/>
</Family>
<Family id="BCB">
<Feature id="BCBAC"/>
</Family>
<Family id="BU7">
<Feature id="BU7AA"/>
</Family>
<Family id="AFR">
<Feature id="AFRAC"/>
</Family>
<Family id="BBK">
<Feature id="BBKAJ"/>
</Family>
<Family id="YPV">
<Feature id="YPVAA"/>
</Family>
<Family id="JBW">
<Feature id="JBWAA"/>
</Family>
<Family id="JDD">
<Feature id="JDDAC"/>
</Family>
<Family id="JED">
<Feature id="JEDAE"/>
</Family>
<Family id="ICE">
<Feature id="ICEFA"/>
</Family>
<Family id="BX2">
<Feature id="BX2AA"/>
</Family>
<Family id="BWS">
<Feature id="BWSAA"/>
</Family>
<Family id="BY1">
<Feature id="BY1AA"/>
</Family>
<Family id="BYP">
<Feature id="BYPAB"/>
</Family>
<Family id="BYQ">
<Feature id="BYQAB"/>
</Family>
<Family id="IGD">
<Feature id="IGDAA"/>
</Family>
<Family id="A7A">
<Feature id="A7AAB"/>
</Family>
<Family id="GTB">
<Feature id="GTBAA"/>
</Family>
<Family id="A9P">
<Feature id="A9PAA"/>
</Family>
<Family id="CA#">
<Feature id="CA#BB"/>
</Family>
<Family id="BPL">
<Feature id="BPLAA"/>
</Family>
<Family id="DEE">
<Feature id="DEEAA"/>
</Family>
<Family id="C2T">
<Feature id="C2TAA"/>
</Family>
<Family id="BB7">
<Feature id="BB7AB"/>
</Family>
<Family id="BBH">
<Feature id="BBHAA"/>
</Family>
<Family id="B2C">
<Feature id="B2CAB"/>
</Family>
<Family id="AA5">
<Feature id="AA5F7"/>
</Family>
<Family id="B3H">
<Feature id="B3HAC"/>
</Family>
<Family id="CFF">
<Feature id="CFFAB"/>
</Family>
<Family id="IBB">
<Feature id="IBBAA"/>
</Family>
<Family id="YB5">
<Feature id="YB5AA"/>
</Family>
<Family id="YRN">
<Feature id="YRNAA"/>
</Family>
<Family id="YBC">
<Feature id="YBCNT"/>
</Family>
<Family id="BVK">
<Feature id="BVKAA"/>
</Family>
<Family id="IDB">
<Feature id="IDBAC"/>
</Family>
<Family id="BWF">
<Feature id="BWFAA"/>
</Family>
<Family id="BWR">
<Feature id="BWRAA"/>
</Family>
<Family id="YE5">
<Feature id="YE5AA"/>
</Family>
<Family id="BY2">
<Feature id="BY2AA"/>
</Family>
<Family id="BY3">
<Feature id="BY3AA"/>
</Family>
<Family id="BYB">
<Feature id="BYBAA"/>
</Family>
<Family id="CN7">
<Feature id="CN7AE"/>
</Family>
<Family id="A9Y">
<Feature id="A9YAA"/>
</Family>
<Family id="CPC">
<Feature id="CPCAB"/>
</Family>
<Family id="CAQ">
<Feature id="CAQAA"/>
</Family>
<Family id="CB7">
<Feature id="CB7AB"/>
</Family>
<Family id="BAY">
<Feature id="BAYAA"/>
</Family>
<Family id="HNA">
<Feature id="HNAAE"/>
</Family>
<Family id="BBI">
<Feature id="BBIAA"/>
</Family>
<Family id="B2D">
<Feature id="B2DAA"/>
</Family>
<Family id="B2G">
<Feature id="B2GBB"/>
</Family>
<Family id="YBZ">
<Feature id="YBZAA"/>
</Family>
<Family id="CHA">
<Feature id="CHAAA"/>
</Family>
<Family id="B5V">
<Feature id="B5VAA"/>
</Family>
<Family id="A5C">
<Feature id="A5CAA"/>
</Family>
<Family id="IEV">
<Feature id="IEVAA"/>
</Family>
<Family id="A64">
<Feature id="A64AA"/>
</Family>
<Family id="GBA">
<Feature id="GBAAB"/>
</Family>
<Family id="A9B">
<Feature id="A9BAA"/>
</Family>
<Family id="A9C">
<Feature id="A9CBL"/>
</Family>
<Family id="CBA">
<Feature id="CBAAC"/>
</Family>
<Family id="CBF">
<Feature id="CBFAA"/>
</Family>
<Family id="CBG">
<Feature id="CBGAA"/>
</Family>
<Family id="HMI">
<Feature id="HMIAA"/>
</Family>
<Family id="AAC">
<Feature id="AACAA"/>
</Family>
<Family id="B3N">
<Feature id="B3NAA"/>
</Family>
<Family id="YRJ">
<Feature id="YRJAA"/>
</Family>
<Family id="HJF">
<Feature id="HJFAA"/>
</Family>
<Family id="HJG">
<Feature id="HJGAF"/>
</Family>
<Family id="JBK">
<Feature id="JBKAA"/>
</Family>
<Family id="YQR">
<Feature id="YQRAA"/>
</Family>
<Family id="A3C">
<Feature id="A3CAB"/>
</Family>
<Family id="B5E">
<Feature id="B5EAA"/>
</Family>
<Family id="IDG">
<Feature id="IDGAA"/>
</Family>
<Family id="A7B">
<Feature id="A7BAA"/>
</Family>
<Family id="BME">
<Feature id="BMEAD"/>
</Family>
<Family id="HKC">
<Feature id="HKCAA"/>
</Family>
<Family id="CAA">
<Feature id="CAAAB"/>
</Family>
<Family id="C1U">
<Feature id="C1UAA"/>
</Family>
<Family id="AA3">
<Feature id="AA3BE"/>
</Family>
<Family id="AAL">
<Feature id="AALAA"/>
</Family>
<Family id="AAX">
<Feature id="AAXAA"/>
</Family>
<Family id="FLN">
<Feature id="FLNAE"/>
</Family>
<Family id="C7C">
<Feature id="C7CAA"/>
</Family>
<Family id="ICQ">
<Feature id="ICQAA"/>
</Family>
<Family id="GBV">
<Feature id="GBVAK"/>
</Family>
<Family id="GTD">
<Feature id="GTDAA"/>
</Family>
<Family id="CLV">
<Feature id="CLVAA"/>
</Family>
<Family id="DEC">
<Feature id="DECAB"/>
</Family>
<Family id="AB2">
<Feature id="AB2AA"/>
</Family>
<Family id="FML">
<Feature id="FMLAA"/>
</Family>
<Family id="FMN">
<Feature id="FMNAA"/>
</Family>
<Family id="J4W">
<Feature id="J4WAA"/>
</Family>
<Family id="AE8">
<Feature id="AE8A1"/>
</Family>
<Family id="A5G">
<Feature id="A5GAA"/>
</Family>
<Family id="FAJ">
<Feature id="FAJAB"/>
</Family>
<Family id="FEC">
<Feature id="FECAA"/>
</Family>
<Family id="D1D">
<Feature id="D1DAC"/>
</Family>
<Family id="C1C">
<Feature id="C1CAA"/>
</Family>
<Family id="BBD">
<Feature id="BBDAE"/>
</Family>
<Family id="HNK">
<Feature id="HNKAA"/>
</Family>
<Family id="JBB">
<Feature id="JBBAE"/>
</Family>
<Family id="HNS">
<Feature id="HNSAA"/>
</Family>
<Family id="BSH">
<Feature id="BSHA7"/>
</Family>
<Family id="YAC">
<Feature id="YACAA"/>
</Family>
<Family id="SW1">
<Feature id="D2YCA"/>
</Family>
<Family id="YCM">
<Feature id="YCMAB"/>
</Family>
<Family id="YCW">
<Feature id="YCWAF"/>
</Family>
<Family id="YFK">
<Feature id="YFKAA"/>
</Family>
<Family id="GTA">
<Feature id="GTACA"/>
</Family>
<Family id="BLB">
<Feature id="BLBAA"/>
</Family>
<Family id="BLD">
<Feature id="BLDA4"/>
</Family>
<Family id="FDD">
<Feature id="FDDAA"/>
</Family>
<Family id="F5B">
<Feature id="F5BAA"/>
</Family>
<Family id="D1G">
<Feature id="D1GAC"/>
</Family>
<Family id="DAX">
<Feature id="DAXAA"/>
</Family>
<Family id="HLN">
<Feature id="HLNAA"/>
</Family>
<Family id="FJR">
<Feature id="FJRAA"/>
</Family>
<Family id="BSB">
<Feature id="BSBAB"/>
</Family>
<Family id="JBM">
<Feature id="JBMAA"/>
</Family>
<Family id="BSL">
<Feature id="BSLAB"/>
</Family>
<Family id="YQ9">
<Feature id="YQ9AA"/>
</Family>
<Family id="SDR">
<Feature id="EGAFB"/>
</Family>
<Family id="AAZ">
<Feature id="AAZFL"/>
</Family>
<Family id="JDL">
<Feature id="JDLAA"/>
</Family>
<Family id="B5W">
<Feature id="B5WAA"/>
</Family>
<Family id="ITS">
<Feature id="3CQ00"/>
</Family>
<Family id="GBX">
<Feature id="GBXAA"/>
</Family>
<Family id="FS-">
<Feature id="FS--K"/>
</Family>
<Family id="YLA">
<Feature id="YLAAA"/>
</Family>
<Family id="HKR">
<Feature id="HKRAB"/>
</Family>
<Family id="HLL">
<Feature id="HLLAA"/>
</Family>
<Family id="C2B">
<Feature id="C2BAA"/>
</Family>
<Family id="EGJ">
<Feature id="EGJAB"/>
</Family>
<Family id="ST1">
<Feature id="D3KDQ"/>
</Family>
<Family id="D5D">
<Feature id="D5DAD"/>
</Family>
<Family id="D5E">
<Feature id="D5EAF"/>
</Family>
<Family id="JBS">
<Feature id="JBSAA"/>
</Family>
<Family id="000">
<Feature id="000TM"/>
</Family>
<Family id="J3K">
<Feature id="J3KAA"/>
</Family>
<Family id="FLL">
<Feature id="FLLAC"/>
</Family>
<Family id="JDA">
<Feature id="JDAAB"/>
</Family>
<Family id="YBY">
<Feature id="YBYAA"/>
</Family>
<Family id="BVH">
<Feature id="BVHAB"/>
</Family>
<Family id="GRA">
<Feature id="GRAA2"/>
</Family>
<Family id="YFG">
<Feature id="YFGAA"/>
</Family>
<Family id="HUK">
<Feature id="HUKAA"/>
</Family>
<Family id="CAE">
<Feature id="CAEAC"/>
</Family>
<Family id="D3M">
<Feature id="D3MBD"/>
</Family>
<Family id="EGP">
<Feature id="EGPAE"/>
</Family>
<Family id="CJD">
<Feature id="CJDAA"/>
</Family>
<Family id="D17">
<Feature id="D17AD"/>
</Family>
<Family id="#T#">
<Feature id="3CQTM"/>
</Family>
<Family id="CJB">
<Feature id="CJBAA"/>
</Family>
<Family id="CLF">
<Feature id="CLFAF"/>
</Family>
<Family id="BMC">
<Feature id="BMCAA"/>
</Family>
<Family id="PAA">
<Feature id="PN3K6"/>
</Family>
<Family id="CLM">
<Feature id="CLMAB"/>
</Family>
</productoutline>
<TimingPoint id="S4PGBS"/>
</config>
<Contentsets>
<Contentset id="family-descriptions-temp" targetType="family">
<Item target="ABE" name="description">SPECIAL VALUE PACK</Item>
<Item target="AB2" name="description">APPEARANCE GROUP</Item>
<Item target="DGA" name="description">EMISSION REQUIREMENTS-MFC</Item>
<Item target="000" name="description">ALL INT TRIM COLORS-</Item>
<Item target="BYP" name="description">SEAT ADJUSTER-DRIVER</Item>
<Item target="BBH" name="description">FLOOR MATS-FRONT</Item>
<Item target="#T#" name="description">TRIM BLEND CODE FAMILY</Item>
<Item target="YZA" name="description">TPO/ORDER CODE SUPER FAMILY</Item>
<Item target="B5V" name="description">CONSOLE-OVERHEAD</Item>
<Item target="JBK" name="description">FOG LAMPS-FRONT</Item>
<Item target="BLD" name="description">GRILLE-FRONT</Item>
<Item target="BLB" name="description">RUNNING BOARDS</Item>
<Item target="HDH" name="description">SPEEDOMETERS</Item>
<Item target="IDB" name="description">RADIO SPEAKERS</Item>
<Item target="D17" name="description">WHEEL-SPARE</Item>
<Item target="BCA" name="description">SUNVISORS-DRIVER</Item>
<Item target="BMC" name="description">MLDGS-EXT WHEELLIP</Item>
<Item target="AAG" name="description">PLANT BUILD REQUIREMENTS</Item>
<Item target="SUP" name="description">MARKET SUPER FAMILY</Item>
<Item target="AEA" name="description">LABELS-SPECIAL LANGUAGE</Item>
<Item target="SE#" name="description">SERIES-LIGHT TRUCK</Item>
<Item target="BCB" name="description">SUNVISORS-PASS E</Item>
<Item target="DEB" name="description">HEATER-ENGINE</Item>
<Item target="CLF" name="description">BUMPER-FRONT</Item>
<Item target="AD6" name="description">PROTOTYPE PROGRAM CONTROL</Item>
<Item target="AB5" name="description">SALES BADGE</Item>
<Item target="ITS" name="description">INTERIOR TRIMS</Item>
<Item target="BBI" name="description">FLOOR MATS-REAR</Item>
<Item target="CBF" name="description">DOOR ENTRY REMOTE CNTR UNIT</Item>
<Item target="AAA" name="description">VERSION-MFC</Item>
<Item target="D3M" name="description">TIRE SPARE</Item>
<Item target="GBV" name="description">ENGINE FUEL CAPABILITY</Item>
<Item target="IBM" name="description">RADIO FREQUENCY</Item>
<Item target="PAA" name="description">ALL PAINTS</Item>
<Item target="J3C" name="description">SMOKERS PACKAGE</Item>
<Item target="B2G" name="description">WINDOWS-TINT</Item>
<Item target="BSL" name="description">MIRROR FINISH-EXTERIOR</Item>
<Item target="AAZ" name="description">GVW S</Item>
<Item target="BY1" name="description">SEAT-TEMP CONTROLLED DRIVER</Item>
<Item target="HNA" name="description">SECURITY SYSTEMS</Item>
<Item target="BY2" name="description">SEAT-TEMP CONTROLLED PASSENGER</Item>
<Item target="AED" name="description">OWNER HAND BOOK PACK</Item>
<Item target="SDR" name="description">FINAL DRIVE RATIOS</Item>
<Item target="BSB" name="description">MIRROR-INTERIOR REAR VIEW</Item>
<Item target="AC-" name="description">AIR CONDITIONING-PFC</Item>
<Item target="CLV" name="description">LICENSE PLATE BRACKET-FRONT</Item>
<Item target="GTD" name="description">SPEED CONTROL</Item>
<Item target="YZK" name="description">FLEET</Item>
<Item target="FS-" name="description">FRONT SEAT TYPE</Item>
<Item target="TAK" name="description">RIGHT REAR LEAF SPRING</Item>
<Item target="YBC" name="description">MARKETING BODY CODE</Item>
<Item target="EN-" name="description">ENGINE-CAR/LT TRK</Item>
<Item target="CAA" name="description">DOOR HANDLE-EXTERIOR</Item>
<Item target="DR-" name="description">DRIVE-CAR/LT TRK</Item>
<Item target="AD2" name="description">FEATURE CONTENT GROUP</Item>
<Item target="HKC" name="description">NAVIGATION CENTER</Item>
<Item target="SW1" name="description">CAR AND LIGHT TRUCK WHEELS</Item>
<Item target="FF1" name="description">ASSEMBLY PLANT FUEL FILL</Item>
<Item target="SAT" name="description">GENERIC COUNTRY GROUPINGS</Item>
<Item target="CHA" name="description">ROOF-OPENING PANELS</Item>
<Item target="C1C" name="description">TRAILER TOWING</Item>
<Item target="JBC" name="description">HEADLAMPS-RUNNING</Item>
<Item target="JDA" name="description">TAILLAMPS</Item>
<Item target="CA#" name="description">CAB STYLE-LT TRK</Item>
<Item target="JED" name="description">HEADLAMP CONTROL</Item>
<Item target="CLM" name="description">BUMPER-REAR</Item>
<Item target="ST1" name="description">CAR AND LIGHT TRUCK TIRES</Item>
<Item target="GTA" name="description">STEERING WHEELS</Item>
<Item target="TR-" name="description">TRANSMISSION-CAR/LT TRK</Item>
<Item target="BU6" name="description">DRV SEAT BACK MTD MAP POCKET</Item>
<Item target="AA5" name="description">LIGHT TRUCK WHEELBASES</Item>
<Item target="FBA" name="description">BRAKE TYPE</Item>
<Item target="GBA" name="description">FUEL TANKS</Item>
<Item target="JBB" name="description">HEADLAMPS-DESIGN</Item>
<Item target="BU7" name="description">PASS SEAT BACK MTD MAP POCKET</Item>
<Item target="TAJ" name="description">LEFT REAR LEAF SPRING</Item>
<Item target="YPV" name="description">POWER PACKAGE</Item>
<Item target="BSH" name="description">MIRROR-EXTERIOR DUAL</Item>
<Item target="IGD" name="description">GARAGE DOOR OPENER</Item>
<Item target="IBB" name="description">RADIO RECEPTION EQUIPMENT</Item>
<Item target="BYQ" name="description">SEAT ADJUSTER-PASSENGER</Item>
<Item target="CBG" name="description">KEYLESS ENTRY/START SYSTEM</Item>
<Item target="JBW" name="description">LIGHTING PACKAGES</Item>
<Item target="BYB" name="description">SECOND ROW SEATING</Item>
<Item target="CAE" name="description">GEARSHIFT KNOB</Item>
<Item target="CJD" name="description">PAINT-BODY TU-TONE</Item>
<Item target="VL*" name="description">ENGINEERING VEHICLE LINE</Item>
<Item target="YCW" name="description">MRKT CB-AXLE FDR/RR AXLE</Item>
<Item target="JBS" name="description">RIGHT HAND SPOT LIGHT</Item>
<Item target="JBM" name="description">SPOT LIGHT</Item>
<Item target="F2A" name="description">EXHAUST SYSTEMS</Item>
<Item target="FLL" name="description">TRANSMISSION LINKAGE</Item>
<Item target="EGJ" name="description">AXLE DIFFERENTIAL-REAR</Item>
<Item target="D1G" name="description">SHOCK ABSORBERS-REAR</Item>
<Item target="CJB" name="description">TU-TONE ACCENT COLOR</Item>
<Item target="CBA" name="description">LOCKS-DOOR</Item>
<Item target="CAQ" name="description">DECKLID-TAILGATE RELEASE</Item>
<Item target="B2D" name="description">WINDOWS-REAR SIDE</Item>
<Item target="BB7" name="description">FOOT PEDALS</Item>
<Item target="ABT" name="description">AMBIENT TEMP/SPEED PACK</Item>
<Item target="AAL" name="description">SPECIAL EQUIPMENT PACKAGES</Item>
<Item target="YCM" name="description">MRKT CB - SEAT/TRIM</Item>
<Item target="JDD" name="description">HIGH MNT STOP LAMP</Item>
<Item target="GRA" name="description">STEERING COLUMNS</Item>
<Item target="F5B" name="description">EXHAUST PIPE EXTENSION</Item>
<Item target="FMN" name="description">SKID PLATES</Item>
<Item target="FML" name="description">TRANSFER CASE</Item>
<Item target="FDD" name="description">BRAKE CONTROL VALVE</Item>
<Item target="D5D" name="description">HUB COVERS</Item>
<Item target="D1D" name="description">SHOCK ABSORBERS-FRONT</Item>
<Item target="C1U" name="description">TOWING HOOKS-FRONT</Item>
<Item target="B5W" name="description">CONSOLE-FLOOR</Item>
<Item target="B3H" name="description">WINDOW-REAR</Item>
<Item target="B2C" name="description">WINDOWS-FRONT SIDE</Item>
<Item target="BPL" name="description">STEP- SIDE AUXILIARY</Item>
<Item target="BBK" name="description">FLOOR COVERING-PASS AREA</Item>
<Item target="A9C" name="description">SECOND UNIT BODY</Item>
<Item target="AA3" name="description">PAYLOAD PACKAGES</Item>
<Item target="AAC" name="description">VERSION PACKAGES</Item>
<Item target="JCB" name="description">INTERIOR LIGHT GROUP</Item>
<Item target="ICE" name="description">IN CAR ENTERTAINMENT</Item>
<Item target="HIA" name="description">HORNS-ELECTRICAL</Item>
<Item target="CPC" name="description">SEAT BELTS-REAR</Item>
<Item target="CFF" name="description">WASHER/WIPER-WINDSHIELD</Item>
<Item target="B3N" name="description">DEFROSTER-REAR WINDOW</Item>
<Item target="IDG" name="description">RADIO SUBWOOFER</Item>
<Item target="HJE" name="description">THERMOMETER-OUTSIDE TEMP</Item>
<Item target="HJF" name="description">DISPLAYS-COMPASS</Item>
<Item target="BBD" name="description">INTERIOR CLADDING SURFACE</Item>
<Item target="YLB" name="description">MRKTG REGIONAL PKGS 2</Item>
<Item target="YLA" name="description">MRKTG REGIONAL PKGS 1</Item>
<Item target="A1P" name="description">FRONT DOOR SILL PROTECTION</Item>
<Item target="HLI" name="description">SPEED AUDIBLE WARNING DEVICE</Item>
<Item target="BWR" name="description">LUMBAR SEAT SUPT-DRIVER SEAT</Item>
<Item target="HLD" name="description">REVERSE GEAR ALARM</Item>
<Item target="DEC" name="description">STARTER-TYPE</Item>
<Item target="BWS" name="description">LUMBAR SEAT SUPT-PASS SEAT</Item>
<Item target="YKT" name="description">MK CB-DVD PLAYER/VIDEO SCREEN</Item>
<Item target="D19" name="description">TIRE PRESSURE SENSORS</Item>
<Item target="HNK" name="description">REVERSE PARKING AID</Item>
<Item target="BY3" name="description">SEAT-HEATED REAR</Item>
<Item target="BAY" name="description">FLOOR MAT KIT</Item>
<Item target="A7B" name="description">TAILGATE APPLIQUES</Item>
<Item target="A9P" name="description">PICKUP BOX EXTENDER</Item>
<Item target="A9B" name="description">SECOND UNIT BODY COVERS</Item>
<Item target="AAX" name="description">EXTERIOR DRESS UP PACK</Item>
<Item target="BVH" name="description">SEAT CENTER ARMREST-FRONT</Item>
<Item target="YQR" name="description">MONOCHROME ELITE PACKAGE</Item>
<Item target="EGP" name="description">AXLE SIZES</Item>
<Item target="AE8" name="description">TAILGATE BADGES</Item>
<Item target="BWF" name="description">SEAT ARMREST-REAR CENTER</Item>
<Item target="J3K" name="description">CAMERA</Item>
<Item target="A7A" name="description">TAILGATE</Item>
<Item target="C2B" name="description">TRAILER MODULE</Item>
<Item target="A9S" name="description">LOAD BOX BEDLINER</Item>
<Item target="GRB" name="description">STEERING COLUMN LOCKS</Item>
<Item target="BVR" name="description">HEADRESTRAINTS-FRONT</Item>
<Item target="IEV" name="description">MEDIA GATEWAY MODULE (MGM)</Item>
<Item target="A5M" name="description">STAR RATING PERF LEVEL</Item>
<Item target="J4W" name="description">SPECIALTY PACKAGES</Item>
<Item target="A5G" name="description">DECALS-4X4</Item>
<Item target="A5C" name="description">BED DIVIDER</Item>
<Item target="FLN" name="description">MANUAL SHIFT AUTO TRANS</Item>
<Item target="HKR" name="description">CUSTOMER INFORMATION DISPLAY</Item>
<Item target="B1B" name="description">FUEL LABEL</Item>
<Item target="DGG" name="description">EMISSION COMPLIANCE LEVEL</Item>
<Item target="HUK" name="description">POWER CONVERTOR</Item>
<Item target="A3C" name="description">FASCIA-FRONT</Item>
<Item target="HLL" name="description">BLIND SPOT INFORMATION SYSTEM</Item>
<Item target="HNS" name="description">AUTOMATED PARKING SYSTEM</Item>
<Item target="A64" name="description">MY KEY</Item>
<Item target="JB4" name="description">AUXILLARY LIGHTS</Item>
<Item target="CN7" name="description">RESTRAINT DEVICE PACKAGES</Item>
<Item target="TAB" name="description">LEFT FRT COIL SPRING - (2)</Item>
<Item target="TAD" name="description">RIGHT FRT COIL SPRING - (2)</Item>
<Item target="FEC" name="description">ABS-HILL DECENT CONTROL (HDC)</Item>
<Item target="YQ9" name="description">EXTERIOR ACCESSORIES PACKAGE</Item>
<Item target="HJG" name="description">MULTI FUNCTION DISPLAY</Item>
<Item target="BME" name="description">MLDGS-EXT BELT</Item>
<Item target="GBX" name="description">GASEOUS FUEL PREP PACK</Item>
<Item target="HMI" name="description">HUMAN MACHINE INTERFACE</Item>
<Item target="GTB" name="description">HEATED STEERING WHEELS</Item>
<Item target="DEE" name="description">REMOTE STARTER</Item>
<Item target="HLN" name="description">LANE KEEPING AID</Item>
<Item target="FAJ" name="description">PARKING BRAKE-FUNCTION TYPE</Item>
<Item target="D5E" name="description">WHEEL LUG NUTS</Item>
<Item target="AEU" name="description">WATER WADING EQUIPMENT</Item>
<Item target="CB7" name="description">FREQUENCY</Item>
<Item target="YD3" name="description">LIGHT KIT</Item>
<Item target="YAC" name="description">BIKE CARRIER</Item>
<Item target="AF1" name="description">TAILGATE BADGES-2ND LEVEL</Item>
<Item target="YEH" name="description">LUG NUT KIT</Item>
<Item target="YE5" name="description">WINDOW DEFLECTORS</Item>
<Item target="YEJ" name="description">HOOD DEFLECTOR</Item>
<Item target="YRJ" name="description">VEHICLE ALARM</Item>
<Item target="YBY" name="description">FRONT SEAT COVERS</Item>
<Item target="YBZ" name="description">REAR SEAT COVERS</Item>
<Item target="C3A" name="description">DECAL APPEARANCES 1</Item>
<Item target="BX2" name="description">MULTI-CONTOUR SEATS - DRV/PASS</Item>
<Item target="YB5" name="description">BED EXTENDER</Item>
<Item target="YB6" name="description">STAKE POCKET TIE-DOWN</Item>
<Item target="B5E" name="description">WHEEL ARCH LINER/UNDERTRAY</Item>
<Item target="ICQ" name="description">ICE NOISE REDUCTION MODULE</Item>
<Item target="AFR" name="description">EQUIPMENT PACKAGES</Item>
<Item target="FJR" name="description">TRACKING SYSTEM</Item>
<Item target="C7C" name="description">ENGINE RELATED BADGES</Item>
<Item target="JDL" name="description">TRAILER HOOK UP LIGHT</Item>
<Item target="DAX" name="description">EZ TRAILER BACKUP ASSIST</Item>
<Item target="C2T" name="description">STANDARD BOX INTERFACE</Item>
<Item target="BVK" name="description">REAR UNDER SEAT STOW BIN</Item>
<Item target="YRP" name="description">DVD PORTABLE REAR ENTERTN SYTM</Item>
<Item target="YRN" name="description">SYNC</Item>
<Item target="A9Y" name="description">BED RAMPS</Item>
<Item target="AG1" name="description">LESS OUTBOUND MODIFICATION CNT</Item>
<Item target="YLK" name="description">IN-VEHICLE SAFE</Item>
<Item target="YFG" name="description">WIRELESS CHARGING-DEALER ACSRY</Item>
<Item target="YFH" name="description">DRIVER SIDE PIVOT STORAGE BOX</Item>
<Item target="YFJ" name="description">PASSNGR SIDE PIVOT STORAGE BOX</Item>
<Item target="YFK" name="description">HITCHSCAN REAR PARK ASSIST</Item>
</Contentset>
<Contentset id="feature-descriptions-temp" targetType="feature">
<Item target="FBAAD" name="description">POWER 4-WHEEL DISC</Item>
<Item target="CLVAA" name="description">Less Front License Plate BRKT</Item>
<Item target="BCBAC" name="description">SUNVISOR,SINGLE-PASS MR INSERT</Item>
<Item target="BSBAB" name="description">Inside Rearview Mirror</Item>
<Item target="BU7AA" name="description">LS PASS ST BACK MTD MAP POCKET</Item>
<Item target="YZBAB" name="description">100A</Item>
<Item target="CHAAA" name="description">Less Roof Opening Panels</Item>
<Item target="BY2AA" name="description">LESS TEMP CONTROL PASSNGR SEAT</Item>
<Item target="BBHAA" name="description">Floor Mat Delete</Item>
<Item target="GBAAB" name="description">23 Gallon Fuel Tank</Item>
<Item target="JBKAA" name="description">LESS FRONT FOG LAMPS</Item>
<Item target="BU6AA" name="description">LS DRV ST BACK MTD MAP POCKET</Item>
<Item target="BYPAB" name="description">MAN Driver Seat W/Lifter</Item>
<Item target="AC--B" name="description">Manual Air Conditioning</Item>
<Item target="IDBAC" name="description">4 RADIO SPEAKERS</Item>
<Item target="AEDAB" name="description">OWNER HAND BOOK PACK</Item>
<Item target="WANAB" name="description">USA</Item>
<Item target="AEAAE" name="description">ENGLISH LANGUAGE LABEL</Item>
<Item target="DEBAA" name="description">Less Immersion Heater</Item>
<Item target="AB2AA" name="description">Less Appearance Group</Item>
<Item target="C1CAA" name="description">Less Trailer Towing Package</Item>
<Item target="HKCAA" name="description">Less Navigation Center</Item>
<Item target="IBMAB" name="description">NAAO RADIO FREQUENCY</Item>
<Item target="GTDAA" name="description">LESS SPEED CONTROL</Item>
<Item target="YZKAA" name="description">RETAIL/STOCK</Item>
<Item target="CAAAB" name="description">EXTERIOR DOOR HANDLE-BLACK</Item>
<Item target="HDHAB" name="description">MPH/KPH SPEEDOMETER</Item>
<Item target="ABEAA" name="description">LESS SPECIAL VALUE PACKAGES</Item>
<Item target="BMCAA" name="description">LESS EXTERIOR WHEELLIP MOLDING</Item>
<Item target="B2GBB" name="description">Solar Tint</Item>
<Item target="AD2AB" name="description">FEATURE CONTENT GROUP 1</Item>
<Item target="BBIAA" name="description">Floor Mats-Delete Front/Rear</Item>
<Item target="SATAB" name="description">GENERIC COUNTRY GROUP 1</Item>
<Item target="CBFAA" name="description">LESS DR ENTRY REMOTE CNTR UNIT</Item>
<Item target="BLBAA" name="description">Less Running Boards</Item>
<Item target="BY1AA" name="description">LESS TEMP CONTROL DRIVER SEAT</Item>
<Item target="YPVAA" name="description">LESS POWER PACKAGE</Item>
<Item target="IGDAA" name="description">LESS GARAGE DOOR OPENER</Item>
<Item target="DGAAB" name="description">49 State/Non Green State Req.</Item>
<Item target="IBBAA" name="description">SIRIUS Radio Delete</Item>
<Item target="J3CAA" name="description">Less Smokers Package</Item>
<Item target="B5VAA" name="description">LESS OVERHEAD CONSOLE</Item>
<Item target="FF1AB" name="description">Normal Fuel Fill</Item>
<Item target="JBWAA" name="description">LESS LIGHTING PACKAGES</Item>
<Item target="AALAA" name="description">Less Special Equipment Package</Item>
<Item target="ABTAA" name="description">LESS AMBIENT TEMP/SPEED PACK</Item>
<Item target="CJDAA" name="description">Less Body TU-Tone Paint</Item>
<Item target="BB7AB" name="description">FIXED FOOT PEDALS</Item>
<Item target="BYQAB" name="description">Manual 2-Way PASS Seat ADJUST</Item>
<Item target="BYBAA" name="description">Less 2nd Row Seat</Item>
<Item target="AAGAA" name="description">Plant Assigned At Order Rec</Item>
<Item target="FS--K" name="description">40/20/40 Front Seat</Item>
<Item target="D2YCA" name="description">17" Silver Steel Wheels</Item>
<Item target="F2AAC" name="description">SINGLE EXHAUST SYSTEM</Item>
<Item target="GBVAK" name="description">Flex Fuel</Item>
<Item target="HNAAE" name="description">IMMOBILIZER/PATS/SECURILOCK</Item>
<Item target="JBMAA" name="description">LESS SPOT LIGHT</Item>
<Item target="JBSAA" name="description">LESS R/H SPOT LIGHT</Item>
<Item target="JDAAB" name="description">Rear Combo Lamp Bulb</Item>
<Item target="CBGAA" name="description">Less Keyless Entry System</Item>
<Item target="CJBAA" name="description">Less Tu-Tone Accent Color</Item>
<Item target="DR--B" name="description">2 WHL L/H REAR DRIVE</Item>
<Item target="D1GAC" name="description">H/D REAR SHOCK ABSORBERS</Item>
<Item target="D17AD" name="description">Full-Size Spare Wheel</Item>
<Item target="EGJAB" name="description">NON-LIMITED SLIP REAR AXLE</Item>
<Item target="FLLAC" name="description">COLUMN MOUNTED SHIFT LINKAGE</Item>
<Item target="AACAA" name="description">Less Version Packages</Item>
<Item target="BBKAJ" name="description">Black Vinyl Floor Covering</Item>
<Item target="B3HAC" name="description">Rear Window with Fixed Glass</Item>
<Item target="BPLAA" name="description">LESS SIDE AUXILIARY STEP</Item>
<Item target="BSLAB" name="description">EXT MIRROR FINISH-BLACK</Item>
<Item target="B2CAB" name="description">MANUAL FRONT SIDE WINDOWS</Item>
<Item target="B2DAA" name="description">LESS REAR SIDE WINDOW</Item>
<Item target="AA3BE" name="description">BASE PAYLOAD PK</Item>
<Item target="B5WAA" name="description">Engine Cover Console Delete</Item>
<Item target="CA#BB" name="description">SINGLE CAB (REGULAR CAB)</Item>
<Item target="CBAAC" name="description">MANUAL DOOR LOCKS</Item>
<Item target="CLFAF" name="description">FRONT BUMPER-STEEL-ARGENT</Item>
<Item target="C1UAA" name="description">LESS FRONT TOWING HOOKS</Item>
<Item target="FDDAA" name="description">LESS BRAKE CONTROL VALVE</Item>
<Item target="FMLAA" name="description">LESS TRANSFER CASE</Item>
<Item target="FMNAA" name="description">Less Skid Plates</Item>
<Item target="F5BAA" name="description">LESS EXHAUST PIPE EXTENSION</Item>
<Item target="YCMAB" name="description">40/20/40 Cloth Bench Seat</Item>
<Item target="CFFAB" name="description">Intermittent Wipers</Item>
<Item target="JCBAA" name="description">LESS INTERIOR LIGHT GROUP</Item>
<Item target="CAEAC" name="description">MOLDED GEAR SHIFT KNOB</Item>
<Item target="HJEAB" name="description">OUTSIDE TEMP THERMOMETER</Item>
<Item target="IDGAA" name="description">LESS RADIO SUBWOOFER</Item>
<Item target="BBDAE" name="description">Premium Interior Package</Item>
<Item target="BLDA4" name="description">Grille-Mold In Color</Item>
<Item target="HJFAA" name="description">LESS COMPASS DISPLAY</Item>
<Item target="YLAAA" name="description">LESS MRKTG REGIONAL PKGS 1</Item>
<Item target="YLBAA" name="description">LESS MRKTG REGIONAL PKGS 2</Item>
<Item target="BWRAA" name="description">LESS LUMBAR SEAT SUP-DRIV SEAT</Item>
<Item target="HLIAA" name="description">LS SPD AUDIBLE WARNING DEVICE</Item>
<Item target="HLDAA" name="description">LESS REVERSE GEAR ALARM</Item>
<Item target="BWSAA" name="description">LESS LUMBAR SEAT SUP-PASS SEAT</Item>
<Item target="YKTAA" name="description">LESS MK CB-DVD PLAY/VID SCR</Item>
<Item target="YCWAF" name="description">3.31 Ratio Regular Axle</Item>
<Item target="HNKAA" name="description">Less Reverse Parking Aid</Item>
<Item target="SE#AM" name="description">150 SERIES</Item>
<Item target="CLMAB" name="description">REAR BUMPER-STEEL ARGENT</Item>
<Item target="BAYAA" name="description">Less Floor Mat Kit</Item>
<Item target="BY3AA" name="description">Less Rear Heated Seat</Item>
<Item target="BCAAB" name="description">SUNVISOR,SINGLE-DRIVER</Item>
<Item target="JBBAE" name="description">HEADLAMPS - LEVEL 1</Item>
<Item target="AAXAA" name="description">LESS EXTERIOR DRESS UP PACKAGE</Item>
<Item target="A9BAA" name="description">LESS SECOND UNIT BODY COVERS</Item>
<Item target="A9PAA" name="description">LESS PICKUP BOX EXTENDER</Item>
<Item target="AAZFL" name="description">6200 LB. GVW</Item>
<Item target="D1DAC" name="description">H/D DUAL FRT SHOCK ABS</Item>
<Item target="AAAHB" name="description">XL Series</Item>
<Item target="AB5DA" name="description">F150 SALES BADGE</Item>
<Item target="A9CBL" name="description">6.5 STYLESIDE BOX</Item>
<Item target="B3NAA" name="description">LESS REAR WINDOW DEFROSTER</Item>
<Item target="D19AH" name="description">TIRE PRESSURE SENSORS-315 MHZ</Item>
<Item target="EGAFB" name="description">3.31 FINAL DRIVE RATIO - SS</Item>
<Item target="EGPAE" name="description">8.8 AXLE SIZE</Item>
<Item target="YQRAA" name="description">LESS MONOCHROME ELITE PACKAGE</Item>
<Item target="J3KAA" name="description">LESS CAMERA</Item>
<Item target="BWFAA" name="description">LESS REAR SEAT CENTER ARMREST</Item>
<Item target="C2BAA" name="description">LESS TRAILER MODULE</Item>
<Item target="A7AAB" name="description">Tailgate-removable w/ key lock</Item>
<Item target="A9SAA" name="description">LESS LOAD BOX BEDLINER</Item>
<Item target="CAQAA" name="description">LESS REMOTE DECK/TAILGATE REL</Item>
<Item target="GRBAB" name="description">LOCKING STEERING COLUMN</Item>
<Item target="CPCAB" name="description">REAR SEAT BELTS-STANDARD</Item>
<Item target="IEVAA" name="description">Less SYNC</Item>
<Item target="JEDAE" name="description">AUTO HEADLAMP PLUS WIPERS</Item>
<Item target="A5MAB" name="description">STAR RATING PERF LEVEL 1</Item>
<Item target="A5CAA" name="description">LESS BED DIVIDER</Item>
<Item target="A5GAA" name="description">LESS DECALS-4X4</Item>
<Item target="J4WAA" name="description">LESS SPECIALTY PACKAGES</Item>
<Item target="A1PBN" name="description">FRT DR SCUFF PLT-MIC</Item>
<Item target="A7BAA" name="description">LESS TAILGATE APPLIQUE</Item>
<Item target="HKRAB" name="description">CUSTOMER INFO DISPLAY-PACKAG 1</Item>
<Item target="PN3K6" name="description">Blue Flame</Item>
<Item target="TR-C3" name="description">6-speed Automatic Transmission</Item>
<Item target="B1BAA" name="description">LESS FUEL LABEL</Item>
<Item target="HUKAA" name="description">LESS POWER CONVERTOR</Item>
<Item target="HLLAA" name="description">Less Blind Spot INFO System</Item>
<Item target="A3CAB" name="description">FRONT FASCIA-LEVEL 1</Item>
<Item target="A64AA" name="description">LESS MY KEY</Item>
<Item target="HNSAA" name="description">LESS AUTOMATED PARKING SYSTEM</Item>
<Item target="JB4AA" name="description">LESS AUXILLARY LIGHTS</Item>
<Item target="HIAAE" name="description">DUAL NOTE ELECTRIC HORN-LVL 2</Item>
<Item target="CN7AE" name="description">Driv/Pass Front & Side Airbags</Item>
<Item target="FECAA" name="description">LESS ABS - HILL DECENT CONTROL</Item>
<Item target="YBCNT" name="description">F1C 4x2 Reg Cab</Item>
<Item target="YQ9AA" name="description">LESS EXTER ACCESSORIES PACKAGE</Item>
<Item target="JDDAC" name="description">HI MNTD STP LMP W/CARGO LIGHT</Item>
<Item target="BMEAD" name="description">Belt Line Molding Black</Item>
<Item target="EN-MF" name="description">5.0L V8 FFV Engine</Item>
<Item target="GBXAA" name="description">LESS GASEOUS FUEL PREP PACK</Item>
<Item target="AEUAA" name="description">LESS WATER WADING EQUIPMENT</Item>
<Item target="DEEAA" name="description">Less Remote Starter</Item>
<Item target="GTBAA" name="description">Less Heated Sterring Wheel</Item>
<Item target="HLNAA" name="description">LESS LANE KEEPING AID</Item>
<Item target="DECAB" name="description">STD Electric Starter</Item>
<Item target="HJGAF" name="description">MFD HIGH TFT SCREEN</Item>
<Item target="FAJAB" name="description">PARKING BRAKE - MECHANICAL</Item>
<Item target="CB7AB" name="description">FREQUENCY - 315 MHZ</Item>
<Item target="FLNAE" name="description">Select Shift W/Thumb Switch</Item>
<Item target="YD3AA" name="description">LESS LIGHT KIT</Item>
<Item target="YACAA" name="description">LESS BIKE CARRIER</Item>
<Item target="BVHAB" name="description">FRONT SEAT CENTER ARMREST</Item>
<Item target="D5DAD" name="description">ARGENT HUB COVERS</Item>
<Item target="AF1AA" name="description">LESS TAILGATE BADGES-2ND LEVEL</Item>
<Item target="YE5AA" name="description">LESS WINDOW DEFLECTORS</Item>
<Item target="YRJAA" name="description">LESS VEHICLE ALARM</Item>
<Item target="YEJAA" name="description">LESS HOOD DEFLECTOR</Item>
<Item target="YEHAA" name="description">LESS LUG NUT KIT</Item>
<Item target="YBYAA" name="description">LESS FRONT SEAT COVERS</Item>
<Item target="YBZAA" name="description">LESS REAR SEAT COVERS</Item>
<Item target="BSHA7" name="description">Mirrors Manual Fold/Glass</Item>
<Item target="3CQ00" name="description">C - CLOTH/CLOTH</Item>
<Item target="BVRAB" name="description">FRNT 2-WAY HEDRSTRNTS-UNTRIMD</Item>
<Item target="BX2AA" name="description">Less Multi-Contour Seats</Item>
<Item target="C3AAA" name="description">Less Decal Option 1</Item>
<Item target="DGGAH" name="description">Emission Compliance-USA</Item>
<Item target="HMIAA" name="description">LESS HUMAN MACHINE INTERFACE</Item>
<Item target="YB5AA" name="description">LESS BED EXTENDER</Item>
<Item target="YB6AA" name="description">LESS STAKE POCKET TIE-DOWN</Item>
<Item target="B5EAA" name="description">LESS WHL ARCH LINER/UNDERTRAY</Item>
<Item target="ICQAA" name="description">LESS ICE NOISE REDUCTION</Item>
<Item target="FJRAA" name="description">LESS TRACKING SYSTEM</Item>
<Item target="JBCAL" name="description">Daytime Lamps (on/off control)</Item>
<Item target="AFRAC" name="description">EQUIPMENT PACKAGE 2</Item>
<Item target="C7CAA" name="description">LESS ENGINE RELATED BADGE</Item>
<Item target="D3KDQ" name="description">245/70R 17 BSW All-Season</Item>
<Item target="ICEFA" name="description">AM/FM Stereo/Clock</Item>
<Item target="3CQTM" name="description">Cloth - Medium Earth Gray</Item>
<Item target="AA5F7" name="description">122 Inch Wheelbase</Item>
<Item target="C2TAA" name="description">LESS CLEAT TIE-DOWN ENGR</Item>
<Item target="DAXAA" name="description">LESS ASSIST PACKAGES</Item>
<Item target="D3MBD" name="description">SP TIR-245/70R 17 A/S</Item>
<Item target="D5EAF" name="description">ALLOY NUTS CAPPED</Item>
<Item target="GRAA2" name="description">STRG COL-MAN TILT/TELE-COL SHF</Item>
<Item target="GTACA" name="description">STRG WHL-STANDARD PUR</Item>
<Item target="JDLAA" name="description">LESS TRAILER HOOK UP LIGHT</Item>
<Item target="VL#FC" name="description">P552 F150</Item>
<Item target="000TM" name="description">MEDIUM EARTH GRAY</Item>
<Item target="AE8A1" name="description">FLEXFUEL SALES BADGE</Item>
<Item target="BVKAA" name="description">LESS REAR UNDER SEAT STOW BIN</Item>
<Item target="YRNAA" name="description">LESS SYNC</Item>
<Item target="YRPAA" name="description">LS DVD PORTABLE REAR ENTER SYS</Item>
<Item target="A9YAA" name="description">LESS BED RAMPS</Item>
<Item target="TABAL" name="description">FL34-5310-AA L/F COIL SPRING</Item>
<Item target="TADAL" name="description">FL34-5310-AA R/F COIL</Item>
<Item target="TAJSG" name="description">FL34-5560-A L/R LEAF</Item>
<Item target="TAKSG" name="description">FL34-5560-A R/R LEAF SPRINGS</Item>
<Item target="AD6PA" name="description">2016 JOB #1 PROGRAM CONTROL</Item>
<Item target="AG1AA" name="description">LESS OUTBOUND MODIFICATION CNT</Item>
<Item target="YLKAA" name="description">LESS MARKTG IN-VEHICLE SAFE</Item>
<Item target="YFGAA" name="description">LESS WIRELESS CHARGING</Item>
<Item target="YFHAA" name="description">LESS DRV SIDE PIVOT STORGE BOX</Item>
<Item target="YFJAA" name="description">LESS PASS SIDE PIVOT STRGE BOX</Item>
<Item target="YFKAA" name="description">LESS HTCHCN REAR PARK ASSIST</Item>
</Contentset>
</Contentsets>
</ns2:MT_SOAP_Response>
</SOAP:Body>
</SOAP:Envelope>
Desired target feed:
<?xml version="1.0" encoding="UTF-8"?>
<ns2:MT_Soap_Response_Modified xmlns:ns2="http://Gforce_POC_Retrive_Catalog_Codes"><catalogid>WANAB-TFC-2016-F-150</catalogid><Family><Family id="EN-"><Feature id="EN-KX"></Feature><Feature id="EN-WQ"></Feature><Feature id="EN-UR"></Feature><Feature id="EN-MF"></Feature></Family><Family id="SW1"><Feature id="D2UB4"></Feature><Feature id="D2FA4"></Feature><Feature id="D2YCA"></Feature><Feature id="D2UB3"></Feature><Feature id="D2ULS"></Feature><Feature id="D2UB1"></Feature><Feature id="D2YFW"></Feature><Feature id="D2YBA"></Feature><Feature id="D2FA2"></Feature><Feature id="D2HAE"></Feature><Feature id="D2FB3"></Feature><Feature id="D2FB2"></Feature><Feature id="D2FCQ"></Feature><Feature id="D2FAK"></Feature></Family><Family id="PAA"><Feature id="PN4D6"></Feature><Feature id="PN4DY"></Feature><Feature id="PN4A7"></Feature><Feature id="PN3K6"></Feature><Feature id="PNYW3"></Feature><Feature id="PN4BY"></Feature><Feature id="PN4CD"></Feature><Feature id="PNEAM"></Feature><Feature id="PN3KP"></Feature><Feature id="PN4EQ"></Feature><Feature id="PN3XX"></Feature><Feature id="PN4DQ"></Feature><Feature id="PNZAT"></Feature><Feature id="PN4AG"></Feature></Family><Family id="#T#"><Feature id="3CQTM"></Feature><Feature id="3DSZH"></Feature><Feature id="3HSZH"></Feature><Feature id="3EUTM"></Feature><Feature id="3ESTM"></Feature><Feature id="3HRZH"></Feature><Feature id="3DLGJ"></Feature><Feature id="3DRZH"></Feature><Feature id="3DQTN"></Feature><Feature id="3ETZH"></Feature><Feature id="3DLZH"></Feature><Feature id="3DTZH"></Feature><Feature id="3DLTM"></Feature><Feature id="3EUGJ"></Feature></Family><Family id="000"><Feature id="000TN"></Feature><Feature id="000ZH"></Feature><Feature id="000GJ"></Feature><Feature id="000TM"></Feature></Family><Family id="TR-"><Feature id="TR-C3"></Feature></Family>
Plus Respective Feature id's and their descriptions of a selected family id's under content sets.
Please help me on this.
Thanks,
Pavan T,