Hi,
I have a total of 30 columns and I do not want user when they add/edit, they will have to scroll all the way to find the field they want to add/edit as it will be too long and messy.
Thus, I used PHPRunner to create 4 menus as below:
- Master (Only for viewing all the 30 columns, and the data is automatically created from "Menu A","Menu B","Menu C")-> Without user interaction
- Menu A (Only contain 10 out of the 30 columns, and each record is unique based on the client name)-> User creation
- Menu B (Only contain 10 out of the 30 columns, and each record is unique based on the client name)-> User creation
- Menu C (Only contain 10 out of the 30 columns, but a same client name can have many records)-> User creation
Steps:
- User must create a new client name in Menu A first.
- In Menu A, once user created a client name: ABC and its corresponding columns are filled in with data. User click save.
- "Master" menu will automatically show the record created from Menu A. (First 10 columns out of the 30 columns)
- In Menu B, user will fill in another 10 columns, 1 more column will be the client name (the client name will be in a drop down list whenever user created a new client in Menu A)
- "Master" menu will now have 20 records (10 from Menu A and 10 from Menu B ) under the same client name.
- In Menu C, user will create the last 10 records. However, for Menu C, under same client name, user can have many records.
- In Menu C, user create 1 record with client name: ABC. "Master" menu will show all the 30 columns data from Menu A, Menu B, Menu C.
I have done all the above steps, however I am facing problem on the following steps which need some kind help.
- If user add another record with same client name: ABC in Menu C, in "Master" menu I need to have auto-duplicate all the record except the last 10 columns from Menu C is different. Is it possible?
Thanks in advance the help.