This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

You have no insert permission for this object.

Hi,

I would like to pass the creation of internals employees through the validation of HR. I already implemented this process so when a manager declare a new joiner, this one is created with IsInactive=True and it goes to False when the HR team approve the creation.

It works perfectly yesterday but when I wanted to do a test today, I get the error below : You have no insert permission for this object. Any idea on what could be the problem ? knowing that I can create externals users with no problem

for information, when the manager specify that the user will be internal (i.e. IsInactive=True), the departure date is set to today and cannot be changed which is logic in my sens. 

Parents
  • Hi Trevor, Yes it happens when a new employee is being created in the web portal and I'am using the v8.0.0.36

    to create internal employees with an inactive identity, i am using the emplate below :

    if (String.IsNullOrEmpty($ImportSource$)) and ($CustomProperty01$ = "CDI" or   $CustomProperty01$ = "Intern") then

    value = true

    Else value = false

    end if

Reply
  • Hi Trevor, Yes it happens when a new employee is being created in the web portal and I'am using the v8.0.0.36

    to create internal employees with an inactive identity, i am using the emplate below :

    if (String.IsNullOrEmpty($ImportSource$)) and ($CustomProperty01$ = "CDI" or   $CustomProperty01$ = "Intern") then

    value = true

    Else value = false

    end if

Children
No Data