cancel
Showing results for 
Search instead for 
Did you mean: 

How to Download displayed output to Excel Using Bsp Application

Former Member
0 Kudos

Hi Experts,

please give me some idea because I am New In BSP.

How to Download displayed output to Excel Using Bsp Application.

If any sample code please do send me.

In my condition I am getting data in 2-3 table view formats on one page and i want download that in Excel.

please help me.

Regards & Thanks,

Yogesh

Accepted Solutions (0)

Answers (1)

Answers (1)

eddy_declercq
Active Contributor
0 Kudos

Hi,

This is more a question for the BSP forum.

Anyway, as such it's realy easy since you can use HTML in order to import to Excel. All you need to do is add

runtime->server->response->set_header_field( name = 'Contnet-Type'

value = 'application/vnd.ms-excel' ).

runtime->server->response->delete_header_field( name = 'Cache-Control' ).

runtime->server->response->delete_header_field( name = 'Expires' ).

runtime->server->response->delete_header_field( name = 'Pragma' ).

Also check threads like

Eddy

-


PS. Reward useful answers and earn points yourself