Skip to main content
Solved

Edit or delete template in replenishment stock

  • 22 July 2024
  • 2 replies
  • 33 views

Hello all,

At the moment there seems to be no setting or function to edit or delete the template in the Screen Replenishment Stock. Is there a way for an admin to assign an authorization linked to roles? 

Maybe I have just overlooked the function. Has someone has an idea how this can be implemented?


 

Best regards
Lars Gießler

2 replies

Userlevel 3
Badge +7

Hello @lgiessler 

The short answer to your question is no. Once a template has been saved, it can only be deleted or made public by the user who created it.  There is no function to add to a role or pre built screen that will provide this functionality. However it is possible to create a new configured screen that will allow an user to edit, delete or turn on and off the make public option.

If a new standard screen is created with the primary table being ps_criteria_set and the child table being ps_criteria_set_value you can have a screen that can be given to users via roles. This screen must be setup so that no new records are created and that some fields are read only.  The following are the table and fields that should be on the screen or in the hidden group.

  1. ps_criteria_set.criteria_set_id –  Read only
  2. ps_criteria_set.screen_name – Read only
  3. ps_criteria_set.function_name – Read only
  4. ps_criteria_set.person_id – Read only
  5. ps_criteria_set.title – Read only
  6. ps_criteria_set.form_factor  - hidden group
  7. ps_criteria_set.public_set – editable
  8. ps_criteria_set_value.person_id – Read only
  9. ps_criteria_set_value.criteria_set_id – Read only
  10. ps_criteria_set_value.screen_name – Read only
  11. ps_criteria_set_value.column_name – Read only
  12. ps_criteria_set_value.value – editable
  13. ps_criteria_set_value.sequence – hidden group
  14. ps_criteria_set_value.form_factor – hidden group

The child relationship should be between the following 4 fields

  1. function_name
  2. person_id
  3. screen_name
  4. criteria_set_id

Remove the new button on the search screen and on the top of the main screen also remove the new and delete button on the list view of ps_criteria_set_value

Update the custom function to be disable as default and add the new screen to a menu.

Then add new function to a role and uncheck the disabled flag.

 

Hope this helps

Cheers,

Morris

Userlevel 1
Badge +4

Hi @Morris,

Sorry for the late reply, I was on holiday.

Thank you for the information you have provided. I think our workaround will be to work with a dedicated user who creates and deletes the screens instead of several different users.

Best regards
Lars

Reply