Unmanaged Disk Destination settings Default

Hi,
How can one change the u201CUnmanaged Disk Destination settings Defaultu201D option in any job servers to False?
I need all the users to provide their domain username and password while scheduling reports to the unmanaged disk. Present value of the metric is "True". I don't find any way to change it back to false. I cant also use the reset to default option in case needed, as other configurations will get affected.
Thanks & Regards
Karuppiah N

Hi Karuppiah!
I think there is no way to deselect the standards for the output formats.
You have following possibilities:
1. Teach your users, that they have to unmark the default, and have to provide their own entries.
2. Enter defaults for each report.
I thought about the file output for a standard user, but I came to the conclusion that it would be better if the users only use the email output for their purpose. The file output is only used by the admin to deliver reports to different systems.
ciao

Similar Messages

  • Error Scheduling Crystal Report to save to Unmanaged Disk destination

    When trying to schedule a Crystal Report to save to an "Unmanaged Disk" destination using the "Plain Text" format, and using the "Run Now" option, I receive the following error message  "Error Message: Invalid export options. D:\Business Objects\BusinessObjects Enterprise 11.5\Data\procSched\OUT-PHOENIX.reportjobserver\~tmp17105a42ccb5ae4.rpt"  I have enabled "Unmanaged Disk" capabilities within the ReportJobServer thru the CMC, and I have stopped and started the service.  I still receive the error message...Help!

    Hi Karla,
    do you have any service packs installed on your BOBJ server? Does your destination folder reside on a network drive?
    Regards,
    Stratos

  • Split a PDF by sections and name them into one unmanaged disk destination

    Hi,
    I have a report wich I export as a PDF to an unmanaged disk destination. The report is grouped by geographic area, and I want to separate the PDF into each of the 200 geographic areas. Is there any way to do this without having 200 versions of the report or without having 200 instances with a different parameter?
    Thanks,

    Thanks Bashir,
    It is a Crystal report, and I already have the sections with the tree in the left part to get to the appropiate section, the problem is that the report is too big and users prefer to access just the file they need; that is why I want to split into separate PDFs.  The other advantage is that it make it easier to link from my Intranet just to the part each group need, and for users who access remotly, opening a small file takes less time than opening a huge file, so there are many reson to split it.
    Any ideas?

  • Unmanaged disk destination - overwrite file possible?

    Hi,
    I have defined an unmanaged disk location for my Crystal Reports Server XI system.  The dozen or so reports that I have scheduled daily write to that destination fine -- unless an existing file with the same name already exists in that location.
    Since i have defined specified filenames (%SI_NAME%.%EXT), rather than the randomly generated name, each day's report is generated with the same name as any other day's.  However, the new reports do not overwrite the old, which I would like to enable if possible.  Please do not suggest adding %SI_STARTTIME%, to make the filename unique, for I need to retain a consistent filename for manually uploading (and overwriting) to Sharepoint (another topic of discussion).
    Is it possible to configure the unmanaged disk destination to overwrite existing files if same filename exists?
    Thank you,
    G.Brown

    Hi Greg,
    We're not using Crystal reports but do schedule BO Deski documents to publish as pdf files to a networked drive and we are using '%SI_NAME%.%EXT%' to specify the filename and it does automatically overwrites the existing files.  Does the username that your job is running under have full permissions on the folder in question on your unmanaged disk? 
    Regards,
    Anne.

  • Set 'Use Job server default' for Unmanaged disk destination

    Hi,
    I am using BO XI R2 SDK to schedule reports.
    I want to set all my reports destinations to Unmanaged disk to a particular folder. I have set these in reportjobserver's destination configuration too.
    Now i want create schedules through code for all my reports. I want these reports to use the job server defaults. I am unable to find a solution for this. The code i am currently using is as follows:
    Code:
    InfoObject diskObj = tempStoreForDisk.Query("SELECT * FROM  ci_systemobjects where si_name='CrystalEnterprise.DiskUnmanaged'")[1];
                    DestinationPlugin destDiskPlugin = (DestinationPlugin)diskObj;
                    DiskUnmanaged diskUnmanaged = (DiskUnmanaged)destDiskPlugin;
                    DestinationOptions destinationOptions = (DestinationOptions)diskUnmanaged.ScheduleOptions;
                    DiskUnmanagedOptions diskUnmanagedOptions = new DiskUnmanagedOptions(destinationOptions);
                    diskUnmanagedOptions.DestinationFiles.Add(path);
                    schedulingInfo.Destinations.Add("CrystalEnterprise.DiskUnmanaged");
                    schedulingInfo.Destinations[1].SetFromPlugin(destDiskPlugin);
    I want the italics line of code to be replaced with some code that enables the instance to use job server defaults.
    If a solution for the above query is not available, is it possible to set 'specific filename with extension' in the unmanaged destination through code?
    Could anyone please help me with any pointers?
    Thanks.

    Hello, Gayathri;
    I am not aware of a method to get defaults from the Job Server.
    You can use Visual Studio .NET to schedule to a disk file. We do have samples associated with our Developers Library on line.
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm
    The sample I am thinking of is "Schedule Report".
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/BOE_SDK/sampleList.htm
    Here is a simple sample that schedules to disk:
    Imports CrystalDecisions.Enterprise
    Imports CrystalDecisions.Enterprise.Desktop
    Imports CrystalDecisions.Enterprise.Dest
    Public Class ScheduleDisk
        Inherits System.Web.UI.Page
        Dim ceSession As EnterpriseSession
        Dim ceEnterpriseService As EnterpriseService
        Dim ceInfoStore As InfoStore
        Dim ceReportObjects As InfoObjects
        Dim ceReportObject As InfoObject
        Dim ceReport As Report
        Dim sQuery As String
    #Region " Web Form Designer Generated Code "
        'This call is required by the Web Form Designer.
        <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        End Sub
        Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
            'CODEGEN: This method call is required by the Web Form Designer
            'Do not modify it using the code editor.
            InitializeComponent()
        End Sub
    #End Region
        Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            'Put user code to initialize the page here
            Try
                'grab the Enterprise session
                If TypeOf Session.Item("ceSession") Is Object Then
                    ceSession = Session.Item("ceSession")
                    'Create the infostore object
                    ceEnterpriseService = ceSession.GetService("", "InfoStore")
                    ceInfoStore = New InfoStore(ceEnterpriseService)
                    'Create query to grab the desired report
                    sQuery = "Select SI_ID From CI_INFOOBJECTS Where SI_PROGID = 'CrystalEnterprise.Report' AND SI_Name='Consolidated Balance Sheet' AND SI_INSTANCE=0"
                    ceReportObjects = ceInfoStore.Query(sQuery)
                    'check for returned reports
                    If ceReportObjects.Count > 0 Then
                        ceReportObject = ceReportObjects.Item(1)
                        ceReport = CType(ceReportObject, Report)
                        'Create an interface to the scheduling options for the report.
                        Dim ceSchedulingInfo As SchedulingInfo
                        ceSchedulingInfo = ceReport.SchedulingInfo
                        'run the report right now
                        ceSchedulingInfo.RightNow = True
                        'run the report once only
                        ceSchedulingInfo.Type = CeScheduleType.ceScheduleTypeOnce
                        'When scheduling to all destinations except the printer, you must first retrieve
                        'the appropriate destination object. Each destination InfoObject is stored in the
                        'CMS system table (CI_SYSTEMOBJECTS) under the Destination Plugins folder
                        'Retrieve the DiskUnmanaged Plugin from CI_SYSTEMOBJECTS
                        Dim ceDestinationObjects As InfoObjects
                        Dim ceDestinationObject As InfoObject
                        ceDestinationObjects = ceInfoStore.Query("Select * from CI_SYSTEMOBJECTS Where SI_NAME = 'CrystalEnterprise.DiskUnmanaged'")
                        ceDestinationObject = ceDestinationObjects.Item(1)
                        'Create the DestinationPlugin object
                        Dim ceDisk As New DestinationPlugin(ceDestinationObject.PluginInterface)
                        'Create a diskUnmanagedOptions object and its ScheduleOptions from the Destination plugin
                        Dim ceDiskOpts As New DiskUnmanagedOptions(ceDisk.ScheduleOptions)
                        ceDiskOpts.DestinationFiles.Add("c:\ScheduledReports\ScheduledToDisk.rpt")
                        'Copy the properties from the Destination Plugin object into the report's scheduling
                        'information.  This will cause the file to be transfered to Disk after it has been run.
                        Dim ceDestination As Destination
                        ceDestination = ceSchedulingInfo.Destination
                        ceDestination.SetFromPlugin(ceDisk)
                        'schedule report
                        ceInfoStore.Schedule(ceReportObjects)
                        Response.Write("Report Scheduled Successfully with an Object ID of : " + ceReportObject.Properties("SI_NEW_JOB_ID").ToString)
                        Response.Write("<br>Report Scheduled to the following location: " + ceDiskOpts.DestinationFiles(1).ToString)
                    Else
                        'no objects returned by query
                        Response.Write("No report objects found by query <br>")
                        Response.Write("Please click <a href='Index.aspx'>here</a> to return to the logon page.<br>")
                    End If
                Else
                    'no Enterprise session available
                    Response.Write("No Valid Enterprise Session Found!<br>")
                    Response.Write("Please click <a href='Index.aspx'>here</a> to return to the logon page.<br>")
                End If
            Catch err As Exception
                Response.Write("There was an error scheduling the report: <br>")
                Response.Write(err.Message.ToString + "<br>")
                Response.Write("Please click <a href='Index.aspx'>here</a> to return to the logon page.<br>")
            End Try
        End Sub
    End Class
    Elaine

  • Problem with Scheduling a Report to an Unmanaged disk destination

    I am trying to schedule a Crystal report to a file share.  I have supplied the UNC path in the Directory field.  Supplied a user name (using domainname\userid) and password that has write rights to the file share.  When I schedule the report, I get the following error:
    login error. CrystalEnterprise.DiskUnmanaged: Logon failure: the user has not been granted the requested logon type at this computer.
    What kind of rights do I need to make it work?
    Using BOE XI R2 Fix Pack 2.4
    Regards,
    Maureen

    Are you running the Crystal Report Job Server under an account that has access to the share? Try doing that if not. (CCM > stop job server > properties > change to an AD user with access to both the file share and local Admin to run the service)
    Regards,
    Tim

  • Issue on Java Run Deski document, save format in a unmanaged disk location

    Post Author: usaitconsultant
    CA Forum: JAVA
    m developing an java application-based that will
    run deski report/document in a window machine and save output formatted
    report/document (pdf, etc.) to a local destination (unmanaged disk).
    However, no physical file was created after I execute my program. Note
    that BO XI server is on the other machine. Below is the code. Please
    let me know whats the problem? Thanks.
              sql = "SELECT SI_ID, SI_NAME, SI_PROCESSINFO.SI_PROMPTS " +
                   "FROM CI_INFOOBJECTS " +
                   "WHERE SI_NAME = '" + reportName + "'";
              infoObjects = infoStore.query(sql);
              if (infoObjects.size() < 1) {
                   System.out.println("Report does not exist.");
                   reportFound = false;
              if (reportFound) {
                   infoObject = (IInfoObject) infoObjects.get(0);
                   //Set Report Schedule
                   ISchedulingInfo schedulingInfo = infoObject.getSchedulingInfo();               
                   schedulingInfo.setType(0);
                   schedulingInfo.setRightNow(true);
                   System.out.println("Schedule report successful.");
                   //Set report type format (3 is for PDF -- need to identify int per report type format)
                   IFullClientFormatOptions reportFormatOptions = ((IFullClient)infoObject).getFullClientFormatOptions();
                   reportFormatOptions.setFormat(3);
                   //Set parameters
                   //Code here
                   // Get the destination object from schedulingInfo
                   IDestination destinationObject = schedulingInfo.getDestination();
                   // Specify that we are writing to disk               destinationObject.setName("CrystalEnterprise.DiskUnmanaged");
                   // Get the Destination plugin. Note that the SI_PARENTID will always be 29.
                   sql = "SELECT * " +
                             "FROM CI_SYSTEMOBJECTS " +
                             "WHERE SI_PARENTID=29 " +
                             "AND SI_NAME='CrystalEnterprise.DiskUnmanaged'";
                   IDestinationPlugin destinationPlugin = (IDestinationPlugin) infoStore.query(sql).get(0);               
                   destinationObject.copyToPlugin(destinationPlugin);
                   IDiskUnmanagedOptions diskUnmanagedOptions = (IDiskUnmanagedOptions)
                        destinationPlugin.getScheduleOptions();
                   diskUnmanagedOptions.getDestinationFiles().add("c:/sample.pdf");
                                  destinationObject.setFromPlugin(destinationPlugin);
                   schedulingInfo.setRightNow(true);
                   //Tells the CMS to schedule the report.
                   infoStore.schedule(infoObjects);

    Post Author: usaitconsultant
    CA Forum: JAVA
    Hi Ted,
    Thanks for the reply.The file is not available in the server. Though, I checked CMS and I found an instance in history tab and the status is failed with error below. 
                Error Message:
                A variable prevented the data provider Query 1 with BANRRD30 from being refreshed. (DMA0008).When I checked my codes, I found out that the object Im using is for web intelligence data provider. However, I cannot find any documentation and example for passing parameter values in desktop intelligence data provider. Any idea on this? You think this is not suported by Report Engine SDK?Thanks.    

  • CE10 - Report to Unmanaged Disk perpetual pending

    Hello,
    I am a report writer who has had to assume distribution responsibilities so I don't have much experience in troubleshooting Crystal Enterprise.
    I am attempting to schedule a report that is intended to write to a folder on a Linux server.
    1. The host file on my Crystal Enterprise server has been edited to see the Linux server as having a name recognizable to Windows:
    rdfun01
    2. I can, while using Windows Explorer from the Crystal Server, go to the appropriate folder
    rdfun01\datapump\
    3. I thusly scheduled the report destination as follows:
    -Unmanaged Disk
    -//rdfun01/datapump
    -billing.%ext%
    -Login information applied
    4. When I run the report it sits at a perpetual pending status
    Does anybody have any ideas?
    Thank you,
    Michael Hargett
    Disetronic Medical Systems

    Try Mapping the drive first

  • Schedule to Unmanaged Disk failure

    I have seen a few messages related to this issue, but none have been help in my case.
    I recieve the following message when attempting to schedule a report to an unmanaged disk using a specific domain account that I can use to log into the specific server locally:
    Status:  Failed
    Printer:  The instance is not printed.
    External Destination:  Copy the instance with filename 'IA - Fin Ban Upload.xls' to the directory '//DESTINATIONSERVERNAME/parentfolder/childfolder'.
    Creation Time:  4/24/2009 11:19 AM
    Start Time:  4/24/2009 11:19 AM
    End Time:  4/24/2009 11:19 AM
    Server Used:  BUSINESSOBJECTSSERVER.M5runI
    Error Message:  login error. CrystalEnterprise.DiskUnmanaged: Logon failure: user not allowed to log on to this computer.
    And the message below when attempting to schedule a report to an unmanaged disk using a local account to 'DESTINATIONSERVERNAME':
    Status:  Failed
    Printer:  The instance is not printed.
    External Destination:  Copy the instance with filename 'IA - Fin Ban Upload.xls' to the directory '//SERVERNAME/parentfolder/childfolder'.
    Creation Time:  4/24/2009 11:19 AM
    Start Time:  4/24/2009 11:19 AM
    End Time:  4/24/2009 11:19 AM
    Server Used:  BUSINESSOBJECTSSERVER.M5runI
    Error Message:  login error. CrystalEnterprise.DiskUnmanaged: Logon failure: unknown user name or bad password.
    It works when myself and other users use our personal domain accounts.  All accounts being used I have elevated to Administrative privleges on the DESTINATIONSERVERNAME and none have privleges on the BUSINESSOBJECTSSERVER.  I am using a Business Objects Server enterprise account to schedule the jobs, as we do not have our BOS using domain authentication.  I need to be able to use one of our generic domain accounts or a local account to the DESTINATIONSERVERNAME to schedule jobs because our security policies make us change our personal domain account passwords on a regular basis.  I do not want to reset the password on the 30+ jobs I have scheduled everytime my personal domain account password changes.
    Here is our BOS specs:
    Build Date: 2007/03/01 05:19:03
    Build Number: 826
    Product Version: 11.5.8.826
    Data Source: BOE115:127.0.0.1:3306
    Database Name: 4.1.13a-pro
    Database User Name: BusinessObjects
    Auditing: Disabled
    If anyone has any insight to this, I would be greatly appreciated.

    Just a thought, I never tried this before, but if you were to open a program such as wordpad or notepad on the server using Microsoft "run as" (the domain account running the BO job server) then save as to the UNC location you should be able to verify all NTFS, network permissions, and policy are in order.
    If so then the problem would seem to be BO config. The most common issues are making sure you use the UNC path name to access to reference the share and make sure in the CMC > servers > job server > destinations that the unmanaged is enabled (you must do this for the report job server for scheduling and destination job server for sending.
    Regards,
    Tim

  • Hello! Just connected a used iPhone to iTunes for the first time. I'm trying to restore it to factory settings/default. The phone is connected via Wi-Fi and is updated to the most recent OS that the phone allows. The computer is also connected to the

    Hello! Just connected a used iPhone to iTunes for the first time. I'm trying to restore it to factory settings/default. The phone is connected via Wi-Fi and is updated to the most recent OS that the phone allows. The computer is also connected to the internet. But I still get the error: "itunes could not contact the iphone software update server because you are not connected to the internet." I also connected via iTunes and authorized the computer, but still have the same issue. Really, all I need to do is completely wipe the phone and start from scratch for safety's sake.
    Help?

    Did you check your security software settings?
    Third-party security software might conflict with iOS devices connecting to iTunes. Follow this article to troubleshoot issues that might be caused by your security software.

  • How to make all settings default?

    how to make all settings default?

    What specific settings are you alluding to?  More details please.
    Ciao.

  • What is proxy settings default?

    I'm wondering what is the proxy settings default setting? On my computer it is set to "Use system proxy settings" I'm wondering what should be the default the version of firefox I am using which is the latest version of firefox.

    "Use system proxy settings" is the default in current Firefox versions and should work in most cases.<br />
    Only if there are problems then you can try to select "No Proxy".
    * https://support.mozilla.org/kb/Firefox+cannot+load+websites+but+other+programs+can
    *Bug 500983 - "Use System Proxy Settings" should be default for new profiles.

  • CS-Order - Extras - settings - Default values

    Hi,
    in tx IW31 Menu -> Extras -> settings -> Default values it is possible to set a lot of values by default for a specific user.
    Is this also possible somehow for a whole usergroup or all users?
    The requirement is that all users from one salesorg shall have the same default values.
    Is there maybe an userexit or BADI where we could influence this default values by own rules?
    Thanks a lot.
    Best regards
    Manfred

    Manfred
    In ECC6 there is a new facility for changing most of SAP standard coding via functionality called the [Enhancement Framework|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bb54c452-0801-0010-0e84-a653307fc6fc] .
    This is similar to the user-exit/BADI concept in that any changes are automatically included in any upgrades.
    If you are using ECC5, then talk to your ABAP team
    NOTE: some functions are available in ECC5 too
    PeteA

  • Publication ?? Destination as "Default Enterprise Location"

    Hi Team 
    have question about having option of setting destination in Publication as
    "Default Enterprise Location", When I have created one publication set as destination to Default Enterprise Location.
    I am not able to find any published instances in the folder.
    As i found in documenation the Default Enterprise Location will be the location in which publication is kept and sheduled.
    So i have created publication in One public folder, I have web i rpeort also in same folder, When I shedule publication i set destination as Default Enterprise Location , NOW I am not able to find any publish instance.
    Can you guide me where can look for this instance.
    Is any other location as Default Enterprise Location ????
    Regards
    Ashutosh D

    Hi,
    take a look at the history of the publication object itself and not of your web report. Just double-click on an publication instance.
    Regards,
    Stratos

  • Scratch Disk & Windows 7 Default User

    Hello,
    I've been trying to set scratch disks for quite a few computers from the admin account to the secondary 1TB disk, for the admin acc this works perfectly fine. However, as soon as a new domain user logs in his / her scratch disk settings are back to default.
    I'm quite lost right now where to start looking when it comes to settings, on all machines where this has been configured it's all been done before they entered the domain.
    Is there any premiere setting/config file that hides itself somewhere within the C:\Users\Default of windows 7 or is there any other way to make the settings persist to every other account?
    B.R
    Simon

    That is a Windows setting, so you need Windows help... search at
    http://search.microsoft.com/search.aspx?mkt=en-US&setlang=en-US

Maybe you are looking for

  • Word Wrap very annoying?

    I just switched over to Dreamweaver because of the built in ftp server functionality.  So far, I have found it to be a very nice editor.  One problem I have it with wordwarp in the coding. If a line is wrapped, why does it not indent to the same colu

  • Qualification block assignment

    Is it possible to assign a Qualification block(QB)  to  a Person(P) or Position(S) directly? In which tcode, we can do this assignment?

  • TS1559 why are 4s's not working with new software and apple won't come good

    I have a iphone 4s with the new update is making my phone slow and the wifi is not working. 200.00 to fix it. I have apple laptop, desktop, 4 iphones two 4s and two 5c's and they will not fix what their update did to my phone. Any feed back to help r

  • PC - Problème d'installation d'After Effect CC via Creative Cloud

    Salut tout le monde, voilà, tout est dit dans le titre, j'ai un problème vers 42% de l'installation. Voici le message d'erreur : <PRE>Exit Code: 34 Please see specific errors below for troubleshooting. For example,  ERROR: ---------------------------

  • NSURLErrorDomain error -1 uploading to Flickr

    I was able to upload to flickr at one point in the past but it doesn't work anymore, using iPhoto 11 (9.1 (475)) I get the error: "The operation couldn't be completed NSURLErrorDomain error -1" when I try to share to Flickr. I tried several things to