Has anyone used "Offline Dashboard Support"

Hello everyone
Have any one of you used the offline dashboard support feature in Dashboards 4.1?
Can you tell me how did you set up the connectors? Is there anything to configure other than checking the box called Allow Dashboard support in File > Document Property?
I created a dashboard connected to ,unx universe via query browser. Then I exported to SWF and placed it outside the server.
But when I opened the swf it gave me an error - "Could not log in to SAP BusinessObjects Enterprise -"
Usage option is set to "Usage Before Components are Loaded".
I also need to create an offline dashboard connected via QaaWS connector but connecting to WebI report with BIWS. Is this possible?
Any help is highly appreciated.
Thanks
Runali

Hi Arijit
Thanks for your reply. So is it same as saving local scenario?
I am little confused here. I thought the idea of offline dashboard was it can be delivered to a location/email and onced emailed the dashboard does not need any connectivity back to the server.
Are you saying the below property does not provide any more than saving a local scenario which you could do before using a button with the same name.

Similar Messages

  • Has anyone received advertising for software called "Mackeeper".  Does anyone know if this is supported by Mac, and has anyone used this software?

    Has anyone reveived advertising for software called "Mackeeper".  Does anyone know if this software is supported by Mac, and has anyone used this software?

    Thanks Kappy, I let it do the scan and when it stopped halfway through and demanded registration I stopped and deleted it.  I still have the icon in the menu bar at the top of the screen and don't know how to remove it.  If this is not possible I can live with it.  I am new to Mac and have trouble divorcing myself from my old PC habits!

  • Has anyone use camptune x with mountain lion even though says it does not support it yet

    HAs anyone used camptune x with mountain lion even though it is not yet specific to moutain lion yet?

    Tried it yesterday on my imac 21Jan 2013 running mountain lion 10.8.2, total disaster.
    Backed up my boot camp image using winclone (great programme)
    Purchased and ran camptune x and everything went fine.
    Rebooted into windows 7 and recieved error messages find--set--root--ignore floppies--ignore cd/bootmgr
    ERROR 15
    Gave me a list of options on screen but none resolved the issue.
    Booted back into winclone and used the backup image i had just created to reinstall on bootcamp.
    Have emailed the company but have had no reply as yet
    **** STAY AWAY until updated for mountain lion YOU HAVE BEEN WARNED ****

  • Has anyone used a Dell 1908FPb with a MacBook Pro OSX 10.6.8?  What do I need to get/do?  thanks

    Has anyone used a Dell 1908FPb with a MacBook Pro OSX 10.6.8?  What do I need to get/do?  thanks

    Hi 4judy,
    If you are looking to use an external display with your MacBook Pro, you may find the following articles helpful:
    Apple Mini DisplayPort adapters: Frequently asked questions (FAQ)
    http://support.apple.com/kb/ht3382
    OS X: How to use multiple displays with your Mac in Mountain Lion and earlier
    http://support.apple.com/kb/ht5019
    Regards,
    - Brenden

  • I just saw a message that iWeb has been discontinued by Apple.  It suggested EverWeb.  Has anyone used this or do you have aother recommendation?

    I just saw a message that iWeb has been discontinued by Apple.  It suggested changing to EverWeb.  Has anyone used this or do you have another recommendation?

    Hi
    I have now used Everweb to transfer a website from iWeb & am now working on transferring a second website.
    I cannot recommend Everweb highly enough. I am an amateur, so iWeb was the easy option for me. Everweb is just as easy to use and very similar to iWeb. New features are being added every few days.
    I am extremely impressed by the excellent and prompt service from both the forum and support. All my questions have been answered (& there have been many of them!)
    Everweb is complimented by an excellent site Everweb codebox which has developed more widgets and codes to add to Everweb. Roddy from Everweb codebox has been invaluable by answering questions on the forum & generally complimenting the Everweb team.
    I have purchased the Everweb program & Hosting. This gives my 1 click updating and works seamlessly. The price is competitive and the support exemplary.
    All in all, I am delighted with Everweb, excellent program & excellent support!! I would not hesitate in recommending it to anyone.
    In answer to your question...buy it!!!!
    Lynn

  • Re: Interfaces in Forte - has anyone used them?

    We are making use of interfaces extensively and have never had the
    slightest problem. Interfaces do not cause any overhead, since they are
    mainly a means to support type checking by the compiler. At run-time the
    interface does not appear any more.
    Using Forte 3.0.F.2
    General wrote:
    >
    We are embarking on the analysis phase of a large pay/personnel project. =
    We have been advised to use interfaces wherever possible, because they =
    promote flexibility and reusability. I am fairly well convinced of the =
    benefits of using interfaces - they appear to have a lot of advantages, =
    and no drawbacks. However, I do wonder whether Forte's implementation of =
    interfaces is stable and usable (..it was only introduced in version 3). =
    If not, we may be better advised to use standard techniques.
    If you have used Forte interfaces I would be interested to hear how you =
    got on.
    regards,
    Tim Kimber--
    Dr. Thomas Kunst mailto:[email protected]
    sd&m GmbH & Co. KG http://www.sdm.de
    software design & management
    Thomas-Dehler-Str. 27, 81737 Muenchen, Germany
    Tel +49 89 63812-221 Fax -444
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Eric,
    You are correct, "manipulate anAIFace object" is not really the correct
    way of thinking about what is happening. We are really manipulating an
    instance of an object through an interface.
    In regards to your other statement: "if Project C needs visibility to B,
    it must have B as a supplier Plan." Forte does not force this to happen
    when you are using interfaces, which is what causes the problem. Let me
    expand on my initial example and add enough detail so that you can create
    the problem, which surfaces as a deserialization error:
    Project A (No Supplier Plans)
    Defines Interfaces: UnitIFace with method GetValue() which returns an
    integer
    Project B (Contains A as a Supplier Plan)
    Defines Class: Unit with attribute _Value as an integer and method  
    GetValue() which returns _Value.  Implements interface UnitIFace.
    Project C (Contains A as a Supplier Plan)
    Defines Class: Square with method Calculate which accepts an
    UnitIFace as an input parameter and returns an integer. This class needs
    to be setup as a distributed object so that I service object can be
    defined using this class.
    Defines Service Object: SqaureSO using the Square class.
    Project D (Contains B and C as Supplier Plans)
    Defines a class or uses a window that creates an instance of Class B
    and passes it to the SquareSO service object that sqaures the value and
    returns an integer.
    Once this is setup, use the running man to run everything locally. This
    will run fine because the dependencies for the local partition end up
    including Projects A, B, C and D. Next, run distributed and move the SO
    to a remote partition. Now when you execute you will receive a
    deserialization error. This happens because the dependencies for the
    remote partition only included project A and C. The partition did not
    have the necessary information to deserialize the underlying instance of
    Class Unit that is referenced through the inteface UnitIFace.
    The problem can be resolved by either adding Project B as a supplier plan
    to Project C or ensuring that the interface and class are declared in the
    same project as I suggested in my previous message. In either case, this
    must be resolved by the programmer since Forte is not yet smart enough to
    correctly resolve the project dependencies, even though all of the
    information needed to establish the correct dependency hierarchy is
    available.
    Bradley K Wells
    [email protected]
    Strong Capital Management, Inc
    http://www.strong-funds.com/
    From: Eric Pereira
    Sent: Friday, July 31, 1998 5:57 PM
    To: [email protected]
    Cc: [email protected]
    Subject: RE: Interfaces in Forte - has anyone used them?
    Bradley,
    Thanks for that descriptive note on interfaces.
    I do have a observation : in that example you gave us, if Project C
    needs visibility to B, it must have B as a supplier Plan. Therefore, I
    don't quite understand how partioning classes in C would end up with a
    run-time errror in distributed mode, given that B supplies C (something
    you've perhaps missed out in your example ?).
    Also, is it really possible to "manipulate AIFace objects" ? Interfaces
    are'nt really objects, they just help implement a compile-time type
    check.
    Thanks.
    Eric Pereira
    Forte Consultant
    ----<snip>------------------
    Example:
    Project A - Contains AIFace
    Project B - Contains Class B which implements AIFace, depends on Project
    A
    Project C - Contains Classes manipulating AIFace objects, depends on
    Project A
    This can run fine locally since the local partition has knowledge of all
    the classes in A, B, and C. Now as soon as you throw a service object
    on
    classes on Project C and push them into a remote partition, your
    application starts failing because that partition does not contain the
    information form project B since there is no dependency on that project.
    The partition needs the information from project B though since it
    contains the definitions for the actual implementation objects, however
    there was no way for Forte to determine that need when it generated the
    partition.
    This problem is initially eliminated by keeping the interfaces in the
    same project as the underlying business objects. But once you start to
    have interfaces implemented by multiple classes from multiple projects,
    then this won't cover all the bases either. In any case, it is an issue
    that you will need to consider at some level when using interfaces.
    Good luck!
    Bradley K Wells
    [email protected]
    Strong Capital Management, Inc
    http://www.strong-funds.com/
    From: "Ngai, Stuart" <[email protected]>
    Date: Thu, 30 Jul 1998 11:10:50 -0400
    Subject: RE: Interfaces in Forte - has anyone used them?
    With version 3G, you can not create an array of interfaces. I believe
    Forte
    will have that feature in version 4 (which is scheduled to be in
    production
    at the end of next year).
    -----Original Message-----
    From: Thomas Kunst [SMTP:[email protected]]
    Sent: Thursday, July 30, 1998 8:52 AM
    To: [email protected]
    Cc: General
    Subject: Re: Interfaces in Forte - has anyone used them?
    We are making use of interfaces extensively and have never had the
    slightest problem. Interfaces do not cause any overhead, since theyare
    mainly a means to support type checking by the compiler. At run-timethe
    interface does not appear any more.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Has anyone used a USB device server with a DAQmx or NI-VISA USB device?

    Hi,
    I have an application where I need to communicate with USB devices (some through DAQmx, others through NI-VISA) that will be more than 15 feet away from the controlling PC.  I could use USB-ethernet-USB dongles, but I also see that there are USB-over-ethernet device servers available (like this one: http://www.usbgear.com/computer_cable_details.cfm?​sku=USBNET-400&cats=104&catid=187%2C188%2C104%2C65​...).  Has anyone used these or similar USB device servers successfully with LabVIEW?  
    Thanks,
    JasonP

    http://forums.ni.com/t5/Multifunction-DAQ/Does-NI-​offer-USB-extension-solutions/td-p/381873
    http://forums.ni.com/t5/Dynamic-Signal-Acquisition​/Using-a-quot-USB-2-0-extender-over-Cat-5-quot-to-​...
    http://forums.ni.com/t5/Multifunction-DAQ/Can-I-us​e-a-USB-Extender-with-USB-6008-or-cDAQ/td-p/920361
    Let me know if you have any more questions.
    Product Support Engineer
    National Instruments

  • Has anyone used MC Helper to reset hotmail on their Mac?

    Has anyone used MC Helper to reset hotmail on their Mac. I just did and I'm am worried as I gave them access to my computer over the phone. They have solved access to my hotmail account though, but they charged $200 for it plus a years free support. I was very suspicious but in the end went ahead. I now fear that they may be a scam of sorts. They could have implanted or encrypted something on my mac. Is this likely? Does anyone know? I'd be most grateful.

    LogMeIn Rescue is for one time support. This is a common tool used to support users. Microsoft uses it when they do support. I use one of the LogMeIn products myself when working with clients.
    In the future if you need help with a Microsoft product you can get free help on the Microsoft forums.
    Answers -Office for Mac
    Getting Started: http://answers.microsoft.com/en-us/mac/forum/macstart
    Word: http://answers.microsoft.com/en-us/mac/forum/macword
    Excel: http://answers.microsoft.com/en-us/mac/forum/macexcel
    PPT: http://answers.microsoft.com/en-us/mac/forum/macpowerpoint
    Outlook: http://answers.microsoft.com/en-us/mac/forum/macoutlook
    Entourage: http://answers.microsoft.com/en-us/mac/forum/macother
    Skydrive: http://answers.microsoft.com/en-us/windowslive/forum/skydrive?tab=QnA
    Lync: http://social.technet.microsoft.com/Forums/en-US/exchangesvrclients/threads
    Forum for Hotmail, Live, Outlook.com accounts
    http://answers.microsoft.com/en-us/windowslive/forum/mail
    O365
    http://community.office365.com/en-us/forums/default.aspx
    Hope this helps!

  • Has anyone used ROXIO TOAST II for burning DVD

    Has anyone used ROXIO TOAST II for setting up intro and burning to DVD. I used to do this in IDVD which has been abandoned in the Maverick

    Just to say that that I've tested iDVD on 10.9 and it works for me. It's a discontinued program of course, and hasn't been supported for several years, but I don't think it runs any differently on 10.9 than it did on say, 10.6.
    However…can't help you with Toast because I don't use it.
    Russ

  • Has anyone used infin to assist in troubleshooting ?

    I had a security problem when my firewall was temporarily turned off.  A tech company named "infin" assisted me with the problem and with a printer problem.  Since assisting me, the tech said that the company will no longer be in business.  Has anyone used "infin" for assistance because the tech said his company does a lot of work on Apple products. I am trying to find out more on the company.

    How did you find that company?
    Did you allow them remote access to your computer?
    Did you give them credit card details?
    If you google their name, you'll find several entries. I've never heard of them. And no, I've never used them - nor would I ever. Why deal with an unknown company when I can call Apple tech support or visit a Genius Bar in the Apple store free of charge?

  • Has anyone used a 1.44 usb floppy drive with a MacBook Pro late 2011 model ? I have photos of my children i would like to recover.

    I have photos on 1.44 floppy disk and would like to copy them to DVD, has anyone used a 1.44 usb external drive with a MacBook Pro (late 2011)? The disk where made on a PC from 1990 -94 the images are in .img and .jpg. 

    Hello riflemanpro,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    Troubleshooting: My computer won't turn on
    http://support.apple.com/kb/ts1367
    Have a nice day,
    Mario

  • T4i... lousy SD video... has anyone used SD and had final edit look ok. on timeline its a disaster.

    T4i... lousy SD video... has anyone used SD and had final edit look ok. on timeline its a disaster. cell phone does better video.. im a pro video type and at this point may return cam and wait for a more capable eos.. like a mirrorless 60d...

    Speedorms,
    I would like to help determine what is causing this.
    What exactly are you seeing that is poor quality in the video from your EOS Rebel T4i?
    What are you using to edit your video?
    What settings are you using to edit the video?
    When you refer to SD, are you referring to the card in the camera or Standard Definition video?
    If you prefer a mirrorless design, we do have the new EOS M.  You may want to take a look at that model to see if it has the features you are looking for.
    If this is a time sensitive-matter, additional support options are available at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Has anyone used Device Management?

    In many Nokia phones there is a choice for upgrading the firmware via the device management.Does it work?Has anyone used it?

    http://forums.ni.com/t5/Multifunction-DAQ/Does-NI-​offer-USB-extension-solutions/td-p/381873
    http://forums.ni.com/t5/Dynamic-Signal-Acquisition​/Using-a-quot-USB-2-0-extender-over-Cat-5-quot-to-​...
    http://forums.ni.com/t5/Multifunction-DAQ/Can-I-us​e-a-USB-Extender-with-USB-6008-or-cDAQ/td-p/920361
    Let me know if you have any more questions.
    Product Support Engineer
    National Instruments

  • Has anyone used FuncCompErrorException in functional companion?

    I am trying to use FuncCompErrorException class in my Functional Companion code of type AutoConfigure.
    Has anyone used it? If so, can you give additional info.
    Thanks

    Rowdy is correct:
    The Linux version has been released - so it should work ... but it has been released for the Chinese localization only!
    Regards,
    Frank
    BTW: IBM has done some demo for a Linux fair last year with only Server Tools + DB (US demo DB on DB2) running on the Linux server + Windows clients.
    Such a configuration is not released + maybe not fully supported by the licensing mechnaism (remember that the "Installation" / "Software Order" is bound to Operating system + DB system), but apparently it worked...

  • Has anyone used JAAS with WebLogic?

    Has anyone used JAAS with Weblogic? I was looking at their example, and I have a bunch of questions about it. Here goes:
    Basically the problem is this: the plug-in LoginModule model of JAAS used in WebLogic (with EJB Servers) seems to allow clients to falsely authenticate.
    Let me give you a little background on what brought me to this. You can find the WebLogic JAAS example (to which I refer below) in the pdf: http://e-docs.bea.com/wls/docs61/pdf/security.pdf . (I believe you want pages 64-74) WebLogic, I believe goes about this all wrong. They allow the client to use their own LoginModules, as well as CallBackHandlers. This is dangerous, as it allows them to get a reference (in the module) to the LoginContext's Subject and authenticate themselves (i.e. associate a Principal with the subject). As we know from JAAS, the way AccessController checks permissions is by looking at the Principal in the Subject and seeing if that Principal is granted the permission in the "policy" file (or by checking with the Policy class). What it does NOT do, is see if that Subject
    has the right to hold that Principal. Rather, it assumes the Subject is authenticated.
    So a user who is allowed to use their own Module (as WebLogic's example shows) could do something like:
    //THEIR LOGIN MODULE (SOME CODE CUT-OUT FOR BREVITY)
    public class BasicModule implements LoginModule
    private NameCallback strName;
    private PasswordCallback strPass;
    private CallbackHandler myCB;
    private Subject subj;
             //INITIALIZE THIS MODULE
               public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)
                      try
                           //SET SUBJECT
                             subj = subject;  //NOTE: THIS GIVES YOU REFERENCE
    TO LOGIN CONTEXT'S SUBJECT
                                                     // AND ALLOWS YOU TO PASS
    IT BACK TO THE LOGIN CONTEXT
                           //SET CALLBACKHANDLERS
                             strName = new NameCallback("Your Name: ");
                             strPass = new PasswordCallback("Password:", false);
                             Callback[] cb = { strName, strPass };
                           //HANDLE THE CALLBACKS
                             callbackHandler.handle(cb);
                      } catch (Exception e) { System.out.println(e); }
         //LOG THE USER IN
           public boolean login() throws LoginException
              //TEST TO SEE IF SUBJECT HOLDS ANYTHING YET
              System.out.println( "PRIOR TO AUTHENTICATION, SUBJECT HOLDS: " +
    subj.getPrincipals().size() + " Principals");
              //SUBJECT AUTHENTICATED - BECAUSE SUBJECT NOW HOLDS THE PRINCIPAL
               MyPrincipal m = new MyPrincipal("Admin");
               subj.getPrincipals().add(m);
               return true;
             public boolean commit() throws LoginException
                   return true;
        }(Sorry for all that code)
    I tested the above code, and it fully associates the Subject (and its principal) with the LoginContext. So my question is, where in the process (and code) can we put the LoginContext and Modules so that a client cannot
    do this? With the above example, there is no Security. (a call to: myLoginContext.getSubject().doAs(...) will work)
    I think the key here is to understand JAAS's plug-in security model to mean:
    (Below are my words)
    The point of JAAS is to allow an application to use different ways of authenticating without changing the application's code, but NOT to allow the user to authenticate however they want.
    In WebLogic's example, they unfortunately seem to have used the latter understanding, i.e. "allow the user to authenticate however they want."
    That, as I think I've shown, is not security. So how do we solve this? We need to put JAAS on the server side (with no direct JAAS client-side), and that includes the LoginModules as well as LoginContext. So for an EJB Server this means that the same internal permission
    checking code can be used regardless of whether a client connects through
    RMI/RMI-IIOP/JEREMIE (etc). It does NOT mean that the client gets to choose
    how they authenticate (except by choosing YOUR set ways).
    Before we even deal with a serialized subject, we need to see how JAAS can
    even be used on the back-end of an RMI (RMI-IIOP/JEREMIE) application.
    I think what needs to be done, is the client needs to have the stubs for our
    LoginModule, LoginContext, CallBackHandler, CallBacks. Then they can put
    their info into those, and everything is handled server-side. So they may
    not even need to send a Subject across anyways (but they may want to as
    well).
    Please let me know if anyone sees this problem too, or if I am just completely
    off track with this one. I think figuring out how to do JAAS as though
    everything were local, and then putting RMI (or whatever) on top is the
    first thing to tackle.

    Send this to:
    newsgroups.bea.com / security-group.

Maybe you are looking for

  • After upgrading to Mavericks, F14/F15 brightness adjustments don't work

    After upgrading to Mavericks, F14/F15 brightness adjustments don't work.  The screen appears to be "locked" at the dimmest brightness level.  How do I adjust the brightness?

  • Should Migration Assistant be this slow?

    Hey gang- Just got a brand new late-2013 iMac to replace my mid-2007 iMac. Migration Assistant is currently in progress, but I'm amazed at how slow it is going.   It started about 30 minutes ago and is showing 36 hours 45 minutes remaining!   The sou

  • Grub2 booting only bootcamp

    J'aimerais remplacer Nt bootloader par grub2 en l'installant soit en complément de efi dans sa partition, soit dans la MBR hybride... étant donné que grub2 ne supporte pas une installation sur le NTFS. Pour le moment mon disque est comme ceci: Fat32

  • Looking up a specific connection on the ACE

    Hi. We're running the ACE SMs version A2(3.3) and need to be able to look up the connection that traversed the ACE awhile ago. Since it was a successful connection, it didn't get register in the logs. Is there any other way to find it? thanks.. Greg.

  • JavaMail doesn't send Bcc + Content-Length

    Hello Folks, I recently found a String ignoreList in the class SMTPTransport which contains already "Bcc" and "contentLength": /*  141 */   private static final String[] ignoreList = { "Bcc", "Content-Length" }; Thus I wanted to know whether sending