BookmarkSubscribeRSS Feed
shuchidxt_gmail_com
Obsidian | Level 7

Hi,

 

we use SAS enterprise case management application for AML in our project.

 

 

and wanted to edit how it link to the tableau report in each server ( DEV, SIT, UAT, PROD).

 

Example: if we are in DEV, SIT , PROD ecm then it should link with UAT server of tableau report else 

if we are in UAT server of ECM then the report link to PROD SERVER of the TABLEAU REPORT.


<url>
javascript&colon;

var url = "https://tableau.xxx.com/views/TDT/MAIN?" + grp_ind;
window.open(url,"_blank");


</url>
</item>

 

 

could anyone has code to show how to do it in XML file?

4 REPLIES 4
ballardw
Super User

@shuchidxt_gmail_com wrote:

Hi,

 

we use SAS enterprise case management application for AML in our project.

 

 

and wanted to edit how it link to the tableau report in each server ( DEV, SIT, UAT, PROD).

 

Example: if we are in DEV, SIT , PROD ecm then it should link with UAT server of tableau report else 

if we are in UAT server of ECM then the report link to PROD SERVER of the TABLEAU REPORT.


<url>
javascript&colon;

var url = "https://tableau.xxx.com/views/TDT/MAIN?" + grp_ind;
window.open(url,"_blank");


</url>
</item>

 

 

could anyone has code to show how to do it in XML file?


Given that example where is the information for   DEV, SIT, UAT, PROD supposed to come from and where does it go? A bit more actual detail may be helpful.

shuchidxt_gmail_com
Obsidian | Level 7

Yes, I wanted to know where is the server information is stored ? metadata property which holds server name and how to build a menu definition around it to link with particular tableau report environment.

 

I wanted to change the below link for each env.

 

so if we are in UAT THEN below should link to 

var url = "https://tableau.xxx.com/views/TDT_UAT/MAIN?" + grp_ind;

 

else if in PROD ECM then below

 

var url = "https://tableau.xxx.com/views/TDT/MAIN?" + grp_ind;

SAS_KennyE
SAS Employee

Hi Shuchi!

It appears that you have a track opened with SAS technical support for this same issue.  Please continue working with TS through the track in order to keep all information in one place.


For the community, we will post an official answer once we find one.

Thanks!

jmac
SAS Employee

Hi,

 

SAS Enterprise Case Management 6.x uses MainNavigationMenu.xml for specifying the menu items in the application.

It is also customizable. 

 

If you want to add an item to the menu, you can add something like this under <menu>....</menu> .

  <item id="external_search">
     <label><message key="external.search.txt"/></label>
     <url>http://search.yahoo.com/search</url>
     <param name="p">fraud alert</param>
   </item>

 

Documentation for SAS Enterprise Case Management 6.3 are in

http://support.sas.com/documentation/onlinedoc/securedoc/ecm.html

 

For customizing the user interface, please see using Custom Page Builder

in Chapter 6.