LSO - Follow up for WBT Courses

Hi Experts,
I have created a WBT Course which is accessed by the learner.
My question is how do you manage course follow up for Web Based Training from the Instruction and Tutoring tab on the portal?
What all relationships are to be maintained to do the same?
Would request you to please tell me the detailed steps to do the same.
Regards,
Shweta Thakkar

Hi Shweta
  The participation record with relationship 614 between the course(ET) and the person(T) is maintained. Now when the participation is followed up, the additional data table HRPAD614 (for WBT) is updated with the follow_up field set to 'X'. I think in the standard portal there is an option given which says 'Set course to completed' which does the follow up part. I think this partly answers your question about which relationship is maintained and which tables/infotypes are used.
Neo

Similar Messages

  • LSO: Function Module for follow up and inserting qualification

    Hi,
    I have a situation where the employee is booked for a course in SAP, employee will attend the course and the results will come from an external system in a text file. I need to upload this text file and do the follow up for this course with pass or failure. Is there any function module for this scenario ?
    Once I did the follow-up, if there is a qualification attached to the course type, I need to insert the qualification in the employee profile. Is there any function module for this scenario ?
    Your help will be greatly appreciated and I will give the points accordingly.
    Thanks
    Naresh

    LSO_BUFFER_PARTIC_CONFIRMATION
    LSO_UPDATE_FOLLOWUP
    LSO_BUFFER_QUALIS_FOR_TRANSFER
    LSO_UPDATE_FOLLOWUP
    LSO_BUFFER_TRAINING_FOUP
    LSO_UPDATE_FOLLOWUP
    We can use the above FM's to complete the course follow up.

  • LSO - Follow-Up Course Participation

    Dear All,
    When following up a course in SAP LSO, I marked the course participation as 'absent' for ppl who did not turn up for the course. What happens in the system is that a cancellation will be triggered, thus this person will not be reflected in any attendees/participation report. What I need is actually is a report where I can see participants who are absent and present. But, when system cancels the participation, it creates a 040 relationship in table HRP1001, thus there is no way for me to differentiate between someone who cancels before the training, and someone who were absent during the training. Has anyone run into this problem before? Pls advise. Thanks.

    PeckHan
    You may need to differentiate between these 2 scenarios
    A: Attendee Cancels Course Attendance Before Occurence of Course
    In this case, user will need to withdraw the attendee from the course before user can perform "follow up" of the course.  This is where a cancellation reason can be specified.
    B: Attendee Did Not Show Up During Course
    In this case, when user select the course to perform "Follow up" from the dynamic course menu, user should be presented with a screen that shall list all course attendees assigned to the course run.
    User may mark that the attendee had not show up for the course at this stage.  See screen shot (https://wiki.sdn.sap.com/wiki/download/attachments/26779/CourseFollowUp-LSO.jpg)
    You may want to ensure that the following config point (IMG>Training & Events Management>SAP Learning Solution>Training Management>Recurring Activities>
    Follow-Up>Control of Process Steps) has been appropriately configured such that the attached screen shot appears.
    Hope the above information has been helpful.
    Thanks

  • LSO Follow Up (WBT) - Runtime error due to ceased employees

    We have just created a custom program which confirms participation for learners (web-based training).  In Production we will create a nightly job that confirms participation if the learner forgets to click on this link.
    This is done by using ABAP program SAPLLSO_FOLLOWUP.
    It's working fine, however we've come across one issue.  We are getting runtime errors when executing the program.  After some investigation we found out this is because we have Ceased employees enrolled in the courses.
    As as example, in our Test Environment we have a WBT course which has three people enrolled.  One of those people is now ceased.  When you right click on the course (via the dynamic menu) and click on Follow Up, you get the runtime error.
    We can't cancel the ceased employee since he/she has already completed the course.  So as a work around, we changed the Course Type "Completion Specifications" infotype so learners can be "canceled at any time".  We then cancelled the ceased employee from the course.  We then right clicked on the course>follow up, this time it worked.
    Obviously this work around won't be suitable for Produciton.  We don't want to cancel ceased employees from a course as we still want to keep a record of their training.  So is there a way around this???
    Any help would be greatly appreciated!!!!
    Cheers
    Shaun

    Figured it out - data issue

  • No. of Participants for a Course. (SAP learning solution)

    Hi,
    Can anybody please tell me from where can i get the no. of
    1. Booked Participants
    2. waiting List participants
    3. Normal Bookings
    for a Course.
    I checked in HRP1026. In HRP1026, the column names are Bookd, Waitl & Normb respectively  & the same fields are empty for all the courses.
    Waiting for the reply !
    Anand

    Hi Priya,
    Thanks for the reply. I have checked the report. I don't know how i missed this report.
    Thanks once again.
    Our training dept. has purchased SCORM content for WBT which ,when we import in Authoring Enviornment shows only one learning object & no learning objectives. (Single SCO)
    Now what they require that LSO should track learning progress such as
    1. No. of pages completed (Clicked)
    2. Details of hyperlinks clicked (with respective page nos.)
    3. Time spend on each page / hyperlink.
    As far as i know, it is not possible to track learning progress in this manner. I have also gone through note 1032103. Any suggestion ???
    Regarding Cost, our training dept. want to capture cost per course and that too at Course (E) level. I suggested following to them.
    1. Create relevant "Cost items"
    2. Assign them to Course by maintining IT1036.
    3. Generate Price Proposal & Adopt the Price
    Now what they require is Pirce proposal to be generated based on no. of Booked Participants & not on "Optimum Capacity". They don't want to calculate price manually & enter in "Internal Price".
    I wanted to know the standard report where i can get the course information alongwith the price stored (at course level - object E)
    Thnaks & Regards
    Anand.......

  • Need help! Unable to follow the Sun WBT practice.(Simple program)

    Exception in thread "main" java.lang.NoSuchMethodError: main
    Due to the above error, I can't follow the Sun's WBT program. I think something is missing in my Java environment since Sun provided instruction should be correct.
    Please let me know to troubleshoot this.
    Below causes error.(Followed the Sun WBT)
    public class Customer {
         public int customerID = 0; // Default ID for the customer
         public char status = 'N'; // default
         public double totalPurchases= 0.0; // default
         // This method displays the value for an item
         public void displayCustomerInfo() {
              System.out.println("Customer ID:" +customerID);
              System.out.println("Status: " +status);
              System.out.println("Purchases: " +totalPurchases);
    } // end of display method
    } // end of the class
    Below works since I did not use WBT instruction:
    public class Customer2 {
         public static void main( String args[] ) {
         int customerID = 0; // Default ID for the customer
         char status = 'N'; // default
         double totalPurchases= 0.0; // default
              System.out.println("Customer ID:" +customerID);
              System.out.println("Status: " +status);
              System.out.println("Purchases: " +totalPurchases);
    } // end of ????( I do not know how to say here)
    } // end of the class

    public class Customer {
    public int customerID = 0; // Default ID for the customer
    public char status = 'N'; // default
    public double totalPurchases= 0.0; // default
    // This method displays the value for an item
    public void displayCustomerInfo() {
    System.out.println("Customer ID:" +customerID);
    System.out.println("Status: " +status);
    System.out.println("Purchases: " +totalPurchases);
    } // end of display method
    } // end of the class
    NOTE: IF I run the above program, it does not run due to exception. I can compile it without error. Since above coding is used in the Sun WBT course, I think I have Java environment problem. Are you able to run the above program?

  • LMS - Error while booking Attendee for a Course

    Hi All,
    I am getting a strange error while trying to book employees to a Course (E). When I right click on Participation menu>Select Book> Select any Employee and then click on the 'Book' icon I get the following error  -
    "USER CANCELED MAINTENANCE;NO CHANGE EXECUTED'.
    I am getting this error for any course or any employee. What may be the reason ?
    Thanks
    Sanghamitra

    This is due to a missing number range.
    Check your configuration under SPRO :
    Learning Solution --> Training Management --> Basic Settings -->Number Range Maintenance --> Define Number Range for Course Participation Document
    hope it helps and let me know if it works:)

  • Additional Field to the LSO Follow up Participation Screen in LSO_PV15

    Hi All,
    I have a requirement in LSO where i need to display an Additional Field called SCORE in the LSO 'Follow up Participation' (TCODE : LSO_PV15) Screen. The Field appears on the Screen when i enhance the customer include in table HRPAD25. Now the problem is how to make this field editable for the LSO administrator. Is there any BADI that does this? Or should we go for Implicit Enhancement.
    Any input on this regard will be highly appreciated.
    Thanks and Regards,
    Pavithra

    Hi Pavithra,
    I'm facing to the same problem. Did you resolve it ?
    If yes, can you inform me the way you do it ?
    Many thanks
    Regards
    Vincent Bovy

  • Unable to download every other lecture for all courses!

    As of 3/5/2012, I have been unable to download every other lecture (modulo 2) for every course and collection.
    I'm using an iPhone 4, with iOS 5.0.1. Only iTunes U appears to be affected. I can still stream the undownloadable lectures, but am unable to download them for later viewing away from wifi/cellular service.
    Is this behavior by design?
    Is it a bug?
    Is there any way to get the "Free" > "Download Video" links back?
    Has anyone else experienced this?
    Thank you for any and all help,
    John

    It doesn't appear to be limited to a specific provider. Courses from Yale (organic chem), UC Berkley (Chem 1a, 1al fall 2011) and MIT (Intro to Algorithms, Physics I) are all affected, for example. If I randomly browse courses, they're affected too. After looking through about 30 courses/collections, I haven't found a course or collection that isn't affected. It appears to be a modulo 2 thing, as the "Free" button is missing for every other lecture in every case (the odd lectures don't have the "Free" button, and the evens do, in every case). Only the iTunes U app appears to be affected. The iTunes app doesn't exhibit this behavior. I've tried rebooting, killing and restarting the app, deleting and redownloading the app. I've also tried touching the spot where the "Free" button should be, which results in the course streaming, instead of downloading.
    The buttons render initially, and then disappear with the second refresh, when I initially navigate to a course or collection.
    The system log appears to display the following messages:
    SpringBoard[15] (Warning) (displayed about 5 times on a single access, not sure if this is related)
    Unable to deliver SBApplicationNotificationStateChanged
    wifid[25] (Error)
    WiFi....Client itunesstored is background application
    Any thoughts?

  • Participant Confirmation for a course

    Hi TEM gurus,
    I am doing training and event management implementation but i have following doubts :
    1. Client wants to integrate TEM with Time Mgmt. i have activated the swtich. Now condition is if an employee takes leaves in between then system cancel the booking for the employee if employee attendance is less then Minimum percentage attendance required for the course.
    Lets take an example:
    An employee is booked to attend a business event lasting from Monday to  Friday. This booking results in five attendance records in PT for event attendance. The employee then takes a day's vacation for the Monday that is already recorded in PT for event attendance. I have maintained value in switch SEMIN TIMEP as 50%. If i delete attendance record for 1 day from 2002 infotype then system is removing course booking for the employee in PSV2.
    How to maintain settings in such way system won't cancel the bookings and check min percentage attendance required..
    2. We are using ITS application service for ESS. I am not able to get data properly in PV0I view.. Any can give me more information about set up of Course Catalog for ESS.
    Thanks a Ton in advance.
    Best Regards
    Puneet

    Dear Gopi,
    1.Either you have to remove the authorization for the creation of proces orders to the users or else advice them to check the
    open process orders that can be seen in MD04 list.
    2.Based on the order status - particularly for the status PCNF and PDLV status you can conclude that there are confirmations
    and GR left over over or else which can be done against the same order.
    3.Creating process orders everyshift wise is not the correct solution,instead check if you are ECC 6.0 version whether can
    you make use of the shiftwise confirmation in CORK screen for a single process order.
    4.I'm not sure on what logic you will be identifying the partially confirmed order on day/shift basis for the material for the sake
    of using as a reference for creating new process order.
    Check and revert back.
    Regards
    Mangalraj.S

  • Cancel the booking for ILT courses

    Hi All,
    Currently if an employee is booked into the course/training  thru ESS, which is scheduled on the same day of booking and then we are not able to cancel the booking thru ESS on the same day.
    In portal there is message that says" You are booked for this course. You cannot cancel the booking since the course has already started or finished. " even though i have 2 schedules on the same day one in the morning and the other in noon so employees book for morning session and then they realise that they can't make it so when they try to cancel they get the above error message.
    Pls let me know how can the ee cancel the course before the training starts and book the non session.
    thanks in advance.

    We just identified this issue as well.  If you create a curriculum that consists of a WBT and then an ILT as sequenced, all dates appear.  This is the sequence my client always uses and what we tested, so we were able to go live with the issue you described.  However, we are logging an OSS message.  I would recommend you log one too - the more the merrier
    Good luck,
    Sharon

  • Standard IVEW for Booking Course.

    Dear,
    Could you please help me in answering the query.
    Do we have any standard IVEW for booking Course's from SAP Portals. My Client is not interested in Licensing the LSO but very much interested to have the same concepts.
    They want their Employees to Book the Course's Online and Evaluation team will do the Course evalution in Backend R/3.
    My Question.
    Do we have any standard IVEW where Employee can book the course online form Portal and get the approval from manager.
    How Does it impact the MBO Appraisal system ?, if we do not having LSO installation on system.
    Does it Impact E-Recruitment Talent management Ranking system ?. when we are not installating LSO.
    Many Thanks in advance
    Sabba Ravi - HCM

    Hi,
    Check this document.
    http://help.sap.com/bp_epv260/EP_JA/documentation/EP/N26_Scen_InstallGuide_EN_JP.doc
    http://help.sap.com/Business_Packages/EN/dd/b1d55738cb6a49bcd4c0fa42777ab7/frameset.htm
    We dont have any other iview.
    If you want you can develop the same application using abap webdynpro using web services.
    Thanks and Regards,
    gopal.sattiraju

  • Not able to access content for Mobile course

    Hi Team,
    I am trying to access content available for open SAP course for mobile Course: Introduction to Mobile Solution Development for the Enterprise
    But once i click on a Video link, it directs me to this below page. Also not able to view any PDF.
    Obviously, not even able to download.
    Not sure if this is the right place to raise this question. So mentioning   SCN Support
    Regards,
    JK
    PS: I was able to view and download the contents before 12 hours.

    Hi Jitendra,
    The hosting server for pdf's is not working at the moment and the server technical team is currently working on the issue.
    You can still stream the videos but this might not be suitable for you at this time.
    Apologies for any inconvenience caused. The technical team have advised us that this issue will be resolved shortly so please check back later.
    Kind regards,
    Claire

  • HT201303 I received this update from Apple, but I have no record of altering anything, can you tell me what has been updated, who updated anything, and how was it done?  Hello,  The following information for your Apple ID was updated on 03/22/2014:  Phone

    I received this  update from Apple, but I have no record of altering anything, in particular telephone numbers, can anyone tell me what has been updated, who updated it, and how was entry made to my account?
    Hello,
    The following information for your Apple ID was updated on 03/22/2014:
    Phone number(s)
    If these changes were made in error, please CLICK HERE,  to Cancel this changes withing 24hours..
    This is an automated message. Please do not reply to this email. If you need additional help, visit Apple Support.
    Thanks,
    Apple Customer Support

    This is a user to user forum, so no one here can provide an answer.  You should contact iTunes Support directly.
    Here's how you can do that:  http://www.apple.com/support/itunes/contact/

  • I operate a windows 8,  62 bit computer.  I have ordered and downloaded the following product for AU$129 Adobe Photoshop Elements 13 (Windows,English) on the understanding that it would convert PD files to word.  It is not doing so. Is this a wrong order?

    I operate a windows 8,  62 bit computer.  I have ordered and downloaded the following product for AU$129 Adobe Photoshop Elements 13 (Windows,English) on the understanding that it would convert PD files to word.  It is not doing so. Is this a wrong order?

    if you're trying to convert pdf files to word files, you want acrobat pro or acrobat standard, Buying guide | Adobe Acrobat XI Standard
    http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

Maybe you are looking for