
Trapping PF keys in mainframes - REXX | Tek-Tips
2003年8月19日 · I am writing a Rexx program which displays ISPF Panel. If the user presses Enter key or PF3 key, the panel returns control to the program but I can not differentiate between the keys. I need PF3 to end the program and enter to Process furthur. address ispexec "display...
Several REXX Batch Questions - Tek-Tips
2007年8月8日 · My question is about Running REXX in batch. 1) Currently I have the rexx coded to allocate the two input files and one output file in the rexx script using ALLOC command. I thought that when I ran REXX in batch I would use normal JCL commands to allocate the files and just use the DDNAME specified in the JCL in my rexx program.
Date/Time Calculation - REXX | Tek-Tips
2006年10月8日 · Rexx routine to get a gdg generation create date. fossowat; Oct 2, 2009; REXX; Replies 1 Views 170. Oct 4 ...
Rexx coding for Scrollable Dynamic panels - Tek-Tips
2007年1月22日 · It implies that the scrolling is handled by the REXX application not the Panel. The SCROLL(ON) appears to allow scrolling info to be passed back to the rexx to then control the scrolling. I had originally thought that if the variable was greater than the screen definition then scrolling would take place within the panel, the same as a TBDISPL.
REXX to convert Packed Signed Decimal to Decimal or Integer 1
2006年2月22日 · REXX Language Assn Listmaster . Upvote 0 Downvote. Mar 2, 2006; Thread starter #3 techtip07 Programmer ...
Julian Dates - REXX | Tek-Tips
2003年1月24日 · From OS/390 V2R10.0 TSO/E REXX Reference Julian date in the format: yyddd. Note: When used for date_format1, this option is valid when input_date is not specified. Based on the above I suspect that you are going to have to do any conversion by hand.
Delete duplicate records - REXX | Tek-Tips
2003年9月12日 · Have a huge file that with record length around 366. One field colume 1-20 has the name of a ticket in it. If the name of the ticket appears more than once in the file I want to delete all occurances but one. I know this seems fairly easy but I cannot seem to get anything to work. Can someone...
ISPEXEC vput and ISPEXEC vget - REXX | Tek-Tips
2006年9月25日 · Below I am giving a REXX program which is calling a macro, but I am not getting the expected output. Can anyone tell me whether the below statements are right. My problem is, the variable i am sending using vput is not retrieved in the macro, it is passed to the macro as an empty variable. PROC - 1 /* REXX */ PROC = "AARTHY"
How to read the content of pds member one by - REXX - Tek-Tips
2012年9月6日 · I need to write the rexx code for reading the content one by of pds member.for example, I have pds with member abctds.join.studen(list),I need to print the value one by one which are all present in the member 'list'.Can any one please help me out to find the solution.One other thing I am able to read the content from PS(see the below code ...
Using REXX to get data where the cursor is positioned
2011年7月19日 · I am trying to write a rexx macro that can be used on any TSO panel and will pull the string where the cursor is positioned. I want it to pull the data from the first blank to the last blank. All I can find are ISPEDIT macros but I want this to work on any TSO panel. I …