solution for a problem statement I need to implement

Certified Associate Developer

loan application flows to the Manager to process it further. The manager has 3 sub-ordinates to whom he assigns the applications for further processing.

Requirement#1: As a manager, I should be able to configure the percentage allocation for each staff members.

Requirement#2: As a manager, I want the system to auto assign the ingested cases(requests) to the staff members in the configured percentage.

where to start and what to do to implement this .. like can anyone please guide step by step for this 

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    This is a very generic request so I can only give you a high level answer.

    First, you will need some database tables to store defined teams and their allocation goals. For the actual assignment, you might want to check the assignments of a specific past period and calculate the difference to the target for each assignee. Then select the on with the largest negative difference.

Reply
  • 0
    Certified Lead Developer

    This is a very generic request so I can only give you a high level answer.

    First, you will need some database tables to store defined teams and their allocation goals. For the actual assignment, you might want to check the assignments of a specific past period and calculate the difference to the target for each assignee. Then select the on with the largest negative difference.

Children
No Data