As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I've created a table using Oracle, and one field is created like VARCHAR2(1000), no problem here... When going to server console in order to create the *.mas and *.acx files, everything goes fine, the memo field is transformed into a TX50 field in the master, like this:
If you do a ? 709, you will find this description:
quote:
0(FOC709) INVALID POSITION OF THE TEXT FIELD DURING SAVE OR HOLD When creating SAVE or HOLD files, a text field may only be followed by another text field. If a text field is used in the ACROSS set,there may not be any non-text fields in that set.
Put the text field as the last field in the PRINT statement.
By the way, it is better for the forum not to have distracting images at the bottom of the posts (even if they're pretty ladies!).
I think I know what you are trying to do, you're dumping the data in the table into a hold file to be used in an HTML page as JavaScript. Unfortunately, you will not be able to place FIN as the last field in the HOLD file. You may want to change your Master - give this a try: change TX50 to A1000.
[Quote="Francis"]I think I know what you are trying to do, you're dumping the data in the table into a hold file to be used in an HTML page as JavaScript. Unfortunately, you will not be able to place FIN as the last field in the HOLD file. You may want to change your Master - give this a try: change TX50 to A1000.[/quote]
Yes, you're right my friend Francis, the conversion automatically from the console of Varchar2(1000) is a TX50 in the *.mas file, I changed TX50 from A1000, and it worked
If that record type gives errors, why the console convertsa large varchar2 to tx?
Francis Many thanks
And you too Sussannah (Know some spanish?), Also what Sussanah said is true, the word FIN is same to say FINISH, and in my case FIN was a field name.
Thanks to all ^^
Posts: 52 | Location: Madrid | Registered: July 18, 2005
I'm not sure if this will work, but you could leave the field as TX in the Master, but DEFINE or COMPUTE the following
COMMENTSX/A1000 = COMMENTS;
TX is a special format and depending on what you need to do with a TX field, sometimes it will work and sometimes it will be better to define it as an alpha field.
It seems that I'm running into a similar issue with a memo field from an Access database.
Here is what I tried so far: - I have changed the master file from USAGE=TX50, ACTUAL=TX to USAGE=A1000, ACTUAL=TX. When I do this I get garbage data ('e ) - I tried changind the format: COMPUTE ANSWERX/A1000 = DS.ANSWER; When I do this I get: (FOC709) INVALID POSITION OF THE TEXT FIELD DURING SAVE OR HOLD
Any other ideas or suggestions? Thanks, L-
7.6.6 on AIX platform Output: variety (Excel, HTML and PDF)
Posts: 33 | Location: New Hampshire | Registered: October 17, 2007
Just in case anyone else is running into this problem... One thing I didn't know is that when using an Access database the field format has to be changed in two places: on the Wintel server and on the AIX. I was only changing the master file on the AIX... As soon as the master file on the Wintel got changed I got to see my beautiful memo fields!
L-
7.6.6 on AIX platform Output: variety (Excel, HTML and PDF)
Posts: 33 | Location: New Hampshire | Registered: October 17, 2007