Customizing workdone by a user on daily time

Dear Gurus,
how can one get the daily progress of customizing (at IMG level) work done by a particular user during the realization phase of SAP Implementation.
I mean on particular day how can one  trace....
the list of T-codes a particular user has worked on
what changes he made in documents/tables/customization part on that day
kindly let me know the suitable forum, If i have wrongly using the same.
wishes,
Abhishek

The basis can answer this question. It is not part of Workflow. You can use SM04 but I think you will have auth to do so.
Thanks
Arghadip

Similar Messages

  • RFC - Receiver create Customer (Cannot see created user and created time)

    Hi,
    My scenario is JDBC - XI - RFC to create/change customer master. My problem happens with customer created/changed by RFC. When I look at administrative data of customer master, created by and created date are empty. http://www.imagecross.com/07/image-hosting-view-11.php?id=53673.png My requirement is that log on user which i input in receiver cc of RFC in ID should be used as created user in customer master and created  date should also be updated too.
    Any solution for this? Is there any configuration in XI required or may be a guideline for using ABAP in RFC to do this?
    Thanks,
    Pavin

    Hi
    When u execute form se37 it wud update with the user logged in
    same wud happen when Receiver Adapter RFC wud log in and update r change
    shud update with user wat u have entered in Config
    try to run the RFC from se37
    rgds
    srini

  • Customizing workdone by a team member on daily time

    Dear Gurus,
    how can one get the daily progress of customizing (at IMG level) work done by a particular user during the realization phase of SAP Implementation.
    I mean on particular day how can one trace....
    the list of T-codes a particular user has worked on
    what changes he made in documents/tables/customization part on that day
    kindly let me know the suitable forum, If i have wrongly using the same.
    wishes,
    Abhishek

    do not duplicate post across forums. this is against Engagement Rules.
    customizing workdone by a user on daily time

  • How can you create a customized page to change user password?

    Hello to all,
    I would like to create a customized page for a user to change their password. We are using Portal version 3.0.9 on Windows NT/2000. Currently there is a page in portal where a user can change their password.
    I tried linking to that page by copying the shortcut url and adding it as an html portlet. The problem is that we want to direct the users to a
    page of our choosing when they click on the "cancel" and "ok" buttons. I read in the forums that there is a selfreg.cmd script.
    I also read that there is some code that has been available.
    Has anyone implemented a customized user password change page? Do you know of any links that might have steps to follow or
    more informatioin?
    Thanks in advance,
    Lindsay

    Hi,
    I was able to customize the change password screen through a procedure. This is what I did:
    * Created a procedure under the Portal30_sso schema:
    CREATE OR REPLACE procedure reports_chage_password
    site2pstoretoken in varchar2 default null
    ,p_username in varchar2 default null
    ,p_error_code in varchar2 default null
    ,p_submit_url in varchar2 default null
    ,p_done_url in varchar2 default null
    ,p_pwd_is_exp in varchar2 default null
    ,p_password in varchar2 default null
    is
    begin
    htp.htmlopen;
    htp.headopen;
    htp.title ('<TITLE of Page>');
    htp.headclose;
    htp.bodyopen;
    htp.p('<table width="100%"><tr><td colspan=2 align=center><IMG SRC=<directory of image if you want>"><br><hr><br></td></tr>');
    htp.p('<tr><td colspan=2 align=center>');
    htp.p('<font COLOR="#000080" face="Times New Roman" size=+2><b>');
    htp.header(nsize => 1 ,cheader => 'Change Password');
    htp.p('</b></font>');
    htp.p('</td></tr><tr><td align=right>');
    htp.formopen(curl => p_submit_url );
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Username:');
    htp.p('</td><td alight=left><font color="#000080" face="Times New Roman" size=+1>');
    htp.p(p_username);
    htp.p('</font>');
    htp.p('</td></tr>');
    htp.formHidden(cname => 'p_username',cvalue => p_username);
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Old Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_old_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.br;
    htp.p('<tr><td align=right>');
    htp.p('<font color="#000080" face="Times New Roman" size=+1>');
    htp.p ('Confirm New Password: ');
    htp.p('</font>');
    htp.p('</td><td align=left>');
    htp.p ( htf.formPassword(cname => 'p_new_password_confirm',csize => 30,cmaxlength => 30) );
    htp.p('</td></tr>');
    htp.p('<tr><td rowsapn=2>');
    htp.formHidden(cname => 'p_done_url',cvalue => '<the url that you want users to go to when they are done>');
    htp.formHidden(cname => 'p_pwd_is_exp',cvalue => p_pwd_is_exp);
    htp.formHidden(cname => 'p_password',cvalue => p_password);
    htp.formHidden(cname => 'site2pstoretoken',cvalue => site2pstoretoken);
    htp.p('</td></tr>');
    htp.p('<tr><td align=right>');
    htp.formSubmit(cname => 'p_action',cvalue => 'OK');
    htp.p('</td><td align=left>');
    htp.formSubmit(cname => 'p_action',cvalue => 'CANCEL');
    htp.p('</td></tr></table>');
    if p_error_code is not null then
    htp.br;
    htp.fontOpen(ccolor=> 'red', csize=> 4);
    if p_error_code = 'auth_fail_err' then
    htp.p('Old password is incorrect');
    elsif p_error_code = 'pwd_rule_err' then
    htp.p('The new password does not follow '||
    'the password policies.');
    htp.br;
    htp.p('Verify with your System Administrator '||
    'about the Password Policies');
    elsif p_error_code = 'confirm_pwd_fail_txt' then
    htp.p('Confirmation for new passord is not '||
    'the same as the New Passowrd');
    elsif p_error_code = 'null_new_pwd_err' then
    htp.p('New password cannot be null');
    elsif p_error_code = 'null_old_pwd_err' then
    htp.p('Old password cannot be null');
    else
    htp.p ('Error: ' || p_error_code );
    end if;
    htp.fontClose;
    end if;
    end;
    * Grant this procedure to PUBLIC
    * Update the portal30_sso.wwsso_ls_configuration_info_$:
    UPDATE portal30_sso.wwsso_ls_configuration_info_$
    SET LOGIN URL = '<YOUR CUSTOM LOGIN URL OR THE WORD UNUSED IF YOU DON'T HAVE ONE> http://<MACHINE_NAME>.<DOMAIN>/pls/portal30_sso/portal30_sso.<NAME OF PROCEDURE>';
    * After you update the table, go to your account information link, and click on the change password link.
    * Then copy the url that you see in your address line
    * And if you want a change password link at the top of your portal page, just go to EDIT on your page, then edit the banner defaults. Then in the links add the Lable and the URL. The URL would be the URL you copied from the previous step.
    Hope this helps.
    I've customized the login page too if you would like some sample code for that. Let me know.
    Martin

  • Concurrent program to be submitted y only one user at a time

    Hi
    I have an issue with one of my reports. The report is using temporary tables, those will under go insertion and deletion while the report is running. So, to make sure that two or more concurrent requests submitted for same report, will not conflict, I want to make my concurrent request to be submitted by only one user at a time.
    How can I do that?
    Any help is appreciated.
    Thanks
    BalaKrishna

    The "run alone" box should not be checked. This indicates that this program can only run when no others are running. Pl see MOS Doc 1078462.6 (Custom SQL Concurrent Program Returns NO MANAGER Error). This option should typically not be used.
    To be able to achieve what you need, set the incompatibility (as you have done) and then bounce the concurrent managers for the setting to take effect. Pl see these MOS Docs
    436186.1 - Cannot Make Concurrent Programs Incompatible With Itself
    142944.1 - How to Make a Concurrent Program Incompatible with Itself
    HTH
    Srini

  • Unable to login any user id first time in the Adobe content viewer (R25)

    Hi,
    I am using R25 Adobe content viewer. The problem is that I am unable to login any user id first time. when I do 2nd time with same id then it do successfully. Please suggest.
    DC Pub

    This is a known issue with the v25 Adobe Content Viewer. It is fixed with the v26 version, which is currently awaiting approval from Apple. If you have a Pro or Enterprise subscription to DPS, you can build a custom Adobe Content Viewer.

  • DB User acccess by time period

    Hi,
    I still a newbie in Oracle 10G. I had been reading up on Oracle 10g but couldn't find any information on controlling DB users access by time period. Meaning, DB user 'A' is only allow to access the DB from 8 am to 9 am daily. Is there any doucmentations i can read up on this feature? Hopefully, someone here can help me with this query.
    Regards.

    If your user name is "A" then you can unlock the user at 8 AM and lock the user at 9 AM daily.
    Create a script and put it on your crontab which run at 8 AM and execute the following command logging by SQL plus.
    alter user A account unlock;
    Create a script and put it on your crontab which run at 9 AM and execute the following command logging by SQL plus.
    alter user A account lock;
    Hope this will help
    Regards
    Asif Kabir

  • Error for customer specific Authorization check (User Exit)

    Dear Experts,
    I am facing a problem in PM.
    I have created a maintenace plan for calibration via t code IP42 and mentioned the order type PM05. Scheduling is done for the order. I got the order number.
    I have released the order and got the inspection lot number.
    While entering the results recording through t code QE17, the reluts are out of the specified range, i have given the valuation Rejected, immediately system is giving an error message as below:
    "Error for customer specific Authorization check (User Exit)"
    Though there is no user exit activated in the system, this message is coming and not allowing the result recoring for rejection.
    If I'm entering the result recording within the specified range, then valuation is Accepted and its allowing to save.
    I have checked the following user exits:
    QQMA0002: QM: Authorization Check for Entry into Notif. Transaction
    QQMA0026: PM/SM: Auth. check when accessing notification transaction.
    The above 2 User Exits are not active.
    I have also checked a note 429066. But it says incase of any dump for that user exit only its applicable and more over the current version of the system is ECC 6.0 packae 15, where as that note is applicable upto 4.6C.
    Please some one help me on this issue.
    Thanks and Regards,
    Praveen.

    Dear Pete,
    I have cheked with my technical team, There is no hotpacks updated recently. This is the implementaion project I'm in, so performing the cycle for the first time.
    Any how I got it solved, in T code QE17, after entering the Inspection lot in next screen goto menu path Settings - User settings - Defects recording mention the reprt type and tick on Reprt type Changable.
    At the time of result recording if the valuation is Rejected then it ask for defects recording close that window if not rwequired then save, the error message no longer apperaing now.
    Regards,
    Praveen

  • Unable to log in user at this time / opening up all ports

    I've got a lion 10.7.3 server and several Lion client boxes all attached via ethernet to an airport extreme.
    I've got a bona fide certificate that seems to have installed correctly, and the client is talking to the open directory server
    Without fail, I get a message "unable to log in the user at this time" on each of the clients...
    UNLESS I open up all ports on my airport extreme to the server. 
    I've tried opening individual ports for AFP, profile manager (1640, 2195), open ldap (389, 636) and even kerberos (88).  Even with all of these open, it still doesn't work.  I have to open up everything to get the error to go away - then the users can log in just fine.
    Note, I'm logging in from the local network to a server on the local network, so this just seems bizarre.
    I don't have the logs on this computer, but I recall that the error was occurring when it tried to mount the home directory, after authentication.  It was an error 64 from homedirmounter (if memory serves).
    Any thoughts on what port I'm missing that might be causing the error?

    3659 is the SASL port used by the password server, so that makes a certain amount of sense.
    However, I still maintain that if your network is configured in the way I'd expect, the base station shouldn't be relevant. The clients should be connecting on a LAN-to-LAN basis so the firewall/filter in the base station shoudn't be in play.
    Given what you say, I suspect you've misconfigured your network - probably at the DNS level and you're not running private DNS for your LAN, which would force the clients to connect through the public address. The risks and downside of this approach are numerous - not least of which is the fact that you ARE exposing your server to the general public (including all the less-than-honourable people out there). On that basis there is a risk and i'd look to close that soonest.
    You should have a private DNS server running on your LAN that knows the private network addresses of your servers and clients. In this way any client should be able to connect directly to the server's LAN address, bypassing the public interface on your base station. I suspect that if you perform a DNS lookup on your server's hostname you get back its public address, right?

  • Amount of key presses a user makes over time - BPM

    Hi,
    Im working on a small program that needs to get the amount of keypresses a user makes over time.
    Basically its for calcuating the BPM a user is inputting. So a uers taps a beat for 5 seconds and the amount of tap is saved and multiplied by 12 to get the Users BPM.
    So far i have this:
    package Version1;
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.util.Timer;
    import java.util.TimerTask;
    import javax.swing.*;
    public class muTap extends JFrame implements KeyListener, ActionListener {
        JTextArea display;
         * main - the main method
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    theGUI();
         * muTap constructor
        public muTap(String name) {
            super(name);
         * theGUI - creates the gui for muTap
        public static void theGUI() {
            muTap frame = new muTap("muTap");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Set up the content pane.
            frame.addComponents();
            //Display the window.
            frame.pack();
            frame.setVisible(true);
         * adComponents - adds gui components to muTap
        public void addComponents() {
            JButton button = new JButton("Start");
            button.addActionListener(this);
            display = new JTextArea();
            display.setEditable(false);
            display.addKeyListener(this);
            JScrollPane scrollPane = new JScrollPane(display);
            scrollPane.setPreferredSize(new Dimension(375, 125));
            getContentPane().add(scrollPane, BorderLayout.PAGE_START);
            getContentPane().add(button, BorderLayout.PAGE_END);
        public void keyTyped(KeyEvent e) {
            //Do Nothing
        /** Handle the key pressed event from the text field. */
        public void keyPressed(KeyEvent e) {
            //TODO call the getBPMfromKboard() method
            taps++;
            System.out.println("Tap: " + taps);
        /** Handle the key released event from the text field. */
        public void keyReleased(KeyEvent e) {
            //Do Nothing
        /** Handle the button click. */
        public void actionPerformed(ActionEvent e) {
            //Do Nothing
            //initialCountdown(3, "Start Tapping Fool");
            countDown(3);
         * countDown - a simple countdown timer for use when getting users input.
         * @param time amount of time to count down from
         * @return      true when timer ends.
        public static int taps;
        public void countDown(final int time) {
            taps = 0;
            final Timer timer = new Timer();
            timer.scheduleAtFixedRate(new TimerTask()
                int i = time;
                public void run()  {
                    i--;
                    String s = Integer.parseInt(i); // error because of this i.
                    display.setText(s);
                    if (i < 0) {
                        timer.cancel();
                        if(time == 3)
                            display.setText("Start Tapping");
                            countDown(5);
                        else if(time == 5)
                            display.setText("Number of taps: " + taps);
                            //System.out.print("Number of taps" +taps);
            }, 0, 1000);
    }But i get errors when i try running it:
    "Exception in thread "Timer-1" java.lang.RuntimeException: Uncompilable source code"
    It doesnt seem to like me parsing int to string here:
    String s = Integer.parseInt(i); Any ideas? or if youve got suggestions on another way to do it it'd be much appreiated.
    Thanks!

    Korvanica wrote:
    It doesnt seem to like me parsing int to string here:
    String s = Integer.parseInt(i);
    Yikes, you've got that bit of code backward, there partner.
    You use Integer.parseInt to parse a String into an int, not the other way around.
    If you want to change an int to a String, do
    String s = String.valueOf(i)or you can use the various formatters out there.

  • How i can create multiple users at a time (User Administration) in EP

    Hi
    I need to create multiple users at a time. How can i do that through User Administration in EP.
    Please also tell me about import option in User Administration

    Hi,
    1.  First of all create a master user based on which you can create multiple users.
    2.  when you are done with it  export (by selecting the option at user creation) it.
    3.  you can see some text in a window copy it create  a txt file with it, and add as many users as you want
         by cpoy pasting the text multiple times and making necessary change as per the names etc...
    4. save the txt file.
    5. goto import option you were talking about and import the text file and update it.
    6. As it gets updated you are done with the creation of multiples users.
    If you  get stuck somewhere  feel free to  let me know.
    if  this answer satisfies your need, award points and close the thread.
    Edited by: ali alia on Feb 10, 2009 6:21 AM

  • Every time I sync my iphone 4 with itunes my ring custom ring tones change.  I have 7 custom ring tones in itunes.  One time it will load 1 custom ring tone the next it may be 3 then the next it is one again.  The last time it gave me 4 of the 7.

    Every time I sync my iPhone 4 with iTunes the number of my custom ring tones change.  I have 7 custom ring tones listed.   The first time it will load 1 of the ring tones and the next time it will load 3,  The next time it will be back to 1.  If I have assigned one of the custom ring tones and it does not get loaded it goes back to the ring tone that came with the phone.  The last time itunes gave me 4 of the 7 so I have not tried to sync it again.  I am using iTunes 10 (10.4.10), and windows 7.
    Has anyone else had this problem??
    Any ideas to what I need to do??

    Have you ever had all 7 of them synced before? Are these ringtones you made yourself? Is there a chance they could exceed 30 seconds in length? Is there a chance you have moved the original file location on the computer? May need the answers to a couple more questions to try and determine an answer.

  • How to audit a user at same time it is created?

    Hi, I got a problem and I hope someone can help me.
    Is there any way of auditing a user at same time it is created?
    For example I create the user "Eddy" and I want this account to be automatically audited so I don't have to execute "audit session username;" each time a new user is created.

    I wasn't aware but it seems that most of DDL operations are not available directly from system triggers. Anyway, you can log the user created in a table (stored in ora_dict_obj_name) for being processed later with a scheduled job.
    All in all, it seems much more easier to use two sentences create + audit.

  • Database 'TEST' is already open and can only have one user at a time.

    Hi all,
    Could some help on this issue as per urgency!
    Database 'TEST' is already open and can only have one user at a time.
    I also tried this command but having the same error, please let me know how to troubleshoot this issue
    Use Master
    GO
    Select * from master.sys.sysprocesses
    Where spid > 50
                And dbid=DB_ID (‘StuckDB’))  -- replace with your database name
    Thanks

    Hi Tony,
    sorry got the same error again, it can't allow me sp_who2 as well
    I tried above command got the following error
    Changes
    to the state or options of database ‘TEST’ cannot be made at this time. The database is in single-user mode, and a user is currently connected to it.Msg 5069, Level 16, State 1, 

  • Problem: More than one VPN user at a time - Airport Extreme Base Station

    Hey Folks,
    Myself and my girlfriend both have work laptop PCs. It appears that the AEBS only allows one VPN user at a time. When a new user is logging in, it will kick out the other user.
    Is there a setting on the AEBS that will allow more than one VPN user? Is it a firewall setting?
    Thanks for your help.

    It may the the firmware. 7.3.1. does seem as friendly to some VPNs as 7.2.1. where we had no problem running two VPNs. You could consider switching back to 7.2.1.
    d

Maybe you are looking for

  • Runtime.getRuntime.exec() not working when Tomcat is made a windows Sevice

    Hi, I am working on a web application which launches a exe file on subitting the form. I am using Apache Tomcat 4.0.6 to run the web application. Initially Tomcat was not made a windows service on my machine and when I launch an exe it is launching w

  • Error when running workflow inititiation program

    Hi, I get the following error when I try to run my java application which initiates a BPM workflow. <Nov 28, 2001 3:21:32 PM PST> <Error> <B2B> <<WLC-WLPI-Plugin> ERROR: WLC-WLPI p lugin must be initialized before creating workflow instances> Excepti

  • HP deskjet 3520 ink cartridge problem...​Can anyone suggest another make of printer that is not HP?

    Hello...I have yet to receive an answer that resolves the problem. I regret buying the printer because now it doesn't work. The error message remains despite taking advice how to fix it.  We only use the black cartridge. Can anyone suggest another ma

  • EPM System Configurator not prompting to use existing tables

    Planning 11.1.1.3. Oracle Database Planning database configured using advanced jdbc URL with alternative servers. Above is what we have installed and configurations settings we are using. In the short of it, Our Oracle DBA changed the servicename for

  • Scurity in web services

    Hi, I created a web service based on PL/SQL procedure using Jdeveloper, OC4J and now I would like to know all the options that exists for security (SSL, user/password, etc).... Is there any .pdf /whitepaper / Guide of security in Oracle Web services