Lso 600 portal not allowing on-line course completion

We just upgraded to lso 600 and ECC 700 from lso 200 and our lso portal  page does not show our completed on-line courses and the set to complete link is not displaying after a course is passed.

Hey were you able to resolve this problem ? if not then let me know. I might be able to help you.
Regards,
Ravi

Similar Messages

  • Windows tells me "an unknown program wants to change this computer; windows does not allow firefox updates to complete.

    What can i do about this problem? I click "more details" and find out that the 'unknown program' is firefox. I click to install; but windows does not allow the updates to complete. I let the update window run for over an hour one day... it still did not complete.

    Check that you do not run Firefox as Administrator.<br />
    Right-click the Firefox desktop shortcut and choose "Properties".<br />
    Make sure that all items are deselected in the "Compatibility" tab of the Properties window.<br />
    * Privilege Level: "Run this program as Administrator" should not be selected<br />
    * "Run this program in compatibility mode for:" should not be selected<br />
    Also check the Properties of the firefox.exe program in the Firefox program directory.<br />

  • I tried to buy an app init the app store with my registered debit card. Due toinsufficient funds payment was rejected. However whenever i try to download a free app now iTunes will not allow until this payments completed!!!! this is so frustrating.

    I tried to buy an app init the app store with my registered debit card. Due to insufficient funds payment was rejected. However whenever i try to download a free app now iTunes will not allow until this payments completed!!!! this is so frustrating. Help

    If you're unwilling to use a gift card or credit card to complete the transaction, you need to click here and ask the iTunes Store staff for assistance.
    (117750)

  • LSO 600 Workflow not working

    Hi ,
    We did upgrade from LSO300 to LSO600, and when we book a cource the workflow is configured to view LSOWF_CUSTOMIZE  ( Task 12000003 and 12000004) , but no WF seems to be trigered ?
    The Task(s) seems to be Generic Task(s).
    No entry in Trx SWI2_FREQ , for example .
    Thank you .

    Hi Chandra,
    Thanks for your reply. Can you please explain more on the integration? I take a look at the IMG and there is no configuration availabe to integrate with Personnel Development. Greatly appreciate if you can explan more. Thanks.

  • Why am i not allowed to buy a complete album on itunes?

    I was looking for an album that i liked, Pain and Glory 2, and i wanted to buy it. However,
    I wanted to buy the whole album but that wasnt an option. It allows me to buy each song
    individually for $0.99 each but as people know, it is more expensive to buy each song
    individually than the album. (saves about 10 dollars) i just wanted an explanation because
    maybe i typed something in wrong or something along those lines.
    Thank you.

    Because it's not a complete album. Track 10, Big Bidness, is for some reason not available, so Apple can't list it as a complete album. I understand that even so it would be less expensive to buy it as an album and probably acceptable even if it's not complete, but that's how the iTunes Store works.
    Regards.

  • After firefox 30 was installed this week the browser is slow but will not allow navigation away until finished

    After firefox 30 was installed this week the browser is slow on sites with a large amount of information, data to set up,or many pictures or videos but will not allow navigation away until completely finished. Stop and back does not help it just continues the original site. Prior to release of 30 although slow it did allow navigation away or back.

    Hello dexrek
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    '''also,''' in your system details we can see that you have in your[http://kb.mozillazine.org/Profile_folder_-_Firefox#Windows profile folder] a [http://kb.mozillazine.org/User.js_file User.js] file.
    (The user.js file does not exist by default. If you create the file forget it, if not, delete the User.js file. Note that some programs create and write in the User.js file also).
    thank you

  • Com.sapportals.portal.htmlb.page.PageProcessorComponent is not allowing

    Hi all
    when i import the following one in the portal component then it is not allowing to me giving error seems in red color.but i added all jar files to the java build path.
    <b>import com.sapportals.portal.htmlb.page.PageProcessorComponent</b> (error)
    <b>public class testapp extends PageProcessorComponent</b>
    can u tell me what r the things required to add to allow the above 2 lines.
    Regards
    Sunil

    Hi,
    Just use the Class Locator.
    Checkout this blog:
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4051">https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4051</a>
    or download from here: http://classlocator.sourceforge.net/
    Best Regards,
    Avishai Zamir

  • How to restrict who can book a course in LSO 600?

    We are using LSO 600.  Is there a way to restrict only certain employees within an org to be able to book a course?  I was thinking there may be a relationship that I can add at the course type or course so only one org can book the course.  The desired end result will display an error message if someone outside of the org tries to book the course.  Thanks.

    Our requirement was to restrict employees based on employee group,.i.e., management, non management, external/contractor, affiliated etc... we created relationship(033) in hrp1001 between target group otype = 91 id = different id's for each group that i mentioned above..  to discipline/subdiscipline/coursetype etc.. In the login we classify these employees and in the initialization event of navigation/trainingtype.. call an RFC function module which will return all the discipline,subdiscipline, coursetypes etc... then just filter the discipline,subdiscipline returned by standard LSO function modules . It works perfectly fine.. if a contractor logs in and we navigate thru pages .. it will not display courses that they have no access based on relationship that we set in the backend.. for employees we gave full access etc..
    sample code..
      IF application->learnertype = 'P' OR application->learnertype = 'PT'.
    *==get from cookie course type
        CALL METHOD application->get_server_cookie
          EXPORTING
            im_relax = 'X'
            im_name  = 'LSO_RESTRICT_D'
          IMPORTING
            ex_data  = d_restrict[].
    *== if no restriction found, expired cookie.
        IF  d_restrict[] IS INITIAL.
    *== Get restriction for course group/type.
          CALL FUNCTION 'ZLEARNER_RESTRICTION'
            DESTINATION application->rfc_destination
            EXPORTING
              learner_attuid = sy-uname
            TABLES
              d_restrict     = d_restrict ( Coursetype)
              l_restrict     = l_restrict ( Course group)
            EXCEPTIONS
              not_found      = 1
              OTHERS         = 2.
    *==Set restrictions to cookie coursetype.
          CALL METHOD application->set_server_cookie
            EXPORTING
              im_relax = 'X'
              im_name  = 'LSO_RESTRICT_D'
              im_data  = d_restrict[].
        ENDIF.
    *== IF no restriction found for coursetypes, should not display coursestypes
        SORT d_restrict BY objid.
        IF d_restrict[] IS NOT INITIAL.
    *==Get restriction for affiliate employee.
          READ TABLE d_restrict TRANSPORTING NO FIELDS
                        WITH KEY objid = trainingtype-objid
                        BINARY SEARCH.
          IF sy-subrc <> 0.
            CLEAR ls_return.
            CALL FUNCTION 'ZBALW_BAPIRETURN_GET2'
              DESTINATION application->rfc_destination
              EXPORTING
                type   = 'E'
                cl     = 'ZP'
                number = '945'
              IMPORTING
                return = ls_return.
            APPEND ls_return TO err_message.
          ENDIF.
        ENDIF.
      ENDIF.

  • Trying to allow exception to pop up blocker to watch law line course

    trying to allow exception to pop up blocker to watch law line course and can not figure out how to do this

    #Firefox button > Options > Options > '''''OR''''' Tools > Options if using the Menu Bar
    #then Content > [X] Block pop-up windows > Exceptions
    See --> [https://support.mozilla.com/en-US/kb/Pop-up%20blocker#w_pop-up-blocker-settings Pop-up blocker - Pop-up blocker settings]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • IPhone 3G ** key does not allow me to access my land line voice mailbox...

    OK, I have a great iPhone 3G issue for you. Here it is...
    In order for me to retrieve my voice mail messages on my office land line, I have to call my office direct dial phone number. After that outgoing message begins to play, I have to press ** on my iphone keypad to prompt the voice mail phone system to let me know dial my extension number and password. On my old iphone 2G, it works fine. But with the new iphone, it does not. Another words, when I press **, it does not allow me to the part where I dial my extension number and password. It instead instructs me to dial my extension number and leave a message (not enter my password). Possibly the ** tones from the new phone are too short? Not sure? There are two other people at my company that are having the exact same issue on their 3G phones as well. I even went to the AT&T store and tested it on the display iphones there. Same problem...

    I was on the phone for an hour today with tech support. I spoke first to a tech support agent and next to an iPhone product specialist. Neither had heard of this issue, but I referred them to this thread and they now know it is an issue.
    The product specialist tried to solve the problem and could not. He told me he was emailing the engineers to determine a workaround. He told me he would call me by Tuesday at the latest. His name is Richard and I will continue to update our progress in fixing this issue as I receive information.
    If we can't access our land line corporate voicemail I don't see how I can keep the iPhone even though it otherwise works well and has many positive benefits over the Windows-based smartphone I was using (and may have to go back to).

  • System should not allow to delete PO line Item after GR/IR

    Hi,
    I am working on a SAP Retail Implementation project.
    Currently the system is allowing us to delete the PO line items after doing GR or IR against that PO line item. But the clients requirement is that the system should not allow to delete PO line item after doing GR/IR.
    We are using Account Assignment Category-N, Item Category-S.
    Please let me know if you have the solution for this requirement.
    Thanks in advance
    Thanks & Regards,
    Suresh

    Hi,
    Standard SAP will not allowed the PO to be deleted once it was GR done. The controlled is on the attributes of message to set as "E"
    Message no. 06115
    But if invoiced takes place, the is the point that PO can be deleted.
    You have to do have a Enhancement using MM06E005, insert you logic here to check PO history tables like EKBE, then check if invoice " Q" (BEWTP) exist, the PO cannot be deleted once the user delete the PO line and SAVE it. Ask you developer to help you on the following coding.
    Use MM06E005 and EXIT_SAPMM06E_012
    IF SY-TCODE = 'ME22N'.
    IF sy-ucomm = 'MESAVE' OR SY-UCOMM = 'YES'..
    LOOP AT TEKPO.
    IF TEKPO-LOEKZ = 'L'.
    SELECT SINGLE BELNR FROM EKBE INTO BELNR1 WHERE EBELN = TEKPO-EBELN AND EBELP = TEKPO-EBELP AND BEWTP = 'E'.
    IF SY-SUBRC = 0.
    SELECT SINGLE BELNR FROM EKBE INTO BELNR2 WHERE EBELN = TEKPO-EBELN AND EBELP = TEKPO-EBELP AND BEWTP = 'Q'.
    IF SY-SUBRC = 0.
    Regards,

  • Firefox does not allow my on-line bank account security phrase to be retained - why?

    Hello,
    I have successfully used MS Internet Explorer to log into my on-line bank account in the past. Since changing to Firefox my login process has become incumbered. The bank requires a security phrase as a part of an initial personal PC to bank account security setup measure, which security phrase information is supposed to be retained on my PC for subsequent logins into my on-line account. I still need to enter the usual username and password, but for some reason Firefox does not allow the security phrase information to be retained on my PC and so I have to enter the security phrase each time I log in. I called my bank's IT department and together we tried changing some Firefox settings, but none of them fixed this problem. I also have AVG and Super Antispyware loaded on this PC.
    Do you have a solution to this problem?

    The arrow to open the tab history of the Back and Forward buttons has been removed in Firefox 4.
    Use one of these methods to open the tab history list:
    * Right click on the Back or Forward button
    * Hold down the left mouse button on the enabled Back or Forward button until the list opens
    You can look at this extension:
    * Backward Forward History Dropdown: https://addons.mozilla.org/firefox/addon/backforedrop/

  • You are not allowed to have zero line only  massages no. m8278

    Hi all,
    At the time of MIRO Reversal we are facing error massage.
    You are not allowed to have zero line only  massages no. m8278
    Because of wrongly 0.00 amount posted in MIRO posting.
    What we do please help me it is production system error.
    Thanks & Regards,
    Juhi
    Edited by: juhis022 on Nov 8, 2011 1:43 PM

    this is because for the document which you posting MRIS is not covered with invoicing plan settlement.
    Please create a invoicing plan and settle through MRIS.

  • Do not allow User to Booked Sales Order if Line QTY is not enough.

    Hi All,
    Is there a way in Order Management setup to not allow sales people to Booked their Sales Order if there are order lines where the qty is not enough in the Inventory, where it will cause 'Backorder' if picked and shipped?
    Regards,
    Ja

    Jay
    Is there a business reason to stop booking? The order is already entered and if you want to stop booking, at that time, will they go back and book the orders later?
    It hampers your business knowing the demand for your product. Back ordering is a good thing and not necessarily evil.
    If you still want to do this you have to use inv_quantity_tree_pub.query_quantities to get the quantities. As Sandeep said, it is better you do this in Order header workflow by calling this and based on the result you can decide what you want.
    Thanks

  • J1IEX - Part - 2 is not allowing to process remaining line items

    Dear Experts,
    Material DOC NO xxxxxxxxx  IS A SET OF 20 LINE ITEMS.
    J1IEX(PART 2) ENTRY OF LINE ITEM NO 1 IS DONE WITH VENDOR EXCISE DOC. NO xxxxxx
    REMAINING LINE ITEMS PART 2 ENTRY IS NOT ALLOWING TO POST AND SHOWING ERROR THAT THE MATERIAL DOCUMENT HAS ALREADY BEEN REFERRED FOR A DIFFERENT EXC. INV.
    Please guide.
    regards
    Adi

    Hi,
    As people wrote above, you have to cancel the GR ,then J1iEX.
    Make sure that in J1ID, you have maintained "Multiple GR,multiple Credit" in material & chapter ID combo.
    Now if such case reappears in future, goto MIGO, in excise tab at item level, put all quanity in EI quanity & do the GR of actual received quantity.
    Now when you will post it in J1IEX, system will pick only GR quantity.
    For further GR of remaining quantity, at header in excise tab, select "Refer Excise Invoice" option & maintain same excise invoice number.
    Try this. Hope this will help you.
    Regards,
    Piyush

Maybe you are looking for