cancel
Showing results for 
Search instead for 
Did you mean: 

Recent Objects fly over text

mike_mcinerney
Participant
0 Kudos

Can someone point me to documentation on where I can configure the prefixing mouse over text on Recent Objects.

For example, rather than

'Sales Order:' 123 ,

I want it to say, perhaps,

SlsOrdr : 123.

Or instead of

Accounts:Joe Smith,

perhaps

Acct: Joe Smith.

Thanks...

...Mike

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Michael,

The text in the tool tip is not configurable.The text in the tool tip is being determined by the method GET_DESCR in the class CL_CRM_BSP__RECENTOBJECT0_IMPL.

You would have to enhance implementation class of the view CRM_BSP_RECOBJ in the component CRM_BSP_RECOBJ.

thanks

giri

Answers (1)

Answers (1)

former_member193352
Active Contributor
0 Kudos

Hi Michael,

In order to get the mouse prefixing text for the attributes, you need to take your developer's help. Ask him to enhnance the get_p method of the attribute where you want this functionality and implement following sample code:

CASE iv_property.

WHEN if_bsp_wd_model_setter_getter=>fp_tooltip.

rv_value = ' '.......... " Value as desired by you

ENDCASE.

I hope this helps.

Thanks

Vishal

shailendra_jain4
Participant
0 Kudos

Hi Vishal,

Will you be able to help me out with the code/method of the class CL_CRM_BSP__RECENTOBJECT0_IMPL wherein it would be possible for me to change the contents of the Recent items.

For E.g.

Currently the recent items field shows the incidents which the logged-in user has viewed recently.

But I want the most recent Incidents created in SOLMAN system inturn to be displayed here.