cancel
Showing results for 
Search instead for 
Did you mean: 

Page customization of Supplier Edit via Workflow

Former Member
0 Kudos

Hi,

I have a custom collection in Supplier and Supplier Modification via Workflow object (10002203).

In page customization of Supplier Modification by Workflow, I am setting this custom collection as NOT Editable

But when I open a Supplier by clicking Edit via Workflow, this collection is still Editable.

Please suggest how can we achieve this or am i missing anything.

Accepted Solutions (1)

Accepted Solutions (1)

former_member190023
Contributor
0 Kudos

Hello Vaibhav,

This is actually related to a recent thread

As it turns out such a page customization will not work (it applies for all collections, standard or custom).

A solution for this is to use custom scripting to achieve this result using IapiDocumentLockManager.

Also note that to fully lock a collection you need to use it like so:

1. IapiDocumentLockManager.lockField(session, doc, "collection_id"); -> disable add/delete buttons

2. IapiDocumentLockManager.lockField(session, collection_row, "collection_field"); -> lock field in collection row


Bogdan

Answers (0)