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

Display user defined Error message in Panel


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

New User


Joined: 13 May 2008
Posts: 56
Location: Chennai

PostPosted: Tue May 01, 2012 9:50 pm
Reply with quote

Hi,

My requirement is to get a 4 digit fund number as input in a ISPF screen. I am validating and throwing error message on the screen. Please find below the screen.

Code:

)ATTR                                                               
 ~ TYPE(TEXT)   INTENS(HIGH) COLOR(BLUE)                             
 _ TYPE(INPUT)  INTENS(LOW)  COLOR(RED)    CAPS(ON)                 
 % TYPE(TEXT)   INTENS(HIGH) COLOR(WHITE)  SKIP(ON)                 
 ` TYPE(OUTPUT) INTENS(HIGH) COLOR(YELLOW) CAPS(ON)                 
)BODY                                                               
~                                                                   
~                                                                   
~                         FUND NUMBER LOOK UP                       
~                                                                   
%                                                                   
%   ENTER THE FUND NUMBER: _R1  +                                   
%                                                                   
% MSG: `MSG1                                                      + 
%                                                                   
)INIT                                                               
 &MSG1 = 'PLEASE ENTER A FUND NUMBER'                               
)PROC                                                               
 VER(&R1,NB,MSG=MSG001)                                                 
 VER(&R1,PICT,NNNN,MSG=MSG002)                                         
)END                                                                   



Is it possible to display the user defined message MSG001 / MSG002 in MSG field of the ISPF screen?
Back to top
View user's profile Send private message
Pedro

Global Moderator


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

PostPosted: Tue May 01, 2012 9:55 pm
Reply with quote

Read about the )BODY statement.
Back to top
View user's profile Send private message
srajendran2

New User


Joined: 13 May 2008
Posts: 56
Location: Chennai

PostPosted: Tue May 01, 2012 10:24 pm
Reply with quote

Hi,

I updated the BODY as below.

Code:

)BODY LMSG(MSG) SMSG(MSG)                                           
~                                                                   
~                                                                   
~                         FUND NUMBER LOOK UP                       
~                                                                   
%                                                                   
%   ENTER THE FUND NUMBER: _R1  +                                   
%                                                                   
% MSG:`                                                        +
%                                                                   


But still the messages are not getting displayed in MSG field. Am i doing something wrong?
Back to top
View user's profile Send private message
srajendran2

New User


Joined: 13 May 2008
Posts: 56
Location: Chennai

PostPosted: Tue May 01, 2012 10:31 pm
Reply with quote

i am sorry. the code looks like this. please ignore the previous one

Code:

)BODY LMSG(MSG1) SMSG(MSG1)                                         
~                                                                   
~                                                                   
~                         FUND NUMBER LOOK UP                       
~                                                                   
%                                                                   
%   ENTER THE FUND NUMBER: _R1  +                                   
%                                                                   
% MSG:`MSG1                                                        +
%                                                                   
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Tue May 01, 2012 10:36 pm
Reply with quote

Is the message library LIBDEFed to ISPMLIB? Does it in fact contain a member for MSG001 and MSG002?
Back to top
View user's profile Send private message
srajendran2

New User


Joined: 13 May 2008
Posts: 56
Location: Chennai

PostPosted: Tue May 01, 2012 10:39 pm
Reply with quote

Hi,

It worked. Its just that the ISPPLIB and ISPMLIB concatenation was wrong and it was picking up the old version from the concatenation
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 Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts Execute secondary panel of sdsf with ... CLIST & REXX 1
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
No new posts PuTTY - "User is not a surrogate... IBM Tools 5
Search our Forums:

Back to Top