Report Path Name

Hi,
I have a main sequence file with 5 steps each of sequence call type. I use the multi threading option to generate individual reports for each of the sequences in the sequence call.
I configured the report options call back for the main sequence. I gave a different directory path for the report in Parameters.ReportOptions.Directory . The report corressponding to the main sequence is getting generated in the specified directory. But the reports of the sequence calls are getting generated in the directory specified in the reports option menu.
Is it possible to make the reports generate at the required directory by making changes in the main seqnece alone? How to modify the report path name stored in the report options dialog box in the menu.
Regards
Gopal

Hi everyone,
Just an update in reference to Gopals's question:
Is it possible to programatically give value to the directory in Report Options in Configure>>Report Options. Either using expressions in teststand or from Labview code.
TestStand 4.2 gives you the ability to specify the report path using Expressions as well right from the Report Options dialog box. For instance, this can come in handy in situations where you might want to put all Failed UUT reports in one location and all Passed UUT reports in a different location.
For more information on this, refer to:
NI TestStand Help: Specifying Report File Paths by Expression
NI TestStand 4.2 Release Notes: Using Expressions to Customize Report File Paths
For more information on the new features in TestStand 4.2, refer to:
Whats New in TestStand 4.2
Jervin Justin
NI TestStand Product Manager

Similar Messages

  • TestStand 2012 Custom Report Path/Name

    Does anybody know how to get a TestStand 2012 report placed in a custom location with a custom name, both of which are determined using information obtained in MainSequence? I had a method of accomplishing this in TestStand 2010, but it does not work in 2012.
    Overriding parameters in the ReportOptions callback does not work because MainSequence has not been called yet, and moving the report file in ProcessCleanup doesn't work because the report apparently has not been closed by TestStand yet, so there's nothing that can be moved
    Thanks!

    Btw, the report file not being closed during Process Cleanup is probably due to New Thread option being set for your report in the Result Processing Dialog Box (click Show More Options to see it). You can turn this option off it you want.

  • How to print the report file name and path and the last mod date

    Good morning,
    I am trying to print on the footer of the report the report file name and path as well as the report last modification date.
    Anyone would know how I can do that? I have checked the doc but found nothing.
    Thks. Philippe.

    Did you ever determine how to print report name and report last mod date?
    Thanks

  • Getting web host name, web-port, oral-report server name and virtual path

    Hi.
    I have been using oralce forms 6i on oracle application server 10g. I have three servers installed on remote locations.I just want that when i am hosting an application on a server, the web host name, web port , oracle report server name and the path of directory should be selected in a dynaminc variable at application level at run time. In this manner, I will be able to make a single application for all three servers. Any other solution to this problem is also welcomed. Please help anyone and oblige me.

    Hi Rajesh,
    Actually Web AS Host name is <Servername>.<domain name>:<Port no>
                 Web AS Path for R/3 is </sap/bc/bsp/sapd>
    Refer the following link.
    <a href="https://forums.sdn.sap.com/thread.jspa?threadID=402561">https://forums.sdn.sap.com/thread.jspa?threadID=402561</a>
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=265076">https://www.sdn.sap.com/irj/sdn/thread?threadID=265076</a>
    Regards
    Hemalatha
    /Assign points if helpful/

  • Is there any variable or function to use in a report to show the report path in the OBIEE catalog?

    Hi guys:
      Is there any function or variable that i can use in BI that i can use to show in a report the path name of where that report is saved in the catalog? For example: shared/adm ...
    Thanks!
    Matias

    Explore this page OBIEE - Presentation Variable System (reserved variable) | GerardNico.com (BI, OBIEE, OWB, DataWarehouse)

  • How to find Report Server Name

    Dear All
    Assalam-o-Alikum
    i am running the report using "run_report_object" on "Forms [32 Bit] Version 9.0.4.0.19 (Production)". the problem is that i don't know the Name of Report server, can any body can tell me that from where i find the name of report server.
    i have to give the report server name to run report.
    Thanks
    Best Regards
    Farrukh Shaikh

    hi
    u have to install the report server something like this.
    rwserver -install server=server_name autostart=yeswhen u installed the report server so u can use u r own report server name.
    and u have to use the above code in DOS.
    full path.
    c:\Developer_home\bin\rwserver -install server_name(Any Name) autostart=yes
    sarah

  • How to invoke a report by name instead of ID?

    Hello,
    We have developed several shared reports which are invoked from other applications. In Active Studio we select the Report and use "Copy Shortcut" option in left menu to get a web link such this:
    http://work/oraclebam/ReportServer/default.aspx?Event=ViewReport&ReportDef=4&Buttons=False
    We have two environments: a development and production. We are exporting reports in development and importing in production (using icommand), but ids change everytime, so the parameter above (ReportDef) is not the same as before and we have to re-custom all apps again. The problem is we have several (200+) reports and takes a long time to update all reports, tests and so on.
    Any idea if is possible calling a report by name instead of ID?
    Thank you too much,
    Rogério

    Hi All
    1. In ORABAM Schema, all the Report details are stored in Tables like SysIterReport, SysIterDataset, SysIterParameter, SysIterParameterValue.
    2. Most important Table is SysIterReport. It has "SysIterName" which is Report full name with full path like "/public/Report/MyXyzApp/MyXyzReport1" and "SysIterID". This SysIterID is the Report ID.
    3. So simple Query above table to get all the SysIterIDs for the matching  SysIterName. From returned rows, simple extract last part of the name which is like unique Report name. Now you have a mapping of Report Name versus the Report Id from that OraBAM Schema in that Environment like Qc, UAT or production.
    Select SysIterID, SysIterName from SysIterReport where SysIterName like '%MyXyzApp%'.
    4. I would recommend to create like separate folders for separate bpm projects deployed on same domain. And put that application specific data objects and reports in that folder itself.
    From Java side very simple. On BPM Domain with Oracle BAM configuration, you already have a DataSource that connects to ORABAM Schema by name "BAMDataSource-jdbc.xml" under config/jdbc folder. This XML File has all orabam schema details and also JNDI Name like "jdbc/oracle/bam/adc". Write a simple Java Program. Do JNDI lookup using this datasource name. And from that get connection object. Run above query and get rows back. Build a simple WebPage, and build a dynamic URL as shown below. BamServer host and BamServer Port can be put in a properties file to make it more dynamic. And each environment will have .properties file with those details. Or simple put the below URL as it is which is different for each environment.
    http://bamserverhost:bamserverport/OracleBAM/reportserver/default.jsp?Event=viewReport&ReportDef=
    In the Java code, simple get above url and append the ReportId. And on UI for each URL, show the Report Name. Simple speaking, once you get Rows from SysIterReport table, on java side create a HashMap with ReportName and ReportLink (generated as shown above). And on UI, loop through this Map and show name and link.
    One final thing. If the Java code is deployed to SOA_Server, make sure that the BAMDatasource is deployed to SOA Server also. By default BAMDataSource is targetted only to BAM Server. But java code or ui code is on Soa server. So simple target bam data source to soa source also from Weblogic Console.
    This will WORK and I have already done this. Users will see more user friendly Links on my Task Details page. And clicking on them takes them to the BAM Reports.
    Thanks
    Ravi Jegga

  • Adding batch serial number to report file name in sequential model

    Hi,
    I'm using a Sequential model in TS 4.0 and have learned how to add the UUT serial number to the report file name. But I would like to add the batch serial number instead. Is this possible? Any modifications to the ReportOptions callback seem to only modify the temp report name.
    Thanks!
    Chris

    Hi Chris,
    While Paul's suggestion may be useful in this case, if you would like the flexibility of customizing your Report File Pathnames further, you may want to consider upgrading to TestStand 4.2.
    In TestStand 4.2 we introduced predefined macros and the ability to use custom expressions to specify the Report File Pathname. For example, the <Batch> macro will add the Batch Serial Number to the Report File Pathname as you specify it.
    Please see the Using Expressions to Customize Report File Paths section of the TestStand 4.2 Reference Manual for more information on these new reporting features and how one might use them. For a specific explanation of the different macros and what they might be used for, please see the Specifying Report File Paths by Expression section of the TestStand 4.2 Online Help.
    Manooch H.
    National Instruments

  • Reports path

    Hi,
    I am working on oracle 10g with developer 2000 . I have a problem while running reports. when i run a report it goes to a particular path in which my database are not there and hence gives a error 'cannot find server'. everytime i have to physically change the path of the database to run the report.
    THE PATH WHERE MY APPLICATION AND THE IP ADDRESS OF WINDOWS SYSTEM IS THIS
    http://comp:8889/reports/rwservlet?destype=cache&desformat=pdf&paramform=yes&parameter=yes&report=d:\source\pension\R_CPO&PRM_TXN_TYPE=&PRM_OFF_ID=209&PRM_SECN_ID=PV1&PRM_USER_ID=IAAD&PRM_MENU_ID=R_CPO&PRM_MENU_NAME=CPO&userid=SAIBANG/SAI@saibang
    WHERE AS THE REPORT TAKES ME TO THIS PATH
    http://10.112.137.170:8889/reports/rwservlet?destype=cache&desformat=pdf&paramform=yes&parameter=yes&report=d:\sai\bangalore\pension\R_CPO&PRM_TXN_TYPE=&PRM_OFF_ID=209&PRM_SECN_ID=PV1&PRM_USER_ID=IAAD&PRM_MENU_ID=R_CPO&PRM_MENU_NAME=CPO&userid=SAIBANG/SAI@saibang
    I had a look at the reports conf file , but couldnt find the path of the database which the report shows for me to change it. It looks like some where the report path has been hardcoded but i am not able to locate it.
    There might be some link missing while installing the application and the database and thats why i thought i could post this in this forum.
    I would be thankful if anyone could help me out to configure the reports path for effective running the report
    thanks in advance
    nana

    thanks a lot for your answer. Sorry for troubling you again. I did search the file in Devsuitehome\reports\dtd. "file:/D:/orant/reports/dtd/rwserverconf.dtd"> In my rwserverconf.dtd i looks different
    <!--
    Copyright 2000, 2005 Oracle Corporation.
    500 Oracle Parkway, Redwood Shores, CA 94065, U.S.A. All rights reserved.
    This is the DTD defining the Reports Server Configuration file
    (XML) format/syntax.
    -->
    <!ELEMENT server (compatible?,
    cache?,
    engine+,
    security*,
    oidconnection?,
    destination*,
    networkConfig?,
    job+,
    notification*,
    log?,
    jobStatusRepository?,
    trace?,
    connection?,
    ORBPorts?,
    queue?,
    persistFile?,
    jobRecovery?,
    identifier?,
    environment*,
    pluginParam*)>
    <!ATTLIST server
    version CDATA #IMPLIED>
    <!ELEMENT cache (property*)>
    <!-- class specifies full qualified java class name which implements
    oracle.reports.cache.Cache interface -->
    <!ATTLIST cache
    class CDATA "oracle.reports.cache.RWCache">
    <!ELEMENT engine (property*)>
    <!-- class specifies full qualified java class name which starts engine -->
    <!ATTLIST engine
    id ID #REQUIRED
    class CDATA #REQUIRED
    classPath CDATA #IMPLIED
    initEngine CDATA "1"
    maxEngine CDATA "1"
    minEngine CDATA "0"
    engLife CDATA "50"
    maxIdle CDATA "30"
    callbackTimeOut CDATA "60000"
    jvmOptions CDATA #IMPLIED
    engineResponseTimeOut CDATA "0"
    defaultEnvId CDATA #IMPLIED>
    <!ELEMENT security (property*)>
    <!-- class specifies full qualified java class name which implements
    oracle.reports.server.Security interface -->
    <!ATTLIST security
    id ID #REQUIRED
    class CDATA #REQUIRED>
    <!ELEMENT oidconnection EMPTY>
    <!ATTLIST oidconnection
    init CDATA "10"
    increment CDATA "10"
    timeout CDATA "0">
    <!ELEMENT destination (property*)>
    <!-- class specifies full qualified java class name which subclass
    oracle.reports.server.Destination abstract class -->
    <!ATTLIST destination
    destype ID #REQUIRED
    class CDATA #REQUIRED>
    <!ELEMENT networkConfig EMPTY>
    <!ATTLIST networkConfig
    file CDATA      #REQUIRED>
    <!ELEMENT job EMPTY>
    <!ATTLIST job
    jobType CDATA "report"
    engineId IDREF #REQUIRED
    securityId IDREF #IMPLIED>
    <!ELEMENT notification (property*)>
    <!ATTLIST notification
    id CDATA "mailNotify"
    class CDATA #REQUIRED>
    <!ELEMENT log EMPTY>
    <!ATTLIST log
    option (allJobs|succeededJobs|failedJobs|noJob) "noJob">
    <!ELEMENT jobStatusRepository (property*)>
    <!-- class specifies full qualified java class name which implements
    oracle.reports.server.JobRepository interface -->
    <!ATTLIST jobStatusRepository
    class CDATA "oracle.reports.server.JobRepositoryDB">
    <!ELEMENT queue EMPTY>
    <!ATTLIST queue
    maxQueueSize CDATA "1000">
    <!ELEMENT connection (orbClient*, cluster?)>
    <!ATTLIST connection
    maxConnect CDATA "20"
    idleTimeOut CDATA "15">
    <!ELEMENT ORBPorts EMPTY>
    <!ATTLIST ORBPorts
    value CDATA #REQUIRED>
    <!ELEMENT orbClient EMPTY>
    <!ATTLIST orbClient
    id ID #REQUIRED
    publicKeyFile CDATA #REQUIRED>
    <!ELEMENT cluster EMPTY>
    <!ATTLIST cluster
    publicKeyFile CDATA #REQUIRED
    privateKeyFile CDATA #REQUIRED>
    <!ELEMENT persistFile EMPTY>
    <!ATTLIST persistFile
    fileName CDATA #IMPLIED>
    <!ELEMENT trace EMPTY>
    <!ATTLIST trace
    traceFile CDATA #IMPLIED
    traceOpts (trace_prf|trace_brk|trace_app|trace_pls|trace_sql|
    trace_tms|trace_dst|trace_log|trace_err|trace_inf|
    trace_dbg|trace_wrn|trace_sta|trace_exc|trace_all|none) "trace_all"
    traceMode (trace_replace|trace_append) "trace_replace"
    traceModule (all|server|engine) "all">
    <!ELEMENT compatible EMPTY>
    <!ATTLIST compatible
    version (6i) "6i">
    <!ELEMENT jobRecovery EMPTY>
    <!ATTLIST jobRecovery
    auxDatFiles (yes|no) "no">
    <!ELEMENT identifier (#PCDATA)>
    <!ATTLIST identifier
    confidential (yes|no) "yes"
    encrypted (yes|no) "no">
    <!ELEMENT environment (envVariable*)>
    <!ATTLIST environment
    id ID #REQUIRED>
    <!ELEMENT envVariable EMPTY>
    <!ATTLIST envVariable
    name CDATA #REQUIRED
    value CDATA #IMPLIED>
    <!ELEMENT pluginParam (#PCDATA)>
    <!ATTLIST pluginParam
    name ID #REQUIRED
    type (text|file|url) "text">
    <!ELEMENT property EMPTY>
    <!ATTLIST property
    name CDATA #REQUIRED
    value CDATA #REQUIRED
    confidential (yes|no) "no"
    encrypted (yes|no) "no">
    Is this the one which i am supposed to modify or am i looking the wrong config file. Your help in this regard will be of much use
    thanks once again

  • Setting Multiple Report Paths for a Reports Server

    I am sorry for posting here, As I didnot get response from reports forum, I posted here.
    I would like my reports server named ABREP to to read reports from multiple paths.
    We have fmb,fmx,rdf,rep files in /gccapp/TESTAPP & /gccapp/LIVEAPP.
    I tried to follow I need multi report path
    but no luck.
    I give oratest:7778/forms/frmservlet?config=app1&*EnvId=testenv*
    but still it is reading from other location.
    can any one please help.
    My env: 10gdbR2, 10gAS,Solaris
    thanks
    Edited by: userR12 on Jan 16, 2010 6:16 AM

    Thanks for reply. I restarted reports server also. Is my way of writing EnvId in the link is correct?
    I have done the following:
    1. Inserted the following into the report server configuration file:
    <environment id="default">
    <envVariable name="REPORTS_PATH"
    value="/oraas/modlive10g:$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/printers:${REPORTS_PATH}:$ORACLE_HOME/reports/winfont"/>
    </environment>
    <environment id="testenv">
    <envVariable name="REPORTS_PATH"
    value="/modapp/modtest10g:$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/printers:${REPORTS_PATH}:$ORACLE_HOME/reports/winfont"/>
    </environment>
    2. commented REPORTS_PATH in reports.sh
    3.
    defaultEnvId="default" added to rwEng line in report server configuration file
    4. Restarted Report Server
    5. in browser appeneded EnvId=testenv to the application URL.
    thanks
    Edited by: userR12 on Jan 16, 2010 10:26 PM

  • Songs lost to altered path name

    So I am one of many who have lost thousands of songs in itunes for reasons I don't understand.  When I query the song with "get info" I get a "can't locate the song" dialogue box which I close and the info dalogue box then appears.  It seems that a few thousand songs have the file path names altered to read file://local host/  then the correct drive letter and folders etc.  Some have only "local host/drive letter/etc".  itunes can't find them because the path name is altered, but how did that happen and how can I undo it?  This is the second time I have lost more than 5000 songs to some mysterious action in this program.  I really don't want to burn hours and hours re- ripping those CDs

    Thank you for your attention to this
    Usually the path name reported by get info looks like this:  file://localhost/C:/users/Don Broderson/music/iTunes/iTunes media/Gillian   Welch/Soul Journey/10 Wrecking Ball.m4a.  In this case the tune is missing altogether, though it used to be on an external hard drive F:  as in the following case:
    Path as listed in get info:  file://localhost/C:/users/Don Broderson/music/iTunes/iTunes Media/Bob Dylan/Another side of Bob Dylan/03 Spanish Harlem Incident.m4a   
    Actual path:  In this case the tune resides on the external drive at F:\music\Bob Dylan\Bob Dylan\Another Side of Bob Dylan\03 Spanish Harlem Incident.m4a
    When this problemm began, I saw path names rom get info that began localhost/F:\  and continued as in the dylan case above.  I could not find an example of that path in a quick search today.
    I have iTunes set up to import CDs automatically to the F: drive as the hard disk in my laptop does not have the capacity for my library.  This has worked well for a couple of years and now it doesn't.  To my knowledge I never asked iTunes to organize my library.  I don't recall upgrading iTunes around the time the trouble started.  Any ideas?

  • Report short name

    Hi,
    I want to know from which table we can get the report short name of the because I have to modify some reports and where the path of that reports are available in the server.

    Hi,
    You can find the report name from FND_CONCURRENT_PROGRAMS table.
    Column name is CONCURRENT_PROGRAM_NAME.
    You have find the Executable for the perticular Concurrent program and find the application for that.
    Using the application you can find the application base path from FND_APPLICATION table and column is BASEPATH.
    Prashant

  • Hide jobid no in reports path

    hi all,
    I have to hide jobid no in reports path as when I am calling a reports from forms it gives reports jobid in address bar of the browser.
    is there a solution for this.

    You can slightly modify Andreas' suggestion:
    - generate to a random file name in a virtual web directory
    - open the document with web.show_document('http://server/virtualdirectory/<some random name>.pdf')
    It will be hard for anybody else to guess the file name.

  • Report path

    Hi,
    Where is the report path mentioned in the ORACLE_HOME/reports/conf file and how it called from cgicmd.dat file.
    I know the rwservlet.properties will call the cgicmd.dat file but how the cgicmd.dat file will call the rep_server.conf file. I meant which is the parameter that mapping to this rep_server.conf file.
    Actually I need to add one more source path for reports, any body help me.
    -bala

    I have seen the following example in website, that's the reason i have tried it
    The second step is to configure the Report Server created in step 1. Specifically you need to specify the Source Directory of the report files as a search path for the Report Server to use when individual report requests are made. Here is what you need to do:
    Open Windows Explorer and navigate to c:\<oracle home>\reports\conf
    Open rep_fsprod.conf using a text editor.
    Using the Find or Search tool (depending on the editor used), look for sourceDir
    You do not need to do a case sensitive search.
    This variable is typically located near the top of the file. In mine, it is the 14th line of the file.
    Edit the sourceDir variable to include the path of each directory where you wish the Report server to search for reports. Below is an example with two directory paths specified. One is required, but you can have as many as you need.
    <property name="sourceDir" value="c:\env\aap\reports;c:\env\eu_asc\reports;>
    Save and close the file.
    ------------------------------------------------------------------------------------------------------------------------------------------

  • Bursting Problem - A file or directory in the path name does not exist

    I'm trying to burst some data via email using the standard DocumentProcessor java code but receiving an error relating, I assume, to an invalid temporary directory. I've checked that the directory exists, as do the data file and control file. By the way I am not running in Apps, just stand alone mode. Any ideas would be much appreciated.
    [042308_104249440][oracle.apps.xdo.batch.bursting.FileHandler][EXCEPTION] java.io.FileNotFoundException: /u02/DIAS/bursting/BIPublisher/tmp/042308_104249338/xdo2.tmp (A file or directory in the path name does not exist.)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:205)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:96)
    at oracle.apps.xdo.template.RTFProcessor.setOutput(Unknown Source)
    at oracle.apps.xdo.batch.bursting.FileHandler.rtf2xsl(Unknown Source)
    at oracle.apps.xdo.batch.bursting.ProcessDocument.getXSLFile(Unknown Source)
    at oracle.apps.xdo.batch.bursting.ProcessDocument.processTemplate(Unknown Source)
    at oracle.apps.xdo.batch.bursting.ProcessCoreDocument.processLayout(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingEndElement(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingConfigParser(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.batch.DocumentProcessor.process(Unknown Source)
    at PIreportburst.bEngine(PIreportburst.java:24)
    at PIreportburst.main(PIreportburst.java:51)
    -Below is the java code I'm using
    public void bEngine(String ctrlFile, String dataFile, String tmpDir) {
    try {
    DocumentProcessor dp = new DocumentProcessor(ctrlFile,dataFile,tmpDir);
    dp.process();
    catch (Exception e) {
    System.out.println(e);
    }

    Thanks Ike
    Where do you suggest setting the temp directory:
    DocumentProcessor("control.xml","data.xml","/u02/DIAS/bursting/BIPublisher/tmp/042308_104249338/xdo2.tmp")
    or in the xdo.cfg:
    <property name="system-temp-dir">/u02/DIAS/bursting/BIPublisher/tmp/042308_104249338/xdo2.tmp</property>
    ..and thanks for the link to the BIPublisherIDE
    Cheers, Mike

Maybe you are looking for