BO XI 3.1 Security - Enable drag and drop

Hi,
I am trying find out how to enable "drag and drop" for the webi reports in Infoview.
What are the main settings in access levels or profiles needs to be done ?
Also, I am wondering if we can do some settings for enabling developers to use import wizard-client tool.
Any suggestion from soem experts...?

You can do "drag-n-drop" in the Java Report Panel. But you cannot "drag-n-drop" report objects from folder to folder which is a poor design in my humble opinion. ASUG (America's SAP Users' Group) is starting several Influence Councils this year. If you are interested in voicing your constructive opinion and suggestion to the Product Managers, please go to asug.com to find out more information and to sign up.
As of Import Wizard, it is an administrator tool and should be restricted to administrators only. Making it available to developers/users is asking for trouble. It will lead to total chaos.

Similar Messages

  • How do I enable drag and drop of photos from a webpage to my desktop? It has stopped working and I cannot figure out how to enable it.

    I used to be able to drag and drop photos from webpages to my desktop but am no longer able to do so. I can however right click and save image as, but that it just to tedious.

    That sounds like a browser issue so what browser and what web sites?

  • Enable Drag and Drop from mail to inbox folder

    Using Outlook 2007... Somehow my drag and drop function has been disabled. I can no longer select an email and move it into a mail folder by dragging and dropping. I am able to right click and select "move to" but dragging and dropping is much
    more efficient with the volume of email I'm receiving. This happened to me years ago but the company's IT guy fixed it while I was out of the office. When asked he said I had typed a keyboard code unknowingly that disabled the function. Any ideas on how to
    regain the awesomeness that is drag and drop??

    Hi,
    Some users who encountered the same issue are able to resolve it by pressing ESC key for several times, you may have a try and let me know the result.
    If above doesn't make any change, we may try to right-click the email you want to move and drag it to the target folder, then select Move from the pop-up menu to see if it will work.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Web Enabled Drag and Drop : How to ? Enlighten Me :)

    Hai,
    I am writing a web page which should have Drag and Drop functionality.In the web page You should be able to move the lables around, and when you login again you should be able to see the lables where they were moved to.
    I'm thinking the only way to make it with java is includ a JTable in JApplet and fill its cells with the JLables. Make them Draggable and the JTable as Drop Source. Get their positions after they r moved and then update the positions in Database with JDBC.
    Please can you give me the suggestions on how to do this. Is there anyway I can do this with Java Script..?
    I welcome your suggestions and help for this.
    Thanks in Advance.
    :-)

    If you are doing this on the timeline, then your dragging sections should each be on their own layers, and they should extend through whichever frames you intend them all to be present.  So if you have mouths being added in frame 1, hats in frame 2, and eyes in frame 3, then you need to have each section of pieces on its own layer, and the mouths layer should extend from frames 1 thru 3, the hats from frames 2 thru 3, etc.

  • How do i enable drag and drop?

    Im trying to move specific music from my imac onto my iphone, via drag and drop but it isnt letting me do so, only syncing my entire collection of music.. help?

    1. Connect your phone to iTunes
    2. Open iTunes and select your device
    3. select music and then choose the option "select playlists, artists, albums, and genres
    4. choose the songs you want
    4. sync your device
    you can also create and playlist and then drag whichever song you like and then sync that playlist using the the above steps
    Aryan_m92

  • Drag and Drop - Drag Image

    I'm using the Flex DragManager in an AdvancedDataGrid with
    HierarchicalData to allow the user to drag and drop tree nodes to
    re-order them. It is working fine. The problem I am having is with
    the drag image. The drag image does not always show up. It seems
    like it will appear for one drag and drop. Then if I try to drag
    another tree node I do not get the drag image there is just a line
    to show I'm dragging something.
    When I say drag image I mean the faded image of the text of
    the tree node which appears as I drag the tree node.
    I am using the following properties on the AdvancedDataGrid
    to enable drag and drop:
    dragEnabled="true" dropEnabled="true" dragMoveEnabled="true"
    Now if set dragMoveEnabled="false" then I do get a drag image
    everytime. But I need move the tree nodes around not copy them so I
    need dragMoveEnabled="true".
    Thank you

    I'm using the Flex DragManager in an AdvancedDataGrid with
    HierarchicalData to allow the user to drag and drop tree nodes to
    re-order them. It is working fine. The problem I am having is with
    the drag image. The drag image does not always show up. It seems
    like it will appear for one drag and drop. Then if I try to drag
    another tree node I do not get the drag image there is just a line
    to show I'm dragging something.
    When I say drag image I mean the faded image of the text of
    the tree node which appears as I drag the tree node.
    I am using the following properties on the AdvancedDataGrid
    to enable drag and drop:
    dragEnabled="true" dropEnabled="true" dragMoveEnabled="true"
    Now if set dragMoveEnabled="false" then I do get a drag image
    everytime. But I need move the tree nodes around not copy them so I
    need dragMoveEnabled="true".
    Thank you

  • JList - drag and drop

    Hi,
    I'm struggling with getting my program outfitted with a drag and drop function in and between a few JList components. (I'm using NetBeans IDE 6.7)
    I have four JLists of which only one I want to enabled drag and drop rearrangement of the strings. Furthermore I would like to enable dragging from the other three lists into the rearrangeable list (which may be empty!).
    I've searched for answers but I just can't manage to translate the answers on other forums into a usable solution for my program... I am relatively new to Java and NetBeans, so I would appreciate if you could keep the answers simple... (if possible).
    What I know about this problem already:
    - if i set dragEnabled to true, I can drag text into e.g. a TextField without further complications

    JTextComponents have preinstalled TransferHandlers that make it possible to simply call setDragEnabled(true) and you are good to go. However, with most other components, you need to install a custom TransferHandler (ie call list.setTransferHandler() ) to get the job done.
    Here is a sample of the code you need: ListTransferHandler
    ICE

  • Drag and drop custom object

    Hello,
    I am trying to create a GUI where the user will be able to drag an object (which I have created) from a toolbar button onto a JPanel. I have tried the sun tutorials to no avail. I am unsure exactly what code I should be writing to enable this functionality. I have written a dragmouseadapter which enables drag and drop from the button. I have also written a TransferHandler and Transferable for the object, but again I'm not sure how I should be using these. Can anyone advise me? Hopefully in a sort of step-by-step instruction for setting this up. Thank you.

    You wanted to drag and drop a custom component and you said its done using dragmouseadapter!
    TransferHandler and Transferable are used to transfer the data between the swing components.
    Now, what you want to do? So, we can help!

  • Drag and Drop in ALV

    Hi All,
    I have the latest version configured. In the ALV, I have new feature to drag and drop the column
    in the ALV table so that it's position can be changed.
    Because of this my columns settings are getting disturbed.
    How to disable this feature.
    I have already coded as
    lr_model->SET_COLUMN_SELECTION_ALLOWED( abap_false ).
    lr_model->set_fixed_cols_left_allowed( abap_false ).
    lr_model->set_fixed_cols_right_allowed( abap_false ).
    Earliest replies are highly appreciated.
    Thomas: Any way to do this.
    Regards,
    Lekha.

    Hi Lekha,
    Please refer to the link below. This link elaborates how to enable Drag and Drop functionality in tables. I hope reversing those settings and properties will disable drag n drop feature.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0760510-a2d5-2b10-de9f-d897679696e3
    I hope this will help your cause.
    Regards,
    Sumit

  • Drag-and-drop in Web Center 11g

    I'm running the Avitek sample portal on JDev 11.1.1.3 with Web Center on integrated WLS.
    Is it possible to enable drag-and-drop of portlets within the page layout - by an end-user?
    I understood this was a feature available in Web Center and not in WLPortal - so has anyone got this working?

    Webcenter supports drag and dropping of portlets out of the box. You don't need to do anything special to enable drag and drop of portlets.
    The only requirement there is, is that users are logged in and they have granted personlization rights.

  • Implement Drag and drop functionality in my application

    I want to drag image from one UIImageView to other UIImageView.
    Is there any event handle to this drag and drop functionality.
    Any one have different idea to handle this. than please reply.
    Any coding idea related to this?

    it is possible but u have to write some advance code to handle plz mention ur Forms version and other info
    Forms 10g and above possible with Java beans
    Forms 6i there is a demo in forms online help ........ Search DRAG
    To enable drag and drop on an item:
    1     Attach the PL/SQL library DRAG.PLL, which contains the  Mouse package, to your module.
    2     Create a WHEN-MOUSE-DOWN trigger on each item that can be dragged.  From this trigger, call the Click routine from the Mouse package.
    3     Create a WHEN-MOUSE-MOVE trigger on each item that can be dragged.  From this trigger, call the Move routine from the Mouse package.
    4     Create a WHEN-MOUSE-UP trigger on each item that can be dragged.  In this trigger, write your application specific code.Baig
    [My Oracle Blog|http://baigsorcl.blogspot.com/]

  • Drag and Drop onto a Panel

    Does anybody know how to enable drag and drop onto a panel? I
    need my users to be able to choose an image from a grid and place
    it where ever they want on a panel or something. How can I do this
    in flex? I know how to do drag and drop from grid to grids or
    select boxes. I just can't get to place it on a panel.
    Thanks for any insight

    Thanks a million. This definitely helps out a lot. Do you
    know of a way where you could put all of them on the panel and
    control their layout? Basically, I need the user to be able to pick
    as few or as many of the flags they want and place them on the
    panel to make a collage. So the end user can drag the items around
    and put them in the panel however they see fit.
    Once again, thanks.

  • When i drag and drop an image on my site. it gives the following error. "Unable to access local files due to browser security settings. To overcome this, follo"

    I am using the firefox version 17 and when i drag and drop an image on my website. It gives me the following error.
    Unable to access local files due to browser security settings. To overcome this, follow these steps: (1) Enter "about:config" in the URL field; (2) Right click and select New->Boolean; (3) Enter "signed.applets.codebase_principal_support" (without the quotes) as a new preference name; (4) Click OK and try loading the file again. Or go to the homepage for a link to the tutorial on how to do it.
    I have completed the above steps and it is still showing the same error message. Any help would be highly appreciated.
    Thanks.

    Thanks kumars ,
    I have a specific drag and drop area on our website. This works fine for all earlier releases of Firefox after these security settings
    "(1) Enter "about:config" in the URL field; (2) Right click and select New->Boolean; (3) Enter "signed.applets.codebase_principal_support" (without the quotes) as a new preference name; (4) Click OK and try loading the file again."
    Bust these settings not work for me in Firefox 17.
    Yes the drag and drop functionality is java script based and i am not using any script blocker addons.

  • How do I enable text drag and drop in Mail?

    Simple enough question. I'm sure I had this at one time in my Mail app, but it doesn't work now, and I see nothing in Preferences to enable it. Can anyone tell me what I'm missing?
    Rob

    Just found the problem. The old Kensington Turbo Mouse I was using won't work with drag and drop. It doesn't work even when I dedicate one of the four buttons specifically to Drag. Attaching the regular mouse solves the issue.
    (Though not, interestingly, with the text in InDesign, the application I'm using throughout the day).
    Rob

  • Visual Studio opening files when dragged and dropped in WPF app debugging session

    I'm working on a WPF app (using VS2013 CE) which is intended to manage media files (TV Shows, movies, etc) and as part of this I am enabling the user to drag and drop media files on to the running app (by adding AllowDrop="True" and PreviewDragEnter="Window_PreviewDragEnter"
    to my Window definition).
    The problem I have is that when I drag files onto the app in a debugging session Visual Studio then opens the file(s) when I stop debugging... this is seriously annoying as when I am testing with large media files (> 1GB) it just locks up VS for minutes
    at a time while it tries to open the file or files. When I run the app outside the debugger this does not happen - it's only when I'm in a VS debugging session.  The only way I can stop this happening is to kill VS completely from Task Manager then restart
    it - this is also very annoying but often I need to do this as it will freeze up for 5-10 minutes while it insists on loading the files in VS.
    I understand the app, whilst debugging, is running in the context of VS but why does VS then have to try to open the files when debugging is finished?   I have looked through the options but can't see anything to switch this off and no amount of searching
    has turned up anything - can anyone put me out of my misery with a solution to this annoying issue?

    Hello nzmike,
    Does Visual Studio behaves like the following image shows and just hangs when opening your media file?
    Do you have any other computer which installs Visual Studio? Can you reproduce this on it?
    In order to troubleshoot this issue I think we need to locate the root reason of your issue. The problem can related to the following:
    1. Your project is corrupt and VS then trys to load that file when debug finished.
    2. Your VS is corrupt and caused this problem.
    So please do something below:
    1. Try clean and rebuild your project.
    2. Switch to some other PCs and use VS and your project there, check if the problem can be reproduced.
    3. You can backup your VS setting and try some commands: devenv /resetsettings and devenv /resetuserdata
    Details about VS command:https://msdn.microsoft.com/en-us/library/xee0c8y7.aspx
    And based on th research of the above second step, if you can reproduce this issue on more than one PC, the problem is pending on your project and I need you to share a simple sample which can reproduce this issue. We will need to investigate the project
    in detail.
    Best regards,
    Barry
    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.

Maybe you are looking for

  • Scanner not working

    1. Product Name and Number      •  HP Color LaserJet CM6030 MFP  number CE665A      • How do I find my product name and number  2. Operating System installed (if applicable)       •  Windows 7 32-bit  3. Error message (if any)   4. Any changes made t

  • How is a file attachment stored in database?

    Hi all~~ I am developping an email application(web based) using Javamail. I need to store the attachment together with the relevant email messages in the database. Is that correct that I add an attribute called ATTACHMENT in the entity which stores t

  • My iPhone 5 has frozen during an update and I cannot gain access?

    The iphone has completly frozen mid an update the screen is black with the white apple and a portion of the update showing as downloaded approx 1 quarter. iphone support needs the serial number but I cannot gain access to anything.  it will not switc

  • Icon Sticks to Pointer in finder

    When I click on an icon in the Finder it sticks to the pointer and I can't release it or move it to a new location.  This happens on the Desktop or in folders.  I have looked for a solution but could not find it online.  I am using a Logitech mouse a

  • Box says " Windows cannot find (site) Please check spelling.......then Mozilla finds it

    Irritating box shows whenever I go to a web site. I have re-set IE, re-installed Firefox, got rid of Google Tool bar, checked extensions and got rid of some, everything I can think of. Read article on problem, followed instructions, etc etc, all to n