|
View previous topic :: View next topic
|
| Author |
Message |
chanti
New User
.jpg)
Joined: 22 Nov 2008 Posts: 30 Location: hyderabad
|
|
|
|
Hi,
I'm trying to execute Submit Command through ISPLINK Service in XL C/C++ programming.
Syntax in TSO/ISPF
address ispexec "select cmd(submit '"ztempf"') Lang(APL)"
Similarly using ISPLINK Service in XL C/C++
fztempf = "userid().XXXX.CNTL"
int ret = ISPLINK("SELECT ","CMD ","SUBMIT ",fztempf);
but i'm getting system abend code 878 reason code 00020
When i looked at it, it says "There is not enough virtual storage in the LSQA to build a new address queue anchor table (AQAT) stack."
Can you please guide me ??
Thanks,
Chanti |
|
| Back to top |
|
 |
Nic Clouston
Global Moderator
Joined: 10 May 2007 Posts: 2454 Location: Hampshire, UK
|
|
|
|
| If you have multiple screens open then close some of them and see if that helps. |
|
| Back to top |
|
 |
daveporcelan
Active Member
Joined: 01 Dec 2006 Posts: 792 Location: Pennsylvania
|
|
|
|
| You may need to logon on with a larger region size for your tso session. |
|
| Back to top |
|
 |
enrico-sorichetti
Superior Member

Joined: 14 Mar 2007 Posts: 10903 Location: italy
|
|
|
|
| post the program so that we can take a look at what is going on |
|
| Back to top |
|
 |
Pedro
Global Moderator

Joined: 01 Sep 2006 Posts: 2624 Location: Silicon Valley
|
|
|
|
Instead of guessing at the syntax, please look at the syntax diagram for Call ISPLINK("SELECT ", ...) in the ISPF Services Guide.
You put 'C3D4C440'x where a length value should be; the result is that it can not honor your request. |
|
| Back to top |
|
 |
|
|