Prino's earlier comment applies
[quote]And doubtlessly you put it into the correct profile variable in the correct profile?[/quote]
Many products use an application ID to have separate set of variables from each other, in order to avoid collisions in use of variable names.
Start file-aid using ISPF option 7, then use DTEST 3 command to examine profile variables. Look for ZAPPLID. Your exec has to also be invoked in that same applid or your variable will be saved in the wrong place.
note to moderator: whats up with quote tags not working?
How dataset is auto populates in 3.4 Screen
-
- Posts: 17
- Joined: Fri Jun 19, 2015 8:22 pm
- Skillset: COBOL, JCL, IMS DB, REXX
- Referer: GOOGLE
Re: How dataset is auto populates in 3.4 Screen
Hi Pedro,
I checked in my shop and found ZAPPLID is ISR. What ZAPPLID should change to so, that I am able to VPUT in my ISPF profile.
Thanks.
I checked in my shop and found ZAPPLID is ISR. What ZAPPLID should change to so, that I am able to VPUT in my ISPF profile.
Thanks.
- Pedro
- Posts: 686
- Joined: Thu Jul 31, 2008 9:59 pm
- Skillset: ISPF
- Referer: google
- Location: Silicon Valley
Re: How dataset is auto populates in 3.4 Screen
Repeating:
If Fileaid operates in the ISR applid, then make sure your exec also operates in the ISR applid.
Your exec has to also be invoked in that same applid or your variable will be saved in the wrong place.
If Fileaid operates in the ISR applid, then make sure your exec also operates in the ISR applid.
Pedro Vera
- prino
- Posts: 641
- Joined: Wed Mar 11, 2009 12:22 am
- Skillset: PL/I - CICS - DB2 - IDMS - REXX - JCL, most in excess of three decades
- Referer: Google
- Location: Vilnius, Lithuania
- Contact:
Re: How dataset is auto populates in 3.4 Screen
mymainframe wrote:I checked in my shop and found ZAPPLID is ISR. What ZAPPLID should change to so, that I am able to VPUT in my ISPF profile.
I would be extremely surprised (or, being the cynic I've become, I should probably be extremely unsurprised) if FileAid was set up to use the ISR ZAPPLID at your bodyshop.
Robert AH Prins
robert.ah.prins @ the.17+Gb.Google thingy
robert.ah.prins @ the.17+Gb.Google thingy
-
- Posts: 17
- Joined: Fri Jun 19, 2015 8:22 pm
- Skillset: COBOL, JCL, IMS DB, REXX
- Referer: GOOGLE
Re: How dataset is auto populates in 3.4 Screen
Hi Prino,
ZAPPLID is IXP not ISR.
I am using ISR applid to autopopulate values on file aid screen. Before calling file aid (using CMD(xixmain) newappl(IXP) passlib) I am using VPUT to update file aid pannel variables also moving values to IXPPROF. Here I am getting below error when I execute my REXX.
Can you please suggest how can I correct this error.
Thanks
ZAPPLID is IXP not ISR.
I am using ISR applid to autopopulate values on file aid screen. Before calling file aid (using CMD(xixmain) newappl(IXP) passlib) I am using VPUT to update file aid pannel variables also moving values to IXPPROF. Here I am getting below error when I execute my REXX.
Code: Select all
****************************************
* ISPV006
* Data truncation occurred
* Data for char format variable "IXPPROF" was too long
*
*
Can you please suggest how can I correct this error.
Thanks
- Pedro
- Posts: 686
- Joined: Thu Jul 31, 2008 9:59 pm
- Skillset: ISPF
- Referer: google
- Location: Silicon Valley
Re: How dataset is auto populates in 3.4 Screen
I think you need to contact the Fileaid vendor.
Pedro Vera
-
- Posts: 17
- Joined: Fri Jun 19, 2015 8:22 pm
- Skillset: COBOL, JCL, IMS DB, REXX
- Referer: GOOGLE
Re: How dataset is auto populates in 3.4 Screen
One more, here before giving VPUT for IXPPROF, length was 1127. I am giving VPUT with a length of 262 and I can see that it got updated in IXPPROF variable (I confirmed by checking ISRPROF table using 3.16 utility). not sure why it is getting error out.
- Pedro
- Posts: 686
- Joined: Thu Jul 31, 2008 9:59 pm
- Skillset: ISPF
- Referer: google
- Location: Silicon Valley
Re: How dataset is auto populates in 3.4 Screen
Show us your code.
I would expect the failure later, when Fileaid goes to use the value that you set. I do not expect an error at the time when you save the value.
I would expect the failure later, when Fileaid goes to use the value that you set. I do not expect an error at the time when you save the value.
Pedro Vera
-
- Posts: 17
- Joined: Fri Jun 19, 2015 8:22 pm
- Skillset: COBOL, JCL, IMS DB, REXX
- Referer: GOOGLE
Re: How dataset is auto populates in 3.4 Screen
Yes Pedro, it is getting error when File-AID is using the variable. Below is the code.
Here I tested the same using "Dialog Test --> 1.Functions --> Invoke command" option, even there I am getting same error. when I select " _ override termination and attempt to continue" then its going to File-AID and working fine.
Thanks.
Code: Select all
IXPPROF = "Variable with a length of 1127 bytes"
"ISPEXEC VPUT (IXPPROF) PROFILE"
"ISPEXEC CMD(XIXMAIN) NEWAPPL(ISR) PASSLIB"
Here I tested the same using "Dialog Test --> 1.Functions --> Invoke command" option, even there I am getting same error. when I select " _ override termination and attempt to continue" then its going to File-AID and working fine.
Thanks.
- Pedro
- Posts: 686
- Joined: Thu Jul 31, 2008 9:59 pm
- Skillset: ISPF
- Referer: google
- Location: Silicon Valley
Re: How dataset is auto populates in 3.4 Screen
Here I am getting below error when I execute my REXX.
You should strive to explain the situation more accurately in the future.
Rexx is flexible about the length the variable data. Compiled languages have to use VDEFINE prior to the VGET... the VDEFINE specifies the length of the data. Unless you can change the length and recompile the program, I think you have to adjust your data to use the acceptable length?
Who ever heard of a data set name that is so long anyway?
Pedro Vera
-
- Similar Topics
- Replies
- Views
- Last post
-
- 2
- 2727
-
by willy jensen
View the latest post
Sat Mar 04, 2023 12:41 pm
-
- 3
- 2656
-
by sergeyken
View the latest post
Sat Nov 16, 2024 11:05 pm
-
- 12
- 3848
-
by RalphEagle
View the latest post
Fri Jul 30, 2021 1:00 pm
-
- 1
- 1256
-
by sergeyken
View the latest post
Wed Feb 07, 2024 11:48 pm
-
-
SMTPNOTE - can a font be specified for a dataset?
by Proddish2348 » Sat Jul 01, 2023 5:31 am » in Operating Systems - 0
- 4230
-
by Proddish2348
View the latest post
Sat Jul 01, 2023 5:31 am
-