Disable the CTRL + Copy Option in Webdynpro abap

Hi All ,
I Have one requirement , I have created Text View and Formatted Text View . now client asking me to avoid the coping the text by using CTRL + C , anyhow Right click copy will not work in Webdynpro abap , now they came with CTRL + C option should to avoided so that they cannot copy the text .
Please help on this .
Appreciate on quick answer .

Hi Ananth,
You can make input fields as password fields but unfortunately, we do not have this option for other ui elements... like text edit
To make an input field as password field, need to check the property "passwordField" .
Regards,
Rama

Similar Messages

  • How to disable the right click options in webdynpro applications

    hi
    i want to disble the right click options in the webdynpro applications.
    kindly help me soon.
    thanks,
    gupta.

    Hi..
    Do u got to know how to disable right click option in Webdynrpo application.
    If so, then kindly help me.
    Regards,
    Yugesh A.

  • Disable download a copy option for pdf files in SharePoint 2013

    Hi,
    We need to disable Download A Copy option of Document library for few users of our site.
    We have provided them View Only rights which disables download for other files except PDF files.
    Kindly suggest

    Hi Nirikshita,
    As the “Download A Copy” button was available when the users(View Only permission) clicked a PDF file, you can try to hide the “Download A Copy” option based on user permissions.
    There are some links for your reference:
    http://social.technet.microsoft.com/Forums/en-US/12c1db29-38ab-45cc-803d-29e5ba4834bc/disable-download-a-copy-submenu?forum=sharepointgeneralprevious
    http://www.alaindeklerk.com/conditionally-enabledisable-ribbon-buttons-based-on-user-permissions/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/eba89b93-6d1b-4453-b50c-5fc7790c1082/how-to-hide-ribbon-buttons-from-sharepoint-2010-page?forum=sharepointcustomizationprevious
    http://johanolivier.blogspot.com/2011/12/show-or-hide-sharepoint-ribbon-tab.html
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Default Values for Select-options In Webdynpro-ABAP

    Hi Freinds,
    Kindly,Help me in setting the Default values for the Select-options in Webdynpro ABAP.
    Here the Node and the Attributes are Created Dynamically, and then Displayed Select-options Component View.
    Regards,
    Xavier.P

    Xavier Reddy Penta sent me this question via email and I answered it directly yesterday. Here is the solution that I provided to him, so that it is stored with the original question:
    I believe your problem is that you are not setting the value into the range correctly.  You are setting it directly into the field symbol of the range like such:
    <FS> = L_STRING2.
    But ranges are deep objects. They have four fields: Sign, Option, High, and Low. This is from the online help:
    1.     sign of type c and length 1. The content of sign determines for every row whether the result of the condition formulated in the column is included or excluded in the entire resulting set for all rows. Evaluable values are "I" for include and "E" for exclude.
    2.     option of type c and length 2. option contains the selection option for the condition of the row in form of logical operators. Analyzable operators are "EQ", "NE", "GE", "GT", "LE", "LT", "CP" and "NP" if column high is initial, and "BT", "NB" if column high is not initial. With the options "CP" and "NP", the data type of the columns low and high must be of the data type c, and special rules apply for entries on the selection screen.
    3.     low of the data type defined after FOR. This column is designated for the comparison value or the lower interval limitation.
    4.     high of the data type defined after FOR. This column is designated for the upper interval limitation.
    So when you are moving the value into the field symbol you are setting it into the sign column.
    Here is an example of how you can access the components of the range:
    * create a range table that consists of this new data element
        lt_range_table =
          wd_this->lv_sel_handler->create_range_table(
               i_typename = l_typename ).
        IF l_fieldname = 'CARRID'.
          FIELD-SYMBOLS: <tab>         TYPE INDEX TABLE,
                             <struct>      TYPE ANY,
                             <wa>          TYPE ANY,
                             <option>      TYPE char2,
                             <sign>        TYPE char1,
                             <high>        TYPE ANY,
                             <low>         TYPE ANY,
                             <wa_values>   TYPE ANY.
          ASSIGN lt_range_table->* TO <tab>.
          APPEND INITIAL LINE TO <tab> ASSIGNING <wa>.
          ASSIGN COMPONENT 'OPTION' OF STRUCTURE <wa> TO <option>.
          ASSIGN COMPONENT 'HIGH' OF STRUCTURE <wa> TO <high>.
          ASSIGN COMPONENT 'LOW' OF STRUCTURE <wa> TO <low>.
          ASSIGN COMPONENT 'SIGN' OF STRUCTURE <wa> TO <sign>.
          <sign> = 'I'.
          <option> =  'EQ'.
          <low> = 'AA'.
        ENDIF.

  • UCM - WEBDAV - How to Disable the New Folder option in the action popup

    I am trying to implement WebDav functionality. I don't want the users to create folders in the folder mapped to a security group. As long as the user has privilege to contribute to the security group he/she can checkin documents but they should not be able to create folder under it. I did not find documentation as to how to disable the new folder option in the context action menu that pops up on mouse right click. Is there any way we can do that?
    Thanx.
    Edited by: user10991492 on Nov 1, 2010 11:24 AM

    This is the boilerplate text often used in connection to networks in general. It is impossible to troubleshoot someone else's network remotely, and that's why it's not supported by Adobe:
    If you are opening files over a network or saving them to a network server, please cease and desist immediately in the event you are currently experiencing problems with one or more files.
    Working across a network in general is not supported by Adobe.
    See: 
    http://kb2.adobe.com/cps/406/kb406793.html
      Copy the CLOSED file from your server to your local hard disk, work on it, save it again to your local hard disk, close it, and copy the closed file back to the server.
        Of course, the fact that Adobe does not support working across a network does not necessarily mean it won't work.  It should.
        Adobe's position is that there are too many variables in a network environment for them to guarantee that everything will work correctly in every network, especially given the fact that if something does not work properly, it's probably the network's fault, and Adobe has no way of troubleshooting your network.
      If you can't work locally, you are on your own, and if something happens, you're on your own. If you must work from a server, make sure your network administrator is a competent professional.

  • Select-options in Webdynpro abap

    Hi,
    I want to use select options in webdynpro abap ,I checked links available in net but want a simple step by step procedure .
    -Sandeep

    Hi,
    What do you mean by simple steps? You need to write little code to add select options in WDA. You can check this wiki for reference: Web Dynpro ABAP - Complex select-options component usages - Code Gallery - SCN Wiki
    And there are lot more documents available in SCN. search here
    Regards,
    Kiran

  • How disable the full screen option in the standard or wireframe video player ?

    I was wondering if (and how) it's possible to just disable the full screen option in the controls that appear below the video player (standard or wireframe).
    I want to have a video player with the progression bar, play / pause options, the counter without the full screen option because: "When someone clicks the Full Screen button during playback, the video opens in a pop-up window. Any interaction used to transition to a new state in the application does not work."
    http://help.adobe.com/en_US/flashcatalyst/cs/using/WS4bebcd66a74275c3-326fcb52123816c0204- 7fed.html
    Thanks for your help.
    //Catalyster33//

    I don't think so from within Flash Catalyst. That is all part of the component. I took a quick look at the docs, and did not see that element at as a parameter. There are only two options I can think of: either build a custom controller in  Flash Catalyst (which may not have all the same functionality as the stock controller) or take your project into Flash Builder and modify the controller skin there.
    Chris

  • How do I disable the GUEST login option at start up screen

    how do I disable the GUEST login option at start up screen.
    I have already gone to
    System Pref'>Users and Groups>Unlocked it with password>Guest User is OFF>Allow guests to log into this computer is NOT CHECKED,
    however I still have that GUEST USER selection on the login screen.

    Hello Leopardus,
    having read other post concerning this issue
    Re: Removing Guest User icon from login page
    dated all the way back to 2012, I have decide to leave well enough along and not let the GUEST button bother me.
    I rarely if ever take my Mac out of the house so I have not given much thought to theft or loss, but, in the event of it leaving my house by another way, the slim possibility of recovering it is worth the annoyance, I'll get over it.
    Thank you all.

  • Can we disable the anti-alias option for the quick selection tool?

    Can we disable the anti-alias option for the quick selection tool?
    I can deselect it with the magic wand but not with the quick selection. Any ideas?
    thanks,
    Dominik

    I don't think you can, but in the refine edge dialog you can use the contrast setting to get rid of most of the anti-alias.
    MTSTUNER

  • Disabling the unlimited Lifetime option in Cisco WCS Guest User Creation

    Is there  a way to disable the unlimited Lifetime option in Cisco WCS Guest User Add/Schedule tab.If i make those fields uneditable, it just takes out the option to schedule any meetings in future.Using Cisco WCS version 7.0.220.0.

    i'm also searching for an solution to disable the unlimited lifetime button for the Lobby Ambassador.
    could it that Cisco introduces this maybe a future release?
    couldn't be that there are only few people who are disappointed with this solution.
    My Customer is thinking now that cisco isn't the right solution for him.

  • HT5934 How can I disable the lock screen option. I do not want to punch in a multi-digit security code every time I need to use the phone

    How can I disable the lock screen option? I do not want to punch in a multi-digit security code every time I need to use the phone.

    System Preferences - Security & Privacy - unselect the box called Disable automatic login

  • The Move/Copy option does not show the phones gall...

    Hello,
    I want to move some photos (wallpapers) to the phone's Gallery to use them for slide set but I can't do that... The Move/ Copy option does not show the phones gallery. It only shows the MMC, Games and My Apps. Please tell me what should I do.
    Thanks.
    Moderator's Note: Post was moved and changed the title into a subject-related title. This is to keep the forum organized and let other forum users easily see and respond to this post.

    Because you posted this message in a thread about the Nokia 301 before, are you about a Nokia 301 as well?
    Nokia 301 » Menu » Apps » Files or Gallery » … » (do not open but highlight) your file » Options » Move. Did that help?

  • Disabled the switchable graphics option in the BIOS

    Dears 
    I need help in this so bad , i have installed Linux to my T400 and i have to disable the switchable graphics option in the BIOS , but i cant find the options anywhere , after I'm into Bios i go to config then display and i find only 2 options 
    -Default primary video Device
    -Boot Display Device
    that's it i want to set the Display options, setting it to Discrete only and disabling OS autodetection 
    Solved!
    Go to Solution.

    mshayeb, welcome to the forum,
    it would be helpful if you could post which T400 you have, even better post the Type and Model Number this will help members to help you. If it ends in CTO please provide some details about your T400. Please do NOT post your s/n
    Thanks in advance
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Permanently disable the data roaming option

    Hi,
    is there a way to disable the data roaming option? Maybe via iPhone Config tool?
    We would like to permanently disable, respectively password protect this option
    for all our iPhone Users. Just setting a default value wouldn´t be enough.
    Thanks
    Chris

    Hye ChrisBLN,
    Did you find out any solutions to your problem?
    To be honest, I'm currently in exactly the same situation and would appreciate to know if you discovered any replies that shows it's possible?
    I tried to manipulate ICU that seems to be made for this kind of problem but I can't find the right property/configuration.
    What about you?
    Thanks

  • Upload from clipboard option in webdynpro abap selection screen

    Hello Gurus,
    We have a requirement in select-options in webdynpro.i have implimented select-options successfully using
    WDR_SELECT_OPTIONS used component.now i need to impliment 'upload from clipboard' option when ever i click on advance options arrow mark. this option we can get in normal abp from selection screen.in selection screen against select-option field we have multiple options arrow mark.when ever we click this arrow mark we can able to see the upload from clipboard button at lowe level.exact same option how can we impliment in webdynpro abap selection screen.
    Could anyone please suggest solutions?
    if possible could you send me the sample code or relevent links for the same.
    Thanks in Advance for your replies.
    Regards,
    babu

    Hi,
    Which server version are you working on...Is it ECC6 or nwetweaver 7..
    I guess that option is avaialbel in Netweaver 7.0..Need to check there is an option for Clipboard in select-options..
    Regards,
    Lekha.

Maybe you are looking for

  • Parameter name passed in Set Callable Statement

    Is it not possible to pass parameter name in the callable statement while using Oracle drivers for jk 1.4?? Thanks!

  • Allow a customer to edit a pdf file

    We send out PDF files to customers that are designed using InDesign. Sometimes we want the customers to be able to make minor changes to the text direct into the PDF. However we have a large number of these customers and they do not have any Adobe to

  • Where is the CCV number stored for offline processing? I cannot see it the secure PDF document

    Please note that we will not collect CVV, CVV2, CVC2 & CID as per PCI standards. A Card Verification Value code, CVV, (CVV2 for Visa, CVC2 for MasterCard and CID for AMEX) is the three or four digit number located either on the front or back of a cre

  • Content search webpart query

    Hi , I am to trying to add a property filter to a content search webpart.I have to query the property with the page title of the current page.So assuming my page url ends with "/Pages/b1.aspx".I want to query by b1. I see that there is "value of a to

  • Windows7 pro oem activation

    Hi All, I have got a Toshiba Tecra laptop it came with windows7 Pro installed but with windows 8 recovery. I had to replace the harddisk and I could not restore windows7 back to it so I had to download windows 7. First I could not install the OS. I h