I need to create a View for exporting some Product Data. Ideally I need to merge two fields values (maybe others if possible).
I know SQL in AX is not really proper SQL as I’ve tried:
Select field1 + field2 from table
Which should work and it doesn’t
I have a feeling I could this with a method in the View, but I’ve never done this before and I can’t find any decent examples anywhere.
Is what I want to do even possible, and if so how would I do it?
Edit
The reason I’m doing this is because I’ve started using Magento. Its not properly integrated with AX so I was going to create a view with all the data about a product and then do a manual import into Magento.
I want to combine the the SKU of the product with the color id or size id.
So PP1234 and BLU would become PP1234-BLU
From looking around through the little amount of Documentation there is about Dynamics AX I don’t think this can be done.
Seems strange the little amount of SQL you can do.