While writing requirements in IBM DOORS, is it possible to paste some text as plain text (i.e. without original text's formatting) in the 'Heading" or 'Text' attribute of a DOORS Object? A simple paste operation keeps the original text formatting that reduces the readability of respective DOORS module. Ofcourse it's possible to copy in notepad first, but I am curious to know if there's a possibility to do it within DOORS.
IBM Rational DOORS: How to paste as plain text in DOORS Objects?
2k Views Asked by Hammad At
2
There are 2 best solutions below
0
Jan
On
I don't know how to do this when pasting, but you can use a little DXL to change it afterwards, which is especially useful when the text contains formatting that you cannot remove from within DOORS:
Buffer temp = create
temp = obj."Object Text"
string s = tempStringOf temp
obj."Object Text"= s
delete temp
This can easily be extended so that your script runs on the entire module, or all selected objects.
Related Questions in REQUIREMENTS
- Need to average a row of cells but requiring a minimum of 3 cells to have data
- I get "Getting requirements to build wheel did not run successfully" when I try to pip3 install pymc3
- Meaning of the { } -> "operator" in C++
- How to Increase Mobility Score to 55 in Quantitative Algorithms - Contributions?
- ERROR: Dependency lookup for OpenBLAS with method 'pkgconfig' failed. Can't find cmake even if I installed it
- Install requirements from Django project with VS Code
- How to tie Work Items to a release that have no code
- Streamlit requirements are not respected?
- ERROR: No matching distribution found for open3d==0.15.2 (from -r requirements.txt (line 31))
- What is the process of uploading and selling my designs on Instagram Avatar Store as a digital fashion creator?
- scalability - Calculate load for performance testing from requirements
- Need website that has project ideas and documentation/requirements
- Acceptance test design in Requirements Validation (Software Engineering)
- Use dictionaries as requirements for if statements
- How to create a custom excel template for export customized work items for a project in Polarion?
Related Questions in IBM-DOORS
- DXL : Comparing attributes of objects across modules
- How can I fix my code so that it still deletes indentations, but doesn't delete numbers in tables, etc. in DXL?
- How to Compare 2 modules in DOORS?
- is it possible to link attribute enumerations (Types) to objects in another module in DOORS?
- DXL: Attribute Comparison between Two Modules in DOORS
- Open a selected baseline in read only mode
- Set a sensitivity label for an excel workbook created from DOORS DXL
- DXL : How to list all attribute names in a current module?
- Missing links when specific baseline is determined
- Has anyone managed to log into an IBM Jazz Team server with matlab http requests using j_security_check url?
- Importing DOORS attributes enum change not recognized
- Unable to execute a DXL script within DOORS
- Write data in excel from DOORS
- DXL script that can read a module and print the AttributeDefinitionBaseType
- DXL DOORS restore attribute text from session
Related Questions in REQUIREMENTS-MANAGEMENT
- is it possible to link attribute enumerations (Types) to objects in another module in DOORS?
- Custom relation created in Cameo - date attribute not showing up in table?
- Relation between stakeholder and functional requirements
- Where to put a small utility function that I would like to use across multiple packages/projects that I develop?
- Visualising nodes classified in heirarchies and their relationshops
- How to understand the meaning of high level requirement and low level requirement in DO-178C?
- Acceptance test design in Requirements Validation (Software Engineering)
- Is it possible to dynamically define enumarated type based on another attributes values in IBM DOORS?
- requirement traceabilty in gitlab
- Is it possible to export reports from Jama Connect with baseline signatures
- Can we integrate DOORS tool as a plugin to a java application?
- How can I run my program when I already had the module and the error said: ModuleNotFoundError?
- Update objects from two modules with same attribute in DOORS
- How to install highest version of a Python package which doesn't break my App?
- Requirement tracking Doxygen
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Not an in-DOORS answer (ha, I slay me!), but what I use is PureText. Install the little program in your Windows system tray, and assign a hotkey combo. Then, instead of Ctrl+V for paste, when I press Win+V the clipboard contents are converted to plain text, and then the clipboard is pasted. (That last sentence is important to note - the clipboard itself is altered. You won't be able to paste the formatted version somewhere else.)
Similar options are probably available on other systems, of course. It's no longer than pressing Ctrl+V, so it satisfies my needs.
http://stevemiller.net/puretext/