HI All

basha shaik
Tera Contributor

HI All

 

i have clone the service operation work spaceScreenshot 2026-04-01 162551.png After i have change scope Incident Management for Service Operations Workspace,

i have checked the client scripts but that related client script not appears to me

i need change the full name i have try but not changed,

any body help me this one, 

Screenshot 2026-04-01 165049 change full name.png

1 REPLY 1

Dinesh Chilaka
Kilo Sage

Hi @basha shaik ,

Header.png

 

Click on the icon which is showed in the above image,

Then find the client script named as InitialTranslations,

Screenshot 2026-04-01 at 5.22.55 PM.png

Then open the client script and modify the client script, like below

/**

* @param {params} params

* @param {api} params.api

* @param {any} params.event

* @param {any} params.imports

* @param {ApiHelpers} params.helpers

*/

async function handler({

    api,

    event,

    helpers,

    imports

}) {

    

    const userGreeting = await helpers.translate('Hello {0}!', api.context.session.user.fullName);

    api.setState('userGreeting', userGreeting);

}


On the Same page on the left side scroll up you can see the body(display in the above attachment), click on that and on the right you can see the events, find out the page ready event ,add click on event handler and select the  InitialTranslations client script.

Screenshot 2026-04-01 at 5.28.01 PM.png

 

Then save the page and observe the change in the homepage.

If my response helped, mark it as helpful and accept the solution.