To get those details, typically no. You can try to go to Ecommerce > Products and on the grid listing of products, click the hamburger menu and go to Advanced Export. I don't know if this will give you 100% of what you want though. Best bet is to create a SQL query and run that SELECT statement. You could even create it as a Report in Kentico and export that list. I believe to get the simple SKU listing, you can use something like:
SELECT *
FROM COM_SKU
If you want to link that to the custom fields for your page type, then you need to do some joining to the CMS_Tree
and CMS_Document
tables as well as your custom page type table(s).