IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Query regarding ISPF table - TBADD and TBSORT


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
suchita_thorat

New User


Joined: 22 Feb 2008
Posts: 11
Location: Pune,India

PostPosted: Thu Sep 04, 2008 5:47 pm
Reply with quote

Hi,

I have following code snippet in my program for ISPF tables -

Declaration:

05 TBLDTE PIC X(08) VALUE 'TBLDTE'.
05 TBLDTEV PIC X(30) VALUE
'(KEY OLSTMO OLSTDY OLSTYR OVAL) '.
05 TBLDTES PIC X(30) VALUE
'(KEY,C,A,OLSTYR,C,D,OLSTMO,C,D,OLSTDY,C,D) '.

Calls Made in the program:

1) CALL SPF-ISPLINK USING SPF-TBCREATE TBLDTE
SPF-BLANKZ
TBLDTEV
SPF-NOWRITE
SPF-REPLACEZ

2) CALL SPF-ISPLINK USING SPF-TBSORT TBLDTE TBLDTES.

3) CALL SPF-ISPLINK USING SPF-TBADD TBLDTE
SPF-BLANKZ
SPF-ORDERZ
SPF-MULT


How SPF-ORDERZ works while doing row addition in table (in case of SPF-TBADD)?

What about the TBLDTEV, how it will be used in SPF-TBADD?

Is there any effect of TBLDATES (sort criteria of the table) while adding row in the table during SPF-TBADD?
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2546
Location: Silicon Valley

PostPosted: Thu Sep 04, 2008 9:44 pm
Reply with quote

All of the SPF-** in your example are constants in your program. It would help if you included how they were declared / initialized.

Quote:
How SPF-ORDERZ works while doing row addition in table (in case of SPF-TBADD)?

If you sort a table then add rows with ORDER, the final result will be in sort sequence. Otherwise, new rows are added to the end (I think).

Quote:
What about the TBLDTEV, how it will be used in SPF-TBADD?

You specify which variables are part of the table during TBCREATE. When you do a TBADD, it uses those same variables. The contents of the variables at the time of the TBADD are added as a new row to the table.

Quote:
Is there any effect of TBLDATES (sort criteria of the table) while adding row in the table during SPF-TBADD?

If you sort a table then add rows with ORDER, the final result will be in sort sequence. Otherwise, new rows are added to the end (I think).
Back to top
View user's profile Send private message
suchita_thorat

New User


Joined: 22 Feb 2008
Posts: 11
Location: Pune,India

PostPosted: Mon Sep 15, 2008 12:30 pm
Reply with quote

Thanks for your help icon_smile.gif
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts Load new table with Old unload - DB2 DB2 6
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Looking for a little history of ISPF ... TSO/ISPF 5
No new posts Adding QMF and SPUFI to the ISPF menu DB2 20
No new posts RC query -Time column CA Products 3
Search our Forums:

Back to Top