Relative paths of the gateway requirements

So I am using requirements gateway for a little while now and I are one of several developers to use, or one of the many people now the documents it contains.  We keep the Gateway project control requirements of source code with the documents and the project code in that respect.

We met one of the problems was that this gateway requirements is configured as an absolute path if the path is not under the gateway requirements project path.

Let's say I have a directory like this structure.

\Requirements Gateway\ Q:\Project\Project [x]

[X] Q:\Project\Project [x] \Project Documentation\

Q:\Project\Project [x] Code\ [x] \Project

When you add documents to the gateway requirements project it will add them however travel.  So if another developer gets the source on the V:\ drive control then it can not find documents or code.  We found that you can manually change the path of the documents to have a relative path by editing the .rqtf file manually in a text editor.

Finally the problem.  This solution does not work for code TestStand or paths of LabVIEW code... why?  If I replace "[x] [x] Code\ \Project Q:\Project\Project"with"[, \Project[x] Code\ ' in the .rqtf project file and then open the project, it will say file not found.  The file may have been moved or deleted.  But all the documents that are configured to have relative paths work fine.

Can someone tell me how to get access roads-related work for LabVIEW and TestStand code in Gateway requirements?  Thank you.

Hooovahh-

It is currently a lack of functionality for our types of TestStand and LabVIEW OR gateway 1.1 requirements. This is something that will probably fix us in the next version or Gateway requirements.

Thank you for that bring to our attention.

Tags: NI Software

