mainframe

$HASP373 and IEF403I z/os syslog

ぐ巨炮叔叔 提交于 2020-01-13 10:06:30
问题 I ask myself a question about the z/os log: I just would like to know if all the operations getting started were always called by $HASP373 and IEF403I ? And for the status Ended called by $HASP395 and IEF404I ? 回答1: No. Those messages are for jobs. Not all operations are jobs. An example of an operation that is not a job would be a system command. I don't have a z/OS system at hand right now, but I believe another example of an operation that would not use the messages you reference would be

$HASP373 and IEF403I z/os syslog

若如初见. 提交于 2020-01-13 10:06:16
问题 I ask myself a question about the z/os log: I just would like to know if all the operations getting started were always called by $HASP373 and IEF403I ? And for the status Ended called by $HASP395 and IEF404I ? 回答1: No. Those messages are for jobs. Not all operations are jobs. An example of an operation that is not a job would be a system command. I don't have a z/OS system at hand right now, but I believe another example of an operation that would not use the messages you reference would be

Unable to FTP to MainFrame Location

扶醉桌前 提交于 2020-01-07 09:02:15
问题 I tried Retrieving a file from a mainframe location .. using FtpWebRequest. Every thing is working fine with Other general Servers and Getting issue only for mainframe here is the message 550 Command RETR fails: /'XXX.XXX.XXX.XX.TXT' does not exist.\r\n I believe the URI which I am creating its because of that , you can see a "/" in that message . here is my URI = ftp ://data.data.com//'XXX.XXX.XXX.XX.TXT' 回答1: There has been a change made to the FtpWebRequest class from .Net 2.0/3.5 to .Net

Data extraction from mainframe to excel

為{幸葍}努か 提交于 2020-01-07 04:09:08
问题 how to extract the data from mainframe into excel? Currently , I am fetching data from MS access but the requirements are for Mainframe. Thanks in advance 回答1: First, please understand that saying "extract data from mainframe" is similar to saying "extract data from Intel." The following is not comprehensive but is intended to provide an idea of how to ask your question in a manner which can be meaningfully answered. Please understand there is a big difference between... what is technically

Data extraction from mainframe to excel

风流意气都作罢 提交于 2020-01-07 04:09:08
问题 how to extract the data from mainframe into excel? Currently , I am fetching data from MS access but the requirements are for Mainframe. Thanks in advance 回答1: First, please understand that saying "extract data from mainframe" is similar to saying "extract data from Intel." The following is not comprehensive but is intended to provide an idea of how to ask your question in a manner which can be meaningfully answered. Please understand there is a big difference between... what is technically

Incude the year from last month's date in the DSN using JCL

非 Y 不嫁゛ 提交于 2020-01-06 08:15:42
问题 I have a request similar to the "JCL for previous month-year in dataset name" question. The answer to that question used an ALTER statement, which assumes knowledge of the date. I have JCL to append the year to the DSN, however in January, I need the previous year. I think this is possible with the help of SYNCSORT or DFSORT, but am not experienced with either of these. Any assistance is appreciated. Here is the current JCL: //B999999X JOB (80594,XXX),'MAKE DATE', // CLASS=C,MSGCLASS=C,NOTIFY

Incude the year from last month's date in the DSN using JCL

时光怂恿深爱的人放手 提交于 2020-01-06 08:14:04
问题 I have a request similar to the "JCL for previous month-year in dataset name" question. The answer to that question used an ALTER statement, which assumes knowledge of the date. I have JCL to append the year to the DSN, however in January, I need the previous year. I think this is possible with the help of SYNCSORT or DFSORT, but am not experienced with either of these. Any assistance is appreciated. Here is the current JCL: //B999999X JOB (80594,XXX),'MAKE DATE', // CLASS=C,MSGCLASS=C,NOTIFY

How to use period in PARM parameters (JCL)?

浪子不回头ぞ 提交于 2020-01-06 08:04:24
问题 The situation is the following. I have PARM parameters: CSQ1 - Queue manager name CARD.PAYMENTS - Request queue name CCD3050.REPLY - Reply queue name CCD3050 - Contestant user ID 400.05 - Payment amount "MY PAYMENT" - Payment description In my JCL I wrote this so: //PAYMENT EXEC PGM=PAYMENT,REGION=1024K, // PARM='CSQ1,CARD.PAYMENTS,CCD3050.REPLY,CCD3050, // 400.05,"MY PAYMENT"' I had a trouble. I wrote: // PARM=('CSQ1,CARD.PAYMENTS,CCD3050.REPLY,CCD3050', // '400.05,MY PAYMENT') And had a

How To Read a Date in Java from a COMP-3 field in COBOL?

亡梦爱人 提交于 2020-01-04 05:44:08
问题 I am trying to read a COBOL data file using JRecord, in that I have a Header record and Detail record, so I parsed with SPLIT_01_LEVEL and CopyBook File format as FMT_OPEN_COBOL. I have few date fields in the flat file as COMP-3 fields, and I am unable to understand on how to convert them into Java Date fields. ICobolIOBuilder iob = CobolIoProvider.getInstance() .newIOBuilder(copybookName) .setCopybookFileFormat(Convert.FMT_OPEN_COBOL) .setSplitCopybook(CopybookLoader.SPLIT_01_LEVEL); //I

How to FTP a variable length file from linux to mainframe z/OS

时光总嘲笑我的痴心妄想 提交于 2020-01-03 06:30:11
问题 I could not FTP a variable length file to mainframe; the operation was success, but the dataset generated on mainframe is not correct; can anyone help me. procedures. I have created a variable length dataset on mainframe. DSN=.TEST.DATA1 LRECL=16 Its content have 5 records, each has 12 characters: 000001 11AAAA000001 000002 11AAAA000002 000003 11AAAA000003 000004 11AAAA000004 000005 11AAAA000005 download the dataset to linux using FTP client on a linux platform ftp -v -n< user prompt binary