Copying a users' saved selection to other users

Hello, one of the users have about 10 saved selections on a dashboard. We want to make the saved selections available for another set of 30 users. Can this be done in OBIEE 10.1.3.4?
When i loggin as administrator, i see the ability to save saved selections to other groups. But, as an administrator, i dont have access to the saved selections of the users.
Maybe, i can copy the _selections folder in webcat to the other user's folder.  Anybody tried this?  Help.
Thanks
Vimala

Hi,
In reports input Screen you have this option,
In selection screen you can find, Save as a New varient, give some name and save , don't select Save as User Varient and save it.
Note: Check with the select Save as User Varient & Use as default Varient options.
Thanks
Reddy

Similar Messages

  • Saved Selections for users

    Hi,
    Is there a way to control the option ' Save selections for others'? I know how to control the selections option from Privileges. But, I don't see the option to control saved selections for others.
    Can someone please let me know if this can achieved?
    Thanks
    Chandu.

    Hi,
    The option you have specified controls from having selections privilege for a user.
    I want to control the options * to save selections for others*.
    Meaning that, I want to disable the option - * Page Options --> Save Current Selections --> For Others*, but keep the option * Page Options --> Save Current Selections --> For Me*
    Is it possible?? Please let me know.
    Hi..I just realized that, for non-admin users, ( user without admin privileges) will not be seeing the option ' Page Options --> Save Current Selections --> For Others'
    Thanks.
    Edited by: Chandu.bi on Mar 20, 2011 12:47 AM

  • Retain standard SAP order type after copying with user defined order type

    Hello SAP Gurus,
    We have a requirement of retaining the standard SAP order types after copying with User defined order types. But the issue is we don't want to see the standard SAP order type such as PM01, PM02 in production system while using transaction like IW31 etc.
    Is there anybody who has answer to retain these stanadard SAP order types without deleting from system configuration?
    Thanks in advance.
    Cheers,
    Vaibhav

    Vaibhav,
    When you F4 on the order type field in IW31 you will get the popup showing the order type list. At the top of this list is a button with a green "+" sign (Insert in personal list).
    You can use this button to select your favourite list.
    This function is available in most F4 drop-down lists.
    However, you cannot set this setting for all users. You will need to write an ABAP program to do this.
    PeteA

  • Is it possible to copy a user fm one client to another

    Hi'
      Is it possible to copy a user from one client to another client?
      e.g., in our DEV we have two client say 500 & 201.A user say dev_user is present in client 500 with some authorization.Now i want the same user dev_user with same authorization in client 201.
    note:-
      *according to my knowledge user is a client dependent.
      *plz avoide hint like
    1)create a new user in 201 with the same user name with the help of su01
    2)client copy.

    Hi,
    I am not sure of replication a single use, but u can move all users by CLIENT Export. That means , u will be creating a transport request which will contain all User master records using SCC8. here select the USER profile SAP_USER.
    Hope this helps
    Cheers !!

  • Copying a user account

    Is it possible to copy a user account on my MacBook Pro? What i want to do is actually change the shortname, but that appears to be overly complex. Can I instead just copy a user account to a new one i create?
    Andrew

    Use ChangeShortName to change the account's short name, or change all instances of the old name to the new one on your system. These instances are found in the Users folder by default, the list of properties for your user account in the NetInfo Manager, which is in the /Applications/Utilities/ folder, and in the membership of some of the groups in the NetInfo Manager. In either case, log out and back in after changing the name; if automatic login is turned on for that account, turn it off before beginning the procedure, and turn it back on after logging back in.
    (18249)

  • Massive copy of users report

    Is there any standard report or someone has a Z report for Massive Copy of Users (including security roles and profiles) based on one user?

    I believe there should be a standard report - you might want to ask in the Basis forum.
    Here are some interesting custom program examples, maybe one of them would help:
    http://www.kabai.com/abaps/q.htm

  • Hyperion Planning copy Application User provisioning

    Hi, i'm copying an 9.3.1 application from development to production.
    With copy app i have migrated data and metadata. I'm not able to find out how copying also user and provisioning.
    there is any tool or i have to make it manually?
    Thanks in advance
    DecaXD

    really thanks for the quick answer.
    I've tried the tool but i obtain
    D:\Hyperion\Planning\bin>UpdateUsers localhost hpadmin mypassword copybdg
    Creating rebind thread to RMI
    Setting Arbor path to: D:\Hyperion\common\EssbaseRTC\9.3.1
    Setting HBR Mode to: 2
    HBR Logging Config File : HBRServer.properties
    2009-07-29 11:15:23,893 WARN main com.hyperion.hbr.security.HbrSecurityAPI - Error retrieving user by identity
    Embedded HBR initialized.
    the user hpadmin is the owner of the application.
    The essbase server is on another machine.
    Any suggestion?
    Thanks
    DecaXD

  • Copy existing user password & attricutes to another user

    Dear all,
    The requirement is to copy the user attributes, especially the existing password to a New User ID. i.e., I want to replace/rename the existing user id with the same password. I tried copying the USR02-BCODE. But it is not working.
    Kindly help in this regard.
    Regards
    Aravind

    Hi Aravind,
    Pls check BAPI_USER_CLONE.
    Not quite sure,hope you can play around this in your development system.
    Regards,
    Babul.

  • Af:table: copy values of currently selected row to other attribute bindings

    Hello,
    I'm using JDev 11g.
    Copying a value from one attribute value binding to another one is easy when you are clicking a button, with a setActionListener:
    <af:setActionListener from="#{bindings.SourceField.inputValue}" to="#{bindings.DestinationField.inputValue}"/>What I want to do is the same behaviour, but instead of clicking a button, the triggering event should be the selection of a row on an af:table. The source field is a column of the currently selected row. The destination is another attribute value binding outside of the table.
    Jspx:
    <af:table value="#{bindings.EmployeesView1.collectionModel}" var="row">
      <af:column ... >
        <af:inputText value="#{row.bindings.SourceField.inputValue}" ... />
      </af:column>
    </af:table>
    <af:inputText ... value="#{bindings.DestinationField.inputValue}" />
    ...Page Def:
    <bindings>
      <tree IterBinding="EmployeesView1Iterator" id="EmployeesView1">
        <nodeDefinition ... >
          <AttrNames>
            <Item Value="SourceField"/>
          </AttrNames>
        </nodeDefinition>
      </tree>
      <attributeValues IterBinding="EmployeesView1Iterator" id="SourceField">
        <AttrNames>
          <Item Value="SourceField"/>
        </AttrNames>
      </attributeValues>
      <attributeValues IterBinding="SomeOtherIterator" id="DestinationField">
        <AttrNames>
          <Item Value="DestinationField"/>
        </AttrNames>
      </attributeValues>
    </bindings>What needs to happen in this simplified case is everytime a row is selected in the table, the value of the SourceField column (that also has an attribute value binding) should be copied to the DestinationField of some other iterator. Analogous to the setActionListener, but without a button. And in the real case, there are more columns of the selected row that need to be copied to more fields.
    How can this be done? I already created a custom selectionListener for the table in a backing bean. In this selectionListener, the first thing I do is call the default "#{bindings.EmployeesView1.collectionModel.makeCurrent}". Then I fetch the current row, which is also no problem. So I now have access to the value of SourceField in my selectionListener in the backing bean. The only thing that is left now is copying this value to the "#{bindings.DestinationField.inputValue}" in Java, and that's where I'm stuck. :-)
    Or even better ofcourse, is there a declarative way to do this without Java code?
    Help would be greatly appreciated!
    Chris

    Hi Chris,
    You should be able to use this utility method from JSFUtils class (part of FOD)
        public static void setExpressionValue(String expression, Object newValue) {
            FacesContext facesContext = getFacesContext();
            Application app = facesContext.getApplication();
            ExpressionFactory elFactory = app.getExpressionFactory();
            ELContext elContext = facesContext.getELContext();
            ValueExpression valueExp =
                elFactory.createValueExpression(elContext, expression,
                                                Object.class);
            //Check that the input newValue can be cast to the property type
            //expected by the managed bean.
            //If the managed Bean expects a primitive we rely on Auto-Unboxing
            Class bindClass = valueExp.getType(elContext);
            if (bindClass.isPrimitive() || bindClass.isInstance(newValue)) {
                valueExp.setValue(elContext, newValue);
        }edit... just realized you need this too
        public static FacesContext getFacesContext() {
            return FacesContext.getCurrentInstance();
        }John

  • How can we copy table from one schema to other schema

    Hi,
    I have create one table in one schema and i want to copy it to other schema.How we can copy table from one schema to other schema

    Hi,
    You can try something like this :-
    SQL> CONNECT SYS/SYS123@SERVER AS SYSDBA
    Connected.
    SQL> CREATE USER TEST_1 IDENTIFIED BY TEST_1;
    User created.
    SQL> CREATE USER TEST_2 IDENTIFIED BY TEST_2;
    User created.
    SQL> GRANT CONNECT,RESOURCE,DBA TO TEST_1;
    Grant succeeded.
    SQL> GRANT CONNECT,RESOURCE,DBA TO TEST_2;
    Grant succeeded.
    SQL> CONNECT TEST_1/TEST_1@SERVER
    Connected.
    SQL> CREATE TABLE TEST_COPY ( TEST_COL NUMBER );
    Table created.
    SQL> INSERT INTO TEST_COPY VALUES ( 1 );
    1 row created.
    SQL> INSERT INTO TEST_COPY VALUES ( 2 );
    1 row created.
    SQL> COMMIT;
    Commit complete.
    SQL> GRANT ALL ON TEST_COPY TO TEST_2;
    Grant succeeded.
    SQL>  CONNECT TEST_2/TEST_2@SERVER
    Connected.
    SQL> CREATE TABLE TEST_COPY AS SELECT * FROM TEST_1.TEST_COPY;
    Table created.
    SQL>  SELECT * FROM TEST_COPY;
      TEST_COL
             1
             2Regards,
    Sandeep

  • Saved Selections missing from Spreadsheet Add-in

    Hi,
    One of my end users is having a problem with the Oracle Spreadsheet Add-In that no-one else seems to be having and I'm at a loss for what to suggest to him.
    Yesterday he encountered some network related problem which left it impossible for the Spreadsheet Add-in to connect to the AW on the database. Everybody else that uses OLAP cubes was still able to connect without problems. When he entered the username and password and pressed connect the system hangs for a few seconds and then returns to the spreadsheet without invoking the wizard. Our desktop services team looked at the problem and couldn't resolve it so have re-installed the Spreadsheet Add-In. This has resolved his connection problems and he is able to build his own queries using the cubes.
    The problem that he is now finding is that the saved selection criteria that he had previously been using was no longer visible to him. I.e. when he is in the wizard building a query based on a cube, he selects, say, the time dimension, and rather than selecting from the members tab on the left-hand side of the screen, he moves to the Saved Selection tab. It is at this point that he would usually see a list of his previously saved selections - but he doesn't see any folders or selections.
    When I reproduce his steps on my computer I see a folder called Users and then another folder with the schema name and then underneath that there are a number of saved selections. I can select these without any problems.
    I'm not sure if this problem is related to permissions somewhere or if somehow the installation is incomplete.
    Has anyone encountered this before??
    LM

    The first step to resolving this issue is to check your Analytic Workspace is working. Within AWM can you right click on each dimension and select the option "View data" - make sure you can drill up and down on each dimension. Then repeat this process for each of your cubes. I suspect there is something wrong with either a dimension or cube. If you cannot see data within AWM then Excel will not with either.
    If the data viewer in AWM is working OK, then Excel should work as well.
    Keith Laker
    Oracle EMEA Consulting
    BI Blog: http://oraclebi.blogspot.com/
    DM Blog: http://oracledmt.blogspot.com/
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Samples: http://www.oracle.com/technology/products/bi/samples/

  • Saved selections

    Experts, I have created a default saved selection for page 1 which says table1.column1='ZZZ'. So, when a user navigates to this page1 this SS applies. But when user navigates to page2, I see the filter of 'zzz' being applied even there. I could have understood this if it would have been table1.column1 on page2 but it is table2.column2 and hence a filter of table2.column2='zzz' ia applied. Note the case of filter , it has converted from upper to lower.
    Thoughts?
    thx,
    parag

    Hi Parag,
    Looks weird, can you try changing the prompt scope to Page and try? Looks like a bug to me.
    Regards,
    Dpka

  • Copy more than one selected lists Item To anothers List(List Style is Tlist

    Hi
    Im working on developer 6i and i have two dynamic lists , i fill one of them With the Availabble database Users , so i want when i select
    one item from this list it goes to the other list
    how can i do that ?

    i populate the first list as follow
    Declare
    Stm Varchar2(700);
    Begin
              Stm :='SELECT SUBSTR(USERNAME,8,LENGTH(USERNAME)),SUBSTR(USERNAME,8,LENGTH(USERNAME)) FROM ALL_USERS ';
    Dynamic_list(stm ,'block.users_list');
    End ;
    and this is the function
    PROCEDURE Dynamic_List(Select_stm in varchar2,Itm varchar2) is
              rg_id      recordgroup;
              rg_name     varchar2(40) := 'LST_GRP';
              query_ok      number;
              cnt                    number;
    Begin
              rg_id     := find_group(rg_name);
              If not Id_Null(rg_id) then
              Delete_group(rg_id);
              End If;
    rg_id := create_group_from_query(rg_name,select_stm);
              query_ok := populate_group(rg_id);
              clear_List(itm);
              populate_List(itm,rg_id);
    Exception when others then
    Copy(sqlerrm,'FTR.ERR');
    END;

  • Express Spreadsheet Add-in Saved Selections

    Hi All,
    I am currently doing some development with Express 6.3.4 and the Spreadsheet Add-in with Excel.
    I was wondering if anyone new where the Saved Selections, created using the Express Wizard Selector are stored, so that I could refer to them programtically using the API.
    Regards,
    Imran Shah
    Ioppolo & Associates
    [email protected]

    The definitions of saved selections created within XSA are stored in the system project file (xpaddin.xpj which is just a binary file) of the user who created them. Saved selections created in this way are only accessible to the user that created them through XSA. This file is located in the XSA directory.

  • Saving Selection?

    I made a selection on my background layer. Had to leave for a while, so I closed and saved the file. Upon re-opening it, I don't see those marching ants. Has the tediuous work I've put in gone to waste? Can I get those ants back? If not, how do I keep this from happening nextime?
    Dave

    You can save selections by going to Select>Save Selection and can load the saved selections by going to Select>Load Selection.
    If you didn't save the selection or copy the selection contents to a new layer or layer mask then your selection is probably gone.
    http://help.adobe.com/en_US/photoshopelements/using/WS287f927bd30d4b1f2773521512e28aff242- 7fdb.html

Maybe you are looking for