Booking events for multiple staff

Good morning!  I need to set up a page where a receptionist can book clients to on different staff members' calendars, but not see their personal profiles.  Preferrably, I would like to have a database on their clients so that the receptionist knows how much time to book because some of the clients need 15 minutes, some need a couple of hours....
What do you think is the best way to do this?  Booking or a web app?  Can someone help determine which would be the easiest route?  I have attempted the web app, but cant seem to make it work the way I want it to.
On the home page, I want the receptionist to have to log in.  After she logs in, she sees a page where she has the staff pictures and she can click on a staff member to schedule an apppointment. Once she does this it should bring up within the same page a drop down box of clients names to select from, and then another drop down box for types of service for that client.  Based on the information from the database, the system needs to let the receptionist know how much time is required for that specific client.
Thanks!

Thank you for posting.
You may consider the following steps to achieve this. However, there is one limitation to this set up. There isn't a way to display what time slots for an employee are free.
1. Create a secure zone and give access of this secure zone to the receptionist.
2. On the landing page of the secure zone, add the images of all the employees and link all the images to a page.
3. On the linked page, add a web form with the drop down lists you mentioned.
4. Add date picker to the form.
5. You can either provide time slots in the 15mins or 30mins window, as required, as radio boxes or check boxes or you can provide a field to manually fill the time slots.
6. You can also configure the form to send the notification e-mail to respective employee based on the selection from the drop down list. For more info on this, please refer to the following forum post : http://forums.adobe.com/message/4431061#4431061
Hope this helps.
Cheers,
Aishvarya Raj Rastogi

