Maintaining the information of user who is login to BO

Hi,
I want to store the information about user who is login to BO Webi. Can i store this information to webi
report.
can you please help me...

Hi,
Are you trying to get information about when user logged in and how long was the session. how many users logged in and all. If so ..........
As far as i know you need to configure your audit database and enable auditing where ever needed. Then you can generate reports required using Activity Universe.
This detailed information is available in Admin Guide.
http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_bip_admin_en.pdf
Go to chapters 12 and 13.
Thanks,
SK.

Similar Messages

  • Webservice try to resolve a user who never login to the system

    Hi All,
    I'm using usergroup.asmx webservice in the workflow. It works fine for old users (who already logged in to the system)
    If webservice try to resolve a user who never login to the system  it got errored.
    What could be the reason? Can anyone suggest a solution?

    You can use ResolvePrincipals, which performs an action similar to SPWeb.EnsureUser,
    http://msdn.microsoft.com/en-us/library/websvcpeople.people.resolveprincipals(v=office.14).aspx
    Dimitri Ayrapetov (MCSE: SharePoint)

  • I have a requirement where I have to give the list of users who can access a specific computer. I am new with PS. Do you have a script to list users that can access a computer object of AD ?

    I have a requirement where I have to give the list of users who can access a specific computer define in AD.
    I am new with PS.
    Do you have a script to list users that can access a computer object of AD ?
    I have executed the following script  but it does not give me the access rights of who can access the computer 'computername'
    How can i have this information. please help
    Import-Module activedirectory
    $computer=get-adcomputer "computername" -properties ntSecurityDescriptor
    $omputer.ntsecurityDescriptor.Access | select-object -expandproperty IdentityReference | sort-object -unique

    I would say that, since the OP has so little info, there are no policies in use.  It there were then this question would never be asked the way it is being asked.
    I had a client call with a letter from their insurance company; an accountant with malpractice insurance.  THey asked the same question inmuch the same way.  "What computer can you users access?"  The question should be more like
    "Do you have a policy that restricts access to computers and do you audit for compliance?"
    I have had other clients whose insurance asked the question in that way.  It produces a better view of what should be happening and how to show compliance.
    I recommend that companies being asked these questions by their legal departments or insurance companies should contract with a god computer security consultant to assist with answering these very tricky questions.  Of course if it is just you boss's
    curiosity  then you may need to discuss his requirements with him in more depth.
    ¯\_(ツ)_/¯

  • How to get the list of users who has access for list of tcodes.

    How to get the list of users who has access for list of tcodes.

    Go to transaction SUIM, this has a number of reports for users/authorisations
    open the Where used>Autorization Values>In Users
    and double click to execute
    in authorisation object, enter S_TCODE
    then press the "Enter Values" button
    It will offer entry boxes to put the transaction code you are interesed in.
    Then execute and the list of users with access to this transaciton code will be returned.

  • How can I find out the list of users who has the access to IT 0008

    All,
    How can I find out the list of users who has the W R permission for IT 008
    for others?
    SUIM doe not look like giving me the correct results.
    Please advise.
    Thanks,
    From
    PT.

    combine tables AGR_1251 and table AGR_Users on keyfield AGR_USERS
    in tabel AGR_1251 select on Field LOW values IT0008.OR W OR R,
    noiw you get also other values
    So better solution run the query twice over AGR1251 first on IT0008 and secondly on values W OR R and then the result over table AGR_USERS
    Youu also might put an additional selection on object P* (only selecting HR objects)
    output wll be UID in table AGR_USERS

  • Query to find out the list of user who have delete access

    Hi,
    I need a query to find out the list of users who have delete access on perticular folder/universe/ reports  in infoview.
    Please advice.
    Regards,
    Neo.

    orton607 wrote:
    thanks for replying guys. But the thing is i am using dynamic sql execute immediate in my package, so i want those tables also and the schema name.
    thanks,
    ortonThis is not possible. The best you could do is to have a good guess.
    Or how would you parse some dynamic statement as this:
       v_suffix := 'loyees';
       v_sql := 'Select count(*) from (select ''nonsense'' col1 from emp'||v_suffix||') where col1 = ''Y'''';
       execute_immediate(v_sql);
    ...What is the table name? How do you want to parse that?
    Better rewrite all dynamic SQL statements into non dynamic ones. Or do the source control logic for those dynamic parts in an extra module. For example implement your own dependency table and force every developer to add there all dynamic parts.

  • RePopulate form with the information what user just submitted.

    I have one form. That form has one submit button. I have to create a new button in that form say call "New button". When user submits that form it will display result page. That result page will have one back button. When I hit back button I can go back to that form again. After I go back to that form when I hit "New Button" the form field will fill up with the information what user just entered before submit. I am using JSP and Struts in my application. This functionality is basically need for the user so that user do not need to entered the same information again.
    Can you please help me what I have to do for that?
    Thank you very much for your help.

    Well, in your program, do you have one Form, or do you create a new Form whenever it's needed (ie, when the program starts up, and when the Back button is pushed from the result page)?
    If you have one Form (which is the best approach in my opinion), then it probably follows this general structure:
    public class Form {
       public Form() {
          // Do some constructor work in here
       public void submit() {
          // This is probably called when the user clicks the Submit button
    }... obviously there's a lot more stuff going on inside the class that I have listed right there, but what I meant by 'storing the values as fields' would actually be really simple to implement.
    A field is:
    either class or instance member variables. non-local variables. Field also includes static final constants. http://mindprod.com/jgloss/fields.html
    In short, it's just a variable stored in your class.
    I'm sure you already have text fields and buttons as fields in your form class, probably like this:
    public class Form {
       private JTextField userNameField = new JTextField("Input User Name Here");
       private JButton submitButton = new JButton("Submit");
    }And if you don't, then you should probably adjust your structure so you do. Anyways, to store the data the user has input, just create Objects to store them.
    public class Form {
       private JTextField userNameField = new JTextField("Input User Name Here");
       private JButton submitButton = new JButton("Submit");
       private String userName = ""; // This is our 'name field.' It is set to whatever is in the userNameField when the submit method is invoked. It is what stores the user's name. In the refresh method, you can set the userNameField's text (via setText) to this value.
       // ...You could make a field for each thing you need to store, such as age, race, eye color, whatever.
    To implement 'storing' and 'using' these fields is also simple. You'd just need to adjust your submit method, and provide a new method that we'll call refresh. Now, by refresh I am not referring to a browser's refresh button which refreshes the page- I just named it refresh because it 'refreshes' our Form with the data the user previously input.
    public class Form {
       public void submit() {
          // Do submittal stuff
          userName = userNameField.getText(); // This line right here ensures that the user's name is 'stored.'
       public void refresh() {
          userNameField.setText(userName); // This line causes the userNameField to be 'refreshed' with the data previously submitted.
       }Hope that helps.

  • How can I enable Active Directory network login while maintaining the existing local user account data?

    We have a user base of around 15 Macs that we would like to integrate into Active Directory. However, we need to maintain the existing users local account data but do not wish to have that data moved to the network. Is there an easy way to create the AD login and then move the existing account data to the new login while maintaining correct permissions?
    I've had some success logging in as root and deleting the existing account, while maintaining the home folder. Then renaming it to match the AD login account name and replacing the new and empty AD user home.  I then perform a CHOWN on that folder to give ownership to the AD account name.
    Is it this simple? I don't want to leave any loose ends.
    Thanks for any help you can provide,
    Scott

    JamesSTJ wrote:
    Oh, found it!
    And guess what? Apple wanted to charge me a one time fee of $600 to answer that question.
    It worked! thanks!
    I guess I'm cheap

  • Solaris users who did login for more than months

    Hello All,
    Can any one help me out to find those users who did not login to the system for more than a month or more? I need to do some user clean up.
    Thanks..
    Edited by: user4027740 on Apr 13, 2011 12:35 AM

    USERS=`grep -v NOLOGIN /etc/passwd | cut -d: -f1`
    for USER in $USERS
    do
    echo "---------- $USER --------------"
    last -n 1 $USER
    done
    ############this script helps you find out the last login time of all users in /etc/passwd file###################

  • Report the number of users who provisioned a My-site on sharepoint online?

    I have a Office 365 SharePoint instance that we have activated a large number of user accounts on, I am trying to find a way to run a report that will show me the total count of users who have logged into SharePoint and provisioned a my-site. essentially
    a list of the total number of my-sites and the name or ID of the user they belong to. We are trying to gauge adoption across the organization, a report like this would be really valuable. Any chance someone knows an easy solution for this?
    yaddaimean

    My Sites are typically located within a common location, like http://sharepoint/my/* or http://my.sharepoint.com/*
    Assuming this is the case in your tenant, I would try the
    Get-SPOSite cmdlet to get a list of sites that match a particular filter or pipe the results through a where clause. I've never done this myself and don't have a tenant to test against but I imagine it would look something like this:
    $mysites = Get-SPOSite -Limit All | where {$_.Url -Like "http://sharepoint/my/*"}
    $mysites.Count
    I can't find any information about the SPOSite object. I'm assuming it has an Owner property like the SPSite object. If it does, you should be able to get a list of users who have created a My Site:
    foreach ($mysite in $mysites) {
    $mysite.Owner
    I honestly hope this works :)
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights

  • Unable to retrive the email id of the internet sales user who curren logged

    Hi friends,
    I need to send a email to the customer support email id  while changing the ship to address, from the currently logged "Internet User" email id in the order screen
    Is there any class/method there in ISA API so that it retrives the current logged "Internet User" details like email id from CRM.
    Thanks & Regards,
    Kiran K Vemula.
    Edited by: Kiran Kumar Vemula on May 5, 2008 11:41 PM
    Edited by: Kiran Kumar Vemula on May 5, 2008 11:43 PM

    Hi,
    As per my knowledge, after creation of the BP/Contact person, we need to create a CRM user for that BP in SU01 Tcode with Address(with person, communication, company details),  Logon Data (with password, user group authorization check, validity period) along with that, we need to assign Roles, and Profiles to the user. After this only the user which created in SU01 can login the B2B application.
    My requirement is to send an email to a customer center executive, from the logged in  user.
    while sending Email, In case of  from address, I have to check 2 scenarios.
    1. I need to get the email id (of the user logged in) from BP details.
    if not found / email id is not mentioned,
    2. I need to get the emal id (of the user logged in) from CRM User details(TCode SU01) which I am not able to get it.
    I tried in the way given in above messages, but for all I am able to get the details which are there in BP Tcode but not in SU01 Tcode.
    Is there any standard function module or I need to customize the standard function module, or is there any ISA API available to get the email id.
    Please advise me. & Please correct me if I am wrong.
    Thanks & Regards,
    Kiran K Vemula.

  • Maintain the link between user status and system status

    Hi friends,
    my requirement is In crm transactions when we change the system status(inprocess) then the relevant user status            (inprocess) is also to be changed automatically. how can we do this? wt r the customisations we can do for this?
    pls suggest me? thanks in advance.

    Hi Madhu Sudan,
    When you create User Status in Status Managment...
    Eg: Inprocess
    You assign User Status Triggers Business Transaction.
    So, This maintain the link between the User and System statuses.
    Reward Points if helpful.
    Srini.

  • Information to user who creates PR for spare parts & service PR from order.

    Hi experts,
    Is there any standard workflow available by which the maintenance user will get message in his SAP inbox , whether material has been recieved for the Purchase requisition created through maintenance order as well as manual PR by t-code ME51N.
    Also whether payment has been done to the vendor or not for the service PR created through maintenance order by the maintenance user.
    Please through some rays on this.thanks in advance .
    rgds
    rajib

    Hi Rajib,
    It is possible with std work flow trigger Business object BUS2045
    (Inspection Lot) but nees to have used for QM quality Module.
    inspaection lot created wvent will activate work flow to creator ID.
    Also the same can be used for other application like outlook for information by Std functionlity.
    you may need to take help from your ABAP Team.
    Regards,
    Ramesh

  • Grabbing the information after user logs in

    I'm trying to use the security webflow, but was wondering how can I get the
    user information after the class
    com.bea.portal.appflow.processor.security.LoginProcessor is called? Is it
    possible for me to create a link event from LoginProcessor node to a
    pipeline that will do what I want after the user has been authenticated
    through the custom realm? If so, from the Pipeline class, I extend
    PipelineComponentSupport, but how do I get the user information from it?
    How can I get the UserManager?
    Thank you,
    - joel -

    Jeol,
    com.bea.portal.appflow.processor.security.LoginProcessor is called? Is it
    possible for me to create a link event from LoginProcessor node to a
    pipeline that will do what I want after the user has been authenticated
    through the custom realm? If so, from the Pipeline class, I extend
    PipelineComponentSupport, but how do I get the user information from it?Before your pipeline, add an input processor, in which you can collect
    the user name from the HttpServletRequest object (with the getRemoteUser
    method). Set this name as a request attribute on the pipeline session.
    Your pipeline component can then access this variable.
    How can I get the UserManager?It's an EJB, so lookup via JNDI.
    Hope this helps.
    Subbu

  • How to find out the list of users who used Discoverer

    Dear All,
    We have Oracle E-Business Suite 11.5.10.2 with Disco. 4i.
    We need to know how we can find out the Employee ID, Responsibility, Org... who used discoverer during a specific period in the past ? For example the last year.
    Any help plz.
    Regards,
    Mohammad Muhtadi

    I'm not sure You can get the responsibilities or the org that was used in that specific run but as for getting when it was run and by whom...
    Try that SQL:
    select distinct
    qs.qs_doc_name workbook,
    --qs.qs_doc_details worksheet,
    case when instr(qs.qs_doc_owner,'#')=1 then substr(qs.qs_doc_owner,2,10) else qs.qs_doc_owner end workbook_owner,
    qs.qs_created_date run_date,
    case when instr(qs.qs_created_by,'#')=1 then substr(qs.qs_created_by,2,10) else qs.qs_created_by end apps_user_id,
    fu.user_name apps_user_name,
    ppf.FULL_NAME user_full_name,
    ppf.EMPLOYEE_NUMBER user_employee_number
    from
    eul_us.eul4_qpp_stats qs,
    fnd_user fu,
    per_people_f ppf
    where to_number(substr(qs.qs_created_by,2,10))=fu.user_id(+)
    and fu.employee_id=ppf.PERSON_ID
    and sysdate between ppf.EFFECTIVE_START_DATE and ppf.EFFECTIVE_END_DATE
    change the "eul_us" to the discoverer schema.
    Basically the primary data you are looking for lies in the qpp_stats table...

Maybe you are looking for

  • Screen field char value not possible

    Hello, I have a text field in my screen. This field is associated with a table field of type CHAR with lowercase possible. The problem is that when the user starts the text for example with a ! the field gets erased. If the user writes a normal text

  • IPad Air is getting crashed

    i'm iPad air 16gb. I had upgraded my iPad to iOS 8 now I am running latest iOS on my device. The device is being crashing from when I had upgraded my device to iOS 8. GEtting blue screen and the device is restarting.

  • Program won't load: Waves plug-in incompatible

    Hi, I'm a totally new user to Final Cut Express HD. I just installed it yesterday, and the program won't even completely load. It gives me an error saying "The Waves plug-in you have opened is too old or incompatible" then it will say "Some Waves plu

  • How to run exe file using oracles procedure (ASAP) ?

    i am finding difficulties in running an exe file using an oracle procedure.I need this for a pure .NET application

  • Crystalreports Viewer - Buttun Export Not Function on W7 64Bit

    Hi, When I start my software (realized with Vistualstudio 2008) on W764Bit machine the button,in the CristalReportViewer, for export not function. (The dialog for format choose is not showed and the program is locked) The same program on the W7/XP/Vi