Is there a way to NOT "Trace" into Subsequences?

I have some "library" subsequences which is where most of the execution time is spent. These are what is called by my custom steps. Consequently, when I turn "Tracing" on, it is the execution in the "Library" subsequences that are seen the most, rather than the execution in my top level test.
I'd rather NOT see the tracing go into this "Library" sequence file. Considering that we don't see the tracing into the "ProcessModel", is there a way to tell TestStand NOT to trace into a specific file?
Mike

Scott,
This suggestion doesn't seem to work, because I need to implement it in my Custom Step Types.
In order to answer your question about whey I am using custom step types takes a bit of background.
I am doing Software Testing (as opposed to testing to verify that hardware off the production line is working correctly which is more the norm for TestStand).
I had a test scheme implemented in VB (quite extensive). I was asked to implement the testing using TestStand so that Technicians could write and verify the software. Basically I took some of my low level routines that were in VB and created an Active-X.exe which I call using the Active-X steps in Teststand. These are mostly all created using Custom Step types. Examples of these steps are:
Read a Parameter from the UUT.
Write a value to a Parameter in the UUT.
Set an Analog or Discrete Input Value
Read an Analog or Discrete Output Value
We have also implemented these steps using a "Library" of subsequences that are called by these custom step types. One of the neat features is that we "parse" a "constant" or a "Varaible" value from the Step Name, rather than having to open the "Specify Module" to enter the values (makes creating, reading and maintaining the sequences much faster). The values can be entered either through communications or by manipulating the keys and reading the Display (through comms).
Step examples:
Write:tag_INPUT_TYPE(1)=2 /Display
We write (through the display) the "tag", Instance (in parenthesis) and value (=2) to the UUT. The Tag, Instance and Value are all parsed from the Step Name in the library routine.
WriteFG.sInputTypeTag)((L.Instance))=(L.Value)
In this case, we also Parse to find the
"FG.InputTypeTag" and use the "EVALUATE()" function to get the value of the "FileGlobals.sInputType" from the StepName. Similarly we parse out the "Locals.Instance" and "Locals.Value".
Note that we have a convention to use "L." for Locals, "P." for Parameters, "FG." for FileGlobals and "SG." for StationGlobals to shorten the names on the Steps.
The biggest problem that we have is that everytime we have to change a variable or value, we have to terminate the execution and then restart and get to the test point again. But, that's TestStand I guess...
Mike

Similar Messages

  • TS2446 I can not purchase on ITunes for the first time because I forgot the answer to my security questions, is there a way I can log into my account and figure out the awensers to the questions?

    I can not purchase on ITunes for the first time because I forgot the answer to my security questions, is there a way I can log into my account and figure out the awensers to the questions?

    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • HT1391 iphone5 is solen is there any way we can trace it with serial numer

    iphone5 is stoel is there any way we can trace it with yhe serial number

    That is not possible.
    If Find My iPhone was enabled on the device prior to it being lost, simply sign into iCloud.com and see if it can be tracked.  If the phone is turned off, the SIM card is removed, or it otherwise is unable to connect to the Internet, the Find My iPhone feature will be unavailable.

  • Is there a way of not having to type in my password when i turn my macbook on?

    Is there a way of not having to type in my password when i turn my macbook on? Can i turn this off in system Preferences?

    Yes but that a bad idea.
    System Preferences, Users and Groups, click the Lock Icon and type in your password, click on Login Options, then in Automatic login set it to your user name.
    But as I said above that is a very bad idea. Anyone that turn on your computer would then be logged into your account, can read all your files and make changes to lock you out. Also in the duture when you may need to enter a password do do something you may forget what your password is.
    Good Luck.

  • HT2729 Is there a way to store videos into a separate album right after you shoot it on iPhone camera?

    Is there a way to store videos into a separate album right after you shoot it on iPhone camera?
    Finding videos in iPhone photo album requiers you to search through everything on your album. Is there a way to create separate video album or have them automatically save to a dedicated video album?
    It's a pain finding videos when you use the camera so much and as it is I'm constantly organizing the photos.

    Not even an app that might do this?

  • Is there any way I can trace my stolen I phone , if so how?

    Is there any way I can trace my stolen I phone , if so how?

    IF you set up find my iphone on the iphone itself AND it is on AND it has not been restore by the thief, then you may be able to track it using icloud.
    Otherwise you cannot track it.

  • Is there a way of merging photos into one event on ipad mini without syncing from PC ?

    is there a way of merging photos into one event on ipad mini without syncing from PC ?

    Unfortunately cutting and pasting doesn't work.  The margins are so different for each document as the first document is a standard report with the text centered on the page while the second document is in the form of a letter that is off center toward the right side of the page.  Cutting and pasting either one into the other (I've tried both ways) alters both documents in a way that causes the images, quotes, etc that are interspersed throughout each of them to show up in the wrong place (and they cannot be moved to the correct location due to the differences in margin. 
    They really need to simply be placed end to end rather than trying to combine them into one.  This is apparently a simple thing with Pages on the Mac itself but it does not appear to be as simple with the iPad app.  Thanks anyway for your help.
    John

  • Is there a way of not displaying entries in the Blog based on today's date

    Hi,
    I'm using the Blog layout in iWeb for a calendar.
    Somewhere in this discussion forum, I found how to sort the entries by increasing date (many thanks for that).
    The question I have: Is there a way of not displaying entries in the Blog overview of which the date is in the past ?
    Thanks

    Hi Cyclosaurus,
    the link you refer to (http://test.cyclosaurus.com/Site/Blog/Blog.html) seems to be broken. I can't see the script.
    Can you sent me a script to automatically hide events from the past (based on today's system date) ?
    please note that I use following script to reverse the summary (which i found in the discussion forum):
    <script type='text/javascript'>
    function reverseSummary() {
    blogSummaryWidget = parent.document.getElementsByClassName('com-apple-iweb-widget-blogSummary flowDefining')[0].widget;
    blogEntries = blogSummaryWidget.blogFeed.itemCount();
    blogSummaryWidgetID = blogSummaryWidget.instanceID;
    blogSummaryContentDiv = parent.document.getElementById(blogSummaryWidgetID + '-summary-content');
    if (blogSummaryContentDiv.childNodes.length > 0) {
    for (be=1; be<blogEntries; ++be) {
    bi = (blogEntries - 1) - be;
    blogSeparator = parent.document.getElementById(blogSummaryWidgetID + ('-separator-template$' + bi));
    blogSummaryContentDiv.appendChild(blogSeparator);
    blogEntry = parent.document.getElementById(blogSummaryWidgetID + ('-item$' + bi));
    blogSummaryContentDiv.appendChild(blogEntry);
    clearInterval(chkSummary);
    chkSummary = setInterval('reverseSummary()', 1000);
    </script>

  • Is there a way to not load images in safari? Like on android you can tick a box to load images or no to the internet?

    Is there a way to not load images in safari on ios 7 like in android there is
    The option to load or not load images?

    My reply here was specific for this thread, but as you noted, I didn´t read careful enough. I wrongfully took for granted that issues in the More Like This box was platform dependent. I tried to apolgize accordingly, I would like to see the post deleted, but that doesn´t stop you from policing obviously.
    And instead of arrogantly replying about matters irrelevant for this thread, maybe you should start reading more carefully yourself. The posts you are referring to are related to large images failing to load properly in Safari 7. This is not as you claim "vaguely related". Take this elsewhere if you have a problem with it.
    Again, sorry for messing up the thread.

  • Is there a way to not have photo stream photos save to my iphone?  i have many shared photo streams hoping to not bog down my iphone space.  but alas the photos are are being saved on my iphone.

    Is there a way to not have photo stream photos save to my iphone?  i have many shared photo streams hoping to not bog down my iphone space.  but alas the photos are are being saved on my iphone.
    For example.  When I share a photo stream with my dad and brother and mother all the photos they are putting in the shared photo stream are taking up space on my iphone!  I'll be out of space in no time at this rate.

    hi, this thread already deals with the issue:
    How can I prevent getting calls from number that are not in my address book?

  • I have a ipod touch 2nd generation 8gb 4.2.1 im new to itunes i made a itunes account but it says i need a payment method is there anyway i can use my paypal if not is there a way to not have to use a payment method for itunes store please help ty

    i have a ipod touch 2nd generation 8gb 4.2.1 im new to itunes i made a itunes account but it says i need a payment method is there anyway i can use my paypal if not is there a way to not have to use a payment method for itunes store please help ty

    Create a NEW account using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before.
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    Using those instructions you may also be able to select PayPal if that is allowed in your country.

  • Is there a way to insert comments into numbers on an ipad, or an alternative?

    Is there a way to insert comments into numbers on an ipad, or an alternative?

    If you mean in the iBooks app - tap on Collections in the upper left corner. Then tap New. Name the collection. Tap Done. Then tap the Edit button in the upper right. Tap on the books that you want to move to select them. Tap Move in the upper let corner. Select the newly created collection.

  • Is there a way to enter data into a numbers cell on the screen directly, no keypad?

    Is there a way to enter data into a numbers cell on the screen directly, no keypad?
    Using a stylus or finger?

    No. You have to use the built-in keyboard or a bluetooth connected external keyboard.
     Cheers, Tom

  • I apparently have 3 apple IDs, and it's making it challenging to set up iCloud. Is there a way to combine them into the one I actually use?

    I apparently have 3 apple IDs, and it's making it challenging to set up iCloud. Is there a way to combine them into the one I actually use?

    You can't combine or merge iCloud IDs, but you can migrate the iCloud data from one account to another if you wanted to move it to a different ID.

  • Is there a way to download data into CSV format?

    Is there a way to download data into CSV format?
    I can't do this using delimiter as ',' because user wants the decimal format in the ','s only.
    Any suggestions?

    go through this link...
    Download CSV file in presentation server through FM GUI_DOWNLOAD
    Re: how to create a CSV file
    type-pools:TRUXS.
    data: begin of itab occurs 0,
          vbeln like vbap-vbeln,
          posnr like vbap-posnr,
          end of itab.
    data:  itab1 type TRUXS_T_TEXT_DATA.
      select vbeln
             posnr
             up to 10 rows
             from vbap
             into table itab.
    CALL FUNCTION 'SAP_CONVERT_TO_CSV_FORMAT'
    EXPORTING
       I_FIELD_SEPERATOR          = ','
      TABLES
        I_TAB_SAP_DATA             = itab
    CHANGING
       I_TAB_CONVERTED_DATA       =  itab1
    EXCEPTIONS
       CONVERSION_FAILED          = 1
       OTHERS                     = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
       CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename = 'C:TEMPtest.TXT'
        TABLES
          data_tab = itab1
        EXCEPTIONS
          OTHERS   = 1.

Maybe you are looking for

  • ADFS 3.0 WAP and Non-Claims-Aware Relying Party Trusts

    I am attempting to migrating a Windows Claims SharePoint page to ADFS 3.0 (Windows Server 2012 R2) and the WAP (Web Application Proxy) from UAG, but are running into problems when our external users attempt to authenticate.  Users from our external d

  • Windows 7 won't print pdf to network printer connected to Mac

    Hi, I have a printer connected to my Mac and have shared the printer on my home network.  I can print documents from a Windows 7 computer on my network but when I try to print a pdf from adobe reader it will not print, or ever go to the print queue. 

  • Integration Repository Responsibility

    Hi dear, EBS R12.1 OEL 5.4 How do I create an "Integration Repository Responsibility"? In our VISION instance this resp. is existing, but in our CRP/UAT instance it is not :( Please help.... Thanks a lot, Ms K

  • CRM Interfaces with R/3 programming

    Hello Experts, I am new to CRM programming in ABAP. Can anyone send me some example programs for interfaces, BADIs and BDOCs in CRM which can be used as a reference for integrating CRM with R/3 interface developments. Thanks Ricky

  • Steps to create readonly credential for BPEL console

    Hi, I would like to create read only user for BPEL, ESB, EM Console. Please share me steps to create the same. And also let me know how to disable the radio buttons for read only user, for example "Abort, Cancel, Delete, Migrate, Resume" buttons that