How to set completion status

Hello,
I have a course built in Captivate 3 that automatically moves to completed within our LMS when users open it. How can I set the status to not change until users have gone through the entire course? Any ideas?
Thanks!

Hi Shannon,
In our LMS this occurs if I add the SWF as a Flash file when I upload to the LMS. However, if I enable reporting on the Quiz Preferences pages in the Captivate file before publishing and then import it as a SCORM package in the LMS it uses the LMS customization settings on the Quiz Preferences page to track and set a completion status.

Similar Messages

  • How to set "completed" status to the delivered sale order?

    Hi Gurus,
    For the order type RE i am able to create a delivery even though full quantity has been delivered and billed . When i observed the document flow , it shows that order is still in open status while the delivery for it is done for full quantity. Kindly let me know how to do the settings such that once the full quantity is delivered it should not allow to create any further delivery for the same return order.

    Hi,
    An item may be considered fully referenced if one of the following criteria have been met:
    An item is complete as soon as it is used as a reference. In this case, the item is fully referenced, even if only a part of the quantity is copied.
    An item is only complete once the full quantity has been copied into a subsequent document. If the item is partially referenced, it is possible to enter several sales documents for the item until the quantity is fully accounted for.
    An item is only complete once the target quantity (in a contract, for example) has been copied into a subsequent document. If the item is partially referenced, it is possible to enter several sales documents for the item until the quantity is fully accounted for.
    The standard version of the system defines an inquiry item as complete even if only one part of the inquiry quantity has been copied into a quotation. On the other hand, when you copy a quotation into a sales order, the quotation is not complete until the quotation quantity has been fully referenced.
    Regards

  • In Standard Report Of ALV How Can Set PF Status.

    In Standard Report Of ALV How Can Set PF Status.
    Thanking in anticipation.

    in the call function module, you pass the PF status parameter.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program       = pgm
       <i> <u>  i_callback_pf_status_set = 'SET_PF_STATUS'</u></i>
          it_fieldcat              = fieldcat
          is_variant               = disvariant
          is_layout                = layout
          is_print                 = print
          i_save                   = 'A'
          it_events                = eventcat
          it_sort                  = sortcat
          i_callback_user_command  = 'USER_COMMAND'
        TABLES
          t_outtab                 = a_output
        EXCEPTIONS
          program_error            = 1
          OTHERS                   = 2.
    ENDFORM.                    "LIST_DISPLAY
    FORM SET_PF_STATUS *
    FORM set_pf_status USING extab TYPE slis_t_extab.
      SET PF-STATUS 'ZZSTD'.
    ENDFORM.                    "set_pf_status
    Here double Click on ZZSTD. IT will take you to a different screen and you have to set it.
    Ster.

  • How to set the status for a customer plan to RELEASED.

    Hello all,
    I created a program for mass creation of customer plans. But after the creation of a plan, the status should be set to released, so that the user can go about creating the trade promotions for the customer plan. Can anybody tell me how to set the status of a customer plan to RELEASED.
    Thanks,
    Disha.

    Hi Clemens,
    I am not talking about doing it in the CRM_UI transaction..I created a program..which would create the customer plans based on the planning account data provided. I was succesfull in creating the plans, but I am not knowing how to release it, if only anybody can tell me about a Function module or method, which can help me do this, that would be great
    Thanks,
    Disha.

  • How to set 'error' status with DB poll Adapter in OSB

    1. Configured DB Adapter to poll rows with status 'notprocessed' and set the status to 'processed'
    2. Configured FTP Adapter to write fetched rows from DB into a CSV file
    Now my requirement is if any error like FTP server is not available, how to set the status in DB table to 'error'

    Yes Vlad you are right, this will avoid another DB connection created in Error Handler.
    I hope this will provide some lights on the usefulness of "Transaction"
    http://www.nysolutionsltd.com/transaction-handling-in-oracle-service-bus/
    http://kd-blog-tech.blogspot.com.au/2010/12/transaction-management-for-osb-service.html
    Regards
    RK
    Edited by: RK.. on 27/03/2013 17:10

  • How to Set User Status of Sales Order at item level.

    How to Set User Status of Sales Order at item level by default to 'Purchase Req Not Created' (example)while creating order. Please tell EXIT Name to be triggered & Internal table to be populated.
    Thanx,
    Srini
    Moderator message: please do your own research before asking.
    Edited by: Thomas Zloch on Feb 21, 2011 11:19 AM

    Mathew,
    Here is a document that should help you get started on enhancing 2LIS_11*
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c09d5356-d8c4-2d10-8b84-d24723fc1f0a?QuickLink=index&overridelayout=true
    Good luck!

  • How to set custmer master block for posting & how to set the status .....

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. Use an appropriate subject in your message thread. >
    Hi ...
    How to set custmer master blocked for posting & how to set the status has deleted. please provide the steps for the above two actions.
    thanks

    Hi,
    U can use T-code FD05 for Blocking the customer and
    T-code FD06 in order to set for deletion,
    Assign Points if useful,
    Regards,

  • How to set the Status

    Hi
    How to set the status of  user defined form as "closed" . I have one form, i want that form should not be editable after one condition is true. Can anyone tell one solution
    Advance Thanks
    jintu

    Hiii,
    Use this
    Sub FormDataEvent(ByRef BusinessObjectInfo As SAPbouiCOM.BusinessObjectInfo, ByRef BubbleEvent As Boolean)
            Try
                Select Case BusinessObjectInfo.EventType
                    Case SAPbouiCOM.BoEventTypes.et_FORM_DATA_ADD, SAPbouiCOM.BoEventTypes.et_FORM_DATA_UPDATE
                        If BusinessObjectInfo.BeforeAction = True Then
                            objForm = objMain.objApplication.Forms.Item(BusinessObjectInfo.FormUID)
                        ElseIf BusinessObjectInfo.ActionSuccess = True Then
                            If BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_UPDATE Then
                            End If
                        End If
                    Case SAPbouiCOM.BoEventTypes.et_FORM_DATA_LOAD
                        If BusinessObjectInfo.ActionSuccess = True Then
                            objForm = objMain.objApplication.Forms.Item(BusinessObjectInfo.FormUID)
                            objForm.Freeze(True)
                            If (objForm.Mode = SAPbouiCOM.BoFormMode.fm_OK_MODE) Then
                               if objForm.Item.Items("Status").Value.equals("Closed")= True
                             objForm.Mode = SAPbouiCOM.BoFormMode.fm_VIEW_MODE
                             End If
                              end if              
                        End If
                End Select
            Catch ex As Exception
                objMain.objApplication.StatusBar.SetText(ex.Message)
            End Try
        End Sub

  • Can we set complete status of delivery

    As in sales order we can use reason of rejection to set complete status of sales order similarly is there anyway we can set complete status of delivery at vl02n.(except pgi ofcourse)
    Regards,
    Sam

    Hi,
    You need to delete the delivery in VL02N in case you do not want to go ahead with PGI. In case PGI has been done already, kindly reverse the same in T-code VL09 and then delete the delivery in VL02N. Then put reason of rejection in line item of sales order.
    Thanks & Regards,

  • How to set workflow status when workflow manually cancelled?

    Hi All,
    When i manually cancelled designer workflow, then status comes as 'cancelled'. Instead i need to set different status. How to  achieve this? 
    Thanks in advance!

    You can use this action
    Set Workflow Status
    This action is initially displayed in a workflow step as Set workflow status to Canceled. Use this action to set the status of the workflow. The default options are Canceled, Approved, and Rejected.
    You can enter a new status value in the dropdown in the action. Once you enter a status value, the entry is automatically added to the dropdown list. For example, you can enter a status that is more user-friendly and informative than Completed or Canceled,
    such as Expense Report Approved.
     NOTES 
    You cannot rename or delete a status value once it has been created. However, you do not have to use it.
    A custom status is applicable to the current workflow only, and cannot be used in another workflow.
    A workflow cannot use custom status values that you define in the action if the action is used inside an impersonation step.
    If the Set Workflow Status action is the last step in your workflow where you have also used a custom value, you can see your custom value in the Status column in
    the list upon workflow pausing or completion.
    Following is an example of what the action might look like in a workflow step,
    Set workflow status to Specification status: Ready for Design Review
    http://office.microsoft.com/en-in/sharepoint-designer-help/workflow-actions-in-sharepoint-designer-2010-a-quick-reference-guide-HA010376961.aspx
    Mark ANSWER if this reply resolves your query, If helpful then VOTE HELPFUL
    INSQLSERVER.COM
    Mohammad Nizamuddin

  • How to set window.status when returning to a page with back button/list?

    It is easy enough to set window.status to application-oriented information when loading a page: do it in a function which is the onload handler for the page's body element. But, when returning to this window from another window with the second window's back button, or selecting the first window from the second window's back list, window.status gets set to browser-oriented information, usually the string "Done". Is there any means by which I can set window.status to application-oriented information when returning to the window via another window's back button/list? What would be really great is if there is an event handler like this:
    window.onreturnviaback = onreturn_via_backhandler;
    Any ideas?

    How about:
    - (void)viewWillAppear:(BOOL)animated
    I use that a lot.

  • How to set the status when Idoc fails

    Hai ,
    I created Idoc extension & created a segment under that(Delivery related).
    My requirement is,
    if certain data not found,
    Idoc should fail with text"Shipemnt for delivery <del. No> not found.
    Could you please help me how to do this?
    I checked the table EDIDC table but the above mentioned status is  not there.
    Thanks & Best Regards,
    Bhaskar.

    you need to set the status using IDOC_STATUS
    where ever error occurs populate the status table.
    IDOC_STATUS-DOCNUM = IDOC_CONTRL-DOCNUM.
       IDOC_STATUS-STATUS = '51' ." if it is inbound
       IDOC_STATUS-MSGTY  = Message-type.
       IDOC_STATUS-MSGID  = message-id.
       IDOC_STATUS-MSGNO  = message-MSGNR.
       IDOC_STATUS-MSGV1  = message-MSGV1.
       IDOC_STATUS-MSGV2  = message-MSGV2.
       IDOC_STATUS-MSGV3  = message-MSGV3.
       IDOC_STATUS-MSGV4  = message-MSGV4.
    *  IDOC_STATUS-SEGNUM = ?????????????????
    *  IDOC_STATUS-SEGFLD = ?????????????????
    *  IDOC_STATUS-UNAME  = ?????????????????
       IDOC_STATUS-REPID  = SY-REPID
    *  IDOC_STATUS-ROUTID = ?????????????????
       APPEND IDOC_STATUS.

  • How to set Incomplete order to set complete status

    Hi Gurus,
    Issue background: I have one order where delivery and billing has taken place accounting doc also generated.
                                  But order INcomplete log status is incomplete, (Plant and Pricing is showing as incomplete).
                                  Pl don't ask me how this is possible (because I can see in the system)
    What I have done: I have set the reson for rejection in the sales order header for all items. Still issue not resolved.
    Issue here is:        Order is still showing in the incomplete order report
    Business wouldn't want to:     revere this inv/del/order and redo.
    Is there any sap program I can run to set the incomplete order to set as complete?

    Hi,
    If you want to close or get the status the sales order as completed,
    1.Check the entry for the field ABGRU in the table VBAP for the sales order.
    2.If there is no value i.e the field is empty then try to assign the reason for rejection in the sales order item level and save the document.
    Regards,
    Gopal.

  • How to set Callback Status in ALV OO

    Hi All,
    I need to find the method or object to use to set the callback status to my program so I may use forms that I have developed.
    How do i do that?
    thanks
    KW
    TRY.
            CALL METHOD cl_salv_table=>factory
              IMPORTING
                r_salv_table = gr_alv
              CHANGING
                t_table      = gt_dev_task_display.
            PERFORM f_display_settings.
            gr_alv->set_screen_status(
            pfstatus = 'ZALV_STANDARD_KW'
            report = sy-repid
            set_functions = gr_alv->c_functions_all ). "set all basic ALV funtions
            gr_events = gr_alv->get_event( ).
    **... optimize the column widths
            TRY.
                lr_columns = gr_alv->get_columns( ).
                lr_columns->set_optimize( 'X' ).
              CATCH cx_salv_not_found.                      "#EC NO_HANDLER
            ENDTRY.
    *   get layout object
            lo_layout = gr_alv->get_layout( ).
    *   set Layout save restriction
    *   1. Set Layout Key .. Unique key identifies the Differenet ALVs
            ls_key-report = sy-repid.
            lo_layout->set_key( ls_key ).
    *   2. Remove Save layout the restriction.
            lo_layout->set_save_restriction( if_salv_c_layout=>restrict_none ).
            lo_layout->set_default( abap_true ).
            gr_functions = gr_alv->get_functions( ).
            gr_functions->set_all('X').
            gr_functions->set_group_filter( value = if_salv_c_bool_sap=>false ).
            gr_alv->get_display_settings( ).
            gr_alv->display( ).
          CATCH cx_salv_msg.
            MESSAGE 'ALV Display Not possible'(w02) TYPE 'I' DISPLAY LIKE 'E'.
        ENDTRY.

    Namish,
    thank you for the reply.
    I have created the handle class but the issue I am having is in the PAI becuase the callback status is not set it keep going back to the SAPLSVC_FULLSCREEN pai and not to the PAI that I would like.
    What I am trying to achieve can be done with this code:
    * call list viever
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_user_command  = gc_user_command
          i_callback_pf_status_set = gc_pf_status
          I_BYPASSING_BUFFER       = 'X'
          i_background_id          = 'ALV_BACKGROUND'
          i_callback_program       = gv_repid
          i_default                = 'N'           "use gs_variant
          it_event_exit            = gt_event_exit
          it_fieldcat              = gt_fieldcat
          is_layout                = gs_layout
          i_save                   = gv_save
          is_variant               = gs_variant
          it_special_groups        = gt_special_groups
        TABLES
    *      t_outtab                 = gt_report_list.
          t_outtab                 = gt_report_list2.
    the variable gc_user_command will bring it back to my calling program USER_COMMAND, this is what I am trying to achieve in OO
    Thank you!

  • How to set ascential status "not aborted" when no file is present

    Hi gurus,
    Can anyone advise how can i set up the job in ascential to by pass the abort status whenever i have no file in place.  Normally what happened is, the job is triggered everyday and when a file has missed to maintain in the defined directory, it gets aborted.  What the requirement is to set to not aborted status so that when the next run in BW is triggered, we dont need to go to admin to reset the job every so often..
    Thansk..

    Hi there,
    why don't you just add the following lines into your coding, at the stage where the file is selected?
    IF.
    sy-subrc <> 0.
    EXIT.
    ENDIF.
    In case you don't have developing authorization just get anybody who can do this for you.
    Kind regards
    Klaus

Maybe you are looking for