|
I’m still messing with it, but if I’m importing products, and select Local/Remote Server, and specify a locally stored MS Excel XML file, it doesn’t seem to populate the Profile Actions XML correctly. If I’m understanding it correctly, its attempting to parse a CSV.
<action type="dataflow/convert_adapter_io" method="load"> <var name="type">file</var> <var name="path"></var> <var name="filename"><![CDATA[catalog_031208.xml]]></var> </action>
<action type="dataflow/convert_parser_csv" method="parse"> <var name="delimiter"><![CDATA[,]]></var> <var name="enclose"><![CDATA["]]></var> <var name="fieldnames">true</var> <var name="adapter">catalog/convert_adapter_product</var> <var name="method">saveRow</var> </action>
However, if I select Interactive (as opposed to Local/Remote Server), the Profile Actions XML seems to be correct. However, shouldn’t I see the fields I mapped in the wizard in this XML too?
<action type="dataflow/convert_parser_xml_excel" method="parse"> <var name="delimiter"><![CDATA[,]]></var> <var name="enclose"><![CDATA["]]></var> <var name="fieldnames">true</var> <var name="adapter">catalog/convert_adapter_product</var> <var name="method">saveRow</var> </action>
I’ve checked and re-checked my wizard inputs.
|