Are the admin and user flowcharts combined into one flowchart or separated? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Are the admin and user flowcharts combined into one flowchart or separated?

I want to create a Java NetBeans program. Where there is a login page, there are two actors (admin and user). If a flowchart is made, do I have to make 2 flowcharts? One flowchart admin and one flowchart user Can it be made into 1 flowchart, and then there will be an admin/user condition ?

24th May 2023, 9:29 AM
Nasywa
3 Answers
+ 3
I think you probably need to get some pens and paper and draw out what each user will do. If there are enough common points for each user, then you could probably use the "1 flowchart". If you find that there are lots of branches leading off because user functions are different, then you'll most likely need "2 flowcharts".
24th May 2023, 12:33 PM
Ausgrindtube
Ausgrindtube - avatar
+ 1
Nasywa your project sounds as if it should be 2 identifiable flowcharts to explain proper flow from both ends. The backend / admin side obviously will be more technical and you can add footnotes as to where the user entries are observed, thus minimalize the user flowchart.
25th May 2023, 2:25 AM
BroFar
BroFar - avatar
0
Ausgrindtube , Thank You. For users, use it to order and admin, to manage user orders, etc.The program I made about booking a photography studio. but I only found the admin branch (to manage/view orders, notify users to fetch photo files, financial reports, etc)admin only has ±5 branches and user branch((order photo packages, pay, etc), schedule changes, etc) users ±3 branches if it's like that, can I only make 1 flowchart? or I have to make 2 flowcharts (admin and user)?
24th May 2023, 10:16 PM
Nasywa