How to save slices selected by the slice-select-tool ?

How to save slices selected by the slice-select-tool ? In the past, I select several slices in edit window and saved for web(ctrl+alt+shift+s) But now, selected slices are unselected in the Save-for-web dialog except first slice.
I'm sorry my short english.

How to save slices selected by the slice-select-tool ? In the past, I select several slices in edit window and saved for web(ctrl+alt+shift+s) But now, selected slices are unselected in the Save-for-web dialog except first slice.
I'm sorry my short english.

Similar Messages

  • Determine the last date of visit before FY selected in the slicer

    Hi,
    I have data for date wise clients visits.  My objective is to determine the last date of visit to the client before the FY selected in the slicer.
    The objective, data layout and question is available in this file
    http://sdrv.ms/19RnW0A
    Please help with the appropriate PowerPivot calculated Filed formula.
    Thank you.
    Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com

    Hi, basically this calculation would solve your initial question, though, it does not match the requested results:
    LastVisit:=CALCULATE(MAX(Data[Date]), DATESBETWEEN(Calendar[Date], BLANK(), MIN(Calendar[Date])-1))
    its important to add that this calculation only works if you mark your Calendar-table as Date-table which was not the
    case in the sample workbook!
    assuming you select 2012-2013, then according to your Calendar-table you select dates from 31/12/2012 till 30/12/2013
    so the "last date of visit to the client before the FY selected in the slicer." would be the last visit before
    31/12/2012 which would be 12/12/2012 for Client A and not 25/02/2012 as expected result
    hth,
    gerhard
    Gerhard Brueckl
    blogging @ http://blog.gbrueckl.at
    working @ http://www.pmOne.com
    Gerhard's approach is a nice clean solution.
    The only thing I would add is that we could use LASTDATE and FIRSTDATE instead of the MIN/MAX functions:
    LastVisit:=
    CALCULATE(
    LASTDATE(Data[Date]),
    DATESBETWEEN(
    Calendar[Date],
    BLANK(),
    FIRSTDATE(Calendar[Date]) -1)
    In order to achieve the overall outcome described in the uploaded Excel workbook, changes to the how the [Financial Year] and [Financial Year Key] are calculated will also need to be made (so that the slicer filters the correct data ranges).
    This can be done by using the suggested calculated column changes above or something similar.
    Having reviewed the requirement again, the logic behind the [Last Visit Last Year] measure that I proposed is slightly different from what is required because it only looks at the last visit date
    within the previous financial year to the one currently selected in the slicer. On the other hand Gerhard's is looking for the last visit date
    any time before the first date in the selected financial year and this is more in-line with the actual requirement. With the provided dataset, both approaches provide the same outcome, but the difference
    in behaviour would become apparent if the last visit date was not found within the previous financial year to the one selected in slicer.

  • How to save a fmb in the database thru command prompt?

    Hi,
    How to save a fmb in the database thru command prompt?
    I have around 25 fmb template files which needs to be saved in the database.Every time when we apply the new dump , we need to resave the templates in the database to compile other application related fmb files.Its a time consuming process and Monotonous for me. Is there anyway to save the forms in the database thru batch file, so that just I have to execute the batch file every time.
    Expecting your earliest feedback.
    Thanks & Regards,
    G.S -
    [email protected] / [email protected]

    Hi Frank,
    Thanks for your feeback.
    I am using forms6i.Basically our application was migrated from 4.5 to 6i two years back. Due to some reasons our technical team members are insisting us to store the template FMB's into the database to do the coding activities at site.
    Once in a month we are receiving the live dump for test database.Hence the problem.
    Please suggest the easiest way to store the template FMBs in the database.
    Thanks & Regards,
    G.S

  • How to add customize message on the variable selection screen in the query

    Hi all,
    Can we add an customise message on the variable selection screen in the query? If yes please let me know how it can be achevied?
    Thanks,
    Rani

    Hi Rani,
    I faced a similar issue (for what I understand your request is).
    My requirement for the Variable Screen was to do:
       1) place a link to a ppt file
       2) remove buttons "Save", "Save As...), "Delete"... the standard buttons come when running the Query or WebTempl
    We were using a Web Templ for BI7.0
    I struggled trying to find out how to do it. My conclusions are:
    - WAD, not sure we can accomplish it using a Web Template but i did not "play" a lot with the Web_Template Properties in order to know
    - XHTML, I was told in my post HTML modification was the way, but I have close to nil background in HTML and couold not find the way of accessing the Variable Entry screen
    For instance, I had to remove similar buttons and change some font size from a link on the Web Template (WAD), which was pretty straight forward. In WAD the buttons come with its own icon and to increase the Font size for that link we used XHTML (<font size="2" >). But the heck of the variable screen...well, i just did not get trhough to it to modify it in any way.
    Good luck,
    Definetly in a Query I would say that no.
    alex
    PS: If anyone had a better insight, please feel free to share it.

  • How to save e-mails on the hard drive

    How to save my e-mails on the memory of my MacBook Air ?

    If you are using a POP account (and it sounds like you are) follow these insructions to keep a copy of mail on the server as well as locally.
    Click on the Mail menu and choose Preferences,
    Click on the Accounts icon, and select your email account on the left side,
    Go to the tab called Advanced, and change the settings of the checkbox called Remove copy from server after retrieving a message:
    if that checkbox is UNchecked, then all your messages will always stay on the server
    if that checkbox is checked, then the messages will only stay on the server as long as specified in the drop-down box underneath
    if that checkbox is checked and the drop-down box is set to Right Away, then your account will behave as a regular POP3 account (the messages will be downloaded to your computer and then removed from the server right away)
    Click OK to confirm

  • How to save secret key in the NSS certDB and then retrieve it through Java?

    Hi,
    I 'm pretty new trying to handle keying material for NSS fips mode.
    After following the guidelines from http://java.sun.com/javase/6/docs/technotes/guides/security/p11guide.html#NSS I need my code to use SecretKeyFactory method generateSecret with DESedeKeySpec parameter in the following way:
    Provider nss = new sun.security.pkcs11.SunPKCS11(configFileName);
    Security.addProvider(nss);
    SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DESede", nss);
    DESedeKeySpec keySpec = new DESedeKeySpec(new String("abcdefghijklmnopqrstuvw").getBytes("UTF-8"));
    SecretKey key = keyFactory.generateSecret(keySpec);
    The question is: what are the steps needed to save secret key "abcdefghijklmnopqrstuvw" in NSS certDB in the fips mode (nssModule = fips in pkcs#11 conf. file) and how should it be retrieved in the Java code?
    Any help will be appreciated...

    OK...I didn't test this in FIPS mode, but it works in keystore mode (which says persistent storage of keys)
    KeyGenerator kg = KeyGenerator.getInstance("DESede",nss);
    kg.init(192);  //yields 168-bit key
    SecretKey tripleDesKey = kg.generateKey();
    KeyStore.SecretKeyEntry skEntry = new KeyStore.SecretKeyEntry(tripleDesKey);
    ks.setEntry(randAlias, skEntry, new KeyStore.PasswordProtection(password));I was generating some random bytes and base64'ing them to get a random alias on each execution of the program. I'd also loop through and print out the aliases before I generated another key to ensure it was storing the key in between runs which it was.
    Command-line proof the keys are in db:
    symkeyutil -L -d .
    Enter Password or Pin for "NSS Certificate DB":
         Name            Len Strength     Type    Data
    NSS Certificate DB:
    7i/XoKcaLhU=          24    168         des3  <restricted>
    Yzjt7W+AIgc=          24    168         des3  <restricted>
    RkOTZssCEQM=          24    168         des3  <restricted>
    S2BHRcFUyAA=          24    168         des3  <restricted>
    secretKeyAlias        24    168         des3  <restricted>
    R/DaVy1z1MM=          24    168         des3  <restricted>
    IdpdnIDzOYs=          24    168         des3  <restricted>
    SeVASW8PrOc=          24    168         des3  <restricted>
    c6Ml/9I7thQ=          24    168         des3  <restricted>Edited by: dstutz on May 15, 2008 12:28 PM
    Edit again:
    I changed the mode in the cfg file to fips and used modutil to change module to fips mode and it still works...all the keys I created in keystore mode are still there and I can add new ones.
    C:\nss>symkeyutil -L -d .
    Enter Password or Pin for "NSS FIPS 140-2 Certificate DB":
         Name            Len Strength     Type    Data
    NSS FIPS 140-2 Certificate DB:
    LmsZDBaaCw8=          24    168         des3  <restricted>
    EQaX3wdJ1cY=          24    168         des3  <restricted>
    7i/XoKcaLhU=          24    168         des3  <restricted>
    Yzjt7W+AIgc=          24    168         des3  <restricted>
    RkOTZssCEQM=          24    168         des3  <restricted>
    S2BHRcFUyAA=          24    168         des3  <restricted>
    secretKeyAlias        24    168         des3  <restricted>
    UsY23mwSzEM=          24    168         des3  <restricted>
    B/auMw2OTvE=          24    168         des3  <restricted>
    coqyCAAJpsk=          24    168         des3  <restricted>
    vVBHLg1r3cY=          24    168         des3  <restricted>
    R/DaVy1z1MM=          24    168         des3  <restricted>
    IdpdnIDzOYs=          24    168         des3  <restricted>
    SeVASW8PrOc=          24    168         des3  <restricted>
    c6Ml/9I7thQ=          24    168         des3  <restricted>Edited by: dstutz on May 15, 2008 12:56 PM

  • How do I disable auto select for the path selection tool?

    For the move tool you can choose to disable auto selection, auto select a group, or auto select a layer. By default though the path selection tool autoselects a layer. How can I disable autoselection?

    I can’t seem to reproduce what you describe.
    Please elaborate, possibly with the help of some screenshots.

  • How to change a  value of the field Selection Conditions in Manage- Request

    Hi,
    How to change manualy a value of the field Selection Conditions in Manage infocube -> Requests  ?

    Hi,
    Here is the reason i need to do this:
    The data is loaded by DTP in process chain. Overlaping requests are deleted. But, iIn some cases requests with the same selection options  need not to be deleted. My idea was to change selection options in Manage(infocube) with Abap program without changing selection options in DTP filter,  so that the system would not recognize requests as "overlaping requests".
    So, where is the information about shown in the field Selection Options is stored? In which tables?
    Thanks
    Tigr_Z

  • How do i find the last selection OR the highlighted selection?

    When i select some items in indesign i have the option of "command + click" to highlight one of the selections. How would i find that highlighted element in scripting?
    OR
    How would i go about finding the last item selected in indesign.
    I'm trying to write a script that relies on some properties of the highlighted element or the last item selected.
    thanks

    Thanks myDavey. That's not exactly what i was looking for, but it had good information on something else i am working on.
    I found the solution to my problem. That highlighted selection is apparently called the "key object".
    And it can be used in scripting as app.selectionKeyObject. This solved what i was looking for.
    And one can find the last selection by picking the last element in the selection array.

  • How to call an action when the user selects a radiobutton

    Hai
    PLease help me in providing the information.
    In my Project i have two radio buttons as
    New
    Asssessment
    when the user selects new button, i want to automatically call an action in the controller(.jpf file)
    Simalarly when he selects the other radio button i need to call a separate action in the controller.
    Remember i dont have the submit button.
    I want to dynamically call an action when the user selects the radio button.
    i dont have any field inthe radio button which actually takes action as an attribute .
    please provide me the necessary

    Hi,
    You can use JavaScript to call the action in interest upon the Radio Button Element Being Selected.Should be simple, and if your controller is part of the portlet dont forget to use the jpfScopeId to asscoiate the controller instance with the one in the portlet.
    Let me know if you have any further questions.

  • How can i  display output in the same selection screen?

    I've a requirement. Suppose in my selection screen there are three input fields. On the basis of this selection screens input It will  display the output in the same selection screen. Can it be possible? .
    Can it be possible to modify the default screen no for the selection screen 1000?
    Thanks in advance.
    Abhijit

    Hi Abijit,
    Whatever changes made in STANDARD SELECETION SCREEN 1000 or screens generated using 'SELECTION-SCREEN' statements, are not permanent.
    It will get back to its original appearance, while you execute again or some time later.
    Whenever you get into 'CHANGE' mode of these screens, an information will be displayed as follows ;
    Selection screen: Report generation makes screen
    changes ineffective
    Regards,
    R.Nagarajan.

  • Performance ... normal selects and the same selects in functions

    Hi there,
    hope you guys can help me a little.
    We use a bunch of dictionary tables to map certain values to IDs. In the "real" data tables we save the IDs instead of the values themselves.
    Those tables are usually pretty small.
    Normally we would join these tables into our selects, such as this:
    select ...
    from data_table d,
    lookup_table l
    where d.l_id=l.id
    But we also got some functions we use to lookup these values to have simple selects:
    select ..., my_function(l_id)
    from data_table
    Or for reverse lookup:
    select ...
    from data_table
    where l_id=my_function(l_id)
    Do you know, if smaller selects capsuled in functions are more or less performant then simply joining these tables into the big selects?
    Sometimes we also use small statements on large tables (4.000.000 records) ... sometimes we use them in functions as well ...
    select bla
    from large_table
    where id=...
    Thanks for your hints,
    Steff

    How you did your tests?
    A short conclusion of test below:
    I've created 2 tables one base table and one lookup table.
    Then created function to get lookup value from lookup table.
    then run select to get all lookup values from base table using join and using function.
    Join needed 0.01 sec, function needed at least 2.08 secs.
    Then I've created an anonymous script to loop through all base values and get aproprite lookup values using function and using join and compared results using runstats.
    As a result join performed at more than 2 times faster and required more than 2 times less latches.
    and here is the listing
    SQL> create table lookup_table (
      2  lkp_id number not null,
      3  lkp_val varchar2(10) not null);
    Table created.
    Elapsed: 00:00:00.00
    SQL> alter table lookup_table add constraint lkp_pk primary key (lkp_id);
    Table altered.
    Elapsed: 00:00:00.00
    SQL>
    SQL> insert into lookup_table select rownum, substr(object_name, 1, 10) from dba_objects;
    42221 rows created.
    Elapsed: 00:00:00.05
    SQL> create or replace function get_lkp_value (in_id number) return varchar2
      2  is
      3    ret lookup_table.lkp_val%TYPE;
      4  begin
      5    select lkp_val into ret from lookup_table where lkp_id = in_id;
      6    return ret;
      7  end;
      8  /
    Function created.
    Elapsed: 00:00:00.01
    SQL> create table base_table (
      2  bas_id number not null,
      3  bas_lkp_id number not null,
      4  bas_data varchar2(1000) not null);
    Table created.
    Elapsed: 00:00:00.00
    SQL>
    SQL> insert into base_table select rownum, rownum, object_name
      2  from dba_objects where rownum <= 42221;
    42221 rows created.
    Elapsed: 00:00:00.05
    SQL> alter table base_table add constraint bas_pk primary key (bas_id);
    Table altered.
    Elapsed: 00:00:00.02
    SQL> alter table base_table add constraint bas_lkp_fk foreign key (bas_lkp_id)
      2  references lookup_table (lkp_id);
    Table altered.
    Elapsed: 00:00:00.01
    SQL> create index bas_lkp_idx on base_table (bas_lkp_id);
    Index created.
    Elapsed: 00:00:00.02
    SQL> exec dbms_stats.gather_table_stats(user, 'lookup_table');
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.01
    SQL> exec dbms_stats.gather_table_stats(user, 'base_table');
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.02
    SQL> select count(distinct lkp_val) from (
      2    select bas_id, bas_data, get_lkp_value(bas_lkp_id) lkp_val
      3    from base_table);
    COUNT(DISTINCTLKP_VAL)                                                         
                     13622                                                         
    Elapsed: 00:00:03.01
    SQL> /
    COUNT(DISTINCTLKP_VAL)                                                         
                     13622                                                         
    Elapsed: 00:00:02.08
    SQL> /
    COUNT(DISTINCTLKP_VAL)                                                         
                     13622                                                         
    Elapsed: 00:00:03.01
    SQL> select count(distinct lkp_val) from (
      2    select bas_id, bas_data, lkp_val
      3    from base_table, lookup_table
      4    where bas_lkp_id = lkp_id);
    COUNT(DISTINCTLKP_VAL)                                                         
                     13622                                                         
    Elapsed: 00:00:00.01
    SQL> /
    COUNT(DISTINCTLKP_VAL)                                                         
                     13622                                                         
    Elapsed: 00:00:00.01
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    cursor c1 (in_id in number) is
      3    select bas_id, bas_data, lkp_val
      4    from base_table, lookup_table
      5    where bas_lkp_id = lkp_id
      6      and bas_id = in_id;
      7    val1 c1%ROWTYPE;
      8    cursor c2 (in_id in number) is
      9    select bas_id, bas_data, get_lkp_value(bas_lkp_id)
    10    from base_table
    11    where bas_id = in_id;
    12    val2 c2%ROWTYPE;
    13  begin
    14  runstats_pkg.rs_start;
    15  for i in 1..42220 loop
    16    open c1(i);
    17    fetch c1 into val1;
    18    close c1;
    19  end loop;
    20  runstats_pkg.rs_middle;
    21  for i in 1..42220 loop
    22    open c2(i);
    23    fetch c2 into val1;
    24    close c2;
    25  end loop;
    26  runstats_pkg.rs_stop;
    27* end;
    SQL> /
    Run1 ran in 390 hsecs                                                          
    Run2 ran in 910 hsecs                                                          
    run 1 ran in 42,86% of the time                                                
    Name                                  Run1        Run2        Diff             
    LATCH.kwqit: protect wakeup ti           0           1           1             
    LATCH.spilled msgs queues list           0           1           1             
    STAT...change write time                 0           1           1             
    LATCH.active checkpoint queue            1           3           2             
    LATCH.cache buffer handles              24          26           2             
    LATCH.process allocation                 0           2           2             
    STAT...cleanout - number of kt           3           5           2             
    STAT...consistent gets - exami     253,323     253,325           2             
    STAT...consistent gets             253,323     253,325           2             
    STAT...calls to kcmgcs                   3           5           2             
    STAT...active txn count during           3           5           2             
    LATCH.session timer                      1           3           2             
    LATCH.event group latch                  0           2           2             
    LATCH.channel handle pool latc           0           4           4             
    LATCH.transaction allocation             0           4           4             
    STAT...db block gets                   520         524           4             
    LATCH.list of block allocation           0           4           4             
    LATCH.process group creation             0           4           4             
    LATCH.dummy allocation                   0           4           4             
    LATCH.post/wait queue                   11          16           5             
    LATCH.Consistent RBA                    18          24           6             
    LATCH.mostly latch-free SCN             18          24           6             
    STAT...consistent changes              510         516           6             
    STAT...session logical reads       253,843     253,849           6             
    STAT...db block changes              1,020       1,026           6             
    LATCH.lgwr LWN SCN                      18          24           6             
    LATCH.channel operations paren           4          12           8             
    LATCH.user lock                          0           8           8             
    LATCH.simulator lru latch               13           2         -11             
    LATCH.sequence cache                    56          71          15             
    LATCH.redo writing                      59          82          23             
    LATCH.enqueues                          30          60          30             
    STAT...hot buffers moved to he          31           0         -31             
    LATCH.messages                         100         149          49             
    LATCH.cache buffers lru chain           91          33         -58             
    LATCH.session idle bit                 230         290          60             
    LATCH.SQL memory manager worka         136         223          87             
    STAT...free buffer requested            91           4         -87             
    STAT...shared hash latch upgra          87           0         -87             
    STAT...physical reads                   87           0         -87             
    LATCH.checkpoint queue latch            69         181         112             
    LATCH.session allocation                44         178         134             
    LATCH.redo allocation                  622         819         197             
    LATCH.undo global data                  61         263         202             
    LATCH.dml lock allocation               92         312         220             
    LATCH.row cache enqueue latch          356         580         224             
    LATCH.simulator hash latch          12,430      12,204        -226             
    LATCH.row cache objects                360         626         266             
    LATCH.enqueue hash chains              141         477         336             
    STAT...recursive cpu usage             259         596         337             
    STAT...Elapsed Time                    392         913         521             
    LATCH.library cache pin alloca         402       1,100         698             
    LATCH.cache buffers chains         257,991     260,038       2,047             
    STAT...calls to get snapshot s      42,221      84,441      42,220             
    STAT...execute count                42,221      84,441      42,220             
    STAT...recursive calls             126,662     168,882      42,220             
    STAT...session pga memory                0      65,536      65,536             
    LATCH.shared pool                   44,133     213,801     169,668             
    LATCH.library cache pin             86,473     256,185     169,712             
    LATCH.library cache                 87,511     342,530     255,019             
    Run1 latches total versus runs -- difference and pct                           
    Run1        Run2        Diff       Pct                                         
    491,506   1,090,381     598,875     45.08%                                     
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:13.06Gints Plivna
    http://www.gplivna.eu

  • How to set a proxy for the azure-cli tool?

    I'm behind a corporate proxy: how can I configure the azue-cli tool to use our corporate proxy? Cannot find any information online and on the documentation.
    Thank you
    Simone

    I suggest you having a look at this article
    http://dunnry.com/blog/2010/01/25/SupportingBasicAuthProxies.aspx, hope this helps.

  • How to save a file in the newer version of muse to use it in an older version of muse

    I started to work in a project at home with a 30 day trial of the latest Muse,  I was going to continue working at school, and I can't open it. So how can I save the file to open it in an older version?

    Hi Luisis,
    Any file that is saved in the latest version of Muse cannot be opened in any previous of Muse and as of now there is no option available in Muse such that you can save the file in such a manner that it opens in the previous version.
    However, I would request you to post this as a feature request at Ideas for features in Adobe Muse
    Regards,
    Rohit Nair

  • How to Save pdf file in the BLOB field in the database

    I have to save a pdf file which is on the client machine to save in the database column of type BLOB. How can i do that?

    LostWorld wrote:
    I have to save a pdf file which is on the client machine to save in the database column of type BLOB. How can i do that?PL/SQL code cannot hack across the network. break into that client machine, and read that PDF file from the client's harddrive.
    There is a very fundamental client-server principle at stake here - the purpose of the client. What is the purpose of the client? Amongst others, it is to interface with the client hardware and peripherals and devices. Like reading the client keyboard and sending that to the server. Or reading data from the sever and rendering it on the client's display device. Or to receive CSV data from the server and writing it to a local file.
    It's purpose is also to read a local file, like a PDF file, and submit that file's contents to the server for storage.
    The following pseudo code explains the basic principle:
    client
      // call oracle to create a LOB
      ExecuteSQL( 'DBMS_LOB.CreateTemporary( .. )' )
      open file( fileHandle )
      while not EOF( fileHandle )
        // read data from the file
        read file( fileHandle, buffer )
        // write this buffer to the LOB in Oracle
        ExecuteSQL( 'DBMS_LOB.writeAppend( .. )' )
      end while
      close file( fileHandle )
      // now tell Oracle what to do with that LOB
      ExecuteSQL( '...' )
      .. etc..Thus the client:
    a) creates a LOB in Oracle via a PL/SQL call
    b) passes data from the client and appends it to the LOB
    c) tells Oracle what to do with LOB, such as inserting it into a table

Maybe you are looking for