Hello Guys, Thanks a lot for your support. I am using doors export with RTF format but it exports object heading and object text. I want to add one more attribute value i.e requirement tag for each obj heading and obj text. Tried to edit in IBM\Doors\9.3\Lib\standerd\export\ but its very complicated for me. Please support.
example: 1.2.2 Samples delivery release process (Req1)(Req2)Prior to delivery of each sample to the client it should be EOL-Tested. The obtained EOL test data has to be stored to allow for pre-post comparison of the components parameter. ..............................
Kindly support, Regards, JayashreePana.
JayashreePana - Mon Jul 13 10:37:55 EDT 2015 |
Re: Doors RTF Export with heading, text and requirement ID Can you post the code? And, out of what Attribute should the requirement ID be retrieved? |
Re: Doors RTF Export with heading, text and requirement ID woodpryan - Mon Jul 13 11:55:30 EDT 2015 Can you post the code? And, out of what Attribute should the requirement ID be retrieved? Hello, thanks a lot for the reply. I have requirement IDs in another attribute called Req_ID. I want to amend Req_ID and Object Heading. With the existing dxl i get like this
1.2.2 Samples delivery release process Prior to delivery of each sample to the client it should be EOL-Tested. The obtained EOL test data has to be stored to allow for pre-post comparison of the components parameter. .............................. I would like to have something like this 1.2.2 Samples delivery release process (Req1) (Req2)Prior to delivery of each sample to the client it should be EOL-Tested. The obtained EOL test data has to be stored to allow for pre-post comparison of the components parameter. I am trying to update the dxl from Doors lib export dxl. The same is attached, please support.
Regards, JayashreePana Attachments rtfexp.dxl |
Re: Doors RTF Export with heading, text and requirement ID JayashreePana - Tue Jul 14 03:01:01 EDT 2015 Hello, thanks a lot for the reply. I have requirement IDs in another attribute called Req_ID. I want to amend Req_ID and Object Heading. With the existing dxl i get like this
1.2.2 Samples delivery release process Prior to delivery of each sample to the client it should be EOL-Tested. The obtained EOL test data has to be stored to allow for pre-post comparison of the components parameter. .............................. I would like to have something like this 1.2.2 Samples delivery release process (Req1) (Req2)Prior to delivery of each sample to the client it should be EOL-Tested. The obtained EOL test data has to be stored to allow for pre-post comparison of the components parameter. I am trying to update the dxl from Doors lib export dxl. The same is attached, please support.
Regards, JayashreePana I added function getReqId, which returns a string containing the value of "Req_ID" from the Object. I added a couple calls to the function where the code is currently getting the heading text. In addition to outputting the heading text, it will now also output "(reqId)" with a space before the parenthesis. Let me know if there are any problems. The revised code is attached. Attachments rtfexp.dxl |
Re: Doors RTF Export with heading, text and requirement ID woodpryan - Tue Jul 14 12:45:20 EDT 2015 I added function getReqId, which returns a string containing the value of "Req_ID" from the Object. I added a couple calls to the function where the code is currently getting the heading text. In addition to outputting the heading text, it will now also output "(reqId)" with a space before the parenthesis. Let me know if there are any problems. The revised code is attached. Hello,
Its wonderful!...I am so happy, it made my day
It works exaclty as I wanted
Thanks a lot JayashreePana
|
Re: Doors RTF Export with heading, text and requirement ID woodpryan - Tue Jul 14 12:45:20 EDT 2015 I added function getReqId, which returns a string containing the value of "Req_ID" from the Object. I added a couple calls to the function where the code is currently getting the heading text. In addition to outputting the heading text, it will now also output "(reqId)" with a space before the parenthesis. Let me know if there are any problems. The revised code is attached. Hello, I am back again. In the attached code why the dumpSummaryInfo is not recording any data?
I want the summary in the footer like
- page and page Count Can I use RTF template to export ? but how to do this?
Thanks a lot. |
Re: Doors RTF Export with heading, text and requirement ID JayashreePana - Wed Jul 15 10:42:29 EDT 2015 Hello, I am back again. In the attached code why the dumpSummaryInfo is not recording any data?
I want the summary in the footer like
- page and page Count Can I use RTF template to export ? but how to do this?
Thanks a lot. That is a whole 'nother ball game, my friend. You're talking about creating headers and footers in the document using Rich Text. That's definitely something your code didn't do before. You will have to research the Rich Text tags that are necessary for creating headers and footers. I don't have the time to get into this myself as I have other work to do. Maybe someone else will pick this up. Good luck. |
Re: Doors RTF Export with heading, text and requirement ID JayashreePana - Wed Jul 15 10:42:29 EDT 2015 Hello, I am back again. In the attached code why the dumpSummaryInfo is not recording any data?
I want the summary in the footer like
- page and page Count Can I use RTF template to export ? but how to do this?
Thanks a lot. You can find the RTF specification here, by the way: http://www.biblioscape.com/rtf15_spec.htm |
Re: Doors RTF Export with heading, text and requirement ID woodpryan - Wed Jul 15 12:03:22 EDT 2015 You can find the RTF specification here, by the way: http://www.biblioscape.com/rtf15_spec.htm Hello, Thanks a lot...its very helpful. |