Is it Possible to get the User./developer activity report in BW system

Hi,
  Is it possible to have a trace of the development user activity in BW. I would like to know what perticular object( info*  , ODS , Routines, Queryes, web template ETC) the user has viewed/changed or deleted?
  Is this at all possible? and is yes how?
   Thanks
Arunava

Hi,
here i am giving my requirement.
Please look in to this and let me know how to solve the problem.
1.     Check ordertype
      a.     If ordertype = REP1 set planned cost limit field to 450
      b.     If ordertype = MUT1 set planned cost limit field to 5000
2.     Check the planned costs for value category KostenTalis
       Check table PMCO for the order
          i.     PMCO-ACPOS = KostenTalis
         ii.     PMCO-WRTTP = 1
         iii.     PMCO-BELTP = 1
         iv.     PMCO-VORGA = KPPP
          v.     PMCO-WERT00 -> PMCO-WERT16, check if one of the fields  WRT00 till WRT16 is filled with a value
     a.     No, exit
     b.     Yes, go to 3
3.     Are the total costs for Talis > planned cost limit field euro?
     a.     No, do nothing and end this user-exit
     b.     Yes, show the pop-up and place the total planned costs in the variable <costs>
and already i had given tr and user exit.i think its sufficient to solve the issue.
still u have any more doubts kindly let me know.
-Prasanth.M

Similar Messages

  • Is it possible to get the user logged on (at least for Windows and IE)

    Hi,
    Does anyone know if its possible to get the OS user through apex? Essentially I want to pre populate a text field with a user id. . .
    Darryl

    Ow, right, I was wrong then. Looked fine for me since my APEX user name is the same as my Windows log in name :(
    Maybe this (not so recent) document can help you:
    http://www.greenit.li/website/content/OracleApplicationExpressProofOfConceptNTLM.doc
    I never tried this myself, but it explains how you can configure Apache for NTLM authentication which allows you to return the authenticated user name to APEX. But this will probably only work with Internet Explorer.
    HTH
    Matthias Hoys
    Edited by: mhoys on Apr 20, 2009 10:19 AM

  • PowerShell Script Get the User's Active Directory Fully Qualified Login Name for Specific Locked Out Accounts

    I have a script which displays locked out accounts. It works great.
    I'd like to display the fully qualified Active Directory Login Name instead of the LastName, First Name:
    Example: Davis, Susan
    Want instead: Domain\Susan.Davis
    I'd also like to include an additional filter to look for only Domain\Susan.Davis OR Domain\Robin.Givens
    Here is my script:
    $objDomain = New-Object System.DirectoryServices.DirectoryEntry
    $objSearcher = New-Object System.DirectoryServices.DirectorySearcher
    $objSearcher.SearchRoot = $objDomain
    $objSearcher.PageSize = 1000
    $objSearcher.Filter = "(&(objectClass=User)(lockoutTime>=1))"
    $colProplist = "name","samaccountname"
    foreach ($i in $colPropList){$objSearcher.PropertiesToLoad.Add($i) | out-null}
    $colResults = $objSearcher.FindAll()
    foreach ($objResult in $colResults) {
    $domainname = $objDomain.name
    $samaccountname = $objResult.Properties.samaccountname
    $user = [ADSI]"WinNT://$domainname/$samaccountname"
    $ADS_UF_LOCKOUT = 0x00000010
    if(($user.UserFlags.Value -band $ADS_UF_LOCKOUT) -eq $ADS_UF_LOCKOUT) {
    $objResult.Properties.name
    John
    John

    Sorry, I should have mentioned that the cmdlets I'm using are part of the Active Directory module. You'll need to install the RSAT (Win7+) to use them.
    If you'd rather stick with your DirectorySearcher methods instead of moving to the AD module, you can adjust your output by using something like this instead:
    if(($user.UserFlags.Value -band $ADS_UF_LOCKOUT) -eq $ADS_UF_LOCKOUT) {
    "$domainname\$($objResult.Properties.samaccountname)"
    $domainname might not be what you're expecting, just FYI.
    As for filtering, you can add to the if statement and check for your known usernames only.
    Don't retire TechNet! -
    (Don't give up yet - 12,700+ strong and growing)

  • Reg:get the user's Last LogoutDate in UME

    Hi Guys,
              Please let me know, if possible to get the user's Last LogoutDate in UME Database or how to find the user's who have in online or offline in portal.
    Thnaks & Regards
    Vijaykumar.S

    Hi,
    I think the problem you will face here is that a user doesn't have to "logout" of the portal. They can just close the browser window, but that should at least end the session. I know in the portal you can see current sessions but I don't think this data is saved anywhere....
    This might help: http://help.sap.com/saphelp_nw04/helpdata/en/03/37dc4c25e4344db2935f0d502af295/frameset.htm
    Also this other post might help you: How to view Logged in User's sessions
    Hope this helps, I would be interested to know when you find a solution.
    BRgds,
    Simon
    Edited by: Simon Kemp on Feb 14, 2010 4:30 PM

  • I recently lost my iphone 4 and have an iphone3 on loan until I get upgrade in Aug.  I want to sync my data - contacts most important  - from my itunes account...is this possible?  Is it possible to change the user ID on the borrowed phone to my ID?

    I recently lost my iphone 4 and have an iphone3 on loan until I get upgrade in Aug.  I want to sync my data - contacts most important  - from my itunes account...is this possible?  Is it possible to change the user ID on the borrowed phone to my ID?

    There are no contacts in itunes.
    Your contact should be on your computer in whatever program you have selected to sync.  Just sync them to the new one.
    Click Support at the top of this page, then click manuals
    Changing the itunes account on nthe iphone is covered there as is restoring the iphone as new or from backup.

  • Is it possible to get the active directory user name of the person

    Is it possible to get the active directory user name of the person who is logged onto a windows computer, when they are using your coldfusion site, the same way asp pages can do that?

    SECOND TRY TO POST THIS REPLY
    You have to turn on "Windows Integrated Security" and turn off anonymous login in the IIS web server, once that condition is met the cgi.AUTH_USER variable will be popluated with the domain/username of the user logged into the cient computer.
    If the user is using a windows browser on a windows client computer this will be done silently in the background.  Otherwise they will normally be presented with a login dialog box by the browser.

  • Is it possible to get the URL from which user came to Apex Application?

    Hi,
    I have 1 web site which is created by Apex. And I have to create similar sites with slight differences. For example, even though the contents are almost same, each telephone # have to be modified.
    So, if possible, I want to use only 1 web site and depending on the URL from which user came, change some information on the page. Is it possible?
    And if it is possible, what if the user set Apex URL as favorite and visit it after some days?

    Thank you Scott,
    This is the one.
    But I have another issue.
    If a user comes to our page from their link directly, I can identify where he come from. But if he added our site to Bookmark and comes to our site through the link, is it possible to identify his original route?
    If it is impossible, I will create other Apex Application and put each URL to the link in order to catch where the user is from.

  • Sychronisation AD - OID: Is it possible to read the user password from AD?

    Hi.
    We are using the Oracle Internet Directory shipped with the Oracle 9i Database Rel. 2 (9.2.0.1).
    I try to synchronise the user accounts from AD to OID using JAVA JNDI. I'm able to read all necessary user information except the user password (MD5 value). Even if I connect to the AD using SSL, it's not possible to read the attribute userPassword.
    Is anybody out there who got this work or knows a way (may also be by the use of another programming language or tool) to get the user password out of AD? Is this possible? How does the Oracle Integration Agents accomplish this?
    Thanks in advance.
    Hermann S.

    Hermann,
    I am working with this as well, though from AS10g, not RDBMS. According to the OID Administrator Guide chapter 43, page 43-52:
    <snip>
    Synchronizing passwords from Microsoft Active Directory to Oracle Internet Directory is not possible in the Oracle Application Server 10g release because passwords in Microsoft Active Directory are not accessible by LDAP clients. However, if a deployment requires passwords to be available in Oracle Internet Directory, then the following two methods are recommended:
    Build a custom plug-in for Microsoft Active Directory that captures a password change and synchronizes it with Oracle Internet Directory
    Manage Active Directory passwords from the Oracle environment. This enables passwords to be available in both Oracle Internet Directory and Microsoft Active Directory because the Active Directory connector can synchronize passwords from Oracle Internet Directory to Microsoft Active Directory.
    </snip>
    As10g can however look up the password in AD using the "Active Directory External Authentication Plug-In". This is documented in the same chapter.
    Hope this helps,
    Jens

  • Using JCom for getting the user name

    I am using jcom610-win.exe and weblogic610sp2_win.exe .I need to use the Jcom for getting the user name of the NT Iser Logged in.I have got the process for this on the page at http://e-docs.bea.com/wls/docs61/jcomreference/Security.html .But this page uses a method isCallerAuthenticated() from a class file called jcom .I looked into the whole bea directory but there was no class like in the server dir.Can you tell where to get this class from.And if this has not been provided into the jar files that come along with the installable then why is it mentioned in the page @ http://e-docs.bea.com/wls/docs61/jcomreference/Security.html

    Hi.
    You might have better luck posting this in teh jcom newsgroup.
    Regards,
    Michael
    Manoj Gupta wrote:
    I am using jcom610-win.exe and weblogic610sp2_win.exe .I need to use the Jcom for getting the user name of the NT Iser Logged in.I have got the process for this on the page at http://e-docs.bea.com/wls/docs61/jcomreference/Security.html .But this page uses a method isCallerAuthenticated() from a class file called jcom .I looked into the whole bea directory but there was no class like in the server dir.Can you tell where to get this class from.And if this has not been provided into the jar files that come along with the installable then why is it mentioned in the page @ http://e-docs.bea.com/wls/docs61/jcomreference/Security.html
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Get the user group in a JSP portlet

    Hi,
    I'm developping a JSP portlet and i'd like to know how to get the group of the user ?
    (the JSP will display URL links only if a user belongs to a specific group).
    I've seen the objet ProviderUser but it doesn't have methods wich give the user groups...
    Can you help me,
    Thank you
    Franck

    ProviderUser or any other Java API for that matter in PDK cannot
    give user's group information. One way to get the User group is
    to make to make use of Portal's PL/SQL Security API Packages,
    through JDBC calls.
    Example PL/SQL Code:
    l_boolean boolean;
    l_boolean := wwsec_api.is_user_in_group
    p_person_id => wwsec_api.id ('USER1'),
    p_group_id => wwsec_api.group_id ('GROUP1')
    Note : Replace USER1, GROUP1 with your own values.
    -aMJAD

  • Is it possible to get the value of variable through answers page ?

    Hi all,
    I had Dynamic variable ETLRundate . I want use this variable in Answers page to see the out put ?
    Is it possible to get the value of variable through answers page ?if so how I can use ?

    Hi
    Use the link below and download the documentation
    http://www.oracle.com/technology/documentation/bi_ee.html
    I think you will find what you are looking for in the Answers, Delivers, and Interactive Dashboards User Guide, but in short the syntax to display a variable value is as follows:
    As shown above the syntax for using a presentation variable is:
    @{variablename}{defaultvalue}
    For Session variables use:
    @{biServer.variables['NQ_SESSION.variablename']}
    For repository variables use:
    @{biServer.variables['variablename']}
    Rgds
    Ed

  • Adaptive Tag to get the user ID

    Hi,
    I was expecting that getting the logged user's id will be possible through an adaptive tag.
    But this doesn'nt work for me.
    <span xmlnamespace:pt="http://www.plumtree.com/xmlschemas/ptui/">
    <pt:core.debugmode pt:mode="true"/>
    user id = <pt:userInfo pt:name="User Id" />
    </span>
    Any ideas?

    You don't have to use edk to get this variable. It's generated dynamically by alui on every page. Browse the source code of any alui page and you will find it (as well as some more variables, for example to get the user locale). It looks more or less like that:
    <script type="text/javascript">
    // Define PTPortalContext for CSAPI
    PTPortalContext = new Object();
    PTPortalContext.GET_SESSION_PREFS_URL = .............
    PTPortalContext.SET_SESSION_PREFS_URL = .............
    PTPortalContext.USER_LOCALE = 'en-us';
    PTPortalContext.USER_LOGIN_NAME = 'guest';

  • How to get The users from a Collaborator that is type Group.

    Hello, I'm trying to get the users (and their emails) of a collaborator inside a Master Agreement that is type group.
    I've tried the following methods:
    1- Using a IBeanHomeLocator to get the GroupIBeanHomeIfc (with the static variable of sHOME_NAME) and then trying to get the Group with the DocumentId that the colaborator's method (getDocumentId()) returns and the GroupIBeanHome method findGroup().
    The result was null
    2 - Using exactly the same method as before, but instead of using the DocumentId, I did a query, in order to get the field USER_GROUP_OBJECT_ID,  to get the Id of the group.
    The result is still null.
    I'm not sure if there is a direct way to get it, or if i'm misusing the GroupIBeanHomeIfc.
    Thanks in advance!

    Hi Oscar,
    In the document collaborator class there is a method getCollaboratorType() which returns CollaboratorTypeEnumType and there are certain values assigned to them.
    user - A user collaborator
    group - A group collaborator
    contact - A user contact
    So, hashcode of 2 returns the group.
    Please have a look in to the below code.
    collaborators = doc.getCollaborators();
         if(collaborators.size() > 0)
            collabIter = collaborators.iterator();
              while (collabIter.hasNext())
                 member = collabIter.next();
                 collabType= member.getCollaboratorType();
                 hashValue= collabType.hashCode();
                    if(hashValue==2)
                              collabName= member.getDisplayName();
                              throw new ApplicationException("collabName:" +collabName);
    In the above code collabName returns the name of the group, with this you can search for the specified group using IbeanHomeLocator for group and then you can get the members in it and their mail Id's
    Hope it helps you and let me know if you need any assistance.
    Thanks,
    Raj.

  • I've recently been given a macbook pro from uni, with lots of adobe software on. I want to pair it with my iMac which has music etc and is it possible to get the software to the imac and the files to the macbook?Giving me the best of both :-)

    I've recently been given a macbook pro from uni, with lots of adobe software on. I want to pair it with my iMac which has music etc and is it possible to get the software to the imac and the files to the macbook?Giving me the best of both :-)

    You would need the original installation disks or files for the Adobe software to get it onto your iMac, and having it on two computers may not be allowed by your university's licensing. Talk to whoever issued the MacBook.
    As to the music, just copy it over to the MacBook, either via Home Sharing, file sharing, or an external storage medium (hard drive, USB flash drive, etc.).
    Regards.

  • Is that possible to display the user selection data in the printable page?

    Hi All,
    I'm going to add a printablepage button on my page.
    Here comes a questions.
    Is that possible to display the user selection data in the printable page?
    For example,
    I have a table in the page,with 10 records.User select 5 of them.Can I display these 5 records in the printable page?
    Please help.

    Hi Yannick,
    Thanks a lot for the information. It worked.
    The portlet data can be accessible using bindings, but parameter name can be different.
    Meanwhile I have got one more scenario, where the Portlet and Task Flow placed in different pages of WCP Application. On change of data in the Portlet the application should navigate to another page where the Task Flow placed and displays selected data.
    Basically I can not use any button for navigation. The navigation should happen once I do some action in Portlet.
    Is this possible? If yes can you please let me know the steps?
    Thanks in advance!
    Somnath
    Edited by: Somnath Basak on Dec 20, 2011 9:41 AM

Maybe you are looking for

  • IR Saved Report  - Download to CSV downloads Primary Report

    Hi there I'm using Apex 4.1, I login to my Apex application NOT using the developer interface (the developer buttons are not visable at the base of the page) as an end user would see. If I run an IR report and then create a filter on the Primary repo

  • More than one profile opens slows down machine

    Hi, I have a strange problem that has only started in the last month or so. Firstly - Mac Pro, 2008, ATY,RadeonX1900 512mb, 9mb Ram, 2 x 2TB HD, 1 x 1TB, 1 x 750, 2TB HD's are new and have fitted to improve speed as only have 10g free before and assu

  • PDF- Filename automated from labelscript (after data merge)

    Hello, first of all I'm quite new in javascripting... but some simular scripts I have found on the internet could provide a solution for my problem. What I've done is the following:  I've used Data Merge and created a 200-paged file with 1 label on e

  • Deploy creator application to oracel application server

    hi, how can I deploy an application created in creator to the oracle application server in order to include it as an oracle portlet i noracel portal thanks, IAS

  • How to take printout of PR, GR and GI documents

    Hi Freinds, Can I take the printout of PR/GR/GI documents???Print Output option is disabled for these documents unlike POand RFQ. Please advice how to take printout of these documents. Thanks & Regards Satya