CHARM:Urgnt Corr. type of doc isnt created using Custom "Authorize" Action

Hi Experts,
I have copied SDCR Action profile to YDCR and defined all scheduled conditions as default. I have assigned YDCR action profile to my Txn Type YDCR. However, when I am trying to create Urngt type of correction using custom "Authorize" action from the action button, system is changing the status to "Authorized" However, the followup document of urgnt correction is not being corrected though I have selected the "Urgnt Correction (Maintenance)" from the Subject line.
I have properly copied all the copy rules and working fine if I use SDCR action profile instead of YDCR.
May any one please help me diagnose and solve this problem?
Regards,
Faisal

Hi All,
I want to share the latest on this.
I had basically created new schedule conditions by copying the original ones. Below are mentioned schedule conditions I copied from original:
Original schedule condition name : Only Status 'To be approved' (Assigned to Authorize and Reject Change Request)
Custom schedule condition name: YOnly Status 'To be approved'
The above YOnly Status 'To be approved'  was assigned to "Authorize Change Request" and "Reject Change Request" actions in my YDCR Action Profile.
But When I changed it to Only Status 'To be approved' and created the urgnt correction, this type is created.
Can any one tell me what could have happened?
Regards

Similar Messages

  • StandardView button is being selected in the ribbon even user clicks on Datasheet view of a library created using custom template.

    Hi,
    We have an issue with one of the library created using custom library template. Eventhough user selects Datasheet view from the ribbon it's showing Standard view button as selected. However content is being correctly in the grid view. Can some one help me
    in sorting this issue.
    NB: Functionality is working as expected with library created using OOB document library template.
    In the above screen shot Datasheet was selected.but Standard View was highlighted. 
    Is that something should be done in schema.xml file?
    Thanks,
    Venugopal

    Hi Venugopal Pulagam,
    This seems a weird issue, based on my understanding, it is not caused by SharePoint. I haven’t seen that there is settings in list instance schema file can effect this to happen.
    To narrow down this issue, would you please check whether this can be reproduced in other type of browser?
    And as this only happens for this specific library, please create a new list based on the template, check the result.
    How you create the list template, please share the steps to reproduce the issue.
    Thanks,
    Qiao Wei
    TechNet Community Support

  • I have problem sending a email ..spool not created using custom FM

    Hi experts,
    i have problem sending a email ..spool not created using custom FM...this the custom FM
    * Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
    Source code
    this is the source code for this FM
    IF sy-batch EQ 'X'.
        PERFORM get_job_details.
        PERFORM obtain_spool_id.
        PERFORM convert_spool_to_pdf.
        IF sy-subrc IS NOT INITIAL.
          MESSAGE e040(zhrcd) RAISING spool_not_created.
        ENDIF.
        PERFORM process_email USING email1
                                    email2
                                    email3
                                    subject
                                    attachment_name.
        WAIT UP TO 5 SECONDS.
        SUBMIT rsconn01 WITH mode   = 'INT'
                        WITH output = 'X'
                        AND RETURN.
      ENDIF.....
    Please let me know
    Edited by: Thomas Zloch on Nov 16, 2010 5:53 PM - please use code tags

    Hi srinivas ,
    Could you please Check
    FORM summary_report .
      DATA: lv_success TYPE i,
              lv_error TYPE i,
              lv_total TYPE i.
      DESCRIBE TABLE gt_data LINES lv_success.
    DESCRIBE TABLE gt_error LINES lv_error.
      DESCRIBE TABLE gt_message LINES lv_error.
    lv_total = lv_success + lv_error.
      lv_total = lv_success.
      gwa_summary-record = text-008."Number of Successful records.
      gwa_summary-number = lv_success.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-009."Number of error records'.
      gwa_summary-number = lv_error.
      APPEND gwa_summary TO gt_summary.
      gwa_summary-record = text-010."Total number of records processed.
      gwa_summary-number =  lv_total.
      APPEND gwa_summary TO gt_summary.
    CLEAR gt_fieldcat.
      gwa_fieldcat_summ-col_pos = 1 .
      gwa_fieldcat_summ-fieldname  = 'RECORD'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-011."Records
      gwa_fieldcat_summ-outputlen = '70'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
      gwa_fieldcat_summ-col_pos = 2 .
      gwa_fieldcat_summ-fieldname  = 'NUMBER'.
      gwa_fieldcat_summ-tabname = 'GT_SUMMARY'.
      gwa_fieldcat_summ-seltext_l  = text-012."Number
      gwa_fieldcat_summ-outputlen = '10'.
      APPEND gwa_fieldcat_summ TO gt_fieldcat_summ.
    ENDFORM.                    " SUMMARY_REPORT
    *&      Form  ERROR_REPORT
    FORM error_report .
    gt_fieldcat_err[] = gt_fieldcat[].
      gv_fieldcat_err-col_pos = 1.
      gv_fieldcat_err-fieldname  = 'PERNR'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-070."Employee Number
      gv_fieldcat_err-outputlen = '20'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
      gv_fieldcat_err-col_pos = 2.
      gv_fieldcat_err-fieldname  = 'MESSAGE'.
      gv_fieldcat_err-tabname = 'GT_MESSAGE'.
      gv_fieldcat_err-seltext_l  = text-071."Error Message
      gv_fieldcat_err-outputlen = '80'.
      APPEND gv_fieldcat_err TO gt_fieldcat_err.
    ENDFORM.                    " ERROR_REPORT
    *&      Form  FINAL_REPORT
    FORM final_report .
      DATA:lv_layout TYPE slis_layout_alv,
             lt_events_summ TYPE slis_t_event,
             lv_events_summ LIKE LINE OF lt_events_summ,
             lt_events_det TYPE slis_t_event,
             lv_events_det LIKE LINE OF lt_events_det,
             lt_events_err TYPE slis_t_event,
             lv_events_err LIKE LINE OF lt_events_det,
             lt_events_msg TYPE slis_t_event,
             lv_events_msg LIKE LINE OF lt_events_det.
      lv_events_summ-name = 'TOP_OF_PAGE'.
      lv_events_summ-form = 'TOP_OF_PAGE1'.
      APPEND lv_events_summ TO lt_events_summ.
      lv_events_det-name = 'TOP_OF_PAGE'.
      lv_events_det-form = 'TOP_OF_PAGE2'.
      APPEND lv_events_det TO lt_events_det.
      lv_events_err-name = 'TOP_OF_PAGE'.
      lv_events_err-form = 'TOP_OF_PAGE3'.
      APPEND lv_events_err TO lt_events_err.
      lv_events_msg-name = 'TOP_OF_PAGE'.
      lv_events_msg-form = 'TOP_OF_PAGE4'.
      APPEND lv_events_msg TO lt_events_msg.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          i_callback_program = sy-repid.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat_summ
          i_tabname                        = 'IT_SUMMARY'
          it_events                        = lt_events_summ
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_summary
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    IF CHK_DTL IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = lv_layout
          it_fieldcat                      = gt_fieldcat
          i_tabname                        = 'gt_data'
          it_events                        = lt_events_det
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = gt_data
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_err
         i_tabname   = 'gt_error'
         it_events   = lt_events_err
       TABLES
         t_outtab    = gt_error.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
       EXPORTING
         is_layout   = lv_layout
         it_fieldcat = gt_fieldcat_msg
         i_tabname   = 'gt_message'
         it_events   = lt_events_msg
       TABLES
         t_outtab    = gt_error.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_err
          i_tabname   = 'gt_message'
          it_events   = lt_events_err
        TABLES
          t_outtab    = gt_message.
    IF GT_MESSAGE[] IS NOT INITIAL.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout   = lv_layout
          it_fieldcat = gt_fieldcat_msg
          i_tabname   = 'gt_message'
          it_events   = lt_events_msg
        TABLES
          t_outtab    = gt_message.
    ENDIF.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
       i_interface_check             = ' '
      IS_PRINT                      =
       i_screen_start_column         = 0
       i_screen_start_line           = 0
       i_screen_end_column           = 0
       i_screen_end_line             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       =
      ES_EXIT_CAUSED_BY_USER        =
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
    ENDFORM.                    " FINAL_REPORT
    *&      Form  top_of_page
          text
    FORM top_of_page1.                                          "#EC CALLED
      WRITE text-013."SUMMARY REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page2
          text
    FORM top_of_page2.                                          "#EC CALLED
      WRITE text-014."DETAIL REPORT.
    ENDFORM.                    "top_of_page
    *&      Form  top_of_page3
          text
    FORM top_of_page3.                                          "#EC CALLED
      WRITE text-015."ERROR REPORT
    ENDFORM.                    "top_of_page
    *&      Form  EMAIL_NOTIFICATION
    FORM email_notification .
      DATA: lv_email1  TYPE somlreci1-receiver,
           lv_email2  TYPE somlreci1-receiver,
           lv_email3  TYPE somlreci1-receiver,
           lv_subject TYPE char200,
           c_flag     TYPE c           VALUE 'X',
           lv_attachment TYPE char50.
      CLEAR: lv_email1,
             lv_email2,
             lv_email3,
             lv_subject,
             lv_attachment.
      SELECT SINGLE email1
                    email2
                    email3
        FROM zhr_interface_pr
        INTO (lv_email1,lv_email2,lv_email3)
        WHERE zinterfaceid EQ gc_objectid.
      IF sy-subrc EQ 0.
        IF sy-batch EQ 'X'.
    Send email notification
          lv_subject = text-037.
          lv_attachment = text-038.
          CALL FUNCTION 'Z_SEND_EMAIL_FROM_SPOOL'
            EXPORTING
              email1            = lv_email1
              email2            = lv_email2
              email3            = lv_email3
              subject           = lv_subject
              attachment_name   = lv_attachment
            EXCEPTIONS
              spool_not_created = 1
              OTHERS            = 2.
          IF sy-subrc <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.                    "
    Edited by: katewinslate@SAP on Nov 17, 2010 12:50 PM

  • End User Doc. Create / Change Customer Master Data

    < 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. >
    Hi Experts,
    I would appreciate, if anyone of you could forward me the end user documents for creating & changing customer master data.
    sonicasmailbox at rediff
    Points will be assigned.
    Regards
    Sonica

    Hi
    Refer to help.sap.com for creating customer master data.
    Copy this to word document and it will be become user manual.
    http://help.sap.com/saphelp_ides/helpdata/en/47/ef8c64124811d2806f0000e8a495b3/content.htm
    Additionally refer to this weblink
    http://web.mit.edu/cao/www/AR/ar1/ar_FD01.htm - This if for FICO only.
    Changing customer master record.
    Use T.Code XD02.
    Enter Customer No,Company code,Sales Org, Distribution channel and division and press Enter or
    Enter Customer no,company code and click on customer's sales area, you will see Sales Org, Distribution channel and division,select the Sales org,Sales Org, Distribution channel and division and press enter.
    You can make necessary changes to customer master
    Please let me know if you need more information.
    Asssign points if useful.
    Regards
    Sridhar M

  • Create New Custom PPF Action

    I need to create my own PPF action, but I don't know if I need to create it at the Action Definition level or if I need a new Action Profile and then a new Definition.  I have a theory as to why you would create a new profile but I can't confirm.  Can someone confirm or correct me please? 
    My theory is:
    1.  The application key is at the Profile level so if you require a different key you need a new Profile, and
    2.  The application object passed into the custom method is defined in the "object type" at the Action Profile level also. 
    So, if you require different information passed into your method or a different key than the existing Actions allow, you need to create your own new profile.
    Is this correct?  Also, any documentation you can point me to on this topic will be greatly appreciated.
    Thanks,
    Mike

    Hi user;
    how to Create New Custom Schema.. like apps in EBS 11i..Please check below thread's mention note&advice etc.
    custom Schema-r11
    Re: REG:creation custom schema
    Regard
    Helios

  • How do I open a document in excel on another machine when the doc was created using numbers

    How do I open a numbers document in excel

    you can export from Numbers by selecting the menu item "File > Export To > Excel...":

  • Help on creating a custom authorization procedure

    Hi all.
    I hope someone can help me with these:
    - Plan to use Apex 4.2 and call Apex from a Formsweb application.
    - The Forms application uses updateable views and application context.
    - The Apex app could use(not decided yet) database authorization.
    - When calling Apex, instead of passing context and user info, i plan to insert all this info in a database table. For example a table that holds a unique session id (DBMS_RANDOM generated), probably forms user_id/password and most importantly, context info i will need in order to make my views work correctly on the Apex app).
    - This way, the Forms app will only pass the session_id, and the Apex App, will call a procedure that picks up the correct info from the session table and go along.
    So far, i think i can handle this. Now comes the part in which help or advise is needed:
    - When calling the Apex page, this could be a public page. Meaning no authentication / authorization will be requested. Probably this procedure could be called earlier (an On Load Process???). The drawback of this solution is that this page is useless unless called from forms which will provide the required metadata to access the application views.
    - The other way to go around, is to make the page not public. This will required authorization. And here is when it comes my main doubts:
    - Every time i call a not public apex page, a redirect to the login application page will happened unless already authorized right?.
    - Now, is there a way earlier on this login page, i can call the procedure that picks up the correct session info, and if success BYPASS (not show) this page and automatically redirect to the original page, and if it fails, display the login page?. Is this possible ...?
    The whole idea here is not show the login page if not needed...
    Please, i'm pretty much aware of better solution, LDAP, Oracle Access Manager, etc. Just want to know it this is technically possible.
    Thanks in advance for anyone that might want to give me an invaluable hand ....!
    Best regards, Luis ...:)
    Any update or comments from the community????
    Thanks ...!
    Edited by: myluism on 02-may-2013 6:49

    Hi Inol.
    I'm actually working on my solution based on that very useful link. Thanks a lot ....!
    Please read carefully what i plan to do.
    Basically is to go a little bit further from your proposal: Since my knowlegde of Apex is limited, i just want to know if, based on your idea, the page should not be public, but move the authorization procedure from the onload on requested page to say, an onload procedure on the Login Page, so if the procedure success, redirect (not show login page) to the page requested in the first place, and if it fails, then show login page.
    Just want to know if this is possible, before going against the wheel.
    Do you think this is possible? This way, Apex app / page can be accessed from both: Apex itself and Forms.
    Best regards, and thanks a lot for you unvaluable feedback....!
    Regards. Luis ...:)

  • How to use one Assign action to create multiple context variables

    Hello, everyone.
    I read some tips from Oracle documentation that said:
    Avoid creating many OSB context variables that are used just once within another XQuery
    Context variables created using an Assign action are converted to XmlBeans and then reverted to the native XQuery format for the next XQuery. Multiple "Assign" actions can be collapsed into a single Assign action using a FLWOR expression. Intermediate values can be created using "let" statements. Avoiding redundant context variable creation eliminates overheads associated with internal data format conversions. This benefit has to be balanced against visibility of the code and reuse of the variables.
    Oracle® Fusion Middleware Performance and Tuning Guide
    +11g Release 1 (11.1.1)+
    Part Number E10108-03
    But I don't know how to do that. Can you show me ?
    Thank in advance
    Edited by: Doubt_Man on Aug 17, 2011 3:30 PM

    if you return sequences, you can declare the return type of your xquery as xs:double*
    (notice the asterix at the end)
    but I have the impression that in the assign action only the first element will be assigned to the context variable
    (correct me if I am wrong)
    So in fact you might indeed have to transform the sequence into a element()*, or concatenate it into a CVS string - for instance using string-join
    http://www.xqueryfunctions.com/xq/fn_string-join.html

  • How to create and configure a custom authorization service

    Anyone has any idea how to create a custom authorization module? Can anyone tell me where can I find a documentation or some example how to do it?
    I appreciate any idea.
    Regards.

    The Access Manager developer guide on the Authentication SPI should be all you need to get started
    http://docs.sun.com/app/docs/doc/819-4675/6n6qfk0nf?a=view

  • How to create used vehicle other than in velo tcode

    Hello All,
    I am new to VMS and i want to know how do we create a used vehicle for action (CRUV).  in a report and then i want to create a purchase order for the vehicle created using trade in action ( POEU ).
    Please let me know if any one has worked on it .
    Thanks,
    Ravi Aswani

    Hi Sagarika,
    use scc4 for creating a new client
    and login to the new client that u created using sap* and pass as password
    use sccl over there to do a local client copy
    sccl for copying local client
    scc9 for remote client copy
    Merlin

  • CHARM: Urgnt Correction Document is not created

    Dear Experts,
    I have copied SDCR to YDCR and kept all profiles as default namely:
    1. Text Determination Procedure= SDCR0001
    2. Partner Determination Procedure= SDCR0001
    3. Status Profile= SDCRHEAD
    4. Date Profile= SDCR_HEADER
    5. Action Profile=SDCR
    However, when I was trying to create an Urgnt Correction type of document, I could see that no such type of document was created to process it further after creating an initial document of YDCR and selecting Urgnt Correction (Maintenance) option from the subject drop down.
    May any please tell me  how I can diagnose this and solve my problem?
    Please let me know if you need any more information.
    Waiting for your kind replies.
    Regards,
    Faisal

    Dmitry,
    Thank you very much for your kind reply. I did the same as you told here. However, still the problem is same. I first copied SDCR rule to YDCR then changed SDHF to YDHF and created a new Change Request Document. However, the YDHF type of document (Urgnt Correction (Maintenance)) is not being created.
    May you please tell me if I missed any thing?
    Also, once I authorize the change request, still the user status is same as "To Be Approved". It is not changing to "Authorized"
    Regards,
    Faisal
    Edited by: Faisal Khan on Dec 27, 2010 8:28 AM

  • Opening '.doc' files created by Appleworks

    Hi,I couldn't find any discussion of this so am posting a question.
    Pages 2.0 opens all our normal Appleworks word processor (cwk?) files OK, and also opens "real" ".doc" files created by Word (from others, we don't have Word).
    Pages won't open Word type ".doc" files saved from Appleworks, and gives a message that it is an incorrect file type. If I use "get info" to remove the .doc extension from the name, Pages will open the renamed file. So pages appears to be okay opening Appleworks saved .doc files only if I remove the .doc from the name.
    Kind of hard to do with several hundred files. Any suggestions?
    G42x800, G4Cube, Etc. Mac OS X (10.4.5)

    I don't know what the problem is exactly. When I save a document as Word (6 or 98) in AW, no .doc extension is added to the file name. But here is a solution to remove the extension, if that helps:
    Create a workflow in Automator. I use Automator on a german OS, I have tried to translate the commands, but you might have to search for the corresponding actions with a similar name.
    - Add the "Get Folder Content" action
    - Add the "Rename" Finder action
    - Select "Replace text" and replace ".doc" with nothing or with "AW doc"
    Then save the action as a folder plugin and attach it to a "Convert AW docs" folder.
    Any file dropped into the folder will be renamed according to your rules.

  • How to check valuation type and batch during creating PO

    Hi All,
    can every body help me please,
    I have a material which manage by batch and valuation type.
    When user create purchase order using that kind of material I want the system checking field batch and valuation type. If they not match then system will give an error message.
    What should I do to make the system checking that fields?
    Thxs
    - ely -

    Hi Ely
    Fortunately, you do not need to do any coding or need to use exits.
    You can configure the screen layout settings as follows:
    1) SPRO->MM->Purchasing->Purchase Order-> Define screen layout at doc level
    2) Double click on the key-NBF (most probably you are using this for your PO document type. If you are using any other field layout key..make changes there)
    3) Double click on GR/IR control .
    4) Make Valuation Type & Batch fields 'Required'.
    System works intelligently here. If the material is batch managed, system expects you to enter a batch in PO. If the material has split valuation, then system also expects you to enter valuation type. FOr other materials, system does not expect you to enter batch or valuation type.
    Best regards
    Ramki

  • Message VF 073 'Pricing error in item 00010' but Acc. Doc. was created.

    Dear experts,
    I have some problem in Billing Process.
    When I process billing, 'S' type message(VF 073) is displayed but billing doc. & accounting doc were created normally.
    So I checked pricing procedure and condition types, but actually there is no pricing error.
    Could you advise to me about this strange matter?
    In addition, below logic is point that message was displayed.
    =============================================================
    Include : MV60AF0X_XVBRP_LESEN
          FORM XVBRP_LESEN                                              *
          Die interne Tabelle XVBRP  wird zur Anzeige am Bildschirm     *
          gelesen.                                                      *
    FORM XVBRP_LESEN.
    Anzahl Loop-Zeilen fuer Blaettern
      XVBRP_LOOPC = SY-LOOPC.
      READ TABLE XVBRP INDEX XVBRP_TABIX_AKTUELL.
        IF XVBRP-UVPRS = 'X' AND SY-MSGID NE 'V1'.
    Meldung nur bringen, wenn die Preisfindung selbst keine Meldung
    gebracht hat. Preisfindung hat MSGID = V1
          MESSAGE S073 WITH XVBRP-POSNR.   ==> this point
        ELSEIF XVBRP-UVALL = 'X'.
          MESSAGE S074 WITH XVBRP-POSNR.
        ENDIF.
      ENDIF.
    ENDFORM.
    Edited by: Ock Seo Park on Sep 22, 2009 3:48 AM

    Hello,
    Understanding the point of your issue, i find that the message which is mainly displayed while saving the billing document pertains
    to the error generally due to pricing. May be some mandatory pricing being picked from VK13 is missing.
    Please check the Sales order and make sure that document is complete in all aspect and also check the pricing procedure too.
    My advice would be to check the accounting document properly as you have said that accounting document gets generated
    easily.
    Secondly i would suggest you  to check the program to see if any changes have been made based on date or conditions.
    Regards,
    Sarthak

  • Properties panel (for Content Types) not showing when creating sharepoint based document

    Hello,
    I've created three Content Types to populate when creating a new Budget document. The problem I'm seeing is that my pc always opens the Budget doc in Word Online and the properties box does not show. When I create a new Budget doc with my test pc, where
    it always opens in Word, the properties box does show the three Content Types.
    Is the idea of Content Type and the properties window supposed to work in Word Online?
    My pc is Win 7, Office 2010 and IE 11
    My test pc is Win 8, Office 2013 and IE 10
    Thanks

    Hi Jimbo, they don't work online. You should change your library settings to open documents in client program.
    cameron rautmann

Maybe you are looking for