How to move workbooks from one role to another role

Hi experts,
I need few inputs from your side. I have a few workbooks in different roles, i need to move all workbooks into singel role.
Let say role 1 has 3 workbooks and role 2 has 4 workbooks. Now i need to move the 7 workbooks in new role3. I have a role3.
after moving the workbooks into role3, i need to delete the workbooks in role 1 &2.
Can you please anybody give me the inputs. how to move the workbooks.
another thing is i dont have authorization for PFCG. It is only for developmetn system.
Thanks in adance.
surendra

Hi Surendra,
The "Save as" option is the best solution (I guess the only solution) for your requirements. Once you have moved the workbooks new role you can delete the old ones.
Bye
Dinesh

Similar Messages

  • How to move materials from one sloc to another sloc  materials are more tha

    Hi,
    Can any one help me on this issue How to move materials from one sloc to another sloc  materials are more than 1000
    and from existing sloc to new sloc which is Hum managened i need help onthis issue thanks

    hi
    use T-code: MB1B Transfer Posting
    Movement type:
    311 Transfer posting storage location to storage location in one step
    The quantity is transferred from unrestricted-use stock of the issuing storage location to unrestricted use in the receiving storage location.
    Possible special stock indicators: E, K, M, Q
    313 Stock transfer storage location to storage location in two steps - removal from storage
    The quantity is transferred from unrestricted-use stock of the issuing storage location to stock in transfer in the receiving storage location.
    Possible special stock indicators: None

  • How to move value from one tlist to another tlist in same form?

    how to move value from one tlist to another tlist in same form on button press?
    Same like in data block wizard when we select value from 1st list it will go to 2nd list and can be move back. Please help i am new to forms .
    Regards

    just call the following proc in your add & add all buttons. Reverse the code for REMOVEs
    this proc will move one item at a time from list_item1 to list_item2.
    PROCEDURE add_an_item
    IS
      v_list_count    NUMBER;
      v_item1_label  VARCHAR2(60);
    BEGIN
      IF :list_item1 IS NOT NULL THEN v_list_count := nvl(Get_List_Element_Count('list_item1'),0);
          IF v_list_count >= 1 THEN FOR i IN 1..v_list_count
          LOOP
             IF   :list_item1    = Get_List_Element_Value('list_item1', i)
             THEN
                  v_item1_label := Get_List_Element_label('list_item1', i);                 
                  Add_List_Element('list_item2',1,v_item_label,:list_item1);         
               Delete_List_Element('list_item1',i);
               Exit;
             END IF;
          END LOOP;
           END IF;
       END IF;
    END;
    *********************************************************************************this proc will move all items from list_item1 to list_item2.
    PROCEDURE add_all_items
    IS
      v_list_count NUMBER;
      v_item_label VARCHAR2(60);
      v_item_value VARCHAR2(60);
    BEGIN
    v_list_count := nvl(Get_List_Element_Count('list_item1'),0);
    IF    v_list_count = 1 AND Get_List_Element_Value('list_item1', 1) IS NULL THEN NULL;
    ELSIF v_list_count >= 1 THEN
           FOR i IN 1..v_list_count
           LOOP
            v_item_value  := Get_List_Element_Value('list_item1', i);
            v_item_label  := Get_List_Element_label('list_item1', i);       
            Add_List_Element('list_item2',i,v_item_label,v_item_value);
           END LOOP;
           clear_list('list_item1');
    END IF;
    END;I added [ code ] tags to make this easier to read.
    Message was edited by:
    Jan Carlin

  • How to move iTunes from one user to another on the same Windows 7  computer

    How to move iTunes from one user to another on the same Windows 7 computer? Thanks, Bob

    Move the iTunes library to a shared area and then into the desired location. If this isn’t the default one, launch iTunes with the Shift key held down and choose that library.
    (122379)

  • How to move cursor from one textfield to another textfield byusing enterkey

    hii all,
    I have a problem in java script.
    To move cursor from one textbox to another text box ,I have take the length of the textboxes of the first column.I used onkeyDown event .
    in the function ,firest i checked the condition like
    for(i=0;i<form1.box.length;i++) //box is the name of the textboxes
    if(event.keyCode==13)
    form1.box[i+1].focus();
    return false;
    by using this the cursor is moving from first text box to secon textbox and stops.
    if i use event.returnValue=false; instead of return false ,then the cursor automatically going to the laxt textbox of the column.
    my problem is how i can focus the cursor from one textbox to another textbox one after the other till the end.
    if any one has solution please help me.
    also if we can do in another way also,please help me.
    thanx.>

    try the following code :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <SCRIPT language="Javascript">
    function fnTest(str)     {     
              if(event.keyCode==13)          {
                   if(str == 4)     {
                        formHeader.box[0].focus();
                   else     {
                        formHeader.box[parseInt(str)+1].focus();
                   return false;
    </SCRIPT>
    <BODY>
    <FORM name="formHeader">
    <CENTER>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('0');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('1');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('2');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('3');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('4');">
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    ----------------------------------------------

  • How to move files from one folder to another folder in webdynpro java for sap portal

    Dear Experts,
    I wan to move files from one folder to another folder in SAP portal 7.3 programmatically in webdynpro java.
    My requirement is in my portal 1000 transport packages is their. Now i want to move 1 to 200 TP's into Archive folder.
    Can you please help me how to do in through portal or wd java ...
    Regards
    Chakri

    Hello,
    Do you know what the difference between copying a file this way :
    ** Fast & simple file copy. */
    public static void copy(File source, File dest) throws IOException {
    FileChannel in = null, out = null;
    try {         
    in = new FileInputStream(source).getChannel();
    out = new FileOutputStream(dest).getChannel();
    long size = in.size();
    MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
    out.write(buf);
    } finally {
    if (in != null) in.close();
    if (out != null) out.close();
    ================SECOND WAY============
    AND THIS WAY:
    // Move file (src) to File/directory dest.
    public static synchronized void move(File src, File dest) throws FileNotFoundException, IOException {
    copy(src, dest);
    src.delete();
    // Copy file (src) to File/directory dest.
    public static synchronized void copy(File src, File dest) throws IOException {
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dest);
    // Transfer bytes from in to out
    byte[] buf = new byte[1024];
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    out.close();
    And which is better? I read up on what each kind of does but still a bit unclear as to when it is good to use which.
    Thanks in advance,
    JavaGirl

  • How to move tabs from one screen to another?

    Just started to group tabs. How can I move tabs from one screen to another to consolidate them into the groups?

    See <b>Tab Groups</b> (new in Fx4) (Panorama) [http://support.mozilla.com/en-US/kb/what-are-tab-groups What are Tab Groups] (video included)
    From one Window to another Window, by drag & drop
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • How to move BLOBs from one table to another ??

    Hi All,
    I am trying to move blobs from one table to another, however my insert statement is not working. What i mean is its running, but records are not being inserted into the table.
    This is my first time moving blobs, so please bear with me.
    here is my insert statement:
    INSERT INTO CASES.FILESTORAGE
    SELECT      DID,
              DRENDITIONID,
              DLASTMODIFIED,
              DFILESIZE,
              DISDELETED,
              BFILEDATA       // this attribute is the BLOB
    FROM      USSC_CASES_TMP.FILESTORAGE
    WHERE      DID NOT IN (SELECT DID FROM CASES.FILESTORAGE);here is the DDL for the table.
    CREATE TABLE "USSC_CASES_TMP"."FILESTORAGE"
        "DID"          NUMBER(*,0) NOT NULL ,
        "DRENDITIONID" VARCHAR2(30 CHAR) NOT NULL ,
        "DLASTMODIFIED" TIMESTAMP (6),
        "DFILESIZE"  NUMBER(*,0),
        "DISDELETED" VARCHAR2(1 CHAR),
        "BFILEDATA" BLOB,
        CONSTRAINT "PK_FILESTORAGE" PRIMARY KEY ("DID", "DRENDITIONID")
      );CASES.FILESTORAGE table has the same DDL, but in a different schema.
    Thanks in advance.

    If this seems rather straight forward. If the schema are exact simply execute:
    inset into [destination] select * from [source] ;if something is amiss you should be throwing errors someplace* but try this:
    create table [scratch table name] as select * from [source table] where [place some limit here] ;If this does not work then something someplace is very wrong and if you are not the DBA you need to get this persons attention, fairly quickly. I would do the above from sqlplus and then after each statement would:
    commit;then check to see if it succeeded.

  • How to move object from one cont. to another

    Hi I am not able to move object from one container to another container in work order driver. while when i am same line of code in JMS driver its working fine and also log genarated for the same. but in work ordre driver it is not working. here is my code which i m using for the same.ple help me out
    <do-move-src-object class-name="ValeUser">
    <arg-dn>
    <token-local-variable name="var-str-nwoContent"/>
    </arg-dn>
    <arg-dn>
    <token-text xml:space="preserve">\</token-text>
    <token-global-variable name="dirxml.auto.treename"/>
    <token-text xml:space="preserve">\</token-text>
    <token-global-variable name="hrfeed.inactive.container"/>
    </arg-dn>
    </do-move-src-object>
    thanks
    Adarsh Kumar

    Idmlearner,
    sorry, but you are still posting in the wrong forum. You should ask
    these questions in the Identity Manager forum
    Shaun Pond

  • How to move files from  one  system  to another in plsql

    Hi all,
    I want to move file from one system to another using plsql procedure .
    Kindly let me know what package i have to use for doing this .
    Thanks,
    P Prakash
    Edited by: prakash on Jul 27, 2011 2:20 AM
    Edited by: prakash on Jul 27, 2011 2:59 AM

    BluShadow wrote:
    That's ok if you want to diet. ;)Ooh look, the strange punctuation is back. Can it be true that the forum software has caught up with the '80s?
    I almost feel like connecting to the internet using a 9600 baud modem to celebrate.
    http://upload.wikimedia.org/wikipedia/commons/5/5d/TeleGuide-terminal.jpg
    Colon dash right bracket.
    (Old habits die hard)

  • How to move contacts from one account to another

    I have 2 exchange accounts configured in my iPhone, one Corp exchange account and one personal exchange account, both have Contacts sync enabled.
    I noticed somehow all of new created Contacts are under Corp account, these Contacts do not show up on my iPad / Mac which only have personal account.
    How can I move the selected Contacts from Corp account to personal account?
    How can I choose which account to use when I create a new Contact?
    Thanks

    I can answer your second question but I share your problem related to the first question.
    In answer to your second question:
    To make sure that new contacts go into the desired account:
    1.     Go to Settings
    2.     Select "Mail, Contacts, Calendars"
    3.     Scroll down to "Contacts"
    4.     Select the last item in the group, "Default Account"
    5.     A list of the accounts on your iPad will appear.  Select the account that you want to use for your new contacts.
    If you solve the problem of moving existing contacts from one account to another, I'd love to hear about it.

  • How to move form from one account to another

    I have bought a second account for another user so that his responses would be confidential.  How do I copy existing forms from one account to another.  Do not want to have to recreate them.  Thanks for your help..

    Hi,
    In order to move a form to different account, you can export the design file:- Open the document- Design- Export Design File
    Regards,
    Nakul

  • How to move folders from one server to another serve using unix command

    Hi All,
    How to move the folders from one server to another server using unix command.
    scp -r armops@sjarmprd01:/ARM/scripts [email protected]:/ARM/scripts/
    but it is giving an error like not a regular file .. what it means .. please let me know if any one knows about it
    Thanks
    Sreedhar

    not a regular file .. what it meansProbably you have some fifo (named pipe) files...
    Said that this has nothing to do with database (you should post on some nix forum, for example http://forums.oracle.com/forums/forum.jspa?forumID=135), you may try rsync* command (man rsync).

  • How to move settings from one computer to another?

    i'm going to be getting a new laptop -- how do i move all of my settings, bookmarks, etc. from one computer to another.
    i've checked the help section - it talks about a profile -- i'm not sure i have that? can someone help -- 1 - set up a profilem and 2 - how to transfer it from one to the other --
    thanks so much for your help

    Yes - Firefox has a "profile". See these KB articles.
    https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data
    https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles

  • How to move photos from one library to another?

    Hi,
    I currently have 2 libraries and I want to move photos from one library into the other.
    How do I have to proceed?
    Thx
    A

    We're thinking of adding a library copy feature soon.  Hoping you can share some info here to help us understand how this might best work fo you.   Here's a few questions I have:
    - What do you use the 2 libraries for?
      - Why do you want to copy?
      - Do you have albums, favorites, and comments associated with the photos?  Do you want them copied?
    Anything else that you are hoping to accomplish here?
    Thanks in advance,
    Peter

  • How to move entry from one container to another

    Hi!
    We are using DBMS_LDAP package to attempt to move an entry from an LDAP container to another container. We have tried modrdn2_s (takes a session, the old dn, the new dn, and a PLS_INTEGER indicating whether or not to delete the old entry; or at least this is our interpretation of what the function does).
    Attempting to move an entry with this function gives the following error(s):
    ORA-31202:DBMS_LDAP:LDAP client/server error: Constraint violation.
    00002081:AtrErr: DSID--031D0809, #1:
    0: 00002081: DSID-031D0809, problem 1005 (CONSTRAINT_ATT_TYPE), data 0,
    Att d(description)
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_LDAP", line 1455
    ORA-06512: at "SYS.DBMS_LDAP", line 929
    ORA-06512: at "OURSCHEMA.OURPKG", line 606
    ORA-06512: at "OURSCHEMA.OURPKG", line 88
    ORA-06512: at line 45
    I can't look at the SYS.DBMS_LDAP code since that is encrypted.
    I am currently researching ORA-31202 and talking with my LDAP/AD administrator. However I'm still wondering if this is the function that I should use for this. Does anyone know of any examples for what I'm attempting to do?
    Marc

    I spoke to my Active Directory administrator, and he suggested that I try to pass a new DN as an attribute in the modifications array passed to the DBMS_LDAP.modify_s function:
    --- Start of Code Sample ---
    -- create the modifications array
    v_mod_array := DBMS_LDAP.create_mod_array(n);
    -- set other attributes here
    -- set the new distinguished name here
    vl_mod_values(i) := v_new_dn;
    DBMS_LDAP.populate_mod_array(l_mod_array, DBMS_LDAP.MOD_ADD, 'distinguishedName', l_mod_values);
    -- then call the modify function (the modifications array has all the other attributes plus the new dn)
    DBMS_LDAP.modify_s(session, dn, v_mod_array);
    --- End of Code Sample ---
    The above fails too with an ORA-31202 error (which my AD administrator has not solved yet). Still my question is if my approach to moving my entry from one container to another is correct, or if I should be trying some other method. BTW, the directory structure looks like this:
    +<Domain>
    +--<DC=myorg,DC=test>
    ----+--<OU=Team>
    --------+--<OU=Headquarters>
    --------+--<OU=Terminated>
    etc, etc.
    I want to move the entry from the OU=Headquarters container to the OU=Terminated container.
    Any help is dearly welcomed!
    Marc

Maybe you are looking for

  • A possible cause for the Lion freezes: Spotlight indexing

    Does your Mac freeze mysteriously after upgrading to Lion? Mine had that problem, but after troubleshooting, I seem to have identified the culprit (at least for my MacBook) and, after deleting the offending file, I have since experienced no problem. 

  • Smartform to PDF conversion

    Hi Experts , I am sending an e-mail aith a PDF attachment , the attachment contains a greeting card (BIT MAP file), When i find the mail , PDF is opening with error 'Drawing Error Occured'. Pls find the sample code ...           CALL FUNCTION V_FORM_

  • Integrating barcode asset management and LR

    I have discovered to my delight that you can integrate Lightroom and barcode based print asset management. This is a way to: automate the printing of labels for images without any rekeying of information, and automate the process of finding the image

  • Experiencing complete freezes with my iMac even after clean install

    Hi, I've got a problem that I thought was something that only Windows was supposed to have and Apple actually used to advertise that Macs didn't have it. Complete freezes of the whole system. My iMac 21.5" (mid 2011), now with OS X 10.8.2, sometimes

  • Java 3D and fullscreen exclusive mode

    Hello all. I have the following problem: if I try to set fullscreen exclusive mode by calling device.setFullScreenWindow(window); then Java renders nothing. If I remove this line of code, everything works perfectly. Any ideas? Thanks in advance!