Similar Messages

  • Need help with EVENT BOOKING: option for multiple, payment (pay pal standard or pro only) add cost, etc

    Hello!
    I'm at my wits end: please help! It seems straight forward, and I sold my client on BC thinking this was doable in the events module, but it seems maybe not so without a ton of custom coding.
    1. Book an event online,
    with option for multiple (say 1-5 people at a fixed cost per person),
    and checkout using only Pay Pal (standard or pro, doesn't matter, but I think Standard won't work without shopping cart).
    2. The events are every day but Sunday all year long (just admission to an attraction), so is there a way to upload months in advance so they don't have to be manually entered?
    I'm so grateful for any assistance.

    This is all very achievable:
    • Events you can add multiple people to book.
    • PayPal you use use our APP that's in the BC Appstore (Liam to confirm is works with bookings)
    I'm sales and marketing at Pretty, so I'm not the person to advise on how all this fits together. But I'm sure Liam can point you in the right direction.
    If you need some consulting or us to do it for you just let me know [email protected]
    Brett
    www.prettydigital.com.au

  • One address book library for multiple users on notebook

    Good morning! I have been searching the forums but only find solutions if you are running OS X Server. I just bought a MacBook Pro running Leopard and my wife and I have separate accounts so we can keep our iTunes libraries, etc separate. I was able to successfully share an iPhoto library and now want to do that with Address Book. Any tips on how?

    I am new to the Mac and looking for the same solution of sharing the address book without using a mobile me account nor any other type of server. I have been searching the forums and have not found a solution for a very simple problem.
    Can anyone tell me how to share the address book so my wife and I see the same exact address book and both have permission to make changes?
    iPhoto was easy to share by moving my iPhoto library to the "Shared" users folder. I allowed read and write access to the iPhoto Library for both users, but my wife's account does get an error when it tries to save. It mentions that some recent changes may be lost. I double checked and my wife's account does have read and write privileges.
    Perhaps this is what eeperman meant by limited function.

  • How to share projects/events across multiple users

    what's the best way to share projects and events for multiple users on the same computer?
    i want to be able to open fcpx in one user account and have access to all events and projects that i have access to as another user. basically, fcpx should look exactly the same in both accounts.

    Welcome User in OTN,
    to make two projects can access its classes you should goto the project property ---> Dependencies then add the other project.
    in your case:
    try to goto you Model project property ----> Dependencies ---> Edit Dependencies .
    you will find your ViewController project. Expand it thin check to Build Output.
    you can make this for ViewContoller project also as:
    goto you ViewContoller project property ----> Dependencies ---> Edit Dependencies .
    you will find your Model project. Expand it thin check to Build Output.
    Sameh Nassar

  • Can I use different booking forms for different events?

    My client has multiple events running at the same time. Some paid, some free. I've created seperate booking forms for each, but can't figure out how to apply them to the events.
    Anyone know how to do this?
    Online chat doesn't answer and suggested that I post it here.
    Thanks!
    jerry

    Yes, it's working, but still in the process as the site is undergoing other changes. Learned the detailed work-through from two tutorials on kiyuco, including one for a web app.
    Still, it's an odd process where you need to pay a subscription fee to a third party for tech support which should be coming from Adobe. Also noticed that BC's "new, improved help and support" is little more than links to bcguru tutorials, another paid subscription service.
    Thanks for the follow up!
    - jerry

  • Job not getting triggered for Multiple Scheduler Events

    hi,
    I would like a job to be triggered for multiple scheduler events, subscribing to a single event works fine. But, when I set multiple event condition, nothing works.
    My objective is to run a job, whenever job starts or restarts or exceeds max run duration.
    Note : Is it possible to trigger a job, when a job RESTARTS by subscribing to JOB_START ????????
    procedure sniffer_proc(p_message in sys.scheduler$_event_info)
    is
    --Code
    end sniffer_proc
    dbms_scheduler.create_program(program_name => 'PROG',
    program_action => 'sniffer_proc',
    program_type => 'stored_procedure',
    number_of_arguments => 1,
    enabled => false);
    -- Define the meta data on scheduler event to be passed.
    dbms_scheduler.define_metadata_argument('PROG',
    'event_message',1);
    dbms_scheduler.enable('PROG');
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' or tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    I tried this too...
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' and tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    Need help
    Thanks...
    Edited by: user602200 on Dec 28, 2009 3:00 AM
    Edited by: user602200 on Dec 28, 2009 3:03 AM

    Hi,
    Here is complete code which I tested on 10.2.0.4 which shows a second job that runs after a first job starts and also when it has exceeded its max run duration. It doesn't have the condition but just runs on every event raised, but the job only raises the 2 events.
    Hope this helps,
    Ravi.
    -- run a job when another starts and exceeds its max_run_duration
    set pagesize 200
    -- create a user just for this test
    drop user test_user cascade;
    grant connect, create job, create session, resource,
      create table to test_user identified by test_user ;
    connect test_user/test_user
    -- create a table for output
    create table job_output (log_date timestamp with time zone,
            output varchar2(4000));
    -- add an event queue subscriber for this user's messages
    exec dbms_scheduler.add_event_queue_subscriber('myagent')
    -- create the first job and have it raise an event whenever it completes
    -- (succeeds, fails or stops)
    begin
    dbms_scheduler.create_job
       ( 'first_job', job_action =>
         'insert into job_output values(systimestamp, ''first job runs'');'||
         'commit; dbms_lock.sleep(70);',
        job_type => 'plsql_block',
        enabled => false, repeat_interval=>'freq=secondly;interval=90' ) ;
    dbms_scheduler.set_attribute ( 'first_job' , 'max_runs' , 2);
    dbms_scheduler.set_attribute
        ( 'first_job' , 'raise_events' , dbms_scheduler.job_started);
    dbms_scheduler.set_attribute ( 'first_job' , 'max_run_duration' ,
        interval '60' second);
    end;
    -- create a simple second job that runs when the first starts and after
    -- it has exceeded its max_run_duration
    begin
      dbms_scheduler.create_job('second_job',
                                job_type=>'plsql_block',
                                job_action=>
        'insert into job_output values(systimestamp, ''second job runs'');',
                                event_condition =>
       'tab.user_data.object_name = ''FIRST_JOB''',
                                queue_spec =>'sys.scheduler$_event_queue,myagent',
                                enabled=>true);
    end;
    -- this allows multiple simultaneous runs of the second job on 11g and up
    begin
      $IF DBMS_DB_VERSION.VER_LE_10 $THEN
        null;
      $ELSE
        dbms_scheduler.set_attribute('second_job', 'parallel_instances',true);
      $END
    end;
    -- enable the first job so it starts running
    exec dbms_scheduler.enable('first_job')
    -- wait until the first job has run twice
    exec dbms_lock.sleep(180)
    select * from job_output;

  • Unable to book attendee for a future business event.

    Dear Community,
    In the training and event management module, i am unable to book attendee for a future business event. ( Using T-code PSV1).
    I prebook the attendee for the business event type. And when  try booking the attendee, it  says  ' Attendee cannot be booked.
    Attendee is not available for the business event type.'
    Any guidance would be helpful.
    Regards,
    Rati

    As mentioned earlier, please check the work schedule of the attendee.  The employee might be on leave or is actually not working on this day.  I am assuming Time integration is activated here.  Check for the Business event type too.  There if select checkbox NO INTEGRATION, then you should not find this error.
    Try tweaking the days off settings in the same tab in the business event type.
    Hope this helps
    Best Regards.
    Karan.

  • Unable to book trainees for future events

    Hi,
    I have created some training events in Quality server. I am able to book trainees for the events with past dates, but unable to book any trainess for the events with today or future dates. What could be the issue?
    Thanks,
    Nivedita.

    Hi Nivedita
    You can only use the prebooking option to book for future courses and not the normal booking option.Check the course type / course has valid start dates and end dates.
    Thanks
    Gautham.

  • I want to order multiple copies of an iPhoto book I have already purchased once. Is there a price break for multiple copies? Also, can I send to multiple addresses?

    I want to order multiple copies of an iBook I have already purchased. I have two questions:
    1) Can I send them to multiple addresses?
    2) Is there a price break for multiple copies?

    1) No.
    2) No.

  • Detect clicked cluster in mouse down event for clusters within multiple stacked clusters

    With the help of Ben (see http://forums.ni.com/t5/LabVIEW/Determine-cluster-element-clicked-in-mouse-down-event/td-p/1245770)
    I could easily find out what sub-cluster had been clicked on (mouse down event) within the main cluster, by using the Label.Text Property.
    However if you have a cluster within a cluster within a cluster then you probably have to use individual mouse down events for each sub-sub cluster.
    I just wanted to use one "Main Cluster":Mouse Down event and from that determine which of the sub-sub clusters had been clicked on - is this even remotely possible?
    Chris.

    Chris Reed wrote:
    With the help of Ben (see http://forums.ni.com/t5/LabVIEW/Determine-cluster-element-clicked-in-mouse-down-event/td-p/1245770)
    I could easily find out what sub-cluster had been clicked on (mouse down event) within the main cluster, by using the Label.Text Property.
    However if you have a cluster within a cluster within a cluster then you probably have to use individual mouse down events for each sub-sub cluster.
    I just wanted to use one "Main Cluster":Mouse Down event and from that determine which of the sub-sub clusters had been clicked on - is this even remotely possible?
    Chris.
    Yes but... you will have to pass through 26 Kudos worth of Nuggets to get there (Well maybe you can skip the last 5 or so).
    This Nugget by Ton teaches us how to use Dynamic Event Registration. (15 Kudos, must read and understand)
    This Nugget by me talks about getting at references inside arbitrary data structures. (11 Kudos, You don't have to read the whole thing, only enough to get at nested objects).
    SO use the stuff I wrote about to gather up the references to the clusters. Build them into an array and then use dynamic event registration and what you learned in that thread you linked in your question.
    So Possible? Yes!
    Easy? YOU tell me.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • An uneventful year... (aka no events for photos taken in 2006)

    Have just installed iPhoto 08 and it has upgraded my library and created events for me.
    However, no photos from between March 21 2005 and February 1 2007 show up in the Events or Photos views at all! I can see these photos in their albums but there is a huge hole between 2005 and 2007 everywhere else, and it only lists '830 photos in 30 events' at the bottom of the window (I know there are a couple of thousand normally). If i select all the photos in an album and ask iPhoto to create an event it pops up a confirmation, I confirm and it looks as if it has created an event (in any case it won't let me do it again, the option is greyed out), but I still cannot see these photos in Events/Photos.
    I tried deleting the album in case a photos can't be in an Event and an Album at the same time but this resulted in not being able to see the photos of that album anywhere! Luckily I have a backup...
    I have tried repairing permissions, rebuilding the library, and restoring the library from backup to give iPhoto another shot at it but nothing seems to work!
    How can I fix this?

    Simon:
    Welcome to the Apple Discussions. Threre are two ways to correct that.
    1 - use the Photo's->Batch Change menu option to change the date to what you want AND write that date to the files as well.
    2 - use the Photos->Adjust Date and Time menu option.
    Both do pretty much the same. I've not figured out the real differences between the two but there's bound to be one. I've been able to do multiple photos at a time with each.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • How to display timed events across multiple days in month view?

    Simple question I suppose, though I don't know if it has an answer. When I put an event spanning multiple days (say, a week long vacation) in iCal, and check the "All Day" box, it shows a nice, accurate, bar going across those days the event I'm entering covers. However, if I give it specific times for the event (e.g. the times of departure and return for said trip), even if those times are a week apart, the event still appears to only cover the starting date when viewed from the month perspective.
    Is there any way I can make the month calendar show all the days during which the event is "happening" so that at a glance I will realize that an entire week is busy?

    Hi,
    You can do it with keyboard shortcuts.
    Select the event. Press Cmd+X. Press Cmd and right or left arrow (depending if it is forward or back in months) until you are in the correct month. Press Cmd+V to pase on the same day in the new month.
    Best wishes
    John M

  • Need To Return Calendar Events For Current Day

    Hello,
    I have a calendar which includes seperate start and end date fields. I need to write a query that will return events for each day in a month, but I need to be mindful of the fact that some events span multiple days. Here is my query so far which isn't working quite right.
    <cfquery name="qTodayEvents" datasource="#getDatasource()#">
    SELECT eventID, title, summary, code, description
    FROM events INNER JOIN eventTypes ON events.typeID=eventTypes.typeID
    WHERE deleted=0
    AND
      startDate >= <cfqueryparam cfsqltype="cf_sql_timestamp" value="#todayStartTime#" />
      AND startDate <= <cfqueryparam cfsqltype="cf_sql_timestamp" value="#todayEndTime#" />
    ) OR (
      endDate >= <cfqueryparam cfsqltype="cf_sql_timestamp" value="#todayStartTime#" />
      AND endDate <= <cfqueryparam cfsqltype="cf_sql_timestamp" value="#todayEndTime#" />
    ) OR (
      startDate <= <cfqueryparam cfsqltype="cf_sql_timestamp" value="#todayStartTime#" />
      AND endDate >= <cfqueryparam cfsqltype="cf_sql_timestamp" value="#todayEndTime#" />
    </cfquery>
    The query is located inside a loop which loops through the days in a given month.
    Does anyone know what I am doing wrong? Any assistance would be appreciated.
    Many thanks,
    Simon

    You have to do nested loops - one for the days of the month, and once for the query.  It probably does not matter which is nested inside of what.  You want your query ordered by EndDate.  Then you can do something like this.
    ControlDate = Date1;
    MaxDate = arraymax(yourquery["enddate"]);
    <cfloop condition = ControlDate lt Date2>
    <cfloop from = "1" to = yourquery.recordcount index = 1>
    <cfif ControlDate >= StartDate and ControlDate <= EndDate>
    your code goes here
    <cfelse>
    break
    </cfif>
    <cfloop>
    add a day to ControlDate
    maybe break if the control date is greater than the max date.
    </cfloop>

  • How can organize photos by year?  by putting a folder inside of a folder?  So putting all of the events for one year under one folder so that it keeps them seperate?

    Looking for help in organizing my photos.   I would like to organize them so that i can put all of the events for a year into one folder  (i would like to keep multiple events under a folder)?  Help please?!

    Like Larry suggested:
    Click to view full size
    The top folder could be named 2011.  In it could be 12 smart folders each with the following criteria:
    Date is in the range"  mm/01/yyyy to mm/31/yyyy.
    So the 2011 folder would have 12 month smart albums each with the photos for that particular month.
    Or you can use the search by date function at the bottom of the window to search by year, month, week or day.
    OT

  • Training and event for ESS/MSS

    Hi Expert,
    Do we have function for MSS user book course for their subordinate using training and event in portal?
    If there is such function, where can I get the documentation? Also, what is the version e.g. WebDynpro, BSP, or ITS version?
    Regards,
    WaiWeng

    Hi WaiWeng,
    I'm not sure if you will find a user guide book for end user. So far I have not seen it yet.
    We create our own user guide according to the company needs for MSS. You can start off via the link below and with the help.sap.
    https://websmp204.sap-ag.de/mss
    Go through the help.sap for MSS (http://help.sap.com/saphelp_erp2005vp/helpdata/en/2f/d7844205625551e10000000a1550b0/frameset.htm) and then highlight the functions of MSS which your company wants to implement and then from the help.sap, create your own user guide. Its very comprehensive and you can create afew MSS function user guides within afew hours (and you will be told what you need to lookout for interms of needed configuration in both Portal and your HR backend system).
    Hope that helps.
    Ray

Maybe you are looking for

  • Error while deploying the Bussiness package in CE 7.1 SP5

    Hi All, I am facing the problem while deploying the Bussiness package. The same bussiness package has been deployed on EP 7.0 using SDM. In CE 7.1 while deploying the package we are getting error. Please check the log. -- Deployment Items -      1. C

  • Clearing customer down payment without VAT code

    Dear Freinds For normal cleared items ( between invoices and incoming payments) the VAT code doen't appear. But while clearing a Customer Down payment request, when we are using a sp. GL Indicator it is asking for tax code I want to clear customer do

  • Report to do check status of sm37 jobs

    Hello, I wold like to create a job that checks the status of all running jobs on sm37 (the same as when we go to SM37,job, check status), can anyone tell me the name of the program that does that? Thanks, Pedro

  • Query jump: No Web server maintained for the presentation of log. system

    Hello, I have created a query jump in the RSBBS transaction to go in R/3 through a Bex Query. When i choose the jump in the query anayzer I have the error message: <b>No Web server maintained for the presentation of log. system.</b> Do you have ever

  • Need help in A/P reports in crystal

    Hi all, Need to create Date buckets ( parameters, future dates) which displays sum of  due amount depending on the parameter passed.   As of today   upto first bucket(date parameter 1)  B/w par 1 + 1 & parmeter 2 -1    B/w par 2 &par 3-    sum of due