Similar Questions

  • link with the relative path includes the root folder

    I hope someone can help me. When I convert a Word to PDF file with a path relative to another document, a reason any Acrobat includes the directory root with the path if the link does not work. Even when I try and change the link using Acrobat Pro and save the document, the system adds the default root directory. What is happening with this?

    example:

    Directory with the file/subdirectory with file/sup under directory with the file / / my document.pfs

    site to register:

    C: / / my documents /.

    Directory with the file/subdirectory with file/sup under directory with the file / / my document.pfs

    solved my problem. I removed the links in the word document and then created in Acrobat. It worked.

  • Flash CS5 - relative path of the document class and the location of the package

    It seems that I have no trouble to my class a FLA document class project when the FLA is the same root in the root directory of the package. However, if the FLA is nested within a subdirectory, then paths relative to a nested class in the package will not work.

    location of package & sample class: com.company.project.ClassName

    CASES1:

    Package location: \MyProject

    The FLA location: \MyProject

    where is the path of document class: ""./com/company/project " "

    Case 2 (does not work):

    Package location: \MyProject

    Location of the FLA: \MyProject\MySubFolder

    where is the path of document class: "... / com/company/project"

    If someone can provide an explanation as to why nested FLAs cannot point to custom packages to parent directories level OR show how this can be done, it would be much appreciated.

    Now that I think about, the two paths are relative, which makes it more confusing.

    Thank you.

    It works for me: http://www.kglad.com/Files/forums/tt.zip

  • API for the gateway requirements

    Hello

    When you look in the bin folder of NIRG there is nirg.tlb.

    It is a public library and is it possible to remote NIRG?

    Concerning

    Jürgen

    Hi Al,.

    This morning I spent some time in the COM interface (.tbl) which comes with nirg.

    After a few tries, I got it running in this way that I liked. Open, Reload and save the project.

    It works well. Only at the end, I don't know the right parameter value.

    It would be well on future versions there is a description of the short parameter.

    Concerning

    Jürgen

  • Relative path in the class

    ActionScript 2.0:
    class MyClass {}
    public obj:Object = new Object(), myxml:XML = new XML();
    public function myclass() {}
    myXML.Load('test.) XML');
    obj.Test1 = 1; This works because flash found object "obj".
    myxml.onLoad = {fucntIon()}
    obj.test2 = 2; do not work because the flash doesn't have a found object "obj".
    This._parent.obj.test2 = 2; do not work
    }
    }
    }
    What script to create variable object "obj" in xml-event 'onLoad '?

    first import the delegate class

    Import mx.utils.Delegate;

    Then, create a function in myClass to do the work of onload.

    class MyClass {}
    public obj:object;
    public myXML:XML;
    public function myClass() {}
    myXML = new XML();
    myXML.onLoad = Delegate.create (this, myOnLoad);
    myXML.load ("test.xml");
    }
    public void myOnLoad(success:Boolean) {}
    trace (obj);
    trace (Success);
    }
    }

    ©®

  • How to read the .txt adfLib pot file to the model layer by using the relative path

    Hello

    In my application, I use the ExtendedDynamicFldTbl (extends weblogic.wtc.jatmi.DynamicFldTbl), which the manufacturer requires the field file path table as a parameter.

    In the API, it is said that this name of path can be an absolute path, a relative path to the directory where Java has started, or a relative path that can be found as a resource on the classpath.

    I have created this ExtendedDynamicFldTbl to the model layer project, placed the fild_tbl.txt in a separate package and pass the path relative to the DynamicFldTbl constructor.

    Given my code below to get the instance of ExtendedDynamicFldTbl
    package model.tuxedo;
    
    public class ExtendedFldTbl  extends DynamicFldTbl
    {
    
        private static ExtendedFldTbl extendedFldTblinstance = null;
        
        public ExtendedFldTbl(String tablePath, boolean flag)
        {
            super(tablePath, flag);
        }
        
        public static ExtendedFldTbl getInstance()
        {
            if (extendedFldTblInstance == null)
            {
                URL url = extendedFldTblInstance.class.getResource("resource/fldtbl.txt");
                if (url == null)
                {
                    throw new RuntimeException("Tuxedo Service : fldtbl.txt is not found in the path 'model.tuxedo.resource' ");
                }
                extendedFldTblInstance = new ExtendedFldTbl (url.getPath(), true);
                String[] list = extendedFldTblInstance .getFldNames();
                System.err.println("fldtbl loaded. Total FML entries loaded = " + list.length);
            }
            return extendedFldTblInstance ;
        }
    }
    I just added the output of the build of the layer model to view the project of the layer and tested. It works fine and I am able to get the ExtendedFldTbl instance with all loaded fields. But rather than add dependencies, if I create an adfLibJar for the layer model project and you add to view the project of the layer, it does not work. It is not ablt to read the file of adf lib jar file.

    Issues related to the:

    1. How can I solve this?
    2. Although I have kept the field text file table in the source of the project itself, when I read the url, it is
    "C:/Documents and Settings/raguramanv/Application Data/JDeveloper/system11.1.1.4.37.59.23/DefaultDomain/servers/DefaultServer/tmp/_WL_user/SampleWtc/3gkmt9/war/WEB-INF/lib/SampleWtc_Model_adflibSampleWtc1.jar!/model/tuxedo/resource/fldtbl.txt"
    Instead of the physical directory, how can I use application in model layer context?


    Thanks in advance

    Rambeau

    Hello

    Try /adf/ or /afr/ in the URL. Then includes the ADF resource loader which is used to get the contents of a lib of the ADF. Take a look at the structure of ADF library where the file is located in. It should be in a directory with /adf in the folder structure

    Frank

  • Changes of relative path to absolute path when creating a child of the model

    Hello

    I found very useful model Dreamweaver features and was doing well until I created a child by selecting the Site template and the template file in the new Document dialog box to discover the following problem:

    In the template file, a path appears as follows:

    "" < link rel = "stylesheet" type = "text/css" href = ".. /.. / common/css/all.css">

    However, in the case of the child, the same path has changed to the following:

    "< link rel ="stylesheet"type =" text/css" href="file:///D|/xampp/htdocs/xyz.com/common/css/all.css ">

    I want to retain the same relative path in the child's file. Please advise me how it can be maintained.

    Thanks as always,

    EAD

    In the template file, a path appears as follows:

    " href =".. /.. / common/css/all.css '> '.

    It is not possible for a link appears like this in your model. This is because the template MUST be in the templates folder, which is at the root of the site. A single deep folder level, it is only possible to go UP one level to look for any other file/folder in the site. But your link says to go up TWO levels! Something wrong here. Is your template in the Templates folder? Is - this folder at the root of the site?

    Furthermore, Ben's response is quite accurate. Given that DW does not know when your page of the child should be registered, it cannot create the link until it is saved.

  • create tablespace with giving the relative path

    Can I create tablespace with the help of relative to the parameter "DATA file" path?

    I get error ORA: 01119 when I run with the relative path in the code example:
    CREATE TABLESPACE "INDX" 
    BLOCKSIZE 8192 
    DATAFILE  '\myrelativeFolder\indx01.dbf' 
    SIZE 2604M       
    AUTOEXTEND ON NEXT 10485760  MAXSIZE 32767M EXTENT MANAGEMENT LOCAL  AUTOALLOCATE  ONLINE PERMANENT;
    Version: Oracle 10g, PlSql Developer.

    --

    Maybe add environment variable operating system to the value of the DATA file somehow? I don't want to create the tablespace with full path, from the name of the drive and ending with file name.

    Edited by: CharlesRoos the 14.10.2010 18:16

    On Unix, use the korn shell, you could try something like this:

    #!/bin/ksh
    
    REL_PATH="\myrelativeFolder\indx01.dbf"
    
    sqlplus $ORA_USER/$ORA_PSWD@$ORACLE_SID << EOF > $LOGFILE
    declare
      v_Path varchar2(50) := '${REL_PATH}';
    
    begin
      execute immediate 'CREATE TABLESPACE "INDX" BLOCKSIZE 8192 DATAFILE ' || v_Path || ' SIZE 2604M
                         AUTOEXTEND ON NEXT 10485760  MAXSIZE 32767M EXTENT MANAGEMENT LOCAL
                         AUTOALLOCATE  ONLINE PERMANENT';
    
    end;
    /
    exit;
    EOF
    exit 0
    
  • Programmatic access to project Gateway requirements

    Dear LabVIEW community!

    It's a way to access the data in the gateway requirements by programming project, LabVIEW? To get, for example, the ID of the requirements in the proper format (as can be done in the gateway requirements himself--right-click on the obligation and select copy to-> LabVIEW Description reference)?

    Thanks in advance!

    Hello

    Unfortunately, to access the data of the gateway requirements in LabVIEW is not possible at this time.

    Thank you

  • TestStand and Gateway requirements

    Hello

    It is more a question of RG, but there is no RG area to post.

    I have a Word Document that defines the requirements for a test sequence.

    Needs are covered by the two

    (1) LabVIEW VI

    (2) sequence TestStand.

    What I want to do is to see what is my coverage of the coverage of Word Documents.

    I noticed that when I added the TestStand sequence for my gateway Req project, all entries in the TS document generates a "derived demand".

    Is there a way to turn off?

    I want to connect my word document to a place in the test sequence and to say that this is where I cover that is recording data. I don't want to link my TS sequence with a results file.

    The annoying bit is when I look at the view analisys even if my Word Document is covered at 100% yet there are a number of requirements derived from the sequence of TS discoveries.

    Thanks for the tips!

    Maciej

    Maciej salvation,

    answer your questions:

    (1) connecting a TestStand sequence to a Word Document causes RG generate the "derivatives"requirement for each of the elements (steps or sequences) TS.»
    I would like to cut this robot. I'm not interested in the requirements derived in this scenario.

    "You can turn that they derive ar requirements shown by selecting view" derived from the requirements in main menu of th.  This will hide the requirements derived from the view and in reports that you generate.

    (2) Assembly of the desired structure

    If you link the arrows of cover in the Middle, you can create a relationship "or", as shown below.  In this case, a requirement is considered covered when it is covered by one of the 2 on the documents.  The configuration that you currently expects that all THE accompanying documents have coverage for each requirement.

    For more information, see the topic combining covering links in aid of the gateway requirements for more information.

    Let me know if you have any other questions!

  • Using gateway requirements with LabVIEW classes

    Does anyone know how to get the gateway requirements NOR read the coverage information of documentation contained in a class of LabVIEW (.lvclass)?

    Requirements gateway seems to load the content of the fine documentation of screws, controls, .llb, .lvlib, .lvproj etc., but not .lvclass? My LabVIEW crash out when I try to bridge point requirements to a project with .lvclass files!

    If this cannot be done then it is a great way to add coverage of the needs information (you know, the field "covers: ID") in the properties of the class, or something close to class perhaps, this gateway requirements can read?

    Thoric-

    I believe that gateway requirements should be able to trace of LabVIEW Classes also covers long classes are added to a LabVIEW project and requirements gateway is configured in order to study the LabVIEW project. Here is a very primitive example that I restored from files in the directories of the prescriptions and example LabVIEW gateway.

    I hope this helps.

  • path of the image file that links do not correctly in the executable file

    I have a jpeg file in a project that I'm building which is not loading when run as an executable file.  The executable seems to be looking in the same directory that the image file was originally instead of the support folder where the image is deployed.  On another machine, the exe will look for the image in the directory, that were found on my machine.  When I drag the image file of the project on the block diagram Explorer, it creates a constant path of file indicates where the file is located on my machine.  This does not seem to update when I build the exe.  The image file is included in the source files.  Any help is appreciated!

    A constant path is... Yes indeed constant! It's not automatically change whenever someone might move the file too, whatever his imagination made her do. He does not maintain a link to the actual file it could use later to detect that the file has been moved elsewhere. In fact Windows has quite such a mechanism.

    So if you want to access an external file to your executable application to first do a correct path when running. My approach is to put in a directory from a VI file that I put in my application. Then in this VI use the way of getting current VI, band name the VI of it and add the location relative to the other file to it.

    If you do something like this:

    The project directory

    Directory of the utility

    My Location.vi

    Data directory

    MyResource.jpg

    in system development, then:

    The application directory

    MyApplication.exe

    Data directory

    MyResource.jpg

    in the application of the construction.

    With this provision, it doesn't matter even if you use the old format of executable LabVIEW 8.x or the new default format since LabVIEW 2009.

    My Location.vi is just a VI that takes a relative path in the entry (in this case "... / directory/MyResource.jpg data" called the "Current path to VI" node, use 'Band path' to remove the name of VI, then build to add this entry path, and this is!.)

  • Creating a shortcut with relative paths

    I'm trying to set up a folder so that I can copy a group of files from USB drives, and I want to place a shortcut to open the Powerpoint Viewer into a subfolder of this folder to copy.   When I put in place a regular shortcut, it creates the full path: 'C:\Users\xx\Documents\Thumb Drive Files\With CAD Drawings\Product présentation Files\pptview.exe training', and when they are copied on a USB key, it will not work because it seeks the path 'C:', rather than the relative path in the folder, \With CAD Drawings\Product Training Presentation Files\pptview .exe.  I don't remember how to set this up with relative paths.

    You can't go with shortcut, you use a batch file on the root of the drive that has an order of relative path for the first command in it.

  • Relative paths for links

    Hello

    How can I configure the AI CC document-relative paths? For example, if I have a folder like structure

    .../Project

    .../Project/Source-images

    .../Project/AI-scripts

    .../Project/actual-AI-files

    you get...

    so now if I save the project on an external hard drive folder or anywhere else where I have to update the paths for all my documents in/Project/actual-I-files that are related to the files/Project/Source-images and/Project/HAVE-scripts, although the relative path remain the same. Can I use relative instead paths?

    Thank you

    Unfortunately you can not do.

    Only chance is to have all the files related to the same level as the file HAVE (no subfolders)

  • URL relative Paths - to use or not use

    That is the question! :-) (OK, not much of a joke of Hamlet, but I tried.)

    Greetings,

    I have an APEX application that uses interactive images with hotspots. Hot spots have 'hard-coded' URL in them. This causes some minor problems during the transition from Dev to Test prod. Not a big problem, but maybe they can be eliminated with a relative path of the URL. Which raises a few questions -

    1 - use relative URL paths in the hot spots? Are my main concern - there security issues if I do not use the full path, with domain name, etc.

    2. If using a relative path of the URL is the way to go - how the domain, part etc. of the URL can I omit and still have the URL work?

    3 - depends on the answer to #2 what is the HTTP server and how it is configured?

    Thanks in advance, Tony

    hidden wrote:
    In response to your question "how to parent?

    It is an example of one of the URL mentioned earlier...
    http://Fandango.Mgmt.com:7000/apex/f? p = 2031:10:681666703179901:NO:P10_HEADER_ID, P10_CELL_TITLE:8900, 11-4

    How much of it can be omitted?

    Tony,
    When you are within your APEX applications, all you need is the f? p = forward.
    This is because all pages are running from the location f (seen from the point of view of browser). So, if you go to another page of the apex of your URL may start from the f to the front.
    If you wanted to you image would be, in general, go back to the root of the server with /i/image_name.jpg like

    Thank you
    Jorge

Maybe you are looking for

  • Remove the slide show Album name / title

    Please forgive me if this has been asked before, but I've been searching and searching without success. I have a Mini iPad and I'm trying to implement a video slide show for my portfolio show who would have three videos in loop indefinitely. I discov

  • Where will the deleted email

    I use the Apple Mail application on my iMac.  I have two gmail accounts that I use frequently.  My question is, what is the path for email.  I guess that when you delete an e-mail, it goes in the trash?  Then check in but when?  I wouldn't be able to

  • image failure

    Tried to make a system image. win8.1, i7 cpu, SDD drive c: 250g, hd e:923 g running. Tried to do the backup: part efi, c: & win re tools. On a key USB 500 g. NTFS format. Starts to run and then, after a few minutes, get: Save the game efi & then Prep

  • Internet stops

    Message says: this is a malfunction or an add on I don't know how to solve this problem

  • BlackBerry Smartphones backlight timeout and Eve do not work

    I just got the new software on my BB Curve 8330 and now the backlight is always on. When I put the time-out of the backlight for 10 seconds, the backlight turns off every ten seconds or more, but turns back on right away. Also, when I put my phone in