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.

Similar Messages

  • Latest update and display changes

    after the latest update my display changed to higher resolution and when I go inot the preference pane I only show two available resolutions.
    What can I do to fix this
    Thank you for any help

    I tried adjusting the value of layout.css.devPixelsPerPx but that did not help. The only thing that temporarily fixed my display issues was to close Firefox- at that point the screen blacked out and reappeared in full view. As soon as I open Firefox the screen blacks out and reappears showing only a portion of my desktop and all the icons not visible are no longer clickable because the mouse cursor can't reach them.

  • Yosemite slow load and display changes at logon screen

    Hi
    I updated my Macbook Pro to Yosemite; since then at logon the display scale is bigger than my default, but once logged on the display changes smaller to my default.
    At the logon I find that it takes longer to load after entering password etc; status bar rolls and taking about 30 seconds (instead of the 5 seconds previously in Mavericks).
    Also find that after logon, it takes a few minutes to connect to the internet and be ready to use.
    This never happened previously, was instant after logon could go straight into email or safari and work.
    Is others experiencing this and what can I do to improve this?
    Thanks

    Hi
    I updated my Macbook Pro to Yosemite; since then at logon the display scale is bigger than my default, but once logged on the display changes smaller to my default.
    At the logon I find that it takes longer to load after entering password etc; status bar rolls and taking about 30 seconds (instead of the 5 seconds previously in Mavericks).
    Also find that after logon, it takes a few minutes to connect to the internet and be ready to use.
    This never happened previously, was instant after logon could go straight into email or safari and work.
    Is others experiencing this and what can I do to improve this?
    Thanks

  • Differences between authorization role display and display change document?

    Dear All,
    I want to know what are the differences between activity authorization between display and display document change?
    Regards
    Aishah

    Dear Mr Robert,
    thanks for replying me. actually, it is to prevent user from other dept to change the PO even print/message. when i check inside authorization the configuration is only for their own dept by putting dept code at pur org field of change. but still can change. it is because of the me22 layout screen?

  • Powershell script to update a field value (recursively) in sharepoint form a .CSV file and not changing the updated by value

    need to run through a list of old to new data (.csv) file and change them in a sharepoint list - can not make it work
    here is my base attempt.
    $web = Get-SPWeb site url
    $list = $web.lists["List Name"]
    $item = $list.items.getitembyid(select from the items.csv old)
    $modifiedBy = $item["Editor"]
    #Editor is the internal name of the Modified By column
    $item["old"] = "new from the .csv file parsed by power sehll
    $ite.Syste,Update($false);
    $web.Dispose()

    Hi,
    According to your description, my understanding is that  you want to update SharePoint field value from a CSV file recursively.
    We can import CSV file using the Import-CSV –path command, then update the field value in the foreach loop.
    Here is a code snippet for your reference:
    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
    $csvVariable= Import-CSV -path "http://sp2010.contoso.com/finance/"
    # Destination site collection
    $WebURL = "http://sp2010.contoso.com/sites/Utility/"
    # Destination list name
    $listName = "Inventory"
    #Get the SPWeb object and save it to a variable
    $web = Get-SPWeb -identity $WebURL
    #Get the SPList object to retrieve the list
    $list = $web.Lists[$listName]
    #Get all items in this list and save them to a variable
    $items = $list.items
    #loop through csv file
    foreach($row in $csvVariable)
    #loop through SharePoint list
    foreach($item in $items)
    $item["ID #"]=$row."ID #"
    $item.Update()
    $web.Dispose()
    Here are some detailed articles for your reference:
    http://blogs.technet.com/b/stuffstevesays/archive/2013/06/07/populating-a-sharepoint-list-using-powershell.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/25125.sharepoint-2013-powershell-to-copy-or-update-list-items-across-sharepoint-sites-and-farms.aspx
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Hda and hdb changes after updating

    Hello,
    i've reinstalled my "main computer" a few weeks ago after using it for a year or so with OpenBSD. The System is an old IBM Server which i got used a year ago.
    I've installed archlinux on an SCSI disk which hangs on an onboard-LSI-Controller.
    There is also a bit SATA-Disk which hangs on an PCI-addon-SATA-Controller with an SIL chipset.
    Yesterday i've updatet my System with pacman -Syu, and shut it down yesterday evening. This morning my system won't boot, fsck said "Bad Superblock" or so on sda3 which contains my / filesystem. After a few tries i found out that sda which was my scsi system disk and sdb which was my "big" sata drive switched the letters, so after changing the letters in the fstab, everything works fine now, but i'm a bit confused, as i had never such an issue after updating before.
    Is this perhaps a bug that i should post anywhere? Or have i missed a threat or a news anywhere that announced this behavior?
    Thanks a lot!

    The advice these days is to use uuids which are unique to each volume to avoid these types of problems. the wiki on fstab tells you how. No idea why you experienced this though.

  • How to fetch and display arbitrary log files from a managed host?

    We are creating a small management portal for a custom application and need a way to display, in a browser, the contents of an arbitrary log file located on an EM managed host. The effect we are looking for is similar to what you get when you show the contents of a database alert log using EM.
    I want to extend the EM agent to get the log and display the contents, but see two problems: (1) it seems like we would have to schedule the fetch of the log contents to happen on a regular basis and would not be able to do it on demand and (2) storing the results in the EM repository seems like it could consume a pile of storage, even if it only stores the logs for 24 hours.
    I am pretty sure we can bypass the repository somehow because I think the "show database alert log" EM process does so. Of course, I can't really be sure how this code is getting the alert log, but it seems reasonable to assume it is using the management agent.
    Is there some API for the EM Agent that I am missing?
    Any ideas would be appreciated.

    From within OEM it doesnt look possible. User defined metrics (UDM) can only return number or a string. The alertlog fetch is done via alertlogViewer.pl while being passed a couple of parameters.
    OEM does have a preliminary/rough api available at http://www.oracle.com/technology/products/oem/emx/index.html but I havent seen anyone make use of it yet.
    If you use just a web connection then you will probably run into security issues as a web server can usually only view/access stuff under their htmldoc dir.
    Seems like some non-OEM very custom code is what you seek..

  • Notification Action Log missing fields

    Hello,
    We are working with Quality Notifications in SAP and have found the following issue:
    Some of the changes made on a quality notification do not get recorded in the action log. Examples are: Additional batch field, Subject long text, adding or deleting attachments, deleting a task, creating a defect, etc.
    How do I check which fields are relevant to be shown in the action log? can we add more fields to be relevant to the action log ? Have you found any workaround for this problem?
    Any input will be appreciated...
    Thanks,
    Jose

    Hi Jose,
    Did you find the solution to your problem?
    I'm also trying add some fields to check for the Action Log and unable to find it in the Config.
    Thanks,
    Arthi

  • PM:Action log for Settlement rule

    Dear all,
    May i know are there any way that i can see the changes that being done at screen maintain settlement rule. For example if I change the settlement type, system will keep the change/action log for that changes.
    One more question, what the different between settlement type 'FUL' and 'PER' (impact to the settlement)
    thank you so much,
    Siti Norbaida

    Hi,
          I Hope this Documentation will help you ........
    Settlement type
    Depending on the processing type, the settlement type determines which settlement rule is used in a particular type of settlement processing.
    The SAP system supports four settlement types. The AUC and PRE settlement types are used for settlement of capital investment measures. You can only use the PER settlement type for planned settlement.
    PER (periodic settlement):
    Settlement with this settlement type covers only the costs for the relevant settlement period.
    The following data from internal cost allocations:
    Sender cost center/activity type sent
    Business process
    Quantities
    is allocated further to the following receivers:
    Cost center
    Internal order
    Sales order
    WBS element
    Cost object
    Business process
    Actual activity prices, elimination of internal business volume and variances can then be calculated correctly in Cost Center Accounting and Activity-Based Accounting;
    FUL (full settlement):
    You can use this settlement type in automatic settlements.
    The difference to periodic settlement is that in full settlement you settle each time all the costs that have occurred for a sender object for all the periods prior to the settlement (and are not yet settled). If PER rules exist, they take precedence over the FUL rule.
    Quantities from internal activity allocations are not sent to the receiver. This means that there is no guarantee that actual activity prices, elimination of internal business volume, and variance calculation will take place correctly. For this reason, we do not recommend that you use FUL for cost centers or business processes.
    AuC (Capitalization in asset under construction):
    This settlement is automatically generated if you enter a capital investment profile with an AuC as its capital investment measure in the order control data.
    Settlement is conducted periodically and in full to the AuC
    PRE (periodic preliminary settlement):
    You can enter PRE rules in the settlement rule for the order. They are used as part of settling capital investment measures.  Depending on the rules you entered, posted debits are settled to the CO receivers or to a G/L account before the periodic settlement.
    It is good idea to do this for particular line items if there are additional costs assigned to a capital investment measure that should not be capitalized. This may be necessary, should you wish to monitor the total costs of the measure in controlling.
    Use
    Note that settlement type FUL permits quantity settlement for primary cost elements only.  You cannot settle quantities to assets.
    Note that you cannot manually create or change a distribution rule with settlement type AUC.  This has the following effect on settlement rule maintenance:
    The required rule is generated from the asset under construction, which is stored in the master data for a capital investment measure, ( order or WBS element)when you carry out settlement for the first time.
    Regards,
    Gangadhar

  • When I try to update apps on my iPad, it asks me for my mothers password and displays her apple ID.  How do I change it to ask for my apple id and password???  I am signed into the store and iCloud with my apple id.

    When I try to update apps on my iPad, it asks me for my mothers password and displays her apple ID.  How do I change it to ask for my apple id and password???  I am signed into the store and iCloud with my apple id.  I am not signed into ITunes, the store on the ipad, or icloud under her name.  WIERD???

    There is no featured tab in my iTunes store. . . and everywhere it shows me signed in. I had downloaded an app for my mother on HER ipad, and that is the only app I have done for her. It shows up on my phone, and now I cannot update any of my apps. I uninstalled that app on my phone, but when I want to update ones I have installed on my phone with my appleid, she keeps showing up.
    Joyce

  • HT5621 I changed my email address and therefore changed my Apple ID and password on my Mac. Now when i want to use iCloud on my iPad and my iPhone my old email comes up as my Apple ID and I cant log in or update any apps on my iPhone or iPad. Can you help

    I changed my email address and therefore changed my Apple ID and password on my Mac. Now when i want to use iCloud on my iPad and my iPhone my old email comes up as my Apple ID and I cant log in or update any apps on my iPhone or iPad. Can you help me?

    Downlands wrote:
    Cant sign out. No password for now reduntant appleid
    If you're asked for the password to your previous Apple ID when signing out of iCloud - Apple Support

  • Change logs not working for manual update modify/delete statements.

    Hi experts,
                     My requirement is to display the change logs for a few custom z tables.The log data changes is selected in technical settings of the table.When any changes are made to the table using sm30 the changes are logged.
    My requirement also displays an alv grid which allows the users to edit/insert/delete   entries in the table.
    In this case the change logs are not getting recorded(ie whenever the user manually updates or inserts a row into the table the change docs are not getting stored).
    My code works like this,
    Whenever the user chooses a custom table and selects the display change log button i transter the control of my abap program to the standard  rsvtprot program(sap std. pgm to display change logs).
    sample code:
    elseif sscrfields-ucomm eq c_chgdoc.
        refresh:r_seltab.
        clear:r_seltab.
        r_seltab-sign   = 'I'.
        r_seltab-option = 'EQ'.
        r_seltab-low      = w_tab.
        append r_seltab.
    Call the sap standard program rsvtprot via selection screen
    by passing the table name and display grid parameters.
        submit rsvtprot via selection-screen
                          with cusobj   in r_seltab
                          with alv_grid eq c_x
                          and return.
    Is there any way by which i can extend the change logs functionality for the changes made using the alv grid?
    Please help me out.

    Hi Anuraag,
    In TM you should open the transaction /SCMTMS/ZONE. Here you select the zone you would like to modify and you execute the changes you would like to make.
    Regards,
    Nico.

  • Validation and displaying as log file

    hi i need to do some validation! actually in my program the delivering country and the import code works as the key. so i need to check that the delivering country and the import code is present in a table t604.(i am updating data from presentation server to an internal table)
    and also i need to check that whether the country of origin is in the table t005 or not.
    if the validations are success then put those into a log file and dsiplay otherwise put the error record in a log file and display and also the total; no of error records and the no of records!!
    can u people plss help me!!

    Dear Sonia,
    u can try this.
    1. Make the dropdown fields mandatory( by changing 'State' property.)
    2. Use the "Check_mandatory_attr_on_view " method...
    Just follow the code........
    data:
    lo_view_controller        TYPE REF TO if_wd_view_controller,
    msg_tab                     TYPE cl_wd_dynamic_tool=>t_check_result_message_tab.
      lo_view_controller = wd_this->wd_get_api( ).
        cl_wd_dynamic_tool=>check_mandatory_attr_on_view(
        EXPORTING
        view_controller = lo_view_controller
        IMPORTING
        messages = msg_tab ).
    Hope this will solve ur purpose. Let me know...
    Regards,
    Aditya.

  • My performance is very slow when I run graphs. How do I increase the speed at which I can do other things while the data is being updated and displayed on the graphs?

    I am doing an an aquisition and displaying the data on graphs. When I run the program it is slow. I think because I have the number of scans to read associated with my scan rate. It takes the number of seconds I want to display on the chart times the scan rate and feeds that into the number of samples to read at a time from the AI read. The problem is that it stalls until the data points are aquired and displayed so I cannot click or change values on the front panel until the updates occur on the graph. What can I do to be able to help this?

    On Fri, 15 Aug 2003 11:55:03 -0500 (CDT), HAL wrote:
    >My performance is very slow when I run graphs. How do I increase the
    >speed at which I can do other things while the data is being updated
    >and displayed on the graphs?
    >
    >I am doing an an aquisition and displaying the data on graphs. When I
    >run the program it is slow. I think because I have the number of
    >scans to read associated with my scan rate. It takes the number of
    >seconds I want to display on the chart times the scan rate and feeds
    >that into the number of samples to read at a time from the AI read.
    >The problem is that it stalls until the data points are aquired and
    >displayed so I cannot click or change values on the front panel until
    >the updates occur on the graph. What can I do to be a
    ble to help
    >this?
    It may also be your graphics card. LabVIEW can max the CPU and you
    screen may not be refreshing very fast.
    --Ray
    "There are very few problems that cannot be solved by
    orders ending with 'or die.' " -Alistair J.R Young

  • I have a 3G iPhone and have changed my email which I use an an ID.  it is changed on my iTunes (PC) but the old email/ID still appears on my 3G iPhone so I cannot update my Apps..........how do I get the iPhone to accept the new ID??

    I have a 3G iPhone and have changed my email and Apple ID on my laptop/iTunes account.
    How do I get this new ID to show on my 3G iPhone.
    I still have the old ID and cannot update my Apps.
    PLEASE HELP !!
    thanks, Nosuh

    Did you purchase or download the apps with your old ID?  Apps are tied to the ID that is was purchased from.
    If it is a new app you bought with your new ID, you can go into settings - appstore- apple id and then log out.

Maybe you are looking for

  • How do I change to Student Account with Adobe Muse Single App Membership?

    Hello, I have an Adobe Muse Single App Membership running, but now I want to change my account to a student account. How do I have to proceed?

  • Default value in receiver file adapter

    Hi Experts, I am doing JMS to FILE scenario, receiver file structure got 100 fields, i need to create the file with all 100 fields, if anything doesn't exist in source side i need to put empty value in the receiver file, i know i can achieve this usi

  • Exporting/Loading properties for Multiple Numeric steps

    So, my test uses quite a few 'Multiple Numeric' test steps. I am just looking at using the property loader to import all of these limit values. Now as i understand each test step in the property file (excel im y case) must have multiple columns (for

  • SOAP Javascript request

    Hi Struggling with a SOAP service which we cant get to work. I'm not so sure that anyone here can help me out since it is some special circumstances, but it's always worth a try. Some background first: We need to have secure communication with the we

  • Import Only First Track

    I tried importing a CD as MP3 yesterday, and only the first track was actually imported -- the rest of the tracks appeared in the list of files created, but each was 2K in size, with no content. When I went to another computer and did the same, it wo