Generate 2 reports in different directorie​s for 1 test

Hi,
I have TestStand 2012 which allows me to generate 2 test reports for 1 test in Result Processing (http://www.ni.com/white-paper/14148/en/). I have also added a Report Options Call Back to my test and modified this (by adding 2 statements (Directory Type & Directory)) so that I can specify the directory I wish the results to appear in.
My problem is that I want the 2 results split into different directories ie HTML result in 1 directory and the txt in another.
Can anyone help?
Thanks
Chris

Hi Chris,
this should be possible.
Launch the ...ProcessingUtility
1.) Create or edit a Configuration.
2.)  Add your desired Reports to your config. , Remove unused stuff.
3.) by Clicking the Tool-Icon good old ReportOption panel comes up. Change it to your desired format.
4.) Do filepath options.
5.) Don't forget to enable
or just look on the attached screenshot
Regards 
Juergen
=s=i=g=n=a=t=u=r=e= Click on the Star and see what happens :-) =s=i=g=n=a=t=u=r=e=
Attachments:
Screen1.JPG ‏106 KB

Similar Messages

  • Generating a report based on two analytics(for ex:PO and PR)

    I have a question regarding generating reports on two analytics.
    In our scenarios,
    We need to generate a report based on Purchase order and Purchase request.Is it possible in OBIA?
    if yes,please provide the solution.
    Thanks in advance

    Hi ,
    Thanks for your valuable time.
    We are in designing phase of the project. we need to know ,Is there any inbuilt dashboards or reports built using both PO and PR repositories?
    I would like to explain with ex:
    Let's say we need a report or dashboard containing few fields from PO and few fields from PR.Let's assume both PO and PR data available at same granularity.
    Do we have any such inbuilt reports or dashboard?
    If not,could we customize the report generation using both PO and PS tables?
    Please provide the solution.
    Thanks in advance.
    Edited by: user3561029 on Aug 31, 2008 9:03 PM

  • How to generate a report on 'Event Received' events for a resource objects

    Hello,
    I want to generate a report on all the recon events which are in 'Event Received' status, on a daily basis. Can you please let me know how to do this and what all tables are involved?
    Thanks

    Well thats pretty simple. Actually there are multiple tables in OIM database responsible for holding reconciliation data but event information is stored in one table RCE. So there are two simple ways to do that as follows:
    *1) Using OIM API ::*
    There is an API exposed (*findReconciliationEvent()*) in the tcReconciliationOperationsIntf interface. You can just pass a HashMap with one filter parameter for ReconEvent status as Event Received. In addition to it this API also requires the StartDate and EndDate (You can give current date for both arguments). This will return you a ResultSet containing all the events which are in that particular state. Just iterate through the ResultSet for all the event information ad create your report.
    *2) Using OIM database query::*
    Just write an SQL query to run in the database schema. Let's assume you have written a scheduler for the same. This is the code for your class:
    tcDataSet dsList = new tcDataSet();
    String query = " select * from RCE where RCE_STATUS='Event Received' ";
    log.debug(query);
    try {
    dsList.setQuery(getDataBase(), query);
    dsList.executeQuery();
    if (!dsList.isEmpty()){
    log.debug("Total Rows Found:" + dsList.getTotalRowCount());
    result = true;
    for (int i = 0; i < dsList.getTotalRowCount(); i++) {
    Write your custom logic here for generation of report
    }else{
    log.debug("No Events Found");
    result = false;
    } catch (tcDataSetException e) {
    e.printStackTrace();
    result = false;
    So you can do it both ways.
    Thanks
    Sunny

  • Historical reporting...reports are different?

    I'm looking at 2 reports for a 24 hour period trying to figure out the total amount of calls handled by the system. The reports are:
    Contact Service Queue Activity Report and Traffic Analysis.
    CSQ Activity Report shows the number of calls handled, abandoned, and dequeued. Traffic analysis just shows 1 bar with total calls.
    Even if I add up all the calls from the activity report, it doesn't match the number on the traffic analysis. What's up with this?
    For example - Yesterday I had roughly 1475 calls including about 50 abandoned calls from the activity report. The traffic analysis shows 1741 calls.
    Any ideas?

    Hello,
    Although there exists some bugs regarding Historical Reporting discrepancies, I've found that most of the times the differences are caused just because the different reports show different information.
    For example, the differences between Traffic Analysis Contact Service Queue Activity Report might be because of this:
    The Contact Service Queue Activity Report includes abandoned ICD calls. (This report counts an ICD call as abandoned if the caller hangs up while queued for a CSQ or CSQs). The IVR Application Performance Analysis Report includes abandoned ICD calls and abandoned IVR calls. (This report counts a call as abandoned if the call ends before it is answered by an agent or before it is marked as handled by a workflow.)
    Another example are the the differences between Traffic Analysis and Called Number Summary Report:
    The Traffic Analysis Report will show any new call received into the UCCX system. For example an inbound call from the PSTN will increase the TA report. This new call will also increase the Called Number Summary Report. However, let's say the agent transfers the call to another agent or back to the CSQ. This will add a second call to the Called Number Summary Report but will not increase the TA report.
    I'm not sure if this will explain the difference on your case or all cases, but I've seen it's the one that confuse most people.
    Please check this FAQ which explains each report and that description might give you an idea if the reports really show a discrepancy or they just show different information:
    http://www.cisco.com/univercd/cc/td/doc/product/voice/sw_ap_to/apps_3_1/english/admn_app/hist_rep/hradvch4.pdf
    HTH. If you really think it could be a bug it would be better to open a TAC case.
    Pablo

  • Generating a report for clients that are not registered

    Hi - Hopefully someone can assist. We are looking to generate a report in SCCM 2012 that will tell us if a client is properly registered, and most recent scan.
    I can't seem to find a generic report for this task, so does anyone know if one exists - or how to create a custom one?
    Thanks!

    what means "properly registered" in your eyes?  To me, if it was able to communicate at all--heartbeat; that means it had to have registered.  But maybe you have a different criterion.
    So I think what you want is simply something like...
    select s.Netbios_Name0, max(disc.AgentTime) as LastHeartbeat
    from v_r_system s
    left join v_agentDiscoveries disc on s.resourceid=disc.resourceid
    and disc.AgentName = 'Heartbeat Discovery'
    Group by s.Netbios_Name0
    order by LastHeartbeat desc
    where the most recent heartbeat at the top; and boxes with no heartbeat reported will be null at the bottom.  If you don't want to even "see" the boxes that have never reported a heartbeat successfully, then don't left join, use just Join
    You could also use v_r_system_valid, instead of v_r_system.  As you can tell by the name, _valid means that CM itself has determined those are valid clients; so that might be what you think of as "properly registered".
    It all boils down to what means "properly registered" to you, and what you mean by "recent scan".  is a recent scan a heartbeat?  a software update scan?  hardware inventory reported?  and what means "recent".  the sample above is
    reporting on anything and everything regardless of date. 
    As for default reports, you're saying that the default reports in "Client Status" don't fit your criteria? 
    Standardize. Simplify. Automate.

  • Why's the SQL format different for the same report on different PCs?

    I have 2 PCs running the same version of Crystal Reports (11.0.0.1994) using an identically configured system DSN with the exact same driver. When I view the SQL that CR is using on PC 1, part of it looks like this:
    " FROM   {oj (("PUB"."LOQEstimate" "LOQEstimate1" LEFT OUTER JOIN "PUB"."LOQComponent" "LOQComponent1" ON ("LOQEstimate1"."Estimate-ID"="LOQComponent1"."Estimate-ID") AND"
    On PC 2 it looks like this:
    "FROM   "PUB"."LOQEstimate" "LOQEstimate1", "PUB"."LOQComponent" "LOQComponent1", "PUB"."CustContact" "CustContact1", "PUB"."LOQSegment" "LOQSegment1"
    WHERE"
    It's the exact same report. Can someone tell me why the SQL is different?
    TIA for the help.

    Thanks for the reply, Patrick. Here are the answers you requested:
    1. Verify you are indeed using the same driver, and they are of the same version
    The driver on both PCs is the Progress OpenEdge 10.1A driver. The file is pgoe1021.dll, version 05.10.0037.
    2. Verify if you have the same database client install on both computer.
    Both use prowin32.exe, v10.1.1.1326
    If everything is the same, then it might be a registry key, and in this case, can you provide the following information:
    1. What database are you connecting to? ( Oracle, DB2, ... )
    Progress OpenEdge 10 RDMS (/community [original link is broken])
    2. What is the version of the database?
    10.1A
    3. What is the version of the database client?
    v10.1.1.1326
    4. How are you connecting to your database? ( Native, ODBC, OLEDB,... )
    ODBC
    5. If you are connecting via ODBC, what is the name of the driver used and it's version?
    The driver is the Progress OpenEdge 10.1A driver. The file is pgoe1021.dll, version 05.10.0037.
    6. What is the SQL query syntax do you prefer? ( PC 1, or the one generated on PC 2 )
    The SQL generated on PC1 doesn't return any records. The SQL generated on PC2 does. Records are preferable ;o)

  • APiI for generating Quote report as Pdf  in oracle iStore

    hi,
    Any one help me on which API is used for generating quote report in oracle istore...

    Are u sure about  the report version.
    Please do upgrade  while  even in oracle  they almost stopped for new version -Developer suite

  • Error while generating the report on Test env (for divide condition)

    Hi All,
    I am facing the below error while generating the report in test environment while the same report is working fine on Prod environment.
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 16001] ODBC error state: S1000 code: 1791 message: [Oracle][ODBC][Ora]ORA-01791: not a SELECTed expression. [nQSError: 16001] ODBC error state: S1000 code: 1791 message: [Oracle][ODBC][Ora]ORA-01791: not a SELECTed expression. [nQSError: 16015] SQL statement execution failed. (HY000)
    Actually the error is coming for the below logics:
    COUNT(DISTINCT RMA.RMA)/COUNT(DISTINCT User."User Name")
    "RMA Fact"."Module Backlog"/COUNT(DISTINCT User."User Name")
    Can anyone please tell if I need to make any configuration changes as the same logic works perfectly fine on production but not on test.
    Thanks in advance

    Is anyone having any idea about it...

  • How to generate a report for all Analyses which conatins a specific column

    Hello Experts
    I am trying to generate a report of all Analyses which contains a specific column. We are currently using OBIEE 11.1.1.7.0.
    I have tried to use the command line options using ./runcat.sh, but did not find any arguments that can filter the analyses by a specific column used.
    Any help is much appreciated.
    Regards
    Rakesh 

    Hi Rakesh,
    SampleApp has your answer: everything is available for free, just copy/paste and run on your own instance.
    http://slc02ojw.oracle.com:7780/analytics/saw.dll?Dashboard&PortalPath=%2Fshared%2F10.%20Lifecycle%20and%20Admin%2F_port…
    (as long as this instance will be up...)
    In the dashboard named "10.31 Webcat Analysis" you have a columns to analysis report where you select the presentation column and you get all the reports using it.
    This dashboard require a script to be run on your catalog, it will parse it and extract all the column info (and many other interesting things) and load it in a database. The scripts are simple and well documented, so you can easily adapt them to your own environment.
    If you want the script there is no miracle solution: download SampleApp and extract it (it's not small, but with all the great content it has we can't complain about that ...).

  • While generating reports in Oracle BI Publisher in pdf format, the generated pdf reports have hindi  इ matra displaced by one character. For example, रिपोर्ट is printed as रपेिोरट.  Word file generated of the same report have correct hindi इ  matra positi

    While generating reports in Oracle BI Publisher in pdf format, the generated pdf reports have hindi  इ matra displaced by one character. For example, रिपोर्ट is printed as रपेिोरट.  Word file generated of the same report have correct hindi इ  matra position and also pdf generated from this word file also contains the same.

  • Can we generate one report tab for each of the prompt values selected in the bobj 4.0 webi report.

    can we generate one report tab which filters
    with each prompt value selected in bobj 4.0 webi report.

    Hi Shrinidhi ,
    It can be achievable with static tabs created for each LOV .But this is not recommended because , object values can change dynamically .
    It is good idea to use section on prompt object in the report .With sections great feature available is in larger report it’s easy to navigate using map. It displays the section tree.You can select the particular LOV to navigate.

  • BO xi 3.1 u2013 schedule a template for multiple reports with different column

    Hi,
    I need to migrate the existing reports from SQL Server Reporting Services to BO, and the column order in the report is very important to the clients since clients have existing code to ingest these reports into their database. Now I want to schedule a single template with different parameters for all reports in BO, or create a single template with lot of parameters for all reports. My question is how I might use one template to create multiple reports with different column orders in the reports?
    For example, client A has the following column order in their report: firstName, LastName, DateBirth, SSN. Client B has the following column order in their report: SSN, DateBirth, LastName, FirstName. Can I use one template to create these multiple reports?
    Thanks!

    Hi,
    The only approach I can think of is to create a template report which uses variables
    For each column you would need to variable
    v_columnAName and v_columnAValue
    v_columnAName would have a if statement in it
    =if([client]="clientA" or [client]="clientC";NameOf([firstName]);if([client]="clientB";NameOf([SSN]);NameOf([lastName]));
    v_columnA would have a if statement in it
    =if([client]="clientA" or [client]="clientC";[firstName];if([client]="clientB";[SSN],[lastName]));
    This would only work when you had a small set of clients.
    This might be more managable if it was done in the universe
    Regards
    Alan

  • Unable to generate Pdf report for crystal 9/10  in Windows 2012 (Standard) server with Times New Roman font. With same font, report getting generated in excel, text, csv format in Windows 2012.

    For Times New Roman font in Windows server 2012 R2 (Standard), crystal 9/10 report in pdf format is not getting generated. When we change the font for specific report like Arial, Calibri , Cambria then pdf report getting created.
    In Windows 2008 R2, same application worked fine to generate pdf report for TimesNewRoman font and there is no change done in the application which is being used in Windows 2012 R2 server.

    Ok, thanks for the reply. You need to contact support or a forum for the Crystal software. Third party products don't usually include Adobe technology, they have their own software. When you contact them, you may want to expand "unable to generate" to give any specific symptoms including any error messages.

  • Generate report in different currency

    HI,
    I got a requirement to generate a report for an entity which is having default currency as "USD". This is very quite easy to generate report by selecting as entity currency. But the requirement is the same report must be in other currency like "GBP" which is not a parent currency of the Current Entity. But the currency is available in my Application. So How can i generate the report and what are things i need to do select? Please clarify my issue....
    Thanks in advance....
    Challenger

    I am not very clear about your requirement. What do you mean by this?
    But the requirement is the same report must be in other currency like "GBP" which is not a parent currency of the Current Entity. But the currency is available in my Application. Can you give us more info about the current layout of your report? Which dimensions do you have in your rows? Is currency an entity or a UDA?
    Cheers,
    Mehmet

  • Different onMouseOver Event for each row of a report

    Hi all,
    See
    http://htmldb.oracle.com/pls/otn/f?p=41861:1
    As you can see in the demo, all employees of a department are shown when you click the detail link for a department. This is done with the help of AJAX technologie to avoid the submit of the page.
    My question is: Is there a possibility to show the the employee report for the correct department when I move the mouse over the row of a department. In other words: what I am searching is a possiblity to define the behaviour of a certain row, so that code like
    <tr onMouseOver="javascript:getEmps(1)">....</tr>
    <tr onMouseOver="javascript:getEmps(2)">....</tr>
    is generated.
    Thank you in advance
    Stephan

    Hi,
    for this you need to call the PLSQL function upon table rendering, which means that you need a field in the table referencing a managed bean. In the managed bean you can use #{row} and resolve it using a ValueExpression. #{row} gives you access to the current rendered row (this is why you need to do it when the table renders) and thus allows you to call getAttribute(name) to get the values of field 1 - 3. The search field value you should get through the bindings reference (assuming the search form uses ADF). Then you create an operation binding for the executeWithParameters and call operationBindingName.getParamsMap().put(argname, argvalue); on it.
    Frank
    Ps.: I am concerned about the performance you get and wonder if it isn't possible to create a transient attribute that executes the function and displays the results. As I understand, the search parameters are only to filter the result set, which you still can do

Maybe you are looking for

  • Itunes won't sync all the songs

    My Iphone 4s simply could not sync all songs in my album.  Itunes could make it look like it synced all of them to the phone while in reality only 70% of the songs are playable, the non-playale ones are going to be in grey and you couldn't even click

  • Revert to 8.1.0 wildly unsuccessful - what next?

    I upgraded to Acrobat version 8.2 when the reminder came up (big mistake) - this version contains a bug that adds a pair of characters in front of the odd page footer. (The bug has not been fixed by Adobe, and you can read the sad story of it here: h

  • Time Machine won't backup notes

    Notes.app in the new Mountain Lion stores its data in a very deeply hidden set of files NotesV1.storedata-wal and NotesV1.storedata-shm found in Library/Containers/com.apple.Notes/Data/Library/Notes. Running Time Machine with Notes in the foreground

  • [SOLVED] calibre fails to start (python2-six: No module named moves )

    i have same problem with last calibre (2.28.0-1): $ calibre Traceback (most recent call last): File "/usr/lib/calibre/calibre/gui2/ui.py", line 226, in initialize ac.do_genesis() File "/usr/lib/calibre/calibre/gui2/actions/__init__.py", line 143, in

  • Can't set alarm, type of alarm isn't even visible

    My alarms worked a month ago and now I can't even set one because the pulldown menu is grayed out. And the option to select what type of alarm I want isn't showing up at all. I just downloaded and reinstalled 1.5.5 but no help. Any ideas? Sherry