Automated Product Export

Automated Product Export

Avatar image
Apr 29, 2013
Martin Christiansen wrote
We would like a simple automated product export so we can use it with the automated product import feature.
New
2 votes
Vote
Reply
1 Answer
Avatar image
Apr 30, 2013
Alex Pryshlivskiy agent wrote
Hello Martin!
Thank you for feature request.
According to our Policy, we implement a new features according to the volume of customer votes.

By the way, right now you can use Section "Tools" - "Automated Backup or Script Execution"
you should be familiar with SQL and Magneto structure

in this case you can rus SQL query to select product info according to schedule.
For example
simple syntax: SELECT field1, field2, field3 FROM magento_products WHERE some condition for query.
or you can use SQL syntax like this :
SELECT CONCAT("'";field1, " ';", field2, " ; '", field3, "'") FROM magento_product_tables WHERE some_condition_for_query.
you can get result of select
'Product1';4343.54;'some text'
Please note - this is simple example. You should join tables to get result.