Author |
Message |
Topic: English expression |
Dibakar
Replies: 2
Views: 2382
|
Forum: Related Non-Technical Topics Posted: Mon Oct 07, 2024 3:23 pm Subject: English expression |
I hope three months is not too late to respond.
I work in similar project where apart from masking we also have to maintain character of data, like "John" becomes "Bond" (4 lett ... |
Topic: Rexx Macros/Clists on Compuware Workbench |
Dibakar
Replies: 1
Views: 4075
|
Forum: TSO and ISPF Posted: Fri Nov 30, 2018 2:24 pm Subject: Rexx Macros/Clists on Compuware Workbench |
I was also looking for answer to this old post. I was able to execute REXX program but it cannot be executed in interactive mode. I did not find this feature of much use. |
Topic: SAS Error from Batch REXX - 'Unrecognized SAS option name' |
Dibakar
Replies: 5
Views: 4030
|
Forum: Application Programming Posted: Thu Aug 09, 2018 7:19 pm Subject: SAS Error from Batch REXX - 'Unrecognized SAS option name' |
I finally did a little cheating by having first SAS call REXX and then REXX call SAS.
Here is the solution.
JCL:
//SAS EXEC SAS
//SYSIN DD * ... |
Topic: SAS Error from Batch REXX - 'Unrecognized SAS option name' |
Dibakar
Replies: 5
Views: 4030
|
Forum: Application Programming Posted: Thu Aug 09, 2018 6:35 pm Subject: SAS Error from Batch REXX - 'Unrecognized SAS option name' |
Kolusu,
I was going to try this next but this is other way round, executing REXX from SAS. I am trying SAS from REXX. |
Topic: SAS Error from Batch REXX - 'Unrecognized SAS option name' |
Dibakar
Replies: 5
Views: 4030
|
Forum: Application Programming Posted: Thu Aug 09, 2018 12:39 pm Subject: SAS Error from Batch REXX - 'Unrecognized SAS option name' |
Kolusu,
SAS is working, but not the way I want. My requirement is to execute SAS program through a REXX code in JCL.
Our shop mainly deals with batch REXX so we are investigating if we start de ... |
Topic: SAS Error from Batch REXX - 'Unrecognized SAS option name' |
Dibakar
Replies: 5
Views: 4030
|
Forum: Application Programming Posted: Wed Aug 08, 2018 2:10 pm Subject: SAS Error from Batch REXX - 'Unrecognized SAS option name' |
In the below code, I cam executing SAS program through REXX.
When I execute it through the JCL, I get the expected messages from REXX in SYSTSPRT, both before and after executing SAS.
But from ... |
Topic: SAS - ERROR: WRITE ACCESS TO MEMBER IS DENIED |
Dibakar
Replies: 2
Views: 4586
|
Forum: Application Programming Posted: Mon May 28, 2018 11:54 am Subject: SAS - ERROR: WRITE ACCESS TO MEMBER IS DENIED |
Looks like SAS need exclusive access to data library. Changing to DISP=OLD solved the problem. |
Topic: SAS - ERROR: WRITE ACCESS TO MEMBER IS DENIED |
Dibakar
Replies: 2
Views: 4586
|
Forum: Application Programming Posted: Fri May 25, 2018 3:33 pm Subject: SAS - ERROR: WRITE ACCESS TO MEMBER IS DENIED |
Following SAS code is working fine -
LIBNAME mysasds 'DB.SAS.DATASET';
data mysasds.wtclub;
But when I allocate the dataset in SAS JC ... |
Topic: In SAS, how to modify speicfic fields of perticular records |
Dibakar
Replies: 2
Views: 4155
|
Forum: Application Programming Posted: Fri Mar 23, 2018 2:46 pm Subject: In SAS, how to modify speicfic fields of perticular records |
Above link does not work so providing a new link
https://stats.idre.ucla.edu/sas/modules/match-merging-data-files-in-sas/ |
Topic: COBOL Combined Condition |
Dibakar
Replies: 15
Views: 14045
|
Forum: Application Programming Posted: Thu Jan 02, 2014 3:23 pm Subject: COBOL Combined Condition |
IF WS-INDICATOR NOT = ('Y' AND 'P')
In my interaction with business analysts, they don't get confused with code like this, but the programmers always are. I think it is okay since it is sup ... |
Topic: Stem variable in EXECIO |
Dibakar
Replies: 9
Views: 9741
|
Forum: TSO and ISPF Posted: Thu Jan 02, 2014 3:09 pm Subject: Stem variable in EXECIO |
If you have to press enter for a pull then that would mean that you don't have anything in queue. Check you logic again. |
Topic: How to modify the query |
Dibakar
Replies: 19
Views: 10667
|
Forum: Database Posted: Thu Oct 06, 2011 2:59 pm Subject: How to modify the query |
shyamsaravan, in your query this is causing extra rows.
WHERE C.EFF_DT > '0001-01-01'
OR C.EFF_DT IS NULL |
Topic: Assembly language : Sequential file reading |
Dibakar
Replies: 4
Views: 4314
|
Forum: Application Programming Posted: Tue Jun 14, 2011 6:07 pm Subject: Assembly language : Sequential file reading |
searched for macrf locate mode and this is the first link i got - http://csc.colstate.edu/woolbright/QSAM.HTM |
Topic: Create report using SAS |
Dibakar
Replies: 9
Views: 5820
|
Forum: Application Programming Posted: Thu Jun 09, 2011 11:42 am Subject: Create report using SAS |
Unfortunately, those are not the requested results. . .
I agree chandra's input and output are differently formatted then OP's post. But unless we are trying to spoon feed, the required logic ... |
Topic: Continue processing when REXX error is encountered |
Dibakar
Replies: 11
Views: 9342
|
Forum: TSO and ISPF Posted: Tue May 24, 2011 3:37 pm Subject: Continue processing when REXX error is encountered |
http://publib.boulder.ibm.com/infocenter/zos/v1r11/index.jsp?topic=/com.ibm.zos.r11.ikja300/c2d.htm
If the result cannot be expressed as a whole number, an error results. That is, the result must n ... |
|