cancel
Showing results for 
Search instead for 
Did you mean: 

Display System Date in SAP Design Studio Dashboard

Former Member
0 Kudos

Hi Gurus,

I am new to SAP family, before I get into this ocean I admired to work on SAP BI. Recently I started working on SAP Design Studio. First of all it is real pathetic tool, I am not sure how people dealing with this kind of interface and how client get convinced. I worked on Tableau and Qlikview last four years may be that is the reason I feel difficulty in understanding.

Here is my question : How to display Current system date in Design Studio Report output

It would be great help if some one share the steps, I copied the code from google but not sure where to copy.

Thanks-Sasi


Accepted Solutions (0)

Answers (2)

Answers (2)

former_member198519
Active Contributor
0 Kudos

There are some basic information in this blog, which should help you:

https://blogs.sap.com/2013/07/21/design-studio-system-information-methods/

Abhilasha
Participant
0 Kudos

Hi Sasi,

For eg: you have a text component - TEXT_1 where you want to display current date.

In the Application properties -> Events -> On Startup -> write the below script:
TEXT_1.setText(APPLICATION.getInfo().dateNow);

This works just fine for me.

-Abhilasha