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

Deleting a TSQ from CICS


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Manas Sinha

New User


Joined: 29 Apr 2008
Posts: 20
Location: United Kingdom

PostPosted: Tue Jul 01, 2008 7:25 pm
Reply with quote

Hi All,

I am trying to delete a TSQ from CICS using the CECI command -

CECI DELETEQ TS QNAME(X) and then giving the Hex address got via CEMT (PF2).

At the bottom of the screen i see 'INVREQ' response.

Can somebody advise what could be the problem ?

Best regards,
Amit.
Back to top
View user's profile Send private message
Manas Sinha

New User


Joined: 29 Apr 2008
Posts: 20
Location: United Kingdom

PostPosted: Tue Jul 01, 2008 7:44 pm
Reply with quote

The EXEC Interface block looks something like this -

DELETEQ TS QNAME(X)
EXEC INTERFACE BLOCK
EIBTIME = X'0151306F'
EIBDATE = X'0108183F'
EIBTRNID = X'C3C5C3C9'
EIBTASKN = X'0035946C'
EIBTRMID = X'C6F0F5F5'
EIBCPOSN = X'0018'
EIBCALEN = X'0000'
EIBAID = X'7D'
EIBFN = X'0A06' (DELETEQ)
EIBRCODE = X'200000000000'
EIBDS = X'0000000000000000'
EIBREQID = X'0000000000000000'
EIBRSRCE = X'C6C1C9E2E3C1E3E2'
EIBSYNC = X'00'
EIBFREE = X'00'
EIBRECV = X'00'
EIBATT = X'00'
EIBEOC = X'00'
+ EIBFMH = X'00'

Best regards,
Amit.
Back to top
View user's profile Send private message
Manas Sinha

New User


Joined: 29 Apr 2008
Posts: 20
Location: United Kingdom

PostPosted: Tue Jul 01, 2008 7:53 pm
Reply with quote

EIBRESP=X'00000010' EIBRESP2=X'00000000'

Can somebody tell me what these EIBRESP codes reflect ?

Best regards,
Amit.
Back to top
View user's profile Send private message
Earl Haigh

Active User


Joined: 25 Jul 2006
Posts: 475

PostPosted: Tue Jul 01, 2008 8:21 pm
Reply with quote

please try reviewing the appropriate CICS application programming
guide for eib response codes,

you could also perform a google search.

based on your original question, I'm guessing the TSQ name


if the characters in the TSQ name contain non display characters,

and sometimes, lowercase characters, you can not delete the
tsq with CECI.
Back to top
View user's profile Send private message
Earl Haigh

Active User


Joined: 25 Jul 2006
Posts: 475

PostPosted: Tue Jul 01, 2008 8:29 pm
Reply with quote

it is also possible the TSQ you are trying to delete,

is not a qname , but queue id (1-8)

try using

deleteq queue (x)

also,

make sure the tsq to be deleted exists in the same region you
are executing the deleteq command, otherwise you will need to
use the sysid option
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Tue Jul 01, 2008 8:44 pm
Reply with quote

Quote:
EIBRESP=X'00000010' EIBRESP2=X'00000000'

Can somebody tell me what these EIBRESP codes reflect ?


Response code 16 is ... surprise ... INVREQ. Generally when the computer tells me something I tend to believe it without conflicting evidence. Just to verify, you are entering
Code:
CECI DELETEQ TS QNAME('16BYTESOFHEX')
and not actually an X? You can specify a variable name in a CECI request but you need to hit PF5 and populate the variable BEFORE you issue the command, and it's best to use an & in front of the variable name.
Back to top
View user's profile Send private message
Bill O'Boyle

CICS Moderator


Joined: 14 Jan 2008
Posts: 2501
Location: Atlanta, Georgia, USA

PostPosted: Tue Jul 01, 2008 11:25 pm
Reply with quote

Watch the wraparound -

publib.boulder.ibm.com/cgi-bin/bookmgr/BOOKS/dfhwp405/2.1?ACTION=MATCHES&REQUEST=rewrite&TYPE=FUZZY&SHELF=dfhwsh0p&DT=20060119100347&CASE=&searchTopic=TOPIC&searchText=TEXT&searchIndex=INDEX&rank=RANK&ScrollTOP=FIRSTHIT#FIRSTHIT

Bill[/url]
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 -> CICS

 


Similar Topics
Topic Forum Replies
No new posts Using API Gateway from CICS program CICS 0
No new posts Calling an Open C library function in... CICS 1
No new posts How to 'Ping' a CICS region in JCL CICS 2
No new posts Parallelization in CICS to reduce res... CICS 4
No new posts Deleting a Tape file JCL & VSAM 14
Search our Forums:

Back to Top