Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Print the contents of a HOLD table

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Print the contents of a HOLD table
 Login/Join
 
Gold member
posted
I create a HOLD table similar to this:

 
TABLE FILE ORDER_PAYMENTS
BY ORDER_KEY AS 'ORDER_NUMBER'
BY CUST_ID AS 'CUST_NUMBER'
WHERE ORDER_DT GE HADD((HGETC(8, 'HYYMDs')), 'DAY', -30, 8, 'HYYMDs');
WHERE INACTIVE_ACCT NE '1' OR INACTIVE_ACCT EQ MISSING;
WHERE ORDER_KEY IN &ORDER_KEY;
ON TABLE SET ASNAMES ON
ON TABLE HOLD AS CUST_ORDERS FORMAT FOCUS INDEX ORDER_KEY
END


I wish to see what's in the table so I try this:

TABLE FILE CUST_ORDERS
 PRINT *
 END
 -EXIT
 


But all I get back is this:

0 NUMBER OF RECORDS IN TABLE= 9 LINES= 9

What am I doing wrong?

Thanks.

Thanks.

This message has been edited. Last edited by: Tamra,


WebFOCUS 7.6
Windows, All Outputs
 
Posts: 70 | Registered: April 27, 2012Report This Post
Virtuoso
posted Hide Post
Are these two TABLE requests in the same focexec or in two different focexecs?

Unless you have APP HOLD in your code, a HOLD file is temporary and only there for the duration of the session. So, you ought to see what happens if you do something like this:
TABLE FILE CAR
SUM RCOST BY COUNTRY BY CAR
ON TABLE HOLD AS TEST
END
TABLE FILE TEST
PRINT *
END
-RUN


WebFOCUS 8206, Unix, Windows
 
Posts: 1853 | Location: New York City | Registered: December 30, 2015Report This Post
Virtuoso
posted Hide Post
Just one word of caution. If you're using APP HOLD, your hold file is going be written into an application path directory. So, you should be careful where you use it. Look up doc and read up on APP HOLD command.

"The APP HOLD command defines an application in which to hold output data files (and associated Master and Access Files, if applicable) created by a HOLD, SAVE, or SAVB process in the application.

APP HOLD is intended to be used to refresh files that are common for all users of the application. It should not be used for private files since it points to an application area that is used by multiple users. If the same hold name (HOLD or AS name, for example) is used, conflicts between users could result."


WebFOCUS 8206, Unix, Windows
 
Posts: 1853 | Location: New York City | Registered: December 30, 2015Report This Post
Gold member
posted Hide Post
The 2 table requests are in the same file, one immediately following the other.

Since the files are private, I won't try APP HOLD.

Maybe I need to SET or unSET an option to make it work?

I'm sure I'm missing something minor.

I'll keep trying . Thanks for your help.


WebFOCUS 7.6
Windows, All Outputs
 
Posts: 70 | Registered: April 27, 2012Report This Post
Silver Member
posted Hide Post
What happens if you add something like this to TABLE FILE CUST_ORDERS:

ON TABLE PCHOLD FORMAT EXL2K


8009
Windows, HTML, AHTML, Excel
In FOCUS since 1983
 
Posts: 41 | Location: Charlotte, NC | Registered: January 06, 2012Report This Post
Virtuoso
posted Hide Post
quote:
0 NUMBER OF RECORDS IN TABLE= 9 LINES= 9

LINES = 9 indicates that the data are accessible, so much of this thread was off base.

The behavior looks like what you would expect in FOCUS with SET PRINT=OFFLINE

Throw in a
? SET ALL
and check the PRINT setting
 
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005Report This Post
Guru
posted Hide Post
gcarterIT

Did the ? SET ALL help you out at all?

Refer to all the Set commands within this documentWebFOCUS Developing Reporting
Page 440


Thank you for participating in the Focal Point Forum.

Kind Regards,
Tamra Colangelo
IBI Focal Point Moderator


WebFOCUS 8x - BI Portal, Developer Studio, App Studio, Excel, PDF, Active Formats and HTML5
 
Posts: 487 | Location: Toronto | Registered: June 23, 2009Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Print the contents of a HOLD table

Copyright © 1996-2020 Information Builders