How to restrict 'Broadcast and Export' option of BW report through web.

Helllo,
Please anyone let me know, how NOT to give/allow "Broadcast and Export' option in BW report, when accessed through Web.
Is there is any Auhtorization object which restrictes this option.

Hi,
Please check this, it may help you.
http://help.sap.com/saphelp_nw70/helpdata/en/80/1a68b4e07211d2acb80000e829fbfe/frameset.htm
Regards,
Madhu

Similar Messages

  • How to restrict/allow users to access oracle forms/reports through SSO

    Dear All,
    I am new to oracle application server and need to know how can we manage the access rights for oracle forms using OID/SSO.

    Anyone can answer.

  • How to hide Print and Filter option from dynamic ALV

    Hi,
    I have created the dynamic ALV. now User don't wan't Filter , export,print Option on the ALV dispaly.
    Could you please tell me How to hide Print and Filter option from dynamic ALV.
    Thanks and regards
    Amita.

    Hi,
    Please go through the following link to get an better idea on ALV.
    [https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/1190424a-0801-0010-84b5-ef03fd2d33d9&overridelayout=true]
    This is the code  which you have to write in  WDDOINIT
    DATA LO_CMP_USAGE TYPE REF TO IF_WD_COMPONENT_USAGE.
    LO_CMP_USAGE =   WD_THIS->WD_CPUSE_ALV_TEST( ).
    IF LO_CMP_USAGE->HAS_ACTIVE_COMPONENT( ) IS INITIAL.
      LO_CMP_USAGE->CREATE_COMPONENT( ).
    ENDIF.
    DATA LO_INTERFACECONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE .
          LO_INTERFACECONTROLLER =   WD_THIS->WD_CPIFC_ALV_TEST( ).
            DATA LO_VALUE TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
            LO_VALUE = LO_INTERFACECONTROLLER->GET_MODEL(
    lo_value->IF_SALV_WD_STD_FUNCTIONS~SET_EXPORT_ALLOWED( abap_false ).
    lo_value->IF_SALV_WD_STD_FUNCTIONS~SET_PDF_ALLOWED( abap_false ).
    lo_value->IF_SALV_WD_STD_FUNCTIONS~SET_VIEW_LIST_ALLOWED( abap_false ).

  • How do I import and export PDF's from Ibooks

    How do I import and export PDF files from Ibooks on the IMAC running Mavericks?
    How do I sync my PDF files in IBooks to the IPAD when they were not purchased from the bookstore?
    I noticed that I could email the PDF and then add it to IBOOKS on the IPAD.
    Is there a 3rd party IBOOK type reader that will address this issue?
    When I upgraded Mavericks it moved all of my PDF files in ITUNES application to IBOOKS and removed all reference to those
    books in ITUNES. When I purchase a book from IBOOKS store on the IMAC, the books shows up in IBOOKS on the IPAD.
    All of my PDF files will not sync up with the IPAD.
    I do hope this is a problem that Apple will address and would like to know when the fix will be available.

    Hello,
    Thank you. I found that option you pointed out. I can now change it from 1080i to 1080p and I can chance the resolution. However I still can't change the frame rate. It still stays at 29.97.
    Could this be due to the camera? I am using a Canon VIXIA HF S100 with 30p and 24p frame rate options. I suspect that it does not really shoot at true 24p and only does 24p within 60i.
    Frankly, I don't really care about getting 24p support too much but it would be very nice to have the option.
    I'll keep toying with the program. Still, anymore ideas or thoughts would be greatly appreciated.
    Thank you Wild Giles.

  • ReportViewer 2010:how to hide pdf in export option in subreports in reportviewer

    Hi,
    I am using ReportViewer 2010 and using code (posted below) to hide certain options from export, its working fine for parent report,  but when i am clicking on parent report to view child report, then export option in child report is showing all the
    items in export option which all are hided in parent report. So please help me out.
    private void DisableUnwantedExportFormats()
                FieldInfo info;
                foreach (RenderingExtension extension in rptviewerByBrandBySentimentAttribute.ServerReport.ListRenderingExtensions())
                    if (extension.Name != "PDF" && extension.Name != "ASPPT" && extension.Name != "ASPPTX" && extension.Name != "EXCEL" && extension.Name != "MHTML") // only PDF and Excel
    - remove the other options
                        info = extension.GetType().GetField("m_isVisible", BindingFlags.Instance | BindingFlags.NonPublic);
                        info.SetValue(extension, false);
                    if (extension.Name == "ASPPT") // change "Excel" name on the list to "Excel 97-2003 Workbook"
                        info = extension.GetType().GetField("m_localizedName", BindingFlags.Instance | BindingFlags.NonPublic);
                        if (info != null) info.SetValue(extension, "PowerPoint 2003");
                    if (extension.Name == "ASPPTX") // change "Excel" name on the list to "Excel 97-2003 Workbook"
                        info = extension.GetType().GetField("m_localizedName", BindingFlags.Instance | BindingFlags.NonPublic);
                        if (info != null) info.SetValue(extension, "PowerPoint 2007");
    neha

    Hi,
    Thank you for this article.
    I am using the localreport ReportViewer 2010 and other code examples weren't working.
    Apparently, the m_isVisible field was not available in earlier version of ReportViewer
                        info = extension.GetType().GetField("m_isVisible", BindingFlags.Instance | BindingFlags.NonPublic);                    info.SetValue(extension, false);
    Code that wasn't working:
                FieldInfo info = extension.GetType().GetField("m_serverExtension",            BindingFlags.NonPublic | BindingFlags.Instance);            if (info != null)            {                object actualExtension = info.GetValue(extension);                if (actualExtension != null)                {                    PropertyInfo propInfo = actualExtension.GetType().GetProperty("Visible");                    if (propInfo != null && propInfo.CanWrite)                    {                        propInfo.SetValue(actualExtension, false, null);                    }                }            }
    Thanks again, chupaul :)

  • How to hide the Print and Export button in analytics report or tasks pane

    Hi Experts,
    In BIEE 11g,
    How to hide the Print and Export button in analytics report or tasks pane ?
    For example:
    In console,I have created one userA which is belong to BIConsumer GROUP , when I make use of the highest user 'weblogic' to create one simple report, then the userA will login the analytivs to view this report (not dashboard), it will show the print and export as below.So customers do not want to give him the privilege for printing and exporting.
    In addtion, go to catalog->tasks(left corner), it will also show the print and export button. So how to hide or not access these button?
    Note: Maybe it can use the policy for consumer role for implementing this requirement, but I do not know how to modify the policy. Are you facing the problem? Thanks.

    Hi,
    1. Create seperate folder for Reports & Dashobard.
    2. For BI_Consumer (userA) set the catalog permission to view Dashboard Folder only and remove permission on the Report Folder (you can give traverse permission but don't give Open permision).
    3. By this user won't be able to open or run any reports in that folder and the only way he can see the reports is through Dashboard and on dashboard the export and print buttone can be removed very easily.
    Mark helpful if it helps.
    Regards,
    Kashi
    Edited by: K N Yadav on 24 May, 2013 1:51 AM

  • HT2513 how do i import and export HOMEAWAY calander and AIR BNB Calendar into my ICLOUD Calendar??

    how do i import and export HOMEAWAY calander and AIR BNB Calendar into my ICLOUD Calendar??

    If these calendars are listed under On My Mac on your Mac, follow Roger Wilmut's instructions here: http://www.wilmut.webspace.virginmedia.com/notes/icloudmovecalendars.html under "To move 'On MY Mac' calendars to iCloud".

  • ReportViewer 2010:how to hide pdf in export option in reportviewer

    please help me out 
    how shoul i hide pdf in export option in reportviewer
    susana w

    Hi,
    This is the code which is used for ReportViewer 2008 and i need code for ReportViewer 2010. I don't want to change in the reportserver's RSReportSErver.Config
    file because same report server we are using for different projects where in some projects we require pdf and some we do not. Below is the code for reportviwer 2008 where the export button is rendered as a dropdown and in reportviwer 2010, Export button is
    redered as div element and all the export options like pdf,word,etc elements are rendered as div elements . So in code behind how can i access these export button options?
       private void CustomizeReportViewer(System.Web.UI.Control reportControl)
                foreach (System.Web.UI.Control childControl in reportControl.Controls)
                    if (childControl.GetType() == typeof(System.Web.UI.WebControls.DropDownList))
                        System.Web.UI.WebControls.DropDownList ddList = (System.Web.UI.WebControls.DropDownList)childControl;
                        if (ddList.ToolTip.Contains("Export"))
                            ddList.PreRender += new EventHandler(ddList_PreRender);
                    if (childControl.GetType() == typeof(System.Web.UI.WebControls.Button))
                        System.Web.UI.WebControls.Button ddList = (System.Web.UI.WebControls.Button)childControl;
                        if (ddList.UniqueID.Contains("ctl00_ContentPlaceHolder1_rptviewerByBrandBySentimentAttribute_ctl06_ctl04_ctl00_Button"))
                            ddList.PreRender += new EventHandler(ddList_PreRender);
                    if (childControl.Controls.Count > 0)
                        CustomizeReportViewer(childControl);
            // This is the event handler added from CustomizeRV 
            // We just check the object type to get what we needed. 
            // Once the dropdownlist is found, we check if it is for the ExportGroup. 
            // Meaning, the "Excel" text should exists. 
            // Then, just traverse the list and disable the "Excel". 
            // When the report is shown, "Excel" will no longer be on the list. 
            // You can also do this to "PDF" or if you want to change the text. 
            void ddList_PreRender(object sender, EventArgs e)
                if (sender.GetType() == typeof(System.Web.UI.WebControls.DropDownList))
                    System.Web.UI.WebControls.DropDownList ddList = (System.Web.UI.WebControls.DropDownList)sender;
                    System.Web.UI.WebControls.ListItemCollection listItems = ddList.Items;
                    if ((listItems != null) && (listItems.Count > 0) && (listItems.FindByText("Excel") != null))
                        foreach (System.Web.UI.WebControls.ListItem list in listItems)
                            if (list.Text.Equals("XML file with report data") || list.Text.Equals("CSV (comma delimited)") || list.Text.Equals("TIFF file") || list.Text.Equals("Word") || list.Text.Contains("PPS"))
                                list.Enabled = false;

  • Import and Export Option

    When we exit from the local Developer Studio, in the next attempt to start the Developer studio we are not able to import/export the DC, because the import and export file system options are not available in the popup window.
    To achieve it we are reinstalling the JDK as well as NWDS.
    What could be the reason and please send the suggestions to resolve this issue.

    Hi,
      Close the project when exiting from the studio. So next time, you open studio, open the DC and check if you get the options.
    Regards,
    Harini S

  • How to both resize AND export to PNG at specific resolution?

    I am trying to export a PAIR of vector files as PNG-24's, one at 72 ppi and the second at 150 ppi, Illustrator CC.
    I also want both exported files to have a different SIZE that their existing (and of course, completely arbitrary) vector dimensions.
    If I use Save for Web in Illustrator CC, I can indeed change the size, BUT I can't specify a resolution!
    On the other hand if I try to do a File > Export, I can easily specify the resolution as 150 ppi, BUT I can't change the size!
    If I go 'way back to my Illustrator CS4 version, there was a toolbar display of the selected object's  (or group's) physical dimensions - see the attached image - but I can't seem to find it in the CC version of Illustrator.
    As Retina resolution images have been around for several years, it would be helpful to be able to have complete control over how vector images created in Illustrator could be output at 150 ppi AND with the ability to specify the physical size. And, being able to write an action to export the pair of different resolution images would be even better.
    Am I missing the obvious here? For the time being, I am back to my old machine with Illustrator CS4 just to export Retina-friendly images...

    This is not the issue - pixels are pixels, you're right. It is a question, rather, of how awkward it is to export the different sized files from Illustrator.
    Here's the problem. Supposed I have a vector file that has nominal dimensions of 385px  x 91px on the artboard - can't even SEE that info anymore, as I noted. (I'm sure there's a toggle somewhere for that, but I can't seem to find it...)
    I want to export this as a PNG at a smaller size, say at 62% = 239px × 57px. OK, just click and it's done, Save for Web, 62%.
    Now, I need to export it at twice that physical size for the Retina version. If I didn't write down my first PNG's EXPORTED dimensions, (and I work on a LOT of these files...), when I go back to Save for Web, I have to manually remember to double the first file's EXPORTED dimensions, i.e., 239px × 57px = 124% to get my larger file of 478px × 114px.
    On the other hand, if I go to File > Export, Illustrator lets me create larger files, but won't let me change the dimensions of the original file to begin with. It just makes no sense to me. If I could reset the vector's nominal size FIRST, it would be much simpler. One Save for Web, then one Export at Medium Res.

  • I recently bought my 1st IMac. I need to know how to back up and export my Outlook Contacts, Folders, and Saved Emails to the new Mac Mail

    I need to know how to back up my Outlook data from my PC (contacts, folders, saved emails) and export them to my new Mac Mail

    http://www.google.dk/search?source=ig&hl=da&rlz=1G1TSEH_ENDK367&q=import+outlook +mails+to+apple+&oq=import+outlook+mails+to+apple+&aq=f&aqi=&aql=&gs_sm=e&gs_upl =1308137l1317536l0l1317968l30l29l0l11l6l0l242l2780l2.10.5l17l0#hl=da&rlz=1G1TSEH _ENDK367&sa=X&ei=AlrFTsDBBZD64QTLvJm3DQ&ved=0CCEQBSgA&q=import+outlook+emails+to +apple&spell=1&bav=on.2,or.r_gc.r_pw.,cf.osb&fp=583a6dce352ae6fd&biw=1746&bih=75 5

  • Hide / display conditionally export links and export options

    Hi all,
    Is there a way to hide / display conditionally export links in a dashboard. Also, is there a way to limit the export options to display only Export to Excel, and not all the other options such as pdf, etc.
    Thank you
    Regards,
    Laurent

    Hi Laurent,
    Regarding limiting the choices of export, you can refer to below post:
    Re: Export to only PDF,Excel, PPT
    Thanks
    Hyder

  • How to restrict MD04 and MIGO

    How to restrict MD04 to materials belonging to a particular specified  material group?
    How to restrict MIGO to a particular specified vendor no ?
    thanks,

    Hi,
    The material group (MAKTL) restriction cannot be imposed directly via authorization for tcode MD04. Similar is the case restricting MIGO by vendor no.
    The Tcode MD04 checks for auth onject M_MTDI_ORG
    which restricts for only for
    MRP Controller
    Plant
    Acctivity types in Materials
    Similarly MIGO checks for the foll fields only in the concerned auth objects
    Plant
    Movement Type
    Storage Location.
    So thsi cannot be restricted via authorization concept normally.
    However you may take the help of your basis /ABAPERs to explore the user exits /BADIs of the related programs.
    Or your ABAPERS may help you in this regard by developing some customized reports to restrict the same.
    Pl dont forget to award suitably.Regards

  • How to enable Validate and Export in FDM task

    Hi everyone
    I am working with setting up an FDM Task to Import, Validate and Export data to HFM.
    The Task is able to import data to FDM, but I cannot make the process start the Validate and Export functions. If I do the process manually, then data is imported to HFM succesfully.
    Am I missing something in the scripts or do I need to enable some feature in FDM?
    Action Script:
    Sub BatchLoadLedgerTrans()
    'Declare Local Variables
    Dim lngProcessLevel
    Dim strDelimiter
    Dim blnAutoMapCorrect
    'Initialize Variables
    lngProcessLevel = 50   'Import
    strDelimiter = "_"
    blnAutoMapCorrect = 0
    'Create the file collection
    Set BATCHENG.PcolFiles = BATCHENG.fFileCollectionCreate(CStr(strDelimiter), FileName)
    'Execute a Standard Serial batch
    BATCHENG.mFileCollectionProcess BATCHENG.PcolFiles, CLng(lngProcessLevel), , CBool(blnAutoMapCorrect)
    End Sub Integration Script:
    Function LedgerTrans_EDW_to_HFM(strLoc, lngCatKey, dblPerKey, strWorkTableName)
    Dim objSS 'ADODB.Connection
    Dim strSQL 'SQL String
    Dim rs 'Recordset
    Dim rsAppend 'tTB table append rs Object
    'Initialize objects
    Set cnSS = CreateObject("ADODB.Connection")
    Set rs = CreateObject("ADODB.Recordset")
    Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)
    cnss.open "Provider=SQLNCLI11; Data Source=10.250.200.10; Initial Catalog=EDW; User ID=FDM-user; Password=MyPassword"
    cnss.CommandTimeout = 0
    'Create query String - VIEW
    strSQL = "Select * "
    strSQL = strSQL & "FROM EDW.hfm.ledgertranstable "
    'Get data
    rs.Open strSQL, cnSS
    'Check For data
    If rs.bof And rs.eof Then
    RES.PlngActionType = 2
    RES.PstrActionValue = "No Records To load!"
    Exit Function
    End If
    'Loop through records And append To tTB table In location’s DB
    If Not rs.bof And Not rs.eof Then
    Do While Not rs.eof
    rsAppend.AddNew
    rsAppend.Fields("PartitionKey") = RES.PlngLocKey
    rsAppend.Fields("CatKey") = lngCatKey ' PlngCatKey
    rsAppend.Fields("PeriodKey") = dblPerKey ' PlngCatKey
    rsAppend.Fields("DataView") = "YTD"
    rsAppend.Fields("CalcAcctType") = 9
    rsAppend.Fields("Account") = rs.fields(2).Value
    rsAppend.Fields("Desc1") = rs.fields(2).Value
    rsAppend.Fields("Entity") = rs.fields(6).Value
    rsAppend.Fields("ICP") = rs.fields(8).Value
    rsAppend.Fields("Amount") = rs.fields(14).Value
    rsAppend.Fields("UD1") = rs.fields(5).Value
    rsAppend.Fields("UD2") = rs.fields(9).Value
    rsAppend.Fields("UD3") = rs.fields(10).Value
    rsAppend.Fields("UD4") = rs.fields(7).Value
    rsAppend.Fields("UD5") = rs.fields(13).Value
    rsAppend.Update
    rs.movenext
    Loop
    End If
    'Records loaded
    RES.PlngActionType = 6
    RES.PstrActionValue = "SQL Import successful!"
    'Assign Return value
    LedgerTrans_EDW_to_HFM = True
    End Function Best regards
    Frederik
    Edited by: Frederik Andersen on Jun 1, 2013 1:32 AM

    Found the solution.
    The variable lngProcessLevel should be set to "12" to execute the full Import, Validate and Export.
    Best regards
    Frederik

  • How do I resize and export photos in Aperture without them becoming pixelateded

    I'm having trouble resizing my photos and exporting them without the end result being an overly pixelated photo.  This happens when I am resizing my photos to a 5 by 7 size.  

    Amanda,
    Welcome to the user-supported Aperture discussion group.
    In Aperture, you don't resize to a "print" size.  You export to a specific pixel size. 
    So, what size are you actually exporting it as? 
    I believe both Terence and I suspect that you have a very low-res picture and you are telling Aperture to make it have more pixels.  If you are intending to print the photos, there is really no difference in sending the original, low-res version to the printer versus having Aperture add pixels to your photo.  Something, somewhere, will have to add pixels.
    nathan

Maybe you are looking for

  • Mass updation of Vendor account group

    Dear FICO gurus Found XK07 -Individual processing to change Vendor account group, but issue is i need to change  for more than 2500 vendors. Can any one suggest the alternative t.code as solution  (apart from LSMW/BDC). Thanks in advance Deepak

  • W520 Fn F5 Doesn't show Bluetooth Radio

    Hi, When I press Fn + F5, I see only 802.11 wireless radio and and bluetooth is not shown at all. I check both BIOS and and Device Manager and Bluetooth is activated. Any ideas? Thanks!  Solved! Go to Solution.

  • How to stop from having to scroll images to view the full image.

    I'm actually asking this for a friend who needs help and is a bit computer-challenged. She uses FF and when she clicks on images on certain sites to view them, they open up in a window but they are not full sized. They have scroll bars requiring her

  • PP CC 2014. All screens are gone. PPro seems to be running invisibly.

    I very briefly tried to watch my project on my Apple TV. It has worked many times in the past, but not today. Immediately after the Apple TV started, all the Premiere Pro windows were gone from my computer display. I shut down the Apple TV and the co

  • IPhone, Birthdays - A variation on a theme

    I have scanned the forums and whilst the problem of "birthdays not appearing on the iPhone" has been touched on many times, I cannot see one that is quite the same as the one I appear to have. I want my Address book birthdays to appear in my iPhone 3