MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Help needed in DTL tag

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> TSO and ISPF
View previous topic :: View next topic  
Author Message
kingo
Intermediate


Joined: 01 Sep 2006
Posts: 167
Topics: 40
Location: chennai

PostPosted: Thu Jun 14, 2007 4:35 am    Post subject: Help needed in DTL tag Reply with quote

Hi,

I when I try to create a panel using DTL tag I am getting )end not found
This is my panel definition

Code:

<!DOCTYPE DM SYSTEM>
     <PANEL NAME=KING WIDTH=60>TEST PANEL
     <AREA>
     <INFO WIDTH=55>
</INFO>
</AREA>
</PANEL>


This is my error message

Code:

* ISPP150                                                                    *
*                                                                            *
* Panel 'TEST' error                                                        *
* No )END found before reaching end of file.                                 *



ISPP150

Code:

ISPP150 Panel 'aaaaaaaa' error - No )END found before reaching end of
       file.

Explanation:  No )END statement was found on the last line of the panel
definition. An )END statement is required as the last line of each panel
definition. ISPF ignores any data that appears on lines following the )END
statement.

Programmer Response:  Update the panel definition to contain an )END
statement on the last line.


_________________
IF YOU ARE NOT FOCUSSED ON GOAL ALL YOU SEE IS OBSTACLE.
Back to top
View user's profile Send private message Yahoo Messenger
kolusu
Site Admin
Site Admin


Joined: 26 Nov 2002
Posts: 12375
Topics: 75
Location: San Jose

PostPosted: Thu Jun 14, 2007 6:47 am    Post subject: Reply with quote

Quote:

Programmer Response: Update the panel definition to contain an )END
statement on the last line.


Kingo,

can you try to read and implement the above?

Kolusu
_________________
Kolusu
www.linkedin.com/in/kolusu
Back to top
View user's profile Send private message Send e-mail Visit poster's website
kingo
Intermediate


Joined: 01 Sep 2006
Posts: 167
Topics: 40
Location: chennai

PostPosted: Thu Jun 14, 2007 6:51 am    Post subject: Reply with quote

Kolusu,

I tried as said but still got the same error message.
As per DTL definition for panels </panel> is considered to be the ending tag.That is what is confusing me. Crying or Very sad Crying or Very sad
_________________
IF YOU ARE NOT FOCUSSED ON GOAL ALL YOU SEE IS OBSTACLE.
Back to top
View user's profile Send private message Yahoo Messenger
kolusu
Site Admin
Site Admin


Joined: 26 Nov 2002
Posts: 12375
Topics: 75
Location: San Jose

PostPosted: Thu Jun 14, 2007 7:14 am    Post subject: Reply with quote

kingo,

Try this

Code:

<!doctype dm system>
     <panel name=mainpan1 cursor=place>www.Mvsforums.com
         <selfld name=dest selwidth=50 pmtwidth=15>Helpboards:
           <choice>Application programming
           <choice>Database
           <choice>utilities
           <choice>TSO ISPF
         </selfld>
         <divider>
         <dtafld datavar=place entwidth=9 pmtwidth=5>Other
<cmdarea>
</panel>


and I suggest you read this

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/ISPZDT50/CCONTENTS?DT=20060621021823



Kolusu
_________________
Kolusu
www.linkedin.com/in/kolusu
Back to top
View user's profile Send private message Send e-mail Visit poster's website
kingo
Intermediate


Joined: 01 Sep 2006
Posts: 167
Topics: 40
Location: chennai

PostPosted: Thu Jun 14, 2007 7:23 am    Post subject: Reply with quote

I tried your code.I am getting the same error.Did you run that ?Is that working fine for you?Can you get me the exec?


Regds,
Kingo
_________________
IF YOU ARE NOT FOCUSSED ON GOAL ALL YOU SEE IS OBSTACLE.
Back to top
View user's profile Send private message Yahoo Messenger
semigeezer
Supermod


Joined: 03 Jan 2003
Posts: 1014
Topics: 13
Location: Atlantis

PostPosted: Thu Jun 14, 2007 12:14 pm    Post subject: Reply with quote

do you get messages when you compile the DTL source into a panel?
Back to top
View user's profile Send private message Visit poster's website
kingo
Intermediate


Joined: 01 Sep 2006
Posts: 167
Topics: 40
Location: chennai

PostPosted: Fri Jun 15, 2007 12:18 am    Post subject: Reply with quote

Cant I try to execute it directly using REXX??
If yes can you get me that REXX exec ?
How to compile it?
_________________
IF YOU ARE NOT FOCUSSED ON GOAL ALL YOU SEE IS OBSTACLE.
Back to top
View user's profile Send private message Yahoo Messenger
Nic Clouston
Advanced


Joined: 01 Feb 2007
Posts: 1075
Topics: 7
Location: At Home

PostPosted: Fri Jun 15, 2007 3:57 am    Post subject: Reply with quote

I have never used DTL and the guy I rely on for help avoids it like the plague.

Having said that, if you read 1.10 in the link that Kolusu gave I think you will find the answers to your questions that you have and many more that you would have had if you did not read the manual.

When I get back to work after my holiday I may try a little DTL experimentation myself - by reading that manual from back to front (yawn).
_________________
Utility and Program control cards are NOT, repeat NOT, JCL.
Back to top
View user's profile Send private message
kingo
Intermediate


Joined: 01 Sep 2006
Posts: 167
Topics: 40
Location: chennai

PostPosted: Fri Jun 15, 2007 4:14 am    Post subject: Reply with quote

Yeah I agree but this will be my last question in this thread for my request

1.Can I execute this panel definition using REXX?
2.Does it need any compilation ?
3.If so how would I execute ?

Please guide me


Regds,
Kingo
_________________
IF YOU ARE NOT FOCUSSED ON GOAL ALL YOU SEE IS OBSTACLE.
Back to top
View user's profile Send private message Yahoo Messenger
Nic Clouston
Advanced


Joined: 01 Feb 2007
Posts: 1075
Topics: 7
Location: At Home

PostPosted: Fri Jun 15, 2007 9:56 am    Post subject: Reply with quote

1 - no - The ISPEXEC DISPLAY service requires the panels to be in ISPF format - not DTL format
2 - yes - and tehre are 2 ways of doing this - according to the manual
3 - Both ways are explained step-by-step in section 1.10 of the link given by Kolusu
_________________
Utility and Program control cards are NOT, repeat NOT, JCL.
Back to top
View user's profile Send private message
kingo
Intermediate


Joined: 01 Sep 2006
Posts: 167
Topics: 40
Location: chennai

PostPosted: Sat Jun 16, 2007 5:11 am    Post subject: Reply with quote

Ok Thanks Nic will do that. Smile Smile Smile Smile Smile Smile Smile Smile Smile Smile


Regds,
Kingo
_________________
IF YOU ARE NOT FOCUSSED ON GOAL ALL YOU SEE IS OBSTACLE.
Back to top
View user's profile Send private message Yahoo Messenger
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> TSO and ISPF All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group