worknotes should be in compose section of worknotes

Vedavalli
Tera Contributor

Hi

for my custom workspace I want to show  worknotes in compose section not in the workspace form(same like in sow )

Vedavalli_0-1748920564043.png

in this way I want.

 

for my custom workspace i tried to remove the notes tab from the form in my table but after removing notes section in compose section also worknotes is hidden.I want to show only in compose section not in the form. How can i achieve?

1 ACCEPTED SOLUTION

@Vedavalli 

So you want it only on compose section and not in left side?

If yes then create workspace view rule as per below link and you can achieve your requirement

Hide journal fields on Workspace forms 

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

5 REPLIES 5

@Vedavalli 

I tried to hide the section and not the fields and it removed the fields from left side (form) but kept them on compose section

If you want only for sow view then uncheck Global checkbox and enter the view name as workspace

Script:

function onLoad() {
    //Type appropriate comment here, and begin script below
    g_form.setSectionDisplay('notes', false);
}

AnkurBawiskar_2-1748929059124.png

 

Output:

AnkurBawiskar_1-1748929040962.png

 

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader