Word Object Restrict/Limits at OS level.

Dear Support.
Need your Help.
Can we restrict/limit word object in OS level .
Regards
Naveed
Naveed Amir

Hi,
Before moving on, please briefly explain your query so it will be easy for us to give you best.
What kind of object are you referring to?
If you mean the objects on the interface, you can make this with some GPO settings.
If you mean some objects in Visual Basic, I would suggest you to pose your query in MSDN forum to get more effective responses:
http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=worddev
Thanks,
Ethan Hua CHN
TechNet Community Support

Similar Messages

  • Restrict Authorization at Material level during production confirmation

    Hi SAP Gurus,
    I would like to ask if its possible to restrict authorization at Material Level during production confirmation.
    Our scenario is we have SFG and FG which are handled by different group of people but it has the same Order Type. Now we want to restrict authorization such as one department can only confirm SFG and the other department can confirm FG only.
    Is it possible to set authorization at material type or production scheduler level. IF not possible, is there other way except creation of new Order Type?
    Thanks,
    Raymond

    Hi Raymond,
    DO you mean I should create a customized table for this?
    Yes
    Are there no standard way?
    As per my knowledge, you can control through production order type, so you need to create seprate order type for this
    Thanks,
    Sankaran

  • Hyperlink in comment is not reported by Word object model

    I believe this is a bug with Word.  I have verified with Word 2010 & 2013.  I did not test with any other version. 
    If a hyperlink in a comment is the first thing in the comment, the Word object model does not report that there is a hyperlink in the comment.  If I modify the comment and add any text (including a space)
    before the link, the link will be reported by the object model.
    Steps to reproduce: 
    in a document, go to Review Ribbon and select "New Comment"
    type in text, select text, and insert hyperlink (Ctrl+k), in address field add http://www.google.com
    Add a new macro that will loop through the comments and report if a hyperlink is found, see code below
    I also verified using VSTO the same behavior
    Dim doc As Document
    Set doc = ActiveDocument
    Dim link As Hyperlink
    Dim comment As comment
    For Each comment In doc.Comments
    On Error Resume Next
    If Not comment.Range Then
    For Each link In comment.Range.Hyperlinks
    MsgBox "Link found in comment"
    Next link
    End If
    Next comment
    Byron

    Hi Byron,
    Based on the description, you can’t detect the hyperlink in the comments if the hyperlink is at the beginning of the comment. I can’t reproduce the issue by following the steps above like figure below:
    The version of Word application is like figure below:
    I suggest you trying to update the Office to the latest version to see whether this issue is fixed.
    Hope it is helpful.
    Best regards
    Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Microsoft Word Object Library does not find in add reference com visual basic 2008

    I didn't find the Microsoft Word Object Library On
    the COM tab, in visual basic 2008
    how i can add it.
    my purpose that i want to add word in my project and can view and edit in it.

    I didn't find the Microsoft Word Object Library On
    the COM tab, in visual basic 2008
    how i can add it.
    my purpose that i want to add word in my project and can view and edit in it.
    Maybe dumb question from me, but is Microsoft Word installed on the machine?
    AFAIK, you can (optionally) install the "Primary Interop Assemblies" when installing Word. (see also: How to: Install Office Primary Interop Assemblies)
    Armin

  • Limitation on Hierarchy levels

    Hi,
    I want to find out what is the limitation on number of Hierarchy levels (Custom Hierarchies) that can be created in BO Universe?
    And is this limitation oriented with the DB we connect?
    As I am using Netezza DB so I want to know the number of hierarchy levels that I can create for objects in  Netezza DB?

    We have a BEx query, having 9 product Hierarchy levels. When we are creating Universe, there is no issue. But when we do integrity check, getting a lot of parse errors and could not make the universe to work.
    Is there any limitation on number of herarchies to be supported from BEx query to Universe? Any OSS notes / Lessons learnt will be much appreciated. Please help urgently. Thanks.

  • Authorization restriction at Sales Office level

    Dear Gurus,
    I need to restrict the user for all the sales transactions on the Sales Office level.
    I mean the specific user should be able to create a sales order for the customer who comes under the Sales Office assigned to the user. User should view the sales order and invoice list for a specific sales office in VA05, VF04 also this is VF05N.
    I tried to add the sales office field in std authorization object V_VBAK_VKO and did it but after completion of consistency check also the user was able to create a sales order for a customer belongs to the sales office other than assigned one.
    For me it is mandatory to restrict the transactions and reports of SD at sales office level.
    Please tell me if there is any way complete this restriction. Or to restrict the user from viewing the sales documents which are not created by himself only.
    Your suggestions are also welcome. please suggest me.
    regards,
    Sanjay

    Hi,
    Check the below link, it might fix your issue.
    Re: how to restrict the Report based on sales office
    Br, Sats.

  • Returning strings from OLE2 Word object (Forms 4.5)

    Below is an example of how to return string and numeric values from OLE2 objects. In this example the OLE2 object is a MS Word document, and I want to fetch all the bookmarks in the Document into a Forms 4.5 Varchar2. To do this I first need to get the count of bookmarks.
    Getting a string property from an OLE2 object is a common OLE2 requirement but is poorly documented. This is the ONLY way it can be done, as OLE2.INVOKE_CHAR returns a single character not a string. Use OLE2.INVOKE_OBJ, then OLE2.GET_CHAR_PROPERTY which does return a string, as shown below, to return a string from an OLE object (or OLE property).
    Also note how you can only get the child object from its parent, not the grandchild (etc) object, so multiple (cascading) GET_OBJ_PROPERTY calls are required.
    /* by: Marcus Anderson (Anderson Digital) (MarcusAnderson.info) */
    /* name: Get_Bookmarks */
    /* desc: Returns a double quoted CSV string containing the document*/
    /* bookmarks. CSV string will always contain a trailing comma*/
    /* EG: "Bookmark1","Bookmark2",Bookmark3",Bookmark4", */
    /*               NB: This requires that Bookmarks cannot contain " chr */
    PROCEDURE Get_Bookmarks (pout_text OUT VARCHAR2)
    IS
    v_text           VARCHAR2(80);
    v_num                         NUMBER(3);
         v_arglist OLE2.LIST_TYPE;
         v_Application     OLE2.OBJ_TYPE;
    v_ActiveDoc      OLE2.OBJ_TYPE;
    v_Bookmarks          OLE2.OBJ_TYPE;
    v_Item                    OLE2.OBJ_TYPE;
    v_i                              NUMBER(3);
    BEGIN
              v_Application     := LDWord.MyApplication; -- Word doc opened elsewhere
                   /* Set v_num = ActiveDocument.Bookmarks.Count */
    v_ActiveDoc := OLE2.GET_OBJ_PROPERTY (v_Application, 'ActiveDocument');
    v_Bookmarks := OLE2.GET_OBJ_PROPERTY (v_ActiveDoc , 'Bookmarks');
    v_num := OLE2.GET_NUM_PROPERTY (v_Bookmarks, 'Count'); -- NB: Returns numeric property
                   /* Build the output string, pout_text. */
    FOR v_i in 1..v_num LOOP
                        /* Set v_item = ActiveDocument.Bookmarks.Item(v_i) */
    v_arglist := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG (v_arglist, v_i);
    v_Item := OLE2.INVOKE_OBJ (v_Bookmarks, 'Item', v_arglist); -- NB: returns parent object (array element)
    OLE2.DESTROY_ARGLIST (v_arglist);
                        /* Set v_text = ActiveDocument.Bookmarks.Item(v_i).Name */
    v_text := OLE2.GET_CHAR_PROPERTY (v_Item, 'Name');                    -- NB: Returns string/varchar2 property
    pout_text := pout_text || '"' || v_text || '",' ;
    END LOOP;
    END;

    Please repost in the Forms discussion forum.
    - OTN

  • Word objects will not convert to pdf

    Hi. I have had this issue for some time. So, I went with the Acrobat 9 Pro edition and the same issues are occurring. Ok, here is the problem:
    When I convert a Word document with text and an object, image or graphic to a pdf document, only the text converts. In other words, I get a pdf document with the object, image or graphic missing. This also applies to text boxes. These also do not show up in the converted pdf.
    I have tried to find a setting in preferences to address this but continually have had no luck.
    Please help with this issue.
    Much thanks in advance,
    Jamie

    How are you converting? What version of WORD? The key issues you have left out.

  • Poor image quality when displaying OLE Word object in PDF

    MS Word 2007 OLE object in Crystal Reports XII R2 designer...looks OK in designer.  When we export to PDF, the image quality has been degraded significantly.  Anybody had this issue before?  tried replacing usp10.dll with one found in CommonFiles folder, that did not help.

    Hi Mark,
    See if this [kbase |http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313333333633383336%7D.do] - SAP Note 1213686 - Certain objects do not appear clearly when exporting to PDF/RTF/Word formats - article resolves the issue. It's for CR 9 so you'll have to browse to the CR XI registry structure.
    Otherwise try all of the patches for CR XI R2:
    Keep your Keycode and then uninstall XI R2, unless you are on SP 4 then just apply SP 5 and 6:
    https://smpdl.sap-ag.de/~sapidp/012002523100011802732008E/crxir2_sp4_full_build.exe
    https://smpdl.sap-ag.de/~sapidp/012002523100013876392008E/crxir2win_sp5.exe
    https://smpdl.sap-ag.de/~sapidp/012002523100015859952009E/crxir2win_sp6.exe
    Thank you
    Don

  • Restricting (Limiting) SQ01 access for a set of users

    We are attempting to restrict a user so that they can run specific queries but not change them.  We do not want to go into each query within a user group and lock the individual queries.
    We want to make this more global in that all users groups to which an person is assigned, can be accessed as a run only. 
    We want to ensure that individuals can also NOT create queries either.  Display and Execute Only.
    Thanks,
    Shyam

    This is done using the authorization concept. Please create composite and single roles with all the required tcode accesses and applicable for a specific Employee group/ Personnel Area/ Personnel Subarea. The tcode used to create roles in PFCG.
    Below is the set of standard SAP roles and authorization objects.
    AUTHORIZATION OBJECTS:
    P_ORGIN
    P_ORGXX
    P_PERNR
    PLOG (For OM)
    S_PROGRAM                        
    S_TCODE
    P_TCODE
    S_QUERY
    P_PCLX
    B_LSMW
    S_BDC_MONI
    STANDARD SAP ROLES:
    SAP_HR_OS_HR-ADMINISTRATOR
    SAP_HR_OS_HR-MANAGER
    SAP_HR_OS_ORG-MGT-MANAGER
    SAP_HR_OS-MANAGER
    SAP_HR_OS-SPECIALIST
    SAP_HR_PA_HR-MANAGER
    SAP_HR_PA_HR-ADMINISTRATOR
    SAP_HR_REPORTING

  • Purchase Requisition restriction at Material Type level

    Hi MM Guru's
    as per Client requirment
    we want to restrict the Purchase Requisition creation at Material type level (i.e system should raise the error messege when we try to create the PR against Finished Goods) is that possible
    if yes how can we restrict the PR ?
    Thanks in advance

    Hi,
    Please do the following setting in SPRO-LOgistics general-Materila master- Basin setings- DEfine attribute for materila type . Here select FERT as materila type and go to details and select tab
    Internal and external urchase orders and give zero -External POs not allowed.
    While creating PR for this materila type, system will issue error message.
    REgards
    Ram

  • Adjust manually changed Object field as per org level values

    HI,
    I have a role wherein a field maintained at org. level has been changes in object manually. hence it no more follows the the org. level values assigned.
    The requirement is "this object should get adjusted for its field to have values as per the org. level values" As I remember there is a SAP standard report that when executed for this role, will correct the object and we will be able to again have it's field values aligned with org. level values.
    I am not able to recollect or find the name of the report.
    Need help!!
    Thanks.
    ~ Pranali

    That this option is available in any authorization which is not copied from a standard one is still a mystery to me...
    I normally just check for them to see whether someone toasted the role and solve the root cause problem. Training is the hard way.
    Solution: Delete the authorization and open the role again to maintain the org. level.
    As this is in a development system generally, there are some pre-requisites though to be able to avoid it. Role admin is a very specialized task and everyone always wants more.
    Sandbox systems are cool places to mix the two of them and let people be creative with prototypes etc. Development systems also have feelings and enemies...
    Cheers,
    Julius

  • Word 2013 - restrict formatting

    Hi
    I have a template created in Word 2013 where I want to restrict what people can to with it. The document is set out as a table. I want to make sure that the font is always Arial and the size is always size 10. No changes can be made to these. Also, as the
    document is set out in table format, I don't want people typing in too much and it changes the size of the cells. How can I set a character limit?
    One final question - I have a series of cells with a tick symbol in, I want people to be able to remove the ticks from the relevant boxes.
    Any suggestions?
    Viv
    Viv Haig

    Hi,
    Based on my test, please try the following workaround:
    1. Set the Arial font and the size was default
    Press Ctrl+D>Choose font and size>Set as default
    2. Click the Layout tab> Set a fixed Height and Width value>Auto Fit> Fixed Column width
    After that the table is fixed, and if type more letters than 10, it will not display.
    3. Add protection to a template
    http://office.microsoft.com/en-gb/word-help/add-protection-to-a-template-HA010030757.aspx
    The article also applies to Word 2013.
    To your other question, where did you have a series of cells with a tick symbol in Word file or Excel file? We could try to use Replace function, type the tick symbol and replace all of them to blank.
    If I misunderstand, please let me know and give me more information.
    Thanks,
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Integrated Planning - No ability for restrictions on Aggreg. Level ?

    Hi there,
    I have noticed in the new Integrated planning that it is only possible to restrict data at the filter level.
    In comparison to the old BPS, where you could restrict data at both the Planning Level and Planning package is this not a slight reduction in functionality ?
    This will mean that it will be necessary to repeatedly assign variables / static restrictions to many filters which have similar selection criteria rather than maintaining them once at the Aggregation Level
    Does anyone know if it is envisaged that selection will be possible on aggregation levels in upcoming support packages?
    thanks
    Mark

    Hi SR,
    thanks, so it will be available in  BI 7.1 ?  (which is SP12 isnt it?)  or in a later release ?
    Many thanks.
    Mark

  • Database Object Dependencies - only goes one level deep

    I've run the Database Object Dependencies report and it appears that the report only shows the top level dependencies and not lower level ones. Am I running this report incorrectly or is there something I'm missing.
    For example, it displays the tables and views correctly but does not show any triggers that have been created for a specific table. Additionally, I didn't see any references to database links being used.
    version: 3.1.1.00.09
    thanks
    John
    Edited by: johurj on Dec 8, 2008 2:49 PM
    Edited by: johurj on Dec 8, 2008 2:53 PM
    Edited by: johurj on Dec 8, 2008 2:54 PM

    John,
    The report shows the immediate dependencies for the anonymous blocks and similar code snippets contained within the application components. It's just like if you did this:
    create table footab (n1 number)
    create trigger footrig before insert on footab for each row begin null; end;
    create or replace procedure fooproc
    as
    begin
    for c1 in (select n1 from footab) loop
    null;
    end loop;
    end;
    SQL> select referenced_name from all_dependencies where name='FOOPROC'
    2 /
    REFERENCED_NAME
    SYS_STUB_FOR_PURITY_ANALYSIS
    STANDARD
    FOOTAB
    SQL>
    The table FOOTAB is the only "real" object that the procedure FOOPROC has a dependency on. No mention of the trigger on the table.
    Additionally, I didn't see any references to database links being used.Yes, that would be a possible improvement to the report.
    Scott

Maybe you are looking for

  • Photo icons and the inbox- Mountain Lion

    Hi I just upgraded to Mountain Lion and am liking  some of these features a lot.  One thing I am wondering about: do I have to attach a photo/icon to an actual contact to be able to get the associated photo with incoming mail?  In other words, do I h

  • BOE XI Page Server ODBC DSN Login Prompt

    I created an ODBC data source to a csv file, then designed a Crystal Report using the ODBC data source.  I am working on the server where BOE XI is installed.  The server is logged onto the network, and has a drive mapped to the network folder that c

  • SELECTION-SCREEN: BEGIN OF LINE.

    Hi Friends, I've tried for Begin of line comment for my required selection screen input, but I got some run-time errors. Can u help me to give a parameters with 3 text field in a straight line/row with your examples. Please adivse thanks & regards sa

  • Renaming javaw.exe in task bar

    We're working on a nice big desktop application. All in Java. Working great. When we get lots of frames going, everything in the task bar gets condensed into "javaw.exe". Which WE understand... and we understand where & how that's chosen: it's the ja

  • TIME column not visible in PLAN_TABLE output

    Hi I got following output after executing --> SELECT plan_table_output FROM TABLE( DBMS_XPLAN.DISPLAY()); | Id | Operation | Name | Rows | Bytes | Cost | | 0 | SELECT STATEMENT | | 1 | 7 | 18 | | 1 | SORT UNIQUE | | 1 | 7 | 18 | | 2 | VIEW | MTC EXCP