Help with "Save As" Concept in 2004s

Hi, Can someone shed a little more light on this "Save As" concept for me?  When you do a "Save As" in Web Reporting and save it to your Portal Favorites it saves the query variable values and the navigation state.   What if the user just wants to save the navigation state and not the variable values?  If there are no mandatory variables and they click on the saved report then it will just execute with the values that were saved.
Thanks, Ken Murray

Personalization is not activated.  When you do a "Save As" it looks like not only the Nav State is saved, but the initial Variable values as well.  Can you confirm, as the documentation doesn't seem to say that the variable values are saved as well.
<b>Save As…</b>You can save the current view of your ad hoc analysis with an appropriate name as a bookmark in your portal favorites or in the BEx Portfolio. This saves the type of data display (table, graphic, table and graphic) in addition to the navigational state of the data. To access the saved view of your ad hoc analysis again, choose Open.
To save the navigational and drilldown state of the data as a new query view, choose Save View in the context menu of the Web application. You can use the query iView created in this way as a data provider for other BI applications.

Similar Messages

  • Need Help With Save As function Very Important

    i working on a project and i have to create a Save As function for it. When you click on Save As its supposed to open a dialog window where u can choose the where you would like to save the file and what you would like to name it. I know there is alot wrong with my code but i'm not sure on how to fix it so any and all help is greatly appreciated
    private void doSaveAs(){
              //display file dialog
              FileDialog fDialog2 = new FileDialog (this, "Save As...", FileDialog.SAVE);
              fDialog2.setVisible(true);
              //Set the file name chosen by user
              String name = fDialog2.getFile();
              // user canceled file selection, return without doing anything.
              if(name == null)
                   return;
              fileName = fDialog2.getDirectory() + name;
              // Try to create a file writer
              FileWriter writer = null;
              try{
                   writer = new FileWriter(fileName);
              } catch (IOException ioe){
                   MessageDialog dialog = new MessageDialog (this, "Error Message",
                             "Error writing the file: "+ioe.toString());
                   dialog.setVisible(true);
                   return;
              BufferedWriter bWriter = new BufferedWriter(writer);
              //Try to write the file
              StringBuffer textBuffer = new StringBuffer();
              try {
                   String textLine = bWriter.write(2);
                   while (textLine != null) {
                        textBuffer.append(textLine + '\n');
                        textLine = bWriter.write(name);
                   bWriter.close();
                   writer.close();
              } catch (IOException ioe){
                   MessageDialog dialog = new MessageDialog (this, "Error Message", "Error writing file: "+ioe.toString());
                   dialog.setVisible(true);
                   return;
         setTitle("JavaEdit " +name);     // reset frame title
         text.setText(textBuffer.toString());
    null

    And again with indentation
       private void doSaveAs(){
       //display file dialog
       FileDialog fDialog2 = new FileDialog (this, "Save As...",     
       FileDialog.SAVE);
          fDialog2.setVisible(true);
       //Set the file name chosen by user
       String name = fDialog2.getFile();
       // user canceled file selection, return without doing anything.
       if(name == null)
          return;
       fileName = fDialog2.getDirectory() + name;
       // Try to create a file writer
       FileWriter writer = null;
          try{
             writer = new FileWriter(fileName);
          } catch (IOException ioe){
          MessageDialog dialog = new MessageDialog (this, "Error Message", "Error writing the file: "+ioe.toString());
                dialog.setVisible(true);
                return;
       BufferedWriter bWriter = new BufferedWriter(writer);
       //Try to write the file
       StringBuffer textBuffer = new StringBuffer();
       try {
          String textLine = bWriter.write(2);
          while (textLine != null) {
             textBuffer.append(textLine + '\n');
             textLine = bWriter.write(name);
          bWriter.close();
          writer.close();
       } catch (IOException ioe){
          MessageDialog dialog = new MessageDialog (this, "Error Message", "Error writing file: "+ioe.toString());
          dialog.setVisible(true);
          return;
       setTitle("JavaEdit " +name); // reset frame title
       text.setText(textBuffer.toString());
    }

  • Help with "owned" variables concept in WPF

    I'm trying to move from WinForms to WPF and so far it's been going well. I'm struggling with the concept of updating variables from events in my code behind. It says that it was created or owned by another thread. Basically in my code all over the place I am
    having to put:
    this.Dispatcher.Invoke((Action)(() => { //Code Here }));
    Generally this is happening from an async call to update some data.
    Am I doing something fundamentally wrong in my design?
    If this snippet of code is the solution, how do I understand without the runtime compiler telling me, when I should be doing it?
    Can you explain what is happening with the Dispatcher.Invoke ((Action)(() =>{}));
    My thinking so far
    (Action) is casting the (() => {}) to an action object
    () is creating a nameless function?
    => {} define the function right here, we could have pointed to a real function if we wanted.
    Thanks for any education you can give me.

    The thing is that you can only update a UI element on the thread on which it was created. This rule applies to both Windows Forms and WPF. Please refer to the following great article for more information about the threading model in WPF:
    https://msdn.microsoft.com/en-us/magazine/cc163328.aspx. You should only create UI elements (TextBoxes, Buttons, etc.) on the UI thread and not on any background thread.
    >>Can you explain what is happening with the Dispatcher.Invoke ((Action)(() =>{}));
    The delegate (Action) that you pass to the Invoke method will be executed on the UI (or dispatcher) thread. Please refer to the above article for more information.
    >>If this snippet of code is the solution, how do I understand without the runtime compiler telling me, when I should be doing it?
    The Dispatcher has a CheckAccess() method that returns false if you are required to call the Invoke method, i.e. if the current thread doesn't have access to the UI object. You could just call this one before you call the Invoke method:
    if (!Dispatcher.CheckAccess())
    Dispatcher.Invoke(new Action(() => { }));
    Hope that helps.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question. Please don't post several questions in the same thread.

  • Help with object oriented concepts

    I am a senior highschool student and although I know Java syntax, I learned with Pascal and other procedural languages so I have a difficult time thinking in OOP concepts (which I will have to learn for college classes). So for practice I went to my college's website and found an assignment on the intro course to programming: [Here are the assignment instructions.|http://www.cs.gsu.edu/knguyen/teaching/2009/spring/csc2010/proj.pdf]
    My question is, how can I make my program illustrate more object oriented concepts?
    Links:
    ode-help.110mb.com/javaproject.java_

    Just a few comments (not necessarily about OO and in no particular order):
    It's probably not worth it to make constants for the letter A or the plus sign. Make constants for values people would not understand:
    // Ok
    public static final int ANSWER_TO_THE_UNIVERSE = 42;'
    // Probably overkill
    public static final int FORTY_TWO = 42;
    Good job on having DecimalFormat as a regular instance variable rather than static (since it is not thread-safe)
    Good job initializing your object in a consistent state (via the ctor). Now, make as many variables final as you can. Immutable objects are good:[www.javapractices.com/topic/TopicAction.do?Id=29]
    Not sure why you declared repeat() to return the boxed version of boolean, just use a primitive
    You have a run() method but are not implementing Runnable. Not that it is required, but usually when I see run(), I think of threading
    This is a matter of style, but you don't need to name the arguments in the ctor differently than the instance variables that get assigned. You can very easily say:
    // Note that it is final.  Make things immutable when you can.
    private final String bar;
    public Foo(final String bar) {
       // Note:  I don't need a different name here.  This is purely a matter of personal style.
       this.bar = bar;
    Consider a while loop in run() rather than a do-loop. What happens if you get no input the first time around?
    Java naming conventions dictate that classes start with a capital letter. Generally, an underscore is not used, camel-case is. So, your class should be JavaProject.
    Consider making an object for the arguments that are passed into input. Maybe call it GradeCategory, or whatever.
    That new object GradeCategory can have the output() method.
    For method names, also follow conventions using camel case. So get_double should be getDouble().
    Consider reworking such that you use an array or a collection of GradeCategory. You might want to then have an add method in your JavaProject. The add method should ensure the total weight of grades does not exceed 100%.
    You can rework the output method of JavaProject to iterate over your GradeCategory objects, calling their own output() methods. Perhaps it also first checks that the weight of all grades equals 100%.Just a few thoughts.
    - Saish

  • Help with save as

    I have a fillable form we use everyday when people go to save the form they do not clear out the file name that is already there (the master file name) and they just save it to the file name that is there already.  So the next time we go open the form to fill it out it already has things saved since they didnt save it as another file name. is there anyway when we go to save as the filename can be blank so they will not override the master form?
    Thanks for the help
    Nick

    Try this and let me know if it works for you.
    Off a button add this:
    Event is Click and the Language is JavaScript
    xfa.host.messageBox("Please save file in a new name. \n\n more text..........add what you want."
    , "THANK YOU", 1,1);
    app.execMenuItem ("SaveAs");

  • Need help with the threads concept in java

    i need a good explanation for the threads concept in java.Explanation with an example would be better.

    JosAH wrote:
    BIJ001 wrote:
    Java still can't process them in real time because of its garbage collector.So real-time java is not conceivable \qu.e.d
    http://java.sun.com/javase/technologies/realtime/index.jsp
    http://jcp.org/en/jsr/detail?id=282
    Is that implementation ready yet? The first link talks about 'more real time'; that garbage collector really is a burden when it comes to the real ticks ...
    kind regards,
    JosSpoon!

  • PSCS 6 help with save as window

    I am using Photoshop CS6. My "save as" window is fullscreen and I would like it back to the smaller window like it was. Can you help me to reduce that window size please?

    Mac: click on the green Resize button in the upper left of the dialog.
    Win:  double-click on the dialog's title bar.  (The space to the left of the X close window symbol)
    If this answers it, mark your question as "answered".

  • Help with "save" function??

    We are creating a fillable .pdf form for our company supervisors to use in the field as a daily report. My goal is to have a single Acrobat form that can be stored on their computer or on our FTP site that they can access to fill out a daily report. The issue we are having is that as soon as they start typing, the "save" button becomes active and if they are not super diligent they can end up overwriting the blank form. I need this to be bulletproof so we can get consistent reports each day.
    How can I set the form up so that there is no option to accidentally save a filled out form over our blank "template" form?
    Is there a way to add a button to the form and save it in a specific format while diabling any "save" functionality?
    Please help. Any input would be greatly appreciated.
    Thank you.

    Have you tried making the form Read-Only? Not sure that will do it, but worth a try. Actually I am not sure why the save is an issue, as long as they save to a new file name in the end. A filled out form can sometimes save time in terms of having name and such already filled in.

  • Need some help with a fundamental concept of nat'ing/routing

    I have the following code on an ASA5500 pair with very down-level code. 7.1.2.
    Here is a snippet of the ruleset:
    interface GigabitEthernet0/1.40
    description Production Servers Network
    vlan 40
    nameif Production
    security-level 40
    ip address 172.20.0.1 255.255.0.0 standby 172.20.0.2
    access-list no-nat extended permit ip 192.168.3.0 255.255.255.0 192.168.20.0 255.255.255.0
    access-list no-nat extended permit ip 172.20.0.0 255.255.0.0 192.168.20.0 255.255.255.0
    nat (Production) 0 access-list no-nat
    Am I correct in believing all traffic sourced from the 192.168.3.0 and 172.20.0.0 networks  coming in via the Production interface will NOT be Nat'ed.
    My next question is will that traffic be routed through that interface Production using  the original IP addresses, or will that traffic NOT be routed anywhere?
    I don't want that traffic to be routed, but am concerned since these access list commands permit IP traffic between the networks, this traffic will be routed.

    Thanks for responses, but they confuse me more.
    It is not your answers causing my confusion, but the firewall rules I am trying to apply to this.
    From what you are saying, traffic WILL flow from the 192.168.3.0 network to the 192.168.20.0 network, flowing through the Production interface. It won't be Nat'ed, but it will route because the access list explicitly allows IP traffic sourced  from the 192.168.3.0 network to reach the 192.168.20.0 network.
    However, this is not what is currently happening in the networks, as far as I have been told.
    Let me add more lines of code to the problem, and give my interpretation, and you can tell me where I am going wrong.
    1. There is no access list explictly associated with the Production interface, as can be seen through the definition in my first post.
    2. More complete code:
    object-group network network_vpn
    description VPN IP's
    network-object 192.168.2.0 255.255.255.0
    network-object 192.168.3.0 255.255.255.0
    access-list no-nat extended permit ip 192.168.20.0 255.255.255.0 172.20.0.0 255.255.0.0
    access-list no-nat extended permit ip object-group network_vpn 172.20.0.0 255.255.0.0
    access-list no-nat extended permit ip object-group network_vpn 192.168.20.0 255.255.255.0
    access-list no-nat extended permit ip 172.20.0.0 255.255.0.0 192.168.20.0 255.255.255.0
    access-list no-nat extended permit ip 192.168.2.0  255.255.255.0 172.20.0.0 255.255.0.0
    access-list no-nat extended permit ip 192.168.0.0 255.255.0.0 172.20.0.0 255.255.0.0
    access-list no-nat extended permit ip 172.20.0.0 255.255.0.0 192.168.0.0 255.255.0.0
    access-list no-nat extended permit ip 192.168.20.0 255.255.255.0 192.168.2.0 255.255.255.0
    access-list no-nat extended permit ip 172.20.0.0 255.255.0.0 192.168.2.0 255.255.255.0
    access-list no-nat extended permit ip 192.168.3.0 255.255.255.0 172.20.0.0 255.255.0.0
    access-list no-nat extended permit ip 192.168.3.0 255.255.255.0 192.168.20.0 255.255.255.0
    access-list no-nat extended permit ip 192.168.2.0 255.255.255.0 192.168.20.0 255.255.255.0
    nat (Production) 0 access-list no-nat
    nat (Production) 0 access-list Production_nat0_inbound outside
    nat (Production) 1 172.20.0.0 255.255.0.0
    Use the 3rd last line in the access-list no-nat commands as an example.
    As I envision this, if I have a network sourced as 192.168.3.0, coming in through the Production interface, IP traffic can reach the 172.20.0.0 network, albeit through not NAT'ed, but with the original IP addreses, assuming routing is configured between these networks? I guess my related question would be is routing not implictly turned on between these networks?
    3. Also, I think several lines of this access rule are redundant, given the network object covers the 192.168.2.0 and 192.168.3.0 networks.

  • Help with installing GP in NWDS 2004s

    Hi all:
    (I feel sorry for the English, I will not write well)
    I install the NWDS 2004s on my computer, now I need to develop GP. Use a manual I found on this site, but I left the following error:
    [Image|http://img402.imageshack.us/my.php?image=errorgr1.jpg]
    I followed the instructions in the manual of this link:
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f7be53bb-0b01-0010-1c96-be3cb6799c1b]
    thanks

    Hi Pablo,
    Welcome. Did u followed step by step of this guide? In the first step the work folder is DC and in the next is SC. Re-check your configuration and files location.
    DC Folder
    Extract this file:
    https://www.sdn.sap.com/irj/sdn/softwaredownload?download=/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/business_packages/a1-8-4/gp_api_nw04s.zip
    into this folder  (Replace Program Files to Archivos de Programa ):
    C:Program FilesSAPIDEIDE70eclipsepluginscom.sap.tc.ap_2.0.0compCAFDCssap.comcafeugp
    after that you should have a folder called api into gp folder.
    Next, extract this file:
    https://www.sdn.sap.com/irj/sdn/softwaredownload?download=/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/business_packages/a1-8-4/gp_topleveldcs.zip
    into this folder  (Replace Program Files to Archivos de Programa ):
    C:Program FilesSAPIDEIDE70eclipsepluginscom.sap.tc.ap_2.0.0compCAFSCssap.comCAF\_compTopLevelDCs
    after that you should have these files:
    sap.com caf eu gp api wd.dcref
    sap.com caf eu gp api.dcref
    into TopLevelDCs folder.
    Best Regards,
    Pedro Nunes

  • Need help with http POST concept

    hi i just started learning about HTTP..im trying to pass a value from a thin java client from command prompt through POST method directly to a destination (another java bean) without any HTML/jsp (no pages) .
    i've created a caller.java which is used on command prompt :
    java caller param1 param2
    then, this caller will actually point to a struts path on my server, (which i think is a servlet) and do proper processing.
    caller.java :
    public static void main(String[] args) {...
    String url = str + "/do_something/prog0001_getAnswer?" +
         "param1=" + args[0] +
    "&param2=" + args[1];
    URL server = new URL(url);
    HttpURLConnection connection =
    (HttpURLConnection) server.openConnection();
    connection.setRequestMethod("POST");
    connection.connect();
    System.out.println("connecting to server..... " + connection.getResponseMessage());
    then on servlet :
    httprequest's .getParameter("param1");
    httprequest's .getParameter("param2");
    to obtain the values.
    even if set my URL's instance (server) 's RequestMethod to POST, i'm still able to obtain the parameter values in the servlet? I thought POST method requires different way to pass the values to a servlet? i've been searching..the most i could get are examples with HTML's FORM's name attribute

    What method have you written in Servlet?
    service, doGet or doPost.
    If you have written service, then it does not matter what mthod you specified.

  • How to pop up "save" and "open" window - Help with construct xml

    In my report there is a column link which is pointing to another HTML page that has xml data displayed in a textarea field. So when user clicks on the column link, he gets to directed to the page that have the xml data in text format.
    My question is, how can i make the xml data display as a file, so when the user clicks on the column link, a window with "save" and "open" will pop up so the user can save the xml data as a file?
    Has anyone done something similar like this? any help is appreciated!
    Regards,
    gina
    Message was edited by:
    gina

    Thank you Tine, I tried to use the 'Export XML' report template and tried to do the following query:
    SELECT XMLElement("oai_dc:dc",
    XMLAttributes('http://www.openarchives.org/OAI/2.0/oai_dc/' AS "xmlns:oai_dc",
                        'http://purl.org/dc/elements/1.1/' AS "xmlns:dc",
    'http://www.w3.org/2001/XMLSchema-instance' AS "xmlns:xsi",
    'http://www.loc.gov/mods/v3' AS "xmlns:mods"
    XMLForest(
    dctitle AS "dc:title",
    dccreator AS "dc:creator",
    dcsubject AS "dc:subject",
    dcdescription AS "dc:description",
    dccontributor AS "dc:contributor",
    dcdiscovery AS "dc:discovery",
    dctype AS "dc:type",
    dcformat AS "dc:format",
    LOWER('ksl:posters-' || dcidentifier) AS "dc:identifier",
    dcsource AS "dc:source",
    dclanguage AS "dc:language",
    dcrelation AS "dc:relation",
    dccoverage AS "dc:coverage",
    dcrights AS "dc:rights")) AS "RESULT"
    FROM table_name
    and here is what returned in the “save as" file:
    <?xml version="1.0" encoding="utf-8" ?>
    - <XMLREPORTREGION>
    - <ROW ROWNUM="1">
    <RESULT>[datatype]</RESULT>
    </ROW>
    </XMLREPORTREGION>
    How can i construct the query so that it returns the data in xml format like the following?:
    oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
    <dc:title>Rose</dc:title>
    <dc:creator>Smith Black</dc:creator>
    <dc:contributor>Smith Black</dc:contributor>
    <dc:type>Stencil</dc:type>
    <dc:format>image/tiff</dc:format>
    <dc:format>image/jp2</dc:format>
    <dc:description>13 3/4" X 9 1/2"</dc:description>
    <dc:relation>Some collection</dc:relation>
    <dc:date>1987</dc:date>
    <dc:subject type="LCSH">Art Project</dc:subject>
    <dc:subject type="LCSH">........</dc:subject>
    <dc:subject type="LCSH">.........</dc:subject>
    <dc:language>eng</dc:language>
    <dc:rights>......<dc:rights>
    <dc:identifier>.....</dc:identifier>
    </oai_dc:dc>
    I don't know much about xml, any help would be really appreciated.
    Thanks,
    gina
    Message was edited by:
    gina

  • My calendar will no longer let me add new event or delete them, it comes up with an error saying "cannot save event, no end date set" or "event does not belong to that event store". can anyone help with this?

    my calendar will no longer let me add new event or delete them, it comes up with an error saying "cannot save event, no end date set" or "event does not belong to that event store". can anyone help with this?

    Hi,
    To configure your ODBC DataSource, go to Control Panel ---> DataSources(ODBC) (If you are in a Windows environment).
    Select the tab System DSN. If you have not added your data source, then do so by clicking on the Add button. If you have added the datasource, click on the Configure button to configure it.
    Give the datasource name, then the database name.
    You have to give the hostname, service name and server name. I guess, in most cases, the datasource name and host name will be the same, service name and server name will be the same. If you are using TCP/IP, the protocol will be onsoctcp.
    There will be a file named Services under C:\WINNT\system32\drivers\etc where you have to give the port number for accessing this server.
    It will be like this <service name> <portnumber>/tcp
    Hope this helps...
    best wishes,
    Nish

  • With green chroma concept, I removed the green background, now the green background is seen black. I don't want to have any other background clip, but I would like to change the background black to white. Please help me.

    With green chroma concept, I removed the green background.  Now the green background is seen black. I don't want to have any other background clip, but I would like to change the background black to white. Same like the advertisement clip in the Apple Website.  Please help me.

    If you want the whole of the project background to be white, you can change the colour in FCP X preferences.
    If you just want white for a section or clip, use a custom Generator from the Generators Library and change it to white in the Inspector.
    Andy

  • I would need help with the following please: I need to save some of my email on a disk. I was going to Print, then Save PDF but then I am stuck. Help please. Thanks. Elisabeth

    I would need help with saving some eamil messages to a disk to unclutter my email. How can I do this please?
    Thanks.
    Elisabeth

    Open the email and then from the File menu select Save As Rich Text Format. That'll save it to open in TextEdit. If you want a pdf then open the email and do command-p (Print) and then from the PDF drop down box lower left corner select Save as PDF.

Maybe you are looking for

  • Calculate interest on Security Deposit at the time of invoice?

    Dear All, I have a requirement of calculating interest at the time of invoicing. I did the following configuration in spro: SAP Utilities ->Invoicing->Invoice Processing->Define Control for additional invoicing functions I clicked at the Int:Cash Sec

  • Forwarding XML/EDI from SAP Business connector to EDI (cloverleaf)

    Hello, We are having issues setting SAP up to work with the business connector and our EDI system - cloverleaf. For testing, we would like to: 1.  Create an idoc in SAP and send it to the Busness Connector. 2.  Have the busness connector send the doc

  • How to get the history data from r3?

    Hi Experts, I have loaded stock data for jan through the flat file load. The stock consists for 2,9,16,23,30 th dates of Jan. Remaining dates stock came from R3. so problem is stock seems double(Not exactly) for one site(Plant). i checked in BI and i

  • Completely stuck, get/set, Contructors and Static Methods

    Hi any help would be very appreciated on this one, import java.util.Scanner; import java.io.*;* *import java.util.*; public class Course extends Program {      public Course(String Coursecode, String Coursename){           Coursecode = stuinput.cours

  • Converting .wmv to .mov files or how do i get .wmv files into itunes?help!

    i recently got some video but some of it is in .wmv format and i need to know how to convert these to .mov format or how do i get .wmv files into iTunes. plz help