User action logging

I'm writing a small model of a GUI, which I'm going to
perform user tests on via the web. For these tests, I need to log
all user action (button clicks etc). I have no problem with the
actual logging, but how do I submit it from the tester so I'll be
able to view the statistics? Note that the tests will be performed
at the testers own computers.
Thanks a lot in advance.

Anyone? :(

Similar Messages

  • Setting to Retain User Action Logs in GRC 10.0

    Is there a setting to retain the User Action logs in SAP GRC 10 System for x number of Days. Is it dependent on the ST03N Log settings

    Hi Selva,
    For this you need to schedule the action usage job. Once you schedule this job you can view the logs in Reports and Analytica tab under Security Link->Action Usage by user,role and profile.
    Hope this helps.
    Regards,
    Neeraj

  • Portal - User Action Log?

    Hi All,
    Does the portal server create any log entries for the User Actions done by the Content Administrator on Portal?
    The Issue is, after designing the Portal Contents ( Pages, iViews etc. ), we came to know that an iView which working in the Production system, is totally missing from the Development System.
    I would like to know if there is any way to find out/track the iView deletion from the Portal Content.
    Any leads would be really helpful.
    Thanks,
    Mausam

    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/ee4f58ff1bce41b4dc6d2612fae211/frameset.htm
    Regards,
    Nitin

  • Simple trigger to allow users to log on at certain times

    I am trying to create a trigger that will allow certain users to only log into the database between 12am - 4 am.
    Can I assign a trigger to a user or to a role or how do I parse it out. I dont think I have this trigger just right yet...
    Or can this be set in the database it self? I looked at the user accounts, profiles, roles and dont see anything about connection times.
    Oracle 10.2.0.4
    I want to create a trigger that will only allow the user to log into the database between 12 and 4 am.
    My next question is can I assign this trigger to the role that the user has been assigned to?
    I have pulled some similar code that I would like to use but do not know how to modify it to be either assigned to a user: npq or to the role ntq_ro.
    create or replace trigger logon_time after logon on database
    begin
    if to_char(sysdate,'HH24') between 4 and 24
    then
    raise_application_error(-20001,'Not allowed to logon database during this time');
    end if;
    end
    /

    yes, I would love to all by command line...
    Bere in mind I change to to test...
    SQL> CREATE OR REPLACE TRIGGER "SYS".LOGON_TIME_RESTRICTION_NPQ AFTER
    2 LOGON ON DATABASE
    3 BEGIN
    4 if to_char(sysdate,'HH24') between '14' and '16' AND USER='NPQ' THEN
    5 raise_application_error(-20001,'Not allowed to logon database during this time');
    6 end if;
    7 end;
    8 /
    Trigger created.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@kali ~]$ sqlplus
    SQL*Plus: Release 10.2.0.4.0 - Production on Mon Jan 10 14:41:02 2011
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    Enter user-name: npq
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Alert log triggered errors:
    Mon Jan 10 14:41:10 2011
    Errors in file /u01/app/oracle/admin/NASARPT/udump/nasarpt_ora_17508.trc:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-20001: Not allowed to logon database during this time
    ORA-06512: at line 3
    /u01/app/oracle/admin/NASARPT/udump/nasarpt_ora_17508.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1
    System name: Linux
    Node name: kali.mtsallstream.com
    Release: 2.6.18-164.6.1.el5
    Version: #1 SMP Tue Oct 27 11:28:30 EDT 2009
    Machine: x86_64
    Instance name: NASARPT
    Redo thread mounted by this instance: 1
    Oracle process number: 31
    Unix process pid: 17508, image: [email protected] (TNS V1-V3)
    *** ACTION NAME:() 2011-01-10 14:41:10.293
    *** MODULE NAME:([email protected] (TNS V1-V3)) 2011-01-10 14:41:10.293
    *** SERVICE NAME:(SYS$USERS) 2011-01-10 14:41:10.293
    *** SESSION ID:(54.49496) 2011-01-10 14:41:10.293
    Skipped error 604 during the execution of SYS.LOGON_TIME_RESTRICTION_NPQ
    *** 2011-01-10 14:41:10.293
    ksedmp: internal or fatal error
    ORA-00604: error occurred at recursive SQL level 1
    ORA-20001: Not allowed to logon database during this time
    ORA-06512: at line 3
    I also tried the setting for the to_num but it would not even compile:
    SQL> CREATE OR REPLACE TRIGGER "SYS".LOGON_TIME_RESTRICTION_NPQ AFTER LOGON ON DATABASE
    2 BEGIN
    3 if to_num(to_char(sysdate,'hh24miss')) between '000001' and '040000' AND USER='NPQ' then
    4 raise_application_error(-20001,'Not allowed to logon database during this time');
    5 end if;
    6 end;
    7 /
    Warning: Trigger created with compilation errors.
    SQL>

  • Display text in navigation bar when user is logged in

    Hi all,
    I'm (still ) on Apex 4.2.6.
    Currently, I have in my page templates, the following snippet:
          <div class="logoBar">
              <img src="#IMAGE_PREFIX#themes/theme_125/images/logo_.png" />
              <h1><a href="#HOME_LINK#" id="uLogo">#LOGO#</a></h1>
            <div class="userBlock">
              <span>Username: &APP_USER.</span>
              #NAVIGATION_BAR#
            </div>
          </div>
    I have the requirement to display both the username (APP_USER) and the company the user works for (Application item AI_COMPANY), only when the user is logged in. When the user isn't logged in; instead of those items, I have to show a login link. Well, I know how to only show a link to the login page, when the user isn't authenticated, using the navigation bar. Currently, when a user isn't authenticated; the page shows: Username: nobody. That's because it is in my page template. How can I only show the username when the user is logged in? And show the company name only then?
    My first thought was to add an item in the navigation bar. But those items shows up as links. Is there a way to add a navigation bar item, and let it display as text? Sure, I could write a dynamic action on page 0 to remove the link, but I'm searching for a nicer/better sollution.
    I apreciate your help!

    Hi tomvdduin,
    you can show company name which is already in your Application item(AI_COMPANY)  by modifying the page template mentioned above.
    <div class="logoBar">
      <img src="#IMAGE_PREFIX#themes/theme_125/images/logo_.png" />
        <h1><a href="#HOME_LINK#" id="uLogo">#LOGO#</a></h1>
      <div class="userBlock">
        <span>Username: &APP_USER.(&AI_COMPANY.)</span>
        #NAVIGATION_BAR#
      </div>
    </div>
    I have included company inside ( ), you can change how you want to show.
    for example
    <span>Username: &APP_USER.</span><span>Company: &APP_COMPANY.</span>
    Hope this helps you,
    Regards,
    Jitendra

  • URL iView - Open in new window - User Action Independent

    Hello Experts,
    What has been configured:
    I have built an I URL iview and set its paramater to open in a new window. I have assigned the iview to a role. I have also assigned a quicklink to the iview
    Name: xyz
    quick link: xyz
    quick link url: https://<domain>/irj/portal/xyz
    What has been tested:
    When I log in to the portal using the test user ID and click (user action) on xyz the destination URL pops up in a new window as expected.
    When I access the iview via the quick link it loads the destination URL in the same portal window (no pop up)
    What do I need:
    We will be using the quick link to get to SAP portal from another legacy portal and I want to hit the target URL as soon as I access the quick link without being taken to the portal page in which the target URL content is rendered. I also do not want to have the user click on the/a link to navigate to the target URL.
    Things as they stand:
    The destination URL is hitting a standalone WD ABAP object which is not hosted in SAP portal content. The SAP portal has to be used because the logon ticket issued by the portal is also used to login to the server hosting the WD ABAP.
    Please let me know if you think this is something that can be achieved.
    Many thanks,
    Prashanth

    Hi,
    2. It is not possible to hide it completely or disable it. Give this a try:
    Create a Static HTML page and create a link in that which will take you to quick link page/iview.
    or you can create a custom application which will call the application underlying the quicklink on click of a link.
    3.  For removing the History, Back and Forwards links in Page Title Bar, follow the below:
    In Portal navigate to Content Administration - Portal Content - Content Provided by SAP - End User Content - Standard Portal Users - Open the Default Framework Page
    With the Framework Page - you will find Page Title Bar iView - Open the iview and go to iView Property
    Show Back/Forward Links and Show History List by default this setting is set to Yes. change teh setting to No and you will not be seeing those in the page title bar.
    NOTE: If you make this change it is applicable to all other pages and iViews. So be cautious before making the change.
    Hope this helps.
    cheers-
    Pramod

  • Trigger notification without user action...

    Hi All,
    I followed below blog and achieved publishing/Broadcasting messages to logged in users. Everything is working fine. My issue is, user must have to do some action in portal, then only the display popup (notification) will be displayed (poped up). I want this popup/message will be shown to the user even he/she is idle ( i mean without any action of end user in portal).
    Brodcast messages to logged on users in Portal(Part1)
    Brodcast messages to logged on users in Portal(Part2)
    Above blog works only when user do some action in portal. I want this message to be displayed without any user action.
    Is there any API / Service I can use????
    Please help...
    Thanks,
    Pradeep

    Nitesh,
    Thanks...
    Quick POLL??? its totally un related...
    I want to show a message like SM02 transaction in ECC. some notification service... like notifiying logged in users about system down time or software upgrades or some thing else.
    I have already built the application and it is working fine.
    As I kept the iview in content area of framework page, it will only refreshed/activated when some action happen in content area of framework page. so, I need some advice on.... even user is idle, this iview should be refreshed and show the pop up.
    Issue here is: there are two iViews 1. Publish Notification and 2. Display Notification.
    Publish notification iView is given to the users to trigger/publish notifications and Display Notification iView is kept under Content Area of Inner Page of the Framework page.
    So, when Content area is refreshed or had some action, then only Dispaly Notification iView will be triggered and then pop up message (notification) is Visible.... Now I the requirement is, even when user is idle then also display notification iview/dynpage and its methods should execute.
    Thanks,
    Pradeep

  • Detremine any user is logged in.

    I know this has been asked before but none of the threads I have found give an answer to this or at least a good answer. Is there any way that I can determine if there is a user logged into a workstation, not the Primary user or logged onto primary workstation option. (The Primary user and Primary Workstation is useless in our environment as we have multiple users per workstation daily.) There are some actions in bundles that do not play nice when no user is logged in and it would be nice not filling up the log with these messages, for example "There is no user session available or user session cannot be determined". Also if there is a bundle that needs to know if there is a user logged in, as it may need to be run differently if they are not. This would be simple as adding a filter under the Requirements to say "User Logged In" (Yes or No) or something similar so that this action could determine if it needs to run or not.
    Michael

    Craigdwilson,
    > Set an System Requirement for "LogonServer"
    > If nobody is logged on, the var will not exist.
    > I have multiple customers using this solution.
    Perfect. Thanks!
    Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Have an idea for a product enhancement? Please visit:
    http://www.novell.com/rms

  • EM shows alert "User SYS logged on from node but no entry in SYS.AUD$

    Hello,
    When i look on the alert page of my databases i see sometimes the following message "User SYS logged on from <node>.
    I have setup several audit actions, like "create session" to track sessions.
    But in table SYS.AUD$ i see many records, but not the one of user SYS.
    Why? Anyone an idea?
    Best regards,
    hvdtol

    i understand it is comming from metrics, but i don't understand why i can see it in the sys.aud$ table.
    hvdtol

  • How to obtain all users have logged BIEE

    How to obtain BIEE all users have logged, now I want to prevent users from repeated login,  who knows

    Moderator Action:
    This is a duplicate of:
    https://forums.oracle.com/thread/2564878
    and you already have constructive responses in that original thread.
    This new post serves no purpose.
    It is locked.

  • Exchange Connector doesn't add incoming mail to Action Log

    Hi,
    I'm using a Incident form customized with a class extension.
    I already installed the fix SCSM2012_OD_KB2866545_AMD64_14.0.650.7.exe following the procedure.
    When there is an incoming email where end user replies with key words as Closed or Resolved, anything occurs on incident as seeing new status or item in action log.
    any idea ?
    Grazie mille Alex

    Solved with Microsoft Support.
    below detail:
    http://blogs.technet.com/b/servicemanager/archive/2014/02/25/manual-and-review-activities-applied-via-a-template-to-an-existing-work-item-are-created-without-prefix.aspx
    Grazie mille Alex

  • No updation for Action log

    Hi
    We are facing the issue at action log changes for functional location. If are doing any changes in that there is no updation. However some changes are showing in  the action log. Even if we are seeing in the tables like CDHDR, CDPOS, JCDS etc there also same thing. There is no issue in the configuration, its looking right for the functional location catagory. Its happening for any chnages like system status, user status, responsiblity changes etc.

    Hello,
    Can you let us know which changes your not able to see in Action Log.
    Regards,
    Rakesh

  • Action Log Entry Private is "Blue" not ticked.

    Hi Colleagues,
    i have a question. Maybee i only didn`t see the awnser in the admin guide.
    When you have a Action Log Comment sometimes the comment is not ticked as private it`s the field is "filed" out in blue.
    What does this mean?

    Comments with this item checked will not show on the end user portal. since this is SQL bool under the covers, it has three possible values. TRUE (i.e. this comment should NOT be shown to user), FALSE (it's ok to show this to users) and NULL (?).
    I believe, but can't confirm, that null comments are shown to users.

  • Equipment action log and display changes nnot updating

    Hello Guys,
    it is little strange but for some of the equipments action log and display changes are not being updated.
    The records are there only till 2007 but since 2008 whatever changes we make now they are not being recorded in action log or changes.
    But strange thing here is usage list is being updated as it is supposed to be.
    i have checked most of the config. but really not helpful.
    i am clueless here.
    Can anyone help?
    Thanks & Regards,
    vaibhav

    Hi,
    Please see attached code for your review:
    Appreciate your valuable comments.
      INCLUDE ZXEQMU02
    *By: Ralph McKnight/AC  Date: Mar061998.
    *Description: Additional fields to be saved on append structures
                during equipment add/change - This development was
                Undertaken as a core modification - The exporting
                function parameters were changes to pass back the
                structures with the new user values.
    *Sir4726 - Disable equipment popup box for equipment type 'E'
    *Sartd42467-Add kokrs & kostl to auto maint
    *By Ralph McKnight Apr161998.
    *SARTD 75148 - 4.6C Upgrade, CH4K902173, Import/Export parameters can no
                 longer have the same names, added a Changing parameter to
                 return the changed values of EQUI and EQUZ to save the
                 append structure fields ZAEQUI and ZAEQUZ for Job
                 Resource Scheduling.
               - Also set the flags to update EQUI and EQUZ.
                 by: HBAY342
    *SARTD 92504 - Save new maintenance plant into ABAP memory. Needed for
                 9/26/02 E.Krenz
    *SARTD 109167 - AMI Foreign Trade REquirement. - Validations against
                - AMI Foreign Trade Synchronization tables(ZAESYNCDIV &
                  (ZAESYNCMAT)         before save
                  of the equipment.
    SARTD 111318 - CHLK9A0I4A Check Equipment Acquisition Date, Value and
                     currency to avoid dump by SAP Standard system
    SARTD 113133 AMI project: Added function call to prevent users from
                 manually changing equipments when it is on a AMI transfer
                 form.
    KR 140649    AMI: Added parameter to FM call
                 for Z_AMI_CHCK_IE02_UPDATE_ALLOWED.  E.Krenz 12/23/03
    03/02/2004  HBB8705   CHLK9A0WYR   EQUZ Append field rename
    Modification Log
    Date        User    Transport   KR     Description
    06/29/2005  HBAK946 CHLK9A1N05  169999 RA Equipment Lockdown
                                           If equip is RA, check authority
                                           If no auth., then issue a mess
    06/30/2005  HBAK946 CHLK9A1N29  169999 RA Equipment Lockdown
                                           Only process RA check if in
                                           t-code IE01, IE02 will be
                                           handled in user-exit
    Begin of CH4K902173 - 4.6C upgrade - Changed import/export/changing
    parameters
    Old way follows:
    *This is how the call to this routine should look with our mods.
    *Note: the changes to the std are labeled with "DS Part 6 - RGM1
    call customer-function '001'
         exporting
              data_equi           = equi
              data_eqkt           = eqkt
              data_equz           = equz
              data_iloa           = iloa
         importing
              own_msg             = own_msg
              data_equi           = equi "DS Part 6 - RGM1
              data_eqkt           = eqkt "DS Part 6 - RGM1
              data_equz           = equz "DS Part 6 - RGM1
              data_iloa           = iloa "DS Part 6 - RGM1
         exceptions
              posting_not_allowed = 1
              others              = 2.
    New way follows:
    CALL CUSTOMER-FUNCTION '001'
          EXPORTING
               ACTIVITY_TYPE           = ACTIVITY_TYPE
               DATA_EQUI               = EQUI
               DATA_EQKT               = EQKT
               DATA_EQUZ               = EQUZ
               DATA_ILOA               = ILOA
               MAIN_CLASS              = RM63E-KLASSE
               DATA_RM63E              = RM63E
          IMPORTING
               UPDATE_DATA_EQ          = UPDATE_DATA_EQ
               UPDATE_FLAGS_EQ         = UPDATE_FLAGS_EQ
               UPDATE_DATA_EZ          = UPDATE_DATA_EZ
               UPDATE_FLAGS_EZ         = UPDATE_FLAGS_EZ
          CHANGING
               CHGD_EQUI               = EQUI
               CHGD_EQUZ               = EQUZ
          EXCEPTIONS
               POSTING_NOT_ALLOWED     = 1
               POSTING_NOT_ALLOWED_EXT = 2
               OTHERS                  = 3.
    End of CH4K902173 - 4.6C upgrade - Changed import/export/changing
    Changes for SARTD 111318 to check Acquisition Date, Value and currency
    Commented By Nikhil. Function Module looks to be specific for US.
    *data: v_retval like sy-subrc.
                                                                "CHLK9A0I4A
    *call function 'Z_VERIFY_ACQUISITION_DATA'
                                                                "CHLK9A0I4A
    exporting
                                                                "CHLK9A0I4A
       p_equi        = data_equi
                                                                "CHLK9A0I4A
    importing
                                                                "CHLK9A0I4A
      retval        = v_retval.
                                                                "CHLK9A0I4A
    *if v_retval ne 0.
                                                                "CHLK9A0I4A
    raise posting_not_allowed.
                                                                "CHLK9A0I4A
    *endif.
                                                                "CHLK9A0I4A
    End of changes for SARTD 111318
    *======================================================================
    Begin of AMI
    *======================================================================
    Begin of insert SARTD 113133
    read calling AMI program
    DATA: z_ami_program(30) TYPE c.
    CALL FUNCTION 'Z_AMI_CHECK_AMI_PRG_ACTIVE'
      IMPORTING
        p_ami_program = z_ami_program.
    AMI validations if Equipment Update is allowed
    For checking Equipment Check permission.
    CALL FUNCTION 'Z_AMI_CHCK_IE02_UPDATE_ALLOWED'
      EXPORTING
        active_ami_program = z_ami_program
        data_equz          = data_equz
        data_equi          = data_equi
        data_iloa          = data_iloa
        main_class         = main_class
        data_rm63e         = data_rm63e
      EXCEPTIONS
        update_not_allowed = 8.
    IF sy-subrc NE 0.
      RAISE posting_not_allowed.
    ENDIF.
    Commented By Nikhil. Function Module looks to be specific for US.
    checks for equipment ring fencing (only for manual IE02)
    *if z_ami_program is initial.
    call function 'Z_AMI_IE02_EXIT_RING_FENCING'
          exporting
               data_equz          = data_equz
               data_rm63e         = data_rm63e
          exceptions
               update_not_allowed = 8.
    if sy-subrc ne 0.
       raise posting_not_allowed.
    endif.
    *endif.
    End of INSERT SARTD 113133
    *======================================================================
    End of AMI
    *======================================================================
    *======================================================================
    Begin of RA Equipment Lockdown >> CHLK9A1N05
    *======================================================================
    check if equipment is Radio Active
    DATA: i_matnr_tab LIKE zhazind OCCURS 0 WITH HEADER LINE.
    DATA: v_land1(3) TYPE c.
    DATA: v_ra_flag(1) TYPE c.
    *Begin of code insertion by pavan on 02 June, 2008.
    DATA: zeqpnr_eccn-zeccn TYPE zeqpnr_eccn-zeccn,
          wa_zeqpnr_eccn TYPE zeqpnr_eccn.
    break pkumar.
    IF sy-ucomm = 'BU'.
      IMPORT zeqpnr_eccn-zeccn FROM MEMORY ID 'ZECCNUM'.
      MOVE: data_equi-equnr TO wa_zeqpnr_eccn-zeqnr,
            zeqpnr_eccn-zeccn TO wa_zeqpnr_eccn-zeccn.
      MODIFY zeqpnr_eccn FROM wa_zeqpnr_eccn.
      CLEAR wa_zeqpnr_eccn.
    ENDIF.
    *End of code insertion by pavan on 02 June, 2008.
    IF sy-tcode = 'IE01'.
      IF NOT data_equi-matnr IS INITIAL AND
         NOT data_equz-zzswerk IS INITIAL.
        SELECT SINGLE land1 FROM t001w
               INTO v_land1
               WHERE werks = data_equz-zzswerk.
        CLEAR: i_matnr_tab.
        REFRESH: i_matnr_tab.
        i_matnr_tab-matnr = data_equi-matnr.
        APPEND i_matnr_tab TO i_matnr_tab.
        CALL FUNCTION 'Z_MATERIAL_HAZARD'
          EXPORTING
            pland1    = v_land1
          TABLES
            matnr_tab = i_matnr_tab.
    check if radio active
        READ TABLE i_matnr_tab INDEX 1.
        IF sy-subrc = 0.
          IF i_matnr_tab-ramat = 'X'.
    check if user has Radio Active access
            AUTHORITY-CHECK OBJECT 'S_TCODE'
                        ID 'TCD' FIELD 'ZIE02_RA'.
            IF sy-subrc NE 0.
              MESSAGE w000(z5) WITH 'No access to create RA equipment'.
              RAISE posting_not_allowed.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
    *======================================================================
    End of RA Equipment Lockdown << CHLK9A1N05
    *======================================================================
    *CHECK NOT data_equi-eqtyp = 'E'.
    *CHECK NOT data_equi-eqtyp = 'F'.
    DATA: v_stor_ucomm LIKE sy-ucomm.
    DATA: v_equnr LIKE data_equz-equnr.
    *Save the system user command field
    v_stor_ucomm = sy-ucomm.
    v_equnr = data_equz-equnr.
    *Get the additional information
    CALL FUNCTION 'Z_GET_MORE_EQUIPMENT_INFO'
      CHANGING
        s_equi    = data_equi
        s_equz    = data_equz
        s_rm63e   = data_rm63e
      EXCEPTIONS
        cancelled = 1.
    *Begin of changes for SARTD 113691
    IF sy-subrc NE 0.                                           "CHLK9A0KY9
      RAISE posting_not_allowed.                                "CHLK9A0KY9
    ENDIF.                                                      "CHLK9A0KY9
    End of changes for SARTD 113691
    *Restore the equip number
    data_equz-equnr = v_equnr.
    data_equz-zzkokrs = data_iloa-kokrs.                        "CHLK9A0WYR
    data_equz-zzkostl = data_iloa-kostl.                        "CHLK9A0WYR
    data_equz-zzswerk = data_iloa-swerk.                        "CHLK9A0WYR
    *****SARTD 109167
    *vALIDATE VALUES PER ami fOREIGN TRADE SYNCHRONIZATION RULES
    *set screen 0101.
    CALL FUNCTION 'Z_AMIFT_VALIDATE_EQUIP_MATNR'
    TABLES
      P_MESSAGES       =
      CHANGING
        p_equi           = data_equi
        p_equz           = data_equz.
    *****SARTD 109167
    CH4K902173 - Should update EQUI and EQUZ, set flag to TRUE.
    chgd_equi = data_equi.                                      "CH4K902173
    chgd_equz = data_equz.                                      "CH4K902173
    *Begin of Changes - CHLK980219 data not retained when creating record
    *UPDATE_FLAGS_EQ = 'X'.                       "CH4K902173
    *UPDATE_FLAGS_EZ = 'X'.                       "CH4K902173
    *End of Changes
    *If cancel was hit then back out of save
    IF sy-subrc NE 0.
      RAISE posting_not_allowed.
    ENDIF.
    *Restore the system user command field
    sy-ucomm = v_stor_ucomm.
    Begin of insert        SARTD 92504, AMI 9/26/02, E.Krenz
    Store new maintenance plant in memory to be used by ZAEQASBR for
    immediate ransfer of maintenance items.
    EXPORT data_equz TO MEMORY ID 'ZAEQASBR'.
    End of insert
    >> CHLK9A1N29
    clear transaction varient before going to IE02 or IE01 main screen
    CALL FUNCTION 'RS_HDSYS_SET_TC_VARIANT'
      EXPORTING
        variant                 = ' '
        flag_client_independent = 'X'
        overwrite_variant       = 'X'.
    << CHLK9A1N29
    Regards,
    vaibhav.

  • IPod not recognized by iTunes-message about other users being logged in

    Recently, whenever I connect my Ipod to the USB device to update my library, I often get an error message stating there are other users using itunes on my computer already, so itunes cannot recognize the ipod. Then it says to ask other users to log out, and then try again.
    No other people but me ever use itunes on my computer and no one else is logged in but me (and I'm the only person who has an iPod account in my family). I try all different things, like logging everyone else's accounst on the computer off, restarting itunes, reconnecting the USB, etc- but nothing works. The message won't appear after this again (unless I've restarted itunes), but a window pops up about my ipod with all different files, like "calendar."
    Can anyone tell me why this happens, and how to connect my ipod when it does?
    Video   Windows XP  

    Try this.
    Fast user switching in Windows XP is not supported.
    Incidentally, this a forum for connecting to a Mac.

Maybe you are looking for