cancel
Showing results for 
Search instead for 
Did you mean: 

How to add button or hypertext link into BSP view

Former Member
0 Kudos

Hi,

All is in the subject.

I'm working wioth CRM 2007 SP2, I want to add something into

- the component : BT115H_SLSO

- the view : BT115H_SLSO/Details

Kind regards.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Button

can be added to the view BT115H_SLSO/Details

using the "Toolbar related Methods " - redefine this IF_BSP_WD_TOOLBAR_CALLBACK~GET_BUTTONS ,

Sample implementation is available in BT115H_SLSO/SOHOverView...

Hyperlink

Can be added to any of your field attributes.

Ex.

GET_P_<ATTR>

CASE iv_property.

WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.

rv_value = cl_bsp_dlc_view_descriptor=>~FIELD_TYPE_LINK.

WHEN if_bsp_wd_model_setter_getter=>fp_server_event.

rv_value = 'EVENT NAME'.

ENDCASE.

Create the event with EVENT_NAME and write your code here.

Thats it.

Hope this helps.

Regards,

Senthil.