cancel
Showing results for 
Search instead for 
Did you mean: 

How to realize SQL's function TO_NVARCHAR with Column Engine's functions?

Former Member
0 Kudos

In HANA STUDIO, I used SQL function TO_NVARCHAR(''BLDAT'','YYYY/MM/DD') in Calculated Columns to convert the YYYYMMDD date in BLDAT into YYYY/MM/DD and made it.

But according to project's request, this conversion should be realized with Column Engine, not SQL. Please answer this question, if you have some good ideas, Thank u so much.

link for functions which can be used with Column Engine.

Using Functions in Expressions

http://help.sap.com/saphelp_hanaplatform/helpdata/en/d7/70825bbb5710148ca7cd47cb086923/content.htm?f...

Accepted Solutions (1)

Accepted Solutions (1)

pfefferf
Active Contributor

You can use a combination of the DATE and FORMAT function. The DATE function to convert the BLDAT date string to a date which then can be used by the FORMAT function to create a NVARCHAR typed result in your format.

The expression for the column engine calculated column looks like following:

format(date("BLDAT"),'YYYY/MM/DD')

Regards,
Florian

Former Member
0 Kudos

Thanks a lot ! this is a definately correct answer.

I also figured out this combined function yesterday and expected value came out.

Thank u again!

Answers (0)