I have different users with different roles and they will be accessing the same table. I managed to give certain permissions to edit few columns in the table for one particular role. Here is the question, How do I give the permission to a different role with a different set of columns editing capabilities on the same table?
<?xml version="1.0" encoding="UTF-8"?>
<FeatureEditing>
<table>
<showAllAttributes>false</showAllAttributes>
<primaryKey>
<includeInInsert>false</includeInInsert>
<hidden>true</hidden>
<showDisabled>true</showDisabled>
</primaryKey>
<geometrySupported>
<line>false</line>
<point>false</point>
<polygon>false</polygon>
</geometrySupported>
<columns>
<column>
<dbColumnName>qc_status</dbColumnName>
<name>QC Status</name>
<required>true</required>
<defaultValue>Under Review</defaultValue>
<pickList>
<Option>Completed</Option>
<Option>Rejected</Option>
<Option>FS Validation</Option>
</pickList>
</column>
<column>
<dbColumnName>qc_comments</dbColumnName>
<name>QC Comments</name>
<required>true</required>
</column>
</columns>
</table>
</FeatureEditing>
The above XML code is just to give permission for one role. Is there any chance that we can include role wise editing ?