How to save a selection in Portal (as a view)

Hi,
I have a question concerning the BI Portal. We use a template containing one analysis table and one filter pane item. So, when the user is in the portal and makes different selections in the filter area, is there a possibility to save tis locally or user specific in Portal?
Thanks

Hi Sandra,
I think its not possible.
Its a temporary selection.
If u have any variable on a char which is in filter..u can give the values and save them as Variant in the Portal.
Regards,
Ram.

Similar Messages

  • 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.

  • How to save the  selected rows from Advance table into database

    Hi
    I have requirement like..
    In custom page , Manager Search the Candidates and selects the candidate ROWS from advance table.
    The reqt is how to save the selected multiple rows into the database.

    hi Reetesh,
    In Custom page
    Supoose the Recruiter Search is for Position Finance Mangager , it retrieves 100 rows , out of which Recruiter select 10 rows .
    So in Such scenario how to save this 10 rows against Recruiter
    , i mean , Is i need to create custom table, to save Recruiter , these selected 10 rows.
    I hope u understand my question

  • How to SAVE a selected Characteristic Restriction

    I'm using BW 7.0.
    How to save a selected Characteristic Restriction so the next time the user access the report he or she can re-use the saved selection?
    For a specific SRM report the user can restrict report result selecting buyers, which can be too many (~200). It’s very important that the user does not have to select each one every time he or she access this report.
    Any tips?
    Thanks in advance.
    Raphael Barboza

    See the description of the new filter option here:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/7e1042197de42ce10000000a1550b0/content.htm
    Under new features:
    New Functional Features
    ●     The filter of a query can be saved as a reusable object.
    Details on this Filter object are here:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/fcf20384631a71e10000000a422035/content.htm
    Make sure you set auth to allow usage of this on auth object S_RS_COMP.

  • How to save the selected row number to NSUserDefaults

    I am trying to save the indexpath.row of the selected row to NSUserDefaults temporarily until my detail view controller can load its UITextFields based on which row is tapped. First of all is this good? I chose this design because the detail view controller cannot access the master view controller so I can't find out which row its tapped. To save to NSUSerDefaults, I did the following code, and the NSLog is always returning row 0 no matter what row I tap. Plus the title is not being set: its still blank.
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        [patientList deselectRowAtIndexPath:indexPath animated:YES];
        [[NSUserDefaults standardUserDefaults] setInteger:indexPath.row forKey:@"rowSelected"];
        NSLog(@"The selected row saved is row %d"), [[NSUserDefaults standardUserDefaults] integerForKey:@"rowSelected"];
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
            PatientDetailViewController *detailViewController = [[PatientDetailViewController alloc] initWithNibName:@"PatientDetailViewController" bundle:nil];
            detailViewController.title = [patientDisplayName objectAtIndex:[[NSUserDefaults standardUserDefaults] integerForKey:@"rowSelected"]];
            // Pass the selected object to the new view controller.
            [self.navigationController pushViewController:detailViewController animated:YES];
            [detailViewController release];

    I have also tried setting the title differently (I also added comments to explain each line what it does, the rest is the same), but neither methods work
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        // Deselect the row
        [patientList deselectRowAtIndexPath:indexPath animated:YES];
        // Save to memory the row selected
        [[NSUserDefaults standardUserDefaults] setInteger:indexPath.row forKey:@"rowSelected"];
        // Show saved row to make sure it saved correctly
        NSLog(@"The selected row saved is row %d"), [[NSUserDefaults standardUserDefaults] integerForKey:@"rowSelected"];
        // Check if user is using iPhone
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
            // Load the view
            PatientDetailViewController *detailViewController = [[PatientDetailViewController alloc] initWithNibName:@"PatientDetailViewController" bundle:nil];
            // Set the title of the detail view controller based on row selected
            detailViewController.title = [patientDisplayName objectAtIndex:indexPath.row];
            // Push the detail view controller
            [self.navigationController pushViewController:detailViewController animated:YES];
            // Release the detail view controller
            [detailViewController release];

  • How to save the selected records from Table control in dialog programming

    Hiiiiiiii Every1
    Actually the problem is like this:-
    I have to select some records from table control and then want to save the selected records in DB table.
    Example
    I have some rows having inforamtion bout employees...
    Now what i want is that when i click on 'SAVE' button then these selected rows should be moved into DB table.
    Sachin Dhingra

    see below example, I have added INSERT option after DELETE option.
    REPORT demo_dynpro_tabcont_loop_at.
    CONTROLS flights TYPE TABLEVIEW USING SCREEN 100.
    DATA cols LIKE LINE OF flights-cols.
    DATA: ok_code TYPE sy-ucomm,
          save_ok TYPE sy-ucomm.
    DATA: itab TYPE TABLE OF demo_conn.
    TABLES demo_conn.
    SELECT * FROM spfli INTO TABLE itab.
    LOOP AT flights-cols INTO cols WHERE index GT 2.
      cols-screen-input = '0'.
      MODIFY flights-cols FROM cols INDEX sy-tabix.
    ENDLOOP.
    CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE read_table_control INPUT.
      MODIFY itab FROM demo_conn INDEX flights-current_line.
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'TOGGLE'.
          LOOP AT flights-cols INTO cols WHERE index GT 2.
            IF  cols-screen-input = '0'.
              cols-screen-input = '1'.
            ELSEIF  cols-screen-input = '1'.
              cols-screen-input = '0'.
            ENDIF.
            MODIFY flights-cols FROM cols INDEX sy-tabix.
          ENDLOOP.
        WHEN 'SORT_UP'.
          READ TABLE flights-cols INTO cols WITH KEY selected = 'X'.
          IF sy-subrc = 0.
            SORT itab STABLE BY (cols-screen-name+10) ASCENDING.
            cols-selected = ' '.
            MODIFY flights-cols FROM cols INDEX sy-tabix.
          ENDIF.
        WHEN 'SORT_DOWN'.
          READ TABLE flights-cols INTO cols WITH KEY selected = 'X'.
          IF sy-subrc = 0.
            SORT itab STABLE BY (cols-screen-name+10) DESCENDING.
            cols-selected = ' '.
            MODIFY flights-cols FROM cols INDEX sy-tabix.
          ENDIF.
        WHEN 'DELETE'.
          READ TABLE flights-cols INTO cols WITH KEY screen-input = '1'.
          IF sy-subrc = 0.
            LOOP AT itab INTO demo_conn WHERE mark = 'X'.
              DELETE itab.
            ENDLOOP.
          ENDIF.
        WHEN 'INSERT'.
          READ TABLE flights-cols INTO cols WITH KEY screen-input = '1'.
          IF sy-subrc = 0.
            LOOP AT itab INTO demo_conn WHERE mark = 'X'.
              itab1 = itab.
              modify itab1.
            ENDLOOP.
          ENDIF.
          if not itab1 is initial.
            INSERT dbtab FROM TABLE itab1.
          endif.
      ENDCASE.
    ENDMODULE.

  • How to save the selection of quick select tool using scripts?

    I am writing a script to record the edit history and I want to save the select area of quick select tool using scripts. 

    Yeah, that's true. If we active the HistoryState, we can see the selection area in  photoshop, however when we save the HistoryState in  jpg, the dotted line disappears. 

  • How to save multi select selection

    Is possible??
    Thank you!!

    As previously said you can do that.
    First you need to create your saved selection to do that go to Page options -- choose "Save Current Selection"- Choose "For Me" Name it example 'xyz' click on ok.
    From now onwards if you want to apply your saved selection 'xyz' then goto page options mouse over on saved selections it will display all available saved selections choose xyz from that. thats it.
    Thanks
    Srinivas

  • How to save .xls file through portal

    Currently i have a .xls file uploaded in my oracle portal. The idea is to enable all user to read only the .xls file and to enable only authorized user to read-write and save the changes made to the .xls file. How am i able to do this? Please give me a step-by-step solution since I'm very new to oracle portal 10g.
    TQ
    Edited by: user10869241 on Jan 28, 2009 4:44 PM

    If the Excel spreadsheet is published as a File Item, grant Manage access on the item (requires Item Level Access to be enabled on the page) to the authorized user (or group) that makes the updates to the spreadsheet so that s/he can upload the updated spreadsheet whenever needed. Then just grant View access on that same file item to the group(s) or individual(s) that just need to view the spreadsheet. They'll still be able to save off the spreadsheet to their pc, so utilize the protection settings in Excel, if needed.

  • How to save a selected word image to image file in open XML in PNG format?

    Hi Everyone,
    I have a very strange problem. I want to extract the image from word using open xml sdk. Here the user selects the image on opened word, and then clicks on any button, so it should extract the same selected image to any predefined location in the PNG format.
    I also tried to do the same thing using Word API, there I am copying the selection of image to clipboard and then getting the image and converting it to bitmap and saving it, but the image resolution is coming very bad. Is there any method through which
    I can save the image to file either by Open XML sdk or Word API using C#.
    Thanks,
    Shahab Abbasi

    Hi Shahab,
    To extract images from word document, please take a look at this thread:
    https://social.msdn.microsoft.com/Forums/office/en-US/e2a795ea-2ab7-401e-b6a8-0576220553f8/openxml-excel-how-to-extract-only-image-files?forum=oxmlsdk
    string fileName = @"C:\test.docx";
    using (WordprocessingDocument document = WordprocessingDocument.Open(fileName, true))
    var e = document.MainDocumentPart.ImageParts.GetEnumerator();
    int picNum = 0;
    while (e.MoveNext())
    picNum++;
    ImagePart imagePart = e.Current;
    Stream stream = imagePart.GetStream();
    long length = stream.Length;
    byte[] byteStream = new byte[length];
    stream.Read(byteStream, 0, (int)length);
    FileStream fstream = new FileStream(@"C:\abc.jpg", FileMode.OpenOrCreate);
    fstream.Write(byteStream, 0, (int)length);
    fstream.Close();
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to save navigations of Query into Portal favorites?

    Hi,
      i  executed a query in the portal. i made some changes by navigating, drag & drop options ( added new fields, displayed attributes, removed 1 field for example).
    how to save this navigation into portal favorites? will it possible?
    if i save my query into Federated portal favorites, user can able see those later. is that true?
    thanks in advance.
    Regards,
    Nagesh Ganisetti.

    Hi Nagesh,
          Can you please explain how did u solve this issue. I am also facing same issue?
    Thanks and Regards
    Satish Arra

  • How to copy a selection in channel mode?

    I have photoshop cs6, and I was just wondering how to save a selection in channel mode.
    So for example (below), If i wanted to only copy the part of this picture that has white and the plant in the picture how would i do this? I've tried colour range but it didn't work so I am very stuck. Please help! Thanks

    The problem is that you are still editing the alpha channel, which can be usefull too.
    So before attempting to copy or edit, you need to go back to the layers pallete. Here's how it would look step by step:
    - go to channels pallete
    - highlight Alpha 1
    - Click "Load Channel as Selection"
    - once the selection is active (running ants around the vase), highlight the RGB channel
    - go back to your Layers pallete
    - copy/paste the selection as needed (or hit crtl+J) to copy the selection to its own layer
    - duplicate the layer as needed
    so basically, before trying to copy, you first need to go back to the layers pallete, after loading the selection
    hope this makes sense, please post back if this doesn't work.

  • How to save a variant with dynamic selections parameters

    Anybody knows how to save a variant for an ABAP that uses a Logical database with Dynamic Selections?
    Have a look for example to the following:
    SE38 - DEMO_PROGRAM_GET - Execute - Shift F4 - Connection Number.
    How to save 0820 as Connection Number?
    Function Group SVAR seems good but FREE SELECTIONs are not easy to manage...

    Hello,
      I tried to save the variant of DEMO_PROGRAM_GET with dynamic selection field (Connection Number) filled. It gets saved without any problem. Just click 'SAVE' and enter the variant name and description.
    Thanks,
    Venu

  • How to save passwords. Setting already selected but still does not save.

    How to save passwords. Setting already selected but still does not save. Web site does allow password saving.

    Could you try a fake username and password on another site, and see if you can save there? You can use this website's login form at [https://support.mozilla.com/tiki-login.php] to test.
    Let me know the result of doing this, and whether any password-related errors appear in Tools->Error Console

  • How to save selection screen in LISTCUBE?

    I execute LISTCUBE, enter my CUBE name, get message "The Infoprovider contains too many characteristics. Make a preselection.".  I choose 20 characteristics to display then the data target browser selection screen display.  Is there a way to save this selection screen so I don't have to repeat selecting these same characteristics every time? I tried to save this as a variant but got message "It is not possible to save variants."
    Any suggestions would be greatly appreciated. Thanks.

    Hi,
    This transaction cannot get screen variants. This is because each time the listcube for an infoprovider is executed, it creates a new report (from se38).
    What you may try to do is to get the name of the report (its a very long name, you can see it in the lower right part of the sapgui, where you see the system id) after selecting the infoprovider in listcube, and into se38 transaction, copy that report to a new z report. then, you may modify this report to be executable in attributes.
    hope this helps.
    regards,
    Diego

Maybe you are looking for