Hi @Ganeshtamil_29
On the screen, the executor shows as text. But looks like executor as the person data type is in Sharepoint. is it correct?
If the executor is a person record then your patch command like
With({ItemExecutor:LookUp('IFeature Model Parameter', 'DIR Number'=dir_4.Text,Executor)},
Patch(
SPDataSource,
Defaults(SPDataSource),
{
Executor:
{
Claims: "i:0#.f|membership|" & ItemExecutor.Email,
Department: "",
DisplayName: ItemExecutor.DisplayName,
Email: ItemExecutor.Email,
JobTitle: "",
Picture: ""
}
}
)
)