Author |
Message |
Topic: cobol string size |
vihv
Replies: 14
Views: 7269
|
Forum: Application Programming Posted: Tue Nov 27, 2007 12:27 pm Subject: cobol string size |
well, I found a cobol function to do it:
2500-GET-SIZE-OF-SEQ-AREA.
INITIALIZE WS-TALLY
INSPECT FUNCTION REVERSE(WS-SEQUENTIAL-DATA)
TALLYING WS-TALLY
... |
Topic: difference between queue and qname cics ts |
vihv
Replies: 0
Views: 1727
|
Forum: CICS and Middleware Posted: Tue Nov 27, 2007 12:15 pm Subject: difference between queue and qname cics ts |
Hi there, can anybody tell me the difference between qname and queue in cics.
I found that qname can hold up to 16 bytes and queue can be up to 8 bytes, but beside that, is there any other differen ... |
Topic: cobol string size |
vihv
Replies: 14
Views: 7269
|
Forum: Application Programming Posted: Wed Oct 03, 2007 11:34 am Subject: cobol string size |
Hi guys, I have a variable pic x(1000), i'm trying to find how many bytes of that area are populated with data, the "length of" command gives me the length of the whole area, do you know any ... |
Topic: How to determine if a transaction is already running |
vihv
Replies: 8
Views: 5475
|
Forum: CICS and Middleware Posted: Tue May 22, 2007 10:56 am Subject: How to determine if a transaction is already running |
well I saw an example where we use the inquire tran for determining if the transaction is running. since the task id is randomly generated by cics every time the tran is started, how do you pass it as ... |
Topic: How to determine if a transaction is already running |
vihv
Replies: 8
Views: 5475
|
Forum: CICS and Middleware Posted: Fri May 18, 2007 11:20 am Subject: How to determine if a transaction is already running |
Guys, I'm sorry I did not state right the question.
On a cobol program I need to check if a transactions(different to the transaction on my program) is already running, if not, I need to start it.
... |
Topic: How to determine if a transaction is already running |
vihv
Replies: 8
Views: 5475
|
Forum: CICS and Middleware Posted: Thu May 17, 2007 4:34 pm Subject: How to determine if a transaction is already running |
Hi there, what's the cics command to check if a transaction is already running.....(writing a cobol program)
thans |
Topic: cics tran & cics task |
vihv
Replies: 4
Views: 2976
|
Forum: CICS and Middleware Posted: Tue May 01, 2007 12:51 pm Subject: cics tran & cics task |
got it tnks |
Topic: cics tran & cics task |
vihv
Replies: 4
Views: 2976
|
Forum: CICS and Middleware Posted: Tue May 01, 2007 10:31 am Subject: cics tran & cics task |
your own task..I guess I found it. it's in the eibtrnid for the transaction id and maybe the task will be in the same kind of variable...
Now, I have a cics program scheduled to run every certain t ... |
Topic: cics tran & cics task |
vihv
Replies: 4
Views: 2976
|
Forum: CICS and Middleware Posted: Mon Apr 30, 2007 3:32 pm Subject: cics tran & cics task |
Hey there, how to get the cics task Id ? |
Topic: SET and GETMAIN |
vihv
Replies: 6
Views: 5290
|
Forum: CICS and Middleware Posted: Wed Apr 18, 2007 11:24 am Subject: SET and GETMAIN |
You right...I was just a little confused.....
about How do you increment a Cobol pointer to point to the next memory location? and what about 2, 3, 4 increments?
EXEC CICS RETRIEVE
SET ... |
Topic: SET and GETMAIN |
vihv
Replies: 6
Views: 5290
|
Forum: CICS and Middleware Posted: Tue Apr 17, 2007 3:15 pm Subject: GetMain |
I read the manual, and still dont understand:
EXEC CICS,GETMAIN,
SET (ADDRESS OF LOGMSG1-INTERFACE-AREA)
LENGTH (WS-MESSAGE-LENGTH)
END-EXEC
is it going to return a pointer to a &q ... |
|