cancel
Showing results for 
Search instead for 
Did you mean: 

Remove unwanted links from the UI

Former Member
0 Kudos

Hi,

How do i remove the following links from the CRM 7 UI ?

Personalize

Help Center

System News

Thanks

Aman

Accepted Solutions (0)

Answers (2)

Answers (2)

suchita_phulkar
Active Contributor
0 Kudos

Hi there,

the simplest way to do it is -->

1) open the component CRMCMP_HDR

2) open the viewset CRMCMP_HDR/HeaderViewSet

3) open HeaderViewSet.htm

4) after the code line

  ls_layout = lr_layout_srv->get_layout_def( ). 

add following line

 ls_layout-hdr_gf_display = ' ' .

Alternatively , if you dont want to put any code, you can simply comment out following code on line 38 to 40.

  <%if ls_layout-hdr_gf_display = 'X'.%>
    <bsp:call comp_id="<%=controller->GET_VIEWAREA_CONTENT_ID( ls_layout-hdr_gf )%>"
              url="<%=controller->GET_VIEWAREA_CONTENT_URL( ls_layout-hdr_gf )%>"/>
  <%endif.%> 

This will not show any of the links onuper left corner of web ui .

This works.

Hope it wll be helpful.

Regards,

Suchita

Former Member
0 Kudos

To Remove Personalization:

Go to Business role in SPRO->select the business role then select the Assign Function profile tab and maintain a parameter

PERSONALIZATION with value ALL_DISABLED.

Thanks,

Ashish

Former Member
0 Kudos

That would remove only the Personalize link, How to remove the System News and the Help Center links ???

Thanks

Aman

arunprakash_karuppanan
Active Contributor
0 Kudos

Hi,

Go through this thread.

[;.

Regards,

Arun Prakash

Former Member
0 Kudos

I read the thread. It says Personalize is hard-coded to the system personalization screen. How do i disable or hide the contents in the Personalize window ???

Aman

suchita_phulkar
Active Contributor
0 Kudos

Hi,

The erlier solution that i provided will also remove the log of link....I think you would not want the log off link to be removed, then to just keep the logoff link, may be you can try following

1) open component CRMCMP_HDR_STD

2)open view CRMCMP_HDR_STD/GlobalFunctions

3)open GlobalFunctions.htm

do some manipulations here.

Regards,

Suchita