How to activate all inactive objects for current user

Hi
How to activate all inactive objects for current user ...
... I have found a (long winded) way to do this:
- Environment / Inactive Objects
- Add to Worklist
- Display Worklist
- Select All
- Activate
this will open a dialog titled "Inactive Objects for <username>"
which has the exact functionality I need ... but I can't figure out how to get to this dialog directly - without so many intermediate steps
the SAP docs repeatedly mention the ability to activate the inactive worklist - but do not mention how
does anybody know the TCode for this dialog?
thanks
ps does the term "mass activation" apply to importing change requests rather than development activation?
Edited by: FireBean500 on Jun 4, 2010 11:07 PM

No other way. But usually it's far more simple as all objects are already in our own worklist.
I wonder why your objects are not already in your worklist, as everytime you create or maintain an object, it is added to your worklist.

Similar Messages

  • How to get all authorization objects for a certain authorization profile

    Hi ABAP experts,
    I have the following problem: for a certain authorization profile of a role (created with transaction PFCG) I would like to get all contained authorization objects: e.g. for the contained object PLOG I would like to know/read all corresponding parameter values.
    So:
    - where are these values stored (dictionary table)?
    - is there already a FM or a report to read all authoriation values for a certain authorization profile?
    Thanks in advance.
    Best regards,
    Oliver

    Hi,
    check the following it might useful for you:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a92195a9-0b01-0010-909c-f330ea4a585c
    if helpful reward points are appreciated

  • Activate all inactive objects at one go....

    Hi Abappers,
               IS there any way or transaction to actiavte al inactive objects at one go...
    Regards,
    mansi.

    hi mansi,
    just rigth click on the transaction name in se80,
    select activate.
    then entire trasaction get activated,
    regards,
    seshu.

  • Delete all inactive objects in a Transport Request

    Hi,
    I want to delete all the inactive objects in a transport Request . How can i do this ? I have many inactive objects in a request so i want to delete them first and then transport it . How can i do this . Please help..

    Hi,
      go to transaction se10 click on display individually enter teh request and click display and then you would get the list of all objects in that request so you can check which one are inactive and delete.
    Or you can also go to se80 in the repository browser you can choose inactive objects so it would show all inactive objects for a user from there also you can delete objects.
    Regards,
    Himanshu

  • How I activate, when in code view current code line, to be highlighted (all line) eg light-blue ?

    How I activate, when in code view current code line, to be
    highlighted (all line) eg light-blue ?

    Actually, in Windows (XP) the highlight color (in DW8) is a
    byproduct of the
    color scheme you set for your desktop.
    Walt
    "Michael" <[email protected]> wrote in message
    news:gn7fpk$hbp$[email protected]..
    > In code view, click the line number in the left margin
    corresponding to
    > the line of code you wish to highlight. Left click that
    number and the
    > whole line will be highlighted in blue.
    >
    > Michael
    >

  • How do I install and activate all my downloads for Adobe lightroom and cs6 design web premium

    how do I install and activate all my downloads for Adobe lightroom and cs6 design web premium?

    I do not provide step by step tutorials.  What aspect of installing are you having difficulty with?  Can you not locate the installations files?  Are you having an issue downloading?  Do you need to know where to find your serial number(s)?

  • TS3212 ITunes worked fine on my Windows 7 machine.  Had to rebuild the machine but all the data remains.  Downloaded a new version of iTunes and cannot figure out how to load all of my music currently on my hard drive.  Tried moving Library file.  Did not

    ITunes worked fine on my Windows 7 machine.  Had to rebuild the machine but all the data remains.  Downloaded a new version of iTunes and cannot figure out how to load all of my music currently on my hard drive.  Tried moving "iTunes Library" file.  Did not work.  Never had trouble like this before.

    Many thanks for your post. I've been trying for days to get this sorted and was getting well fed up with I-Tunes. Really thought i'd never get it working again. Tried un-installing it, loading older versions and they still wouldn't work.
    Came across your suggestion by chance and top man - it worked..!!!!
    How you even knew what to do is beyond me - but thanks so much. I really was pulling my hair out.
    You need to put your post over the Web as there seem to be loads of people having the same trouble.
    Thanks again.

  • How to recompile all invalid objects of APPS?

    Dear all:
    How to recompile all invalid objects of APPS? my environment is ORACLE 9.2.0.5 32bit.
    Regards
    Terry

    varun4dba wrote:
    hi Terry,
    did you tried adadmin?
    thanks.Do you mean:
    Compile/Reload Database Objects
    1. Compile APPS schema
    2. Compile menu information
    3. Recreate grants and synonyms for APPS schema
    4. Compile flexfield data in AOL tables
    5. Reload JAR files to database
    6. Return to Main Menu

  • How can I cache an object for unlimited time or for ever.

    Hi,
    How can I cache an object for ever or unlimited time. What values should be used to in cache-config.xml i.e.
    <expiry-delay system-property="tangosol.coherence.zerostage.expiry.delay">XXXms</expiry-delay>
    <flush-delay system-property="tangosol.coherence.zerostage.flush.delay">XXXms</flush-delay>
    thanks a lot in advance.

    Hi Suhas,
    If you look in the documentation http://download.oracle.com/docs/cd/E14526_01/coh.350/e14509/toc.htm and more specifically here http://download.oracle.com/docs/cd/E14526_01/coh.350/e14509/appcacheelements.htm#BABDHGHJ you will see the explination for the two configuration items you mention.
    The default expiry-delay is zero which means no expiry - that is the data will stay in the cache forever (or until you do a remove). If expiry is zero then flush-delay has a default of zero is used and automatic flushes are disabled.
    JK

  • Inactivity timeout for TestStand user credentials

    Hello all,
    I'm curious if anyone has done any work on inactivity timeouts for TestStand user credentials; I am looking for some solution that will allow windows to lock, but if i have a test running and I walk away, my credentials will lock after the test has finished.  Anyone have any ideas on where I can start some research into this?
    -Bill
    John 3:16

    Hi Bill,
    In order to programmatically log out of TestStand, you first have to programmatically shut down the TestStand Engine. To execute the FrontEnd Callback to log out of TestStand, you will have to create a Property Object to pass to the LoginLogout Callback.
    Locals.PropObj = RunState.Engine.NewPropertyObject(PropValType_Container,False,"",0),
    Locals.PropObj.AsPropertyObject.SetValBoolean ("logoutOnly", PropOption_InsertIfMissing, True),
    Locals.PropObj.AsPropertyObject.SetValBoolean ("isInitialLogin", PropOption_InsertIfMissing, False),
    RunState.Engine.CallFrontEndCallbackEx("LoginLogout",Locals.PropObj.AsPropertyObject,ConflictHandler_Prompt,0)
    You will also have to develop a code module to poll for UI messages after calling the first Shutdown sequence.
    Are you intending to run a test, walk away, and come back hours later to a completed test and TestStand idle? Or are you wanting to abort an abandoned test and reset to the initial login screen? This is going to be a fairly complex implementation, so I'm trying to make sure of your intentions.
    Regards,
    Alexandra
    National Instruments
    Applications Engineer

  • I want to copy all the objects from one user to another... Please help

    Hii Experts.... I have a problem here. Please give me solution for this...
    I am using Oracle 11g on my windows XP system.
    I created a new user named "some"
    I want to copy all the objects from scott user to some user... Please help me
    Please Explain me in detailed way
    Thank you

    SowmyRaj wrote:
    Hii Experts.... I have a problem here. Please give me solution for this...
    I am using Oracle 11g on my windows XP system.
    I created a new user named "some"
    I want to copy all the objects from scott user to some user... Please help me
    If all what you are interested is Scott schema than no need to use the datapump or CTAS. Run demobld.sql in your schema and it would have all the objects of Scott.
    http://www.oracle.com/technology/sample_code/tech/sql_plus/htdocs/demobld.html
    HTH
    Aman....

  • How to see the group membership for a user in oidadmin

    how to see the group membership for a user in oidadmin?
    I see the memberships in oiddas, but I would like to know if its possible to see them in oidadmin? Thanks.

    Hi,
    For what I understand, you know the user and want to know the groups that the user is member of (am i wrong?)...
    With this query you pass the user's DN to the ldapsearch and the search gives you back the list of groups the member is a member of, all you need to do is change the value "uniquemember=cn=orcladmin" in the query for your own user.
    For example:
    $ORACLE_HOME/bin/ldapsearch -h localhost -p 389 -D "cn=orcladmin" -w oracle10g -b "dc=acme,dc=com,dc=au" -s sub "uniquemember=cn=orcladmin" dn
    will give you the list of groups that the user "cn=orcladmin" is a member of.
    $ORACLE_HOME/bin/ldapsearch -h localhost -p 389 -D "cn=orcladmin" -w oracle10g -b "dc=acme,dc=com,dc=au" -s sub "uniquemember=cn=smithj,cn=Users,dc=acme,dc=com,dc=au" dn
    will grive you all the groups that the user smithj is a member of.
    if you don't want to get the DN of the group you can change the last parameter of the query like this
    $ORACLE_HOME/bin/ldapsearch -h localhost -p 389 -D "cn=orcladmin" -w oracle10g -b "dc=acme,dc=com,dc=au" -s sub "uniquemember=cn=smithj,cn=Users,dc=acme,dc=com,dc=au" cn
    will give you the CN of the groups the user is member of.
    let me know if this is what you need.
    Regards,
    Juan

  • IWDClientUser Object for Other  User not the Logged In one

    Hi
    I am using Uploading a file to KM using Webdynpro,
    But i don't have permissions for all the users to create file in KM
    Now,
    in the program irrespective of the logged in user, i want to get
    IResourceContext object for different user who have the permissions.
    so that i can create a file in KM.
    I am using the code.
    IWDClientUser wdClientUser = WDClientUser.getClientUser("J2EE_ADMIN");
    com.sap.security.api.IUser sapUser = wdClientUser.getSAPUser();
    com.sapportals.portal.security.usermanagement.IUser ep5User = WPUMFactory.getUserFactory().getEP5User(sapUser);
    IResourceContext resourceContext = new ResourceContext(ep5User);
    the first statement is fetching IWDClientUser Object as the logged in user but not the J2EE_ADMIN.
    Need Help!!.
    Regards
    Abhimanyu L
    Message was edited by:
            Abhimanyu Lagishetti

    Solved
    There are service Users in portal i have used cmadmin_service user instead j2ee_admin and it works.
    Regards
    Abhimanyu L

  • How to let add external apps for simple users?

    How to let add external apps for simple users? Simple users don't have login server administer rights, so how can they add external apps for their use?

    ...Edit External applications portlet sais:
    Error: An unexpected error occurred: User-Defined Exception (WWC-43000)
    :(((

  • How to find weblogic Server memory for particular user

    In a weblogic server how can i get the information for each user approximately
    it occupying "x" size of memory...is there any command..so that based on number
    of users i can increse my memory and harddisk space.

    Hi,
    Following sql will help you find the responsibilities associated with the users in oracle applications.
    SELECT frt.RESPONSIBILITY_NAME, furg.end_date
    FROM
    fnd_user_resp_groups furg,
    FND_RESPONSIBILITY fr,
    fnd_responsibility_tl frt,
    fnd_user fu
    WHERE fu.user_name = ‘&&username’
    AND fu.user_id = furg.user_id
    AND furg.responsibility_id = fr.RESPONSIBILITY_ID
    AND frt.responsibility_id = fr.RESPONSIBILITY_ID
    ORDER BY 1
    Cheers...

Maybe you are looking for

  • IPhone no longer syncs with iTunes after Leopard upgrade - HELP!

    Not sure if this is the exact forum, but I just upgraded to Leopard and did all the proper software updates and now when I connect my iPhone 3G - iPhoto launches to load the pics like my camera normally does, but when I open iTunes my device does not

  • Query Degradation--Hash Join Degraded

    Hi All, I found one query degradation issue.I am on 10.2.0.3.0 (Sun OS) with optimizer_mode=ALL_ROWS. This is a dataware house db. All 3 tables involved are parition tables (with daily partitions).Partitions are created in advance and ELT jobs loads

  • Cannot capture Hi8 run through digitizer

    Bought FCE2 installed with Mac g5 a few years ago only to capture and copy to DVD old video - Hi8 and DV. It virtually never worked. Dozens of hours trying every conceivable combo of settings. When I hit NOW, it either 1] gave "General Error," froze,

  • Dell 2408WFP w/ Mac Pro?

    Does anyone know if the screen rotate feature on the Dell 2408WFP works with the ATI Radeon HD 2600 card installed in an early 2008 Mac Pro Quad-Core? Also, overall is this a pretty good monitor? I'm looking to upgrade my 20" ACD. Thanks!

  • Document Handling in Forms

    I have a requirement to be able to attach and view documents(pdf, word, excel, powerpoint) from within a forms 9i app using 10g database. I'm looking for some direction on how this is best done. Any tutorials/white papers out there that can help? I'm