Normal Topic Programming Suggestions (Read 703 times)
proudpoppy
Full Member
Members
***
Offline


Do What ??

Posts: 420
Location: South Carolina
Joined: Apr 7th, 2004
Programming Suggestions
Jul 28th, 2005 at 4:41pm
Print Post Print Post  
I need some suggestions on how to handle the following:
1.Receive work request
2.Issue work Order, assign to employee.
3.Now here the area I'm having a problem with:
Tracking the work order once its been issued to make sure its handled within our policy.
Question: How would I get Sesame to print a report or a popup window listing all work orders not closed out, when I start Sesame.Would really prefer a popup report on the screen, but at this point I settle for what I can get.
4.Also if anybody has worked with task codes, then any information you can give me would be a big help.

                                            Thanks for your input !!
                                             Poppy

  
Back to top
 
IP Logged
 
Bob_Hansen
Senior Member
Members
*****
Offline


WOW, They have the Internet
on computers now!

Posts: 1861
Location: Salem, NH
Joined: Nov 24th, 2002
Re: Programming Suggestions
Reply #1 - Jul 29th, 2005 at 1:25am
Print Post Print Post  
This is just a skeleton that can become more complex, but may be enough to get you started with some ideas.

1.  It is a common practice to have mutliple Work Centers for a sequential process activity.

2.  Work Centers may have multiple machines/operators in each Work Center.

3.  Operation Codes can be created that can be used in all Work Centers, or restricted to specific  Work Centers. 

4.  Each Job/Work Order would have a Routing sheet that lists the sequence Steps of operations in order.  Each Step would have Operation Codes, and budgeted time/costs/resources for each Step. Routing steps can also include Outside Operations in the flow.  Each operator signs off after each step to proivide quality audit trail.

5.  All operators must report on time cards where total of all time with Operation Codes matches the time they are punched in.  You can have codes for Direct/Indirect time and for Vacation/Holidays, etc.
================================

With those tools you can plan and budget and track performance in all work centers and do analysis by operation codes.




  



Bob Hansen
Sesame Database Manager Professional
Sensible Solutions Inc.
Salem, NH
603-898-8223
Skype ID = sensiblesolutions
Back to top
IP Logged
 
BOBSCOTT
Senior Member
Members
*****
Offline


That Darn Computer #$X#
{curse words}

Posts: 1195
Joined: Nov 22nd, 2002
Re: Programming Suggestions
Reply #2 - Jul 29th, 2005 at 1:30am
Print Post Print Post  
Since none of the real pros have jumped in yet, I will see if I can get you a little closer.

It sounds from explanation you are just looking for a method to follow the status of a work order. You can do this many ways and get pretty fancy, however for the sake of simplicity I will use separate elements to track dates rather then just one that could be used with a history element to handle all dates.

I will presume you have a database that has an element
for a unique work order number
a element to hold status
a date element for date entered
a date element for date assigned
a date element for needs to be completed date
a date element to track the completed date
an element for who entered task
an element for who task was assigned to
an element for who assigned task
a description element that describes the task
a command button to merge letters or run reports
and numerous other elements to contain data such as materials needed or costing or ? anything else desired.

When a work order is received it would be entered into the database. When the task description element is exited on a  new record a unique work order number would be generated for the work order . The @date would be slugged into the date entered element and from the user id the person entering order would be slugged into person entered task element and the status automatically assigned to 20.

At this point the person that is responsible for assigning the tasks would log in and either retrieve all the status 20 or run a report that would show all status 20 sorted by needs to be completed date. That person would then  retrieve record  and assign the task.

The work order assigned to element if only a few employees with little turn over, can be just a combo box with the employee names pre entered in the choices to select from or if lots of people and lots of turn over it can create a pop-up choice menu from a separate employee database. When exiting element it can update assigned date element with @date, change status element to 30, using user id assign name to who assigned element.

Then using wordmerge or report print the work order out to give to employee.

The employee can login and update the status of the project based on your companies procedures.

Each time management wants to see workorder status they can either retrieve the records and look them over or push a button that runs a report that shows all outstanding orders with how many days till completion date sorted by whatever with as much detail as needed. The report prints to screen in html so it can be viewed or printed.

Once the status hits 99 for complete the date completed field can be filled with @date the cost element can be updated, and all needed data collected.

Management can then run history reports that shows how many days it took to complete tasks by employee or vendor or type of job.

With a little thought and effort many things could be added. You can get a little fancier and scan or fax the original document that the work order was created from into the computer and have a button that displays the original document from the work order when needed. You can use Bar codes and bar code guns to track the work order progress fairly easily.

The sky is the limit and everything I just explained in my example is quite doable in a short time without being very complicated with Sesame.

I hope this helps a little.
Smiley
  

Team – Together Everyone Achieves More
Back to top
 
IP Logged
 
BOBSCOTT
Senior Member
Members
*****
Offline


That Darn Computer #$X#
{curse words}

Posts: 1195
Joined: Nov 22nd, 2002
Re: Programming Suggestions
Reply #3 - Jul 29th, 2005 at 1:32am
Print Post Print Post  
As I was typing my reply Bob Hansen responded. Now you have some more to think about.
  

Team – Together Everyone Achieves More
Back to top
 
IP Logged
 
proudpoppy
Full Member
Members
***
Offline


Do What ??

Posts: 420
Location: South Carolina
Joined: Apr 7th, 2004
Re: Programming Suggestions
Reply #4 - Jul 29th, 2005 at 11:50am
Print Post Print Post  
Thanks for the responses, gives me something to ponder over the weekend !! Wink
  
Back to top
 
IP Logged