Custom reprot to get transfer user information in OIA 11g

Hi ,
As per my requirement we have to developed custom report for "*List of users who transferred to a new Direct Manager*" . To identify the transfer event we are using event listner in OIA 11g. Could you please provide me pointer how to fetch the transfer event in the query or what is the best way to get the transfer user information.
Regards,
Amit

You're biggest problem is knowing which users get new managers.
2 Ways on looking at this
1 - Users associated to businessunits (different managers are associated to different businessunits)
2 - The users attribute 'manager' gets updated
Both situations don't withhold the information when associations or which attributes (and when) get updated other than the 'last updated' date gets updated.
Possible solution - Create a new table (with the exact schema as the original table but without the constraints), copy all the information over from the original table to the new table, do the imports/updated. Once the updates are complete run a custom report and compare the difference between the old and new data
If it's #1, you need to duplicate the rbacxservice.BU_globalusers table
If it's #2, you need to duplicate the globalusers table
Regards,
Daniel

Similar Messages

  • Custom Transaction Data getting Transfer from R/3 to APO only through CFM3

    Custom Transactional Data getting Transfer from R/3 to APO only through CFM3
    Requirement :Automatic updation of Custom Transactional Data R/3 to APO Auto Transfer like Normal PO Changes Reflection
         While working with Core Interface The Standard Transactional Data is getting updated to APO Directly for PO Qty Changes.
          But I have written code in the R/3 User Exit to Calculate the Open Target Quantity and Transfer the Values to APO through the Structure .
          It is Populating the values and updating in the ZTable of APO [User Exit] only when we activate and De-activate the Integration Model thru CFM3 Manually.
       Could you advise and provide the info for solution if you have come across the same scenario .
    Thanks in Advance.
    With Regards,
    Naveen Mutyapu.

    Hi All,
    I have not received answer from the forum, but solution is without CFM3 also we can able to send data from R/3 to APO whenever we change the PO with populating the necessary values  in the structure IT_OUTPUT_CUS..
    Regards,
    M N Kumar.
    Edited by: MNKumar on Sep 14, 2010 8:23 AM

  • How do I get the user information for a page?

    I would like to display information about the person that created a page in CQ.  I know I can get the createdBy information from the page properties, but how can I turn that into a user object where I can get more detialed information about that user?

    If you are within an OSGi bundle you can use the SlingRepository Service. Now it depends how you develop your OSGi services and components. I use the maven scr plugin for this. With this plugin it is possible to get references to services with java annotaions.
    Example:
    @Component(name="SampleService",
            label = "SampleService",
            description = "SampleService",
            immediate = true, enabled = true, metatype = true)
    @Services({ @Service(value = SampleService.class) })
    @Properties({
    @Property(name = "service.description", value = "SampleService"),
    @Property(name = "service.vendor", value = ") })
    public class SampleServiceImpl implements SampleService
    @Reference(policy = ReferencePolicy.STATIC)
    private SlingRepository repository;
        public void openAdminSession() {
            Session session = null;
            if (repository != null) {
                try {
                    session = repository.loginAdministrative(null);
                    //do something here
                } catch (RepositoryException e) {
                    LOG.error("Unable to open admin session:" + e.toString());
                } finally{
                                              if(session != null){
                          session.logout();
    To access a service from a JSP page you can use the reference of the SlingScriptHelper. You have to use the <cq:defineObjects/> tag.
    Example jsp:
    <cq:defineObjects/>
    SlingRepository repository = sling.getService(SlingRepository.class);
    Session session = null;
            if (repository != null) {
                try {
                    session = repository.loginAdministrative(null);
                    //do something here
                } catch (RepositoryException e) {
                    LOG.error("Unable to open admin session:" + e.toString());
                } finally{
                                              if(session != null){
                          session.logout();

  • Getting Logged on User'Information in an Oracle-Form SSO Partner Application

    Hi.
    I could run Flight-of Fancy Application and capture user's information by calling the
    "Parse_cookie " Procedure.(use the Scenario 2 - Access the Portal and then the FOF App)
    and defined an Oracle-Form application as Partner application like FOF.
    I want to have Logged on user'Information in the "Oracle-Form" . But the Fucntion owa_cookie.get dosen't work correctly.please let me know what can I do ?
    Thanks in advanced.

    Hi.
    I could run Flight-of Fancy Application and capture user's information by calling the
    "Parse_cookie " Procedure.(use the Scenario 2 - Access the Portal and then the FOF App)
    and defined an Oracle-Form application as Partner application like FOF.
    I want to have Logged on user'Information in the "Oracle-Form" . But the Fucntion owa_cookie.get dosen't work correctly.please let me know what can I do ?
    Thanks in advanced. If you're writing your own partner application, then you are correct to get the user information from the output variables
    from the parse_url_cookie procedure. You should then set the information you want to keep track of in the cookie, or combination
    of cookie and persistent storage in the database. Take care of the security implications while doing this.
    On subsequent calls to your application, the user info should be obtained from the cookie and the database, if you
    are using a combination of the cookie and database storage to keep your info.
    The owa_cookie.get routine is used to read the cookie, which is generated with owa_cookie.send.
    These routines work fine, when invoked correctly.
    If you are having trouble with them, you're probably not using the calls properly.
    The following code provides an example of how to use the owa_cookie calls...
    create or replace package testcookie
    is
        procedure show (p_name IN VARCHAR2);
        procedure send
            p_name    IN VARCHAR2,
            p_value   IN VARCHAR2,
            p_path    IN VARCHAR2 default null,
            p_expires IN VARCHAR2 default null
    end testcookie;
    show error package testcookie
    create or replace package body testcookie is
        procedure show (p_name IN VARCHAR2) is
            v_cookie owa_cookie.cookie;
        begin
            v_cookie := owa_cookie.get(upper(p_name));
            htp.htmlopen;
            htp.bodyopen;
            htp.print(v_cookie.vals(1));
            htp.bodyclose;
            htp.htmlclose;
        exception
            when others then
                htp.htmlopen;
                htp.bodyopen;
                htp.print('NO COOKIE FOUND.');
                htp.print(SQLERRM);
                htp.bodyclose;
                htp.htmlclose;
        end;
        procedure send
            p_name    IN VARCHAR2,
            p_value   IN VARCHAR2,
            p_path    IN VARCHAR2 default null,
            p_expires IN VARCHAR2 default null
        is
            v_cookie owa_cookie.cookie;
            l_agent varchar2(30);
            l_expires varchar2(30);
            l_path varchar2(100);
        begin
            if p_expires is null then
                l_expires := null;
            else
               l_expires := to_date(p_expires, 'MMDDYYYY');
            end if;
            if p_path = 'ALL' then
                l_path := '/';
            else
                l_path := null;
            end if;
            owa_util.mime_header('text/html', FALSE);
            l_agent := owa_util.get_owa_service_path;
            l_agent := substr(l_agent, 1, length(l_agent) - 1 ) ;
            owa_cookie.send(
                name    => upper(p_name),
                value   => p_value,
                expires => l_expires,
                path    => l_path
            owa_util.http_header_close;
            htp.htmlopen;
            htp.headopen;
            htp.headclose;
            htp.bodyopen;
            htp.print ('Cookie set.');
            htp.bodyclose;
            htp.htmlclose;
        end;
    end testcookie;
    show error package body testcookie;
    grant execute on testcookie to public;If you load this into a schema which a DAD can access, then you can invoke the show and send procedures to view and
    generate cookies.
    To generate a cookie, issue the following from your browser ...
    http://server.domain.com/pls/dad/schema.testcookies.send?p_name=test&p_value=hello
    To view the cookie:
    http://server.domain.com/pls/dad/schema.testcookies.show?p_name=test

  • How to get the user created at and modified at properties for a site collection using powershell

    Hi guys, I Know how to get the list of users of a site collection by Get-SPUser cmdlet but hte problem is that this cmdlet doesnt give me the user Created at and modifed at properties 
    can any one tell me how to get these values via powershell???? 
    ps: ignore the 2013 screenshot.. i just want a way to get those values .. if you provide me solution in either 2010 or 2013 , i will crack the other..
    plz guys help me ...

    Get the User Information list and then get the user from that list
    $web = Get-SPWeb "siteUrl"
    $userInfoList = $web.SiteUserInfoList
    $userItem = $userInfoList.Items[0]; #0 here is just for demonstration. You take the user you want here or loop through all users.
    $created = $userItem["Created"]
    $modified = $userItem["Modified"]

  • Transaction code to get the User Log details..

    Hi Friends,
    I need a transaction code or the process to get the User information for the past 40 days..
    I need a details such as, which user has logged in at what time and used what transactions in the past 40 days..
    Reagards,
    Navaneeth.

    Hi dear,
    USER LOGS CHECKS:
    1. ANALYSE APPLICATION LOGS
       TR: SLG1     (Do not select Read from Archive)
    2. READ SYSTEM LOGS
       SM21    (Selected problem and warning only)
    3. User Information Systems
       SUIM    (Select Last one Change Documents for Users)
               (Select then all Selection Criteria for changed Header Data)
    4. IF SUIM doesn't show then trun on Security Audit logs:
       SM19    (Selected All Audit Classes) & Create display profile name
    5. CHECK THE AUDIT LOGS:
       SM20    (Check the audit logs)
    6. SELECTION STATISTICAL RECORDS
       STAD    (selected all posible check and hit Enter)
    Regards
    Angeline

  • Fetching Google plus user information

    Hello All, 
    I am working on  google plus integration in windows phone rt development using WebAuthenticationBroker.
    I am successfully login but how i  will get the user information.
    Please suggest  me as soon as possible.
    Thanks & Regards Zakir Hussain

    Just like the
    MSDN Web Authentication Broker sample, you would need to issue a get to the respective google plus endpoint in order to get the user information.
    - First ensure that you have added the scope "https://www.googleapis.com/auth/profile" during sign-in.
    - Then issue the get to one of the endpoints after successful authentication:
    https://www.googleapis.com/plus/v1/people/me?access_token=xxx
    https://www.googleapis.com/plus/v1/people/me?access_token=xxx&alt=json
    - Sample code:
    //Request User info.
    HttpClient httpClient = new HttpClient();
    string response = await httpClient.GetStringAsync(new Uri("your_endpoint"));
    JsonObject value = JsonValue.Parse(response).GetObject();
    string googlePlusUserName = value.GetNamedString("name");
    Hope this helps?
    Abdulwahab Suleiman

  • Query to get user information

    4.2.1
    Hi There,
    I wanted to get the counts/information of users logged into a specific Apex application. Is that possible. I searched the forum and came across the object apex_workspace_apex_users. In this I don't see the application the users last logged into.
    I was looking for something like
    User                 Count       last_login
    [email protected]     150        21-May-2013
    [email protected]      10          22-May-2013
    .Thanks!

    ryansun wrote:
    4.2.1
    Hi There,
    I wanted to get the counts/information of users logged into a specific Apex application. Is that possible. I searched the forum and came across the object apex_workspace_apex_users. In this I don't see the application the users last logged into.
    I was looking for something like
    User                 Count       last_login
    [email protected]     150        21-May-2013
    [email protected]      10          22-May-2013
    This information is available through APEX views. See:
    <li>APEX views: Home > Application Builder > Application > Utilities > Application Express Views
    <li>Monitoring Activity Within a Workspace
    <li>Creating Custom Activity Reports Using APEX_ACTIVITY_LOG
    Note that the underlying logs are purged on a regular basis, so for the long term you need to copy the data to your own tables, as Martin suggests here.

  • Custom Email Alert Template Issue - Users not getting customized emails

    I have recently customized the XML alerts template (AlertTemplates.xml) for our site collection in SharePoint 2010 to exclude specific fields in the email when users who have subscribed to a list using the "Alert Me" feature.  I have renamed
    the custom alerts XML file and loaded the custom template in the following directory (%ProgramFiles%\Common Files\Microsoft Shared\Web server extensions\14\TEMPLATE\XML) and restarted IIS.  Once users subscribe to the alerts using the list using the "alert
    me" function they received the customized email as intended.  
    We needed to auto-subscribe users to the email alerts so what I did was used a powershell script to add users to the alert subscriptions using the script shown in below:
    Import-Csv D:\Temp\filename.csv | ForEach-Object{
    $webUrl=$_.WebUrl
    $listTitle=$_.List
    $alertTitle=$_.AlertTitle
    $subscribedUser=$_.SubscribedUser
    $alertType=$_.AlertType
    $deliveryChannel=$_.DeliveryChannel
    $eventType=$_.EventType
    $frequency=$_.Frequency
    $oldAlertID=$_.ID
    $web=Get-SPWeb $webUrl
    $testAlert = $web.Alerts | WHERE { $_.ID -eq $oldAlertID }
    IF ($testAlert) {
    $web.Alerts.Delete([GUID]$oldAlertID)
    Write-Host Old alert $oldAlertID deleted. -Foregroundcolor Cyan
    $list=$web.Lists.TryGetList($listTitle)
    $user = $web.EnsureUser($subscribedUser)
    $newAlert = $user.Alerts.Add()
    $newAlert.Title = $alertTitle
    $newAlert.AlertType=[Microsoft.SharePoint.SPAlertType]::$alertType
    $newAlert.List = $list
    $newAlert.DeliveryChannels = [Microsoft.SharePoint.SPAlertDeliveryChannels]::$deliveryChannel
    $newAlert.EventType = [Microsoft.SharePoint.SPEventType]::$eventType
    $newAlert.AlertFrequency = [Microsoft.SharePoint.SPAlertFrequency]::$frequency
    if($frequency -ne "Immediate"){
    $AlertTime=$_.AlertTime
    $newAlert.AlertTime=$AlertTime
    $newAlert.Update()
    Write-Host Created $newAlert.Title for $subscribedUser . -Foregroundcolor Cyan
    } ELSE {
    Write-Host Alert $alertTitle for $subscribedUser already done. Moving on. -Foregroundcolor Magenta
    When I ran the script and added the users and restarted the service, all users who were auto-subscribed via this method would get the email without the customizations that were done in the custom template.
     All users who manually subscribed to the list using the "Alert Me" function would get the customized email.  
    Does anyone know why users who manually subscribe would get the custom email alert and why users who were auto-subscribed using the powershell script do not get the custom email alert?

    Hi,
    To deploy custom alert template file, we would load changes into SharePoint and restart SharePoint 2010 Timer Service from Windows Service. If you create your own AlertTemplate in the custom_alerttemplates.xml, you will need to set the set the SPList.AlertTemplate
    property of the list. Then delete and re-subscribe to the alerts for the list.
    Please refer to:
    http://blog.zebsadiq.com/post/SharePoint-2010-custom-alert-template.aspx
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Unable to get User Information in infopath form hosted on sharepoint online(2013)

    Im trying to retrieve user information (department, Manager, Work E- Mail, Etc..) into an infopath form hosted in sharepoint online using "/_vti_bin/UserProfileService.asmx"
    web service. But it returns me an error when im opening the form as :
    An error occurred while
    trying to connect
    to a
    web service. Error ID 5566
    Any idea about how to get those  information into a form which hosted in Office365 environment?
    Thanks.

    I believe this is a known issue:http://support.microsoft.com/kb/2674193/en-us

  • How to get real time information about how many user are logged in and thei

    I use tomcat as my server platform in Ubuntu for a war file.
    I know in order to get real time information about how many user are logged in, we can count how many active sessions exist by a SessionCounter code. However, I have to permit HttpSessionListener in web.xml of tomcat. From other users' experiences, the configuration is complexed and has some errors.
    Here's the link:http://www.stardeveloper.com/article...1112001&page=1
    In order to get users' ip, in jsp, use request.getremotehost() or
    request.getremoteaddress() by editing the jsp file.
    I wonder if there's some open source software to use for these two purposes.
    Thank you!

    That url is missing a few bits. The ... in the middle doesn't help.
    we can count how many active sessions exist by a SessionCounter code.
    However, I have to permit HttpSessionListener in web.xml of tomcat.
    From other users' experiences, the configuration is complexed and has some errors.And have you tried it? The configuration isn't that complex.
    What errors do you mean? Errors in tracking people, variance in the count? Probably related to internet issues and nothing you can do will alleviate them.

  • How to get the ep user information data in the web dynpro?

    Hi all
      I want to create a web dynpro application on EP.I want to get the ep user information data in the web dynpro.How can I do?Thanks.

    Lin,
    Two steps to achieve this:-
    <b>Step 1:</b> Add the following code in your view Controller:-
    IWDClientUser user = WDClientUser.getCurrentUser();
    IUser objUser = user.getSAPUser();
    wdContext.currentContextElement().setXXXX(objUser.getUniqueName());
    wdContext.currentContextElement().setYYYY(objUser.getFirstName());
    wdContext.currentContextElement().setZZZZ(objUser.getLastName());
    where XXXX, YYYY , ZZZZ are the context names.
    getUniqueName : Gives Login id of Portal user.
    getFirstName : Gives First Name of the Portal user.
    getLastname : Gives Last Name of the Portal user.
    <b>Step 2 : </b>Use "Organize imports" and make sure that you have the following two libraries added in the build path of your project. You can do these by right clicking on your project name ==> Properties ==> Java Build Path ==> Libraries ==> Add External jars.
    The external jars are :
    <b>com.sap.security.api.jar
    com.sap.security.api.perm.jar</b>
    Finally rebuild your project and deploy.
    Regards,
    <b>Chintan Virani.</b>

  • Get user information in shared queue

    Hi all,
    The case is:
    - My queue shared to some user (say A, B abd C)
    - After some task assign to me I would like to send the email to all user shared my queue too (i.e. A, B and C)
    Would like to know if there are any way to find the user information (login id, UID etc....), so I can find there email address?
    Thanks in advance.
    Regards
    Bill

    Hi,
    I am trying to send the email when the task assign to the user who own the shared queue, but after I research the event object, it seem that it is not the same as the event we use in the event driven programming... so I just give up and send the email BEFORE assign the task.
    After I look at the system db tables again and again, I come up with the following SQL, which the result look like what I want, feel free to try at your environment:
    select e.email
      from tb_shared_users_2_shared_queues sq, tb_queue q, edcprincipalentity e, edcprincipaluserentity eu
    where q.workflow_principal_id = eu.refprincipalid
       and eu.uidstring = ? // user login id go here
       and q.workflow_principal_id <> sq.shared_queues_id // ignore queue owner
       and q.id = sq.shared_users_id
       and sq.shared_queues_id = e.id
    I am still asking Adobe support for the official method to get the above information, because I think the system tables may change in system update, so... use at your own risk.
    Wish it help.
    Regards
    Bill

  • How we can get the current running user information in BusinessOne

    Hi experts,
    How we can get the current running user information in BusinessOne Application,
    Based on the user details i want to assign some functionality,
    Regards,
    Saidarao yakkala

    Hi,
    As per me you can't get detail by server side.
    If you want to know who are connected then you can use sp_who2 procedure in SQL query.
    That will display who are login.
    For more detail you have to check LOG file on client side in SAP B1 > Log folder.
    Thanks
    Kevin

  • Get enterprise portal user informations

    Hi all,
    is there a way to get some portal user informations during runtime in a visual composer application?
    For example: I want to display the user id in a form automatically.
    Thank you for your help!
    Kind regards, Patrick.

    Hai ,
    u have to get that abap side not from Vc side i think soo
    Regards ,
    venkat p

Maybe you are looking for

  • Database tables in BW

    Hi Gurus, Can anyone please give information about the database table where all the ods object and its associated tables like active table, change log, new data table are stored in BW. It would be of great help. Any help would be fine. Thanks, Prabhu

  • Cisco Call manager 7.2 through ASA firewall

    Hi, We have a part of our building that we have sold to another company. We still have to provide them with some resources until they can install their own network. We have a 6500 switch there and we are going to implement a ASA in between and lock d

  • Incorrect login or password. Please make sure the credentials you entered

    Hi Friends I have install SJES 2004Q2 ./imadmin version 6.1 2004.4.16.1528 ponk SunOS5.8 All the suite is working Ok. Messaging server, calendar, portal Server, web server, etc. but Instant Messaging send: Incorrect login or password. Please make sur

  • HT1316 How to replace SIM card on my iPhone?

    Please show me how to remove SIM from my iPhone and place another SIM card.  I am going to Paris and want to know how to unlock, remove, and replace SIM card.  Also want to know any precaution for securty.  Also about cost! Thanks much : )

  • FLVPlayback with cue Points (2.0)

    HI, I'm new to working with cuePoints and listeners. i using actionscript 2.0 and i want to make a video clip (called "video") to stop playing and become invisible after playing for 30 seconds. does anyone no a good cut and dry way to pull this off?