sql - How to join field values in Views in Dynamics AX 2009 -


i need create view exporting product data. ideally need merge 2 fields values (maybe others if possible).

i know sql in ax not proper sql i've tried:

select field1 + field2 table 

which should work , doesn't

i have feeling method in view, i've never done before , can't find decent examples anywhere.

is want possible, , if how it?

edit

the reason i'm doing because i've started using magento. not integrated ax going create view data product , manual import magento.

i want combine the sku of product color id or size id.

so pp1234 , blu become pp1234-blu

try that

 select cast(field1 varchar(number_characters))   + cast(field2 varchar(number_characters))  table 

Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -