CA Datacom/DB CA RS 1704 Service List

Size: px
Start display at page:

Download "CA Datacom/DB CA RS 1704 Service List"

Transcription

1 CA Datacom/DB CA RS 1704 Service List Service Description Type RO93267 CURSOR 'XXX' NOT FOUND IN CURSOR TABLE PTF RO93323 S0C4 IN DBSRPPR MODULE DBSERV+928 PTF RO93402 TIMESTAMPCOLUMN <OP> 'TIMESTAMP LITERAL' NOT PASSED TO CBS PTF RO93453 "HOST VAR CONV" MESSAGES IN SQLOUT AFTER RO92900 *HIP/PRP* RO93676 DATABASE INTERNAL RETURN CODE NOT RETURNED PTF RO94148 MUF ABEND DURING CICS SHUTDOWN PTF RO94463 MUF ABORTS WITH DB00229E - FATAL INTERNAL BFW-4728 WITH CDC *HIP/PRP* RO94468 DB00229E - FATAL INTERNAL ERROR - JOB TERMINATED - BFW-04FC **HIPER** RO94778 ALLOW -SET SFON IN DDBTGLM PTF RO94915 NULL POINTER EXCEPTION WITH SOURCE CACHE PTF RO95035 ABEND S0C4 IN DBCGSPR PROCESSING DB 10.0 URT PTF The CA RS 1704 service count for this release is 11

2 CA Datacom/DB 2 CA RS 1704 Service List for FMID Service Description Type RO94778 ALLOW -SET SFON IN DDBTGLM PTF The CA RS 1704 service count for this FMID is 1

3 CA Datacom/DB 3 CA RS 1704 Service List for FMID Service Description Type RO94463 MUF ABORTS WITH DB00229E - FATAL INTERNAL BFW-4728 WITH CDC *HIP/PRP* RO94468 DB00229E - FATAL INTERNAL ERROR - JOB TERMINATED - BFW-04FC **HIPER** RO95035 ABEND S0C4 IN DBCGSPR PROCESSING DB 10.0 URT PTF The CA RS 1704 service count for this FMID is 3

4 CA Datacom/DB 4 CA RS 1704 Service List for FMID Service Description Type RO93267 CURSOR 'XXX' NOT FOUND IN CURSOR TABLE PTF RO93323 S0C4 IN DBSRPPR MODULE DBSERV+928 PTF RO93402 TIMESTAMPCOLUMN <OP> 'TIMESTAMP LITERAL' NOT PASSED TO CBS PTF RO93453 "HOST VAR CONV" MESSAGES IN SQLOUT AFTER RO92900 *HIP/PRP* RO93676 DATABASE INTERNAL RETURN CODE NOT RETURNED PTF RO94148 MUF ABEND DURING CICS SHUTDOWN PTF RO94915 NULL POINTER EXCEPTION WITH SOURCE CACHE PTF The CA RS 1704 service count for this FMID is 7

5 CA Datacom/DB CA RS PTF RO93267 Details Service RO93267 RO93267 Details M.C.S. ENTRIES = ++PTF (RO93267) CURSOR 'XXX' NOT FOUND IN CURSOR TABLE PROBLEM DESCRIPTION: A COBOL program should be able to have 1000 cursors but is failing at 100. SYMPTOMS: Error CURSOR 'xxx' NOT FOUND IN CURSOR TABLE is issued during pre-processing of the program. IMPACT: The program cannot be pre-processed. CIRCUMVENTION: None. CA Datacom SQL Release 14.0 CA Datacom SQL Release 15.0 CA Datacom SQL Release 15.1 SQL 2077 Copyright (C) 2017 CA. All rights reserved. R00375-DCM150-SP2 DESC(CURSOR 'XXX' NOT FOUND IN CURSOR TABLE). ++VER (Z038) FMID () PRE ( RO71592 RO84892 ) SUP ( RO70085 RO84145 TR70085 TR84145 TR93267 )

6 CA Datacom/DB CA RS PTF RO93323 Details Service RO93323 RO93323 Details M.C.S. ENTRIES = ++PTF (RO93323) S0C4 IN DBSRPPR MODULE DBSERV+928 PROBLEM DESCRIPTION: The Multi-User Facility (MUF) abnormally terminates in a rare case after close of the SQL URT in CICS. SYMPTOMS: MUF abends with S0C4 in DBSRPPR module DBSERV at offset x'928'. IMPACT: MUF must be restarted. CIRCUMVENTION: None. CA Datacom SQL Release 14.0 CA Datacom SQL Release 15.0 CA Datacom SQL Release 15.1 SQL 2076 Copyright (C) 2016 CA. All rights reserved. R00377-DCM150-SP2 DESC(S0C4 IN DBSRPPR MODULE DBSERV+928). ++VER (Z038) FMID () PRE ( RO84825 ) SUP ( RO88227 TR88227 TR93323 )

7 CA Datacom/DB CA RS PTF RO93402 Details Service RO93402 RO93402 Details M.C.S. ENTRIES = ++PTF (RO93402) The following items are included in this solution: 1. TIMESTAMPCOLUMN <OP> 'TIMESTAMP LITERAL' NOT PASSED TO CBS 2. DECIMALCOLEVEN = DECIMALCOLODD MADE RQAABLE ========================================================================== TIMESTAMPCOLUMN <OP> 'TIMESTAMP LITERAL' NOT PASSED TO CBS PROBLEM DESCRIPTION: A predicate of the format timestamp_column <basic op> 'timestamp literal' is not passed to the Compound Boolean Facility (CBS). This problem was introduced in Version SYMPTOMS: The query executes longer because the index is not restricted. IMPACT: If the timestamp_column is in an index, the query will search more index entries than necessary, causing the query to execute longer. CIRCUMVENTION: Use the TIMESTAMP function to convert the literal to the timestamp data type as in the following format timestamp_column <basic op> TIMESTAMP('timestamp literal') CA Datacom SQL Version 15.0 CA Datacom SQL Version 15.1 SQL 2078 ========================================================================== DECIMALCOLEVEN = DECIMALCOLODD MADE RQAABLE ENHANCEMENT DESCRIPTION: Predicates comparing packed decimal values that differ only in precision are now passed to the Compound Boolean Selection (CBS) facility where an index could be restricted and improve performance. Example: SELECT * FROM T1 INNER JOIN T2 WHERE T1.COL1 = T2.COL1 T1.COL1 IS DECIMAL(4,0), T2.COL1 IS DECIMAL(5,0) In this case, since the precision of T2.col1 is greater than t1.col1, this join predicate did not restrict access to T2. Now, since DECIMAL(4,0) has the same number of physical bytes as DECIMAL(5,0), for the purpose of evaluating the predicate, the DECIMAL(4,0) is considered DECIMAL(5,0), so the predicate can be evaluated by CBS. For larger differences in precision, the predicate is evaluated by CBS (for an EQ operator), and it is evaluated again in SQL in case the higher precision digits are not zero. This enhancement only affects the differing precision but equal length case in the example. CA Datacom SQL Release 15.0 CA Datacom SQL Release 15.1 SQL 2079 Copyright (C) 2017 CA. All rights reserved. R00380-DCM150-SP2 DESC(TIMESTAMPCOLUMN <OP> 'TIMESTAMP LITERAL' NOT PASSED TO CBS). ++VER (Z038) FMID () PRE ( RO71624 RO75289 RO80767 RO84442 RO85671 RO90157 ) SUP ( IC78136 RO87861 RO90405 TR87861 TR90405 TR93402 )

8 CA Datacom/DB CA RS PTF RO93453 Details Service RO93453 RO93453 Details M.C.S. ENTRIES = ++PTF (RO93453) "HOST VAR CONV" MESSAGES IN SQLOUT AFTER RO92900 PROBLEM DESCRIPTION: "Host Var Conv" and dump information is present in SQL SYSOUT. This only occurs with certain requests from CA Datacom Server after applying PTF RO SYMPTOMS: "Host Var Conv" and dump information fills the SQL SYSOUT. IMPACT: The print queue may fill. CIRCUMVENTION: None. CA DATACOM SQL Version 15.0 SQL 2080 Copyright (C) 2017 CA. All rights reserved. R00382-DCM150-SP2 DESC("HOST VAR CONV" MESSAGES IN SQLOUT AFTER RO92900). ++VER (Z038) FMID () PRE ( RO67512 RO71592 RO73988 RO78807 RO84892 RO90997 ) SUP ( FC78136 LC78136 RO72644 RO84356 RO84805 RO92900 TR72644 TR84356 TR84805 TR90499 TR92900 TR93453 )

9 CA Datacom/DB CA RS PTF RO93676 Details Service RO93676 RO93676 Details M.C.S. ENTRIES = ++PTF (RO93676) DATABASE INTERNAL RETURN CODE NOT RETURNED PROBLEM DESCRIPTION: The database record-at-a-time (RAAT) internal return code is not returned in the SQLCA. SYMPTOMS: The database record-at-a-time (RAAT) internal return code is not returned in the SQLCA. IMPACT: The exact error cannot be determined for external return codes that have multiple internal return codes. CIRCUMVENTION: None. CA Datacom SQL Release 15.0 CA Datacom SQL Release 15.1 SQL 2082 Copyright (C) 2017 CA. All rights reserved. R00389-DCM150-SP2 DESC(DATABASE INTERNAL RETURN CODE NOT RETURNED). ++VER (Z038) FMID () PRE ( RO71592 RO84892 ) SUP ( AR84892 RO92008 TR91225 TR92008 TR93676 )

10 CA Datacom/DB CA RS PTF RO94148 Details Service RO94148 RO94148 Details M.C.S. ENTRIES = ++PTF (RO94148) MUF ABEND DURING CICS SHUTDOWN PROBLEM DESCRIPTION: The Multi-user Facility (MUF) may abnormally terminate during CICS shutdown, or close of the SQL URT. This is a rare multi-tasking timing condition. SYMPTOMS: The abend is most likely to occur in module memserv. IMPACT: MUF must be restarted. CIRCUMVENTION: None. CA Datacom SQL Release 15.0 CA Datacom SQL Release 15.1 SQL 2083 Copyright (C) 2017 CA. All rights reserved. R00393-DCM150-SP2 DESC(MUF ABEND DURING CICS SHUTDOWN). ++VER (Z038) FMID () PRE ( RO72175 RO73203 RO84398 ) SUP ( TR94148 )

11 CA Datacom/DB CA RS PTF RO94463 Details Service RO94463 RO94463 Details M.C.S. ENTRIES = ++PTF (RO94463) MUF ABORTS WITH DB00229E - FATAL INTERNAL BFW-4728 WITH CDC PROBLEM DESCRIPTION: When a CA Datacom/DB Multi-User Facility (MUF) which is a member of a MUFplex is brought down with a normal EOJ, other enabled members of the MUFplex may abend with a "fatal error" in module DBBFWPR. SYMPTOMS: MUF aborts with the following message: DB00229E - FATAL INTERNAL ERROR - JOB TERMINATED - BFW-4728 IMPACT: A MUF outage is possible. CIRCUMVENTION: None. CA Datacom/DB Version 15.0 CA Datacom/DB Version 15.1 DB 5247 Copyright (C) 2017 CA. All rights reserved. R00402-DCM150-SP2 DESC(MUF ABORTS WITH DB00229E - FATAL INTERNAL BFW-4728 WITH CDC). ++VER (Z038) FMID () PRE ( RO68861 RO72240 RO74085 RO81612 RO93515 ) SUP ( RC80958 RO87800 RO91649 TR87800 TR91649 TR94463 )

12 CA Datacom/DB CA RS PTF RO94468 Details Service RO94468 RO94468 Details M.C.S. ENTRIES = ++PTF (RO94468) DB00229E - FATAL INTERNAL ERROR - JOB TERMINATED - BFW-04FC PROBLEM DESCRIPTION: The CA Datacom/DB Multi-User Facility (MUF) can abend with a "fatal error" in module DBBFWPR when using the Change Data Capture (CDC) facility in a MUFplex environment. SYMPTOMS: MUF abends with the following message: DB00229E - FATAL INTERNAL ERROR - JOB TERMINATED - BFW-04FC IMPACT: There is a MUF outage. CIRCUMVENTION: None. CA Datacom/DB Version 15.0 CA Datacom/DB Version 15.1 DB 5252 Copyright (C) 2017 CA. All rights reserved. R00403-DCM150-SP2 DESC(DB00229E - FATAL INTERNAL ERROR - JOB TERMINATED - BFW-04FC). ++VER (Z038) FMID () PRE ( RO72240 RO81127 ) SUP ( RO74070 RO93555 TR74070 TR93555 TR94468 )

13 CA Datacom/DB CA RS PTF RO94778 Details Service RO94778 RO94778 Details M.C.S. ENTRIES = ++PTF (RO94778) ALLOW -SET SFON IN DDBTGLM ENHANCEMENT DESCRIPTION: This enhancement allows the DDBTGLM utility to process the -SET SFON diagnostic transaction. This transaction causes certain control blocks and request areas to be snap dumped for debugging purposes. CA Datacom Datadictionary Version 15.0 CA Datacom Datadictionary Release 15.1 DD 2163 Copyright (C) 2017 CA. All rights reserved. R00406-DCM150-SP2 DESC(ALLOW -SET SFON IN DDBTGLM). ++VER (Z038) FMID () SUP ( RO71994 RO73490 RO85518 TR71994 TR73490 TR85518 TR94778 )

14 CA Datacom/DB CA RS PTF RO94915 Details Service RO94915 RO94915 Details M.C.S. ENTRIES = ++PTF (RO94915) NULL POINTER EXCEPTION WITH SOURCE CACHE PROBLEM DESCRIPTION: A "null pointer exception" occurs using JDBC/ODBC and the SQL Source Cache when a query uses literals and then switches to using parameter markers without any other change. If using parameter markers first, then literals, other errors may occur, such as incorrect rows returned. SYMPTOMS: The JDBC/ODBC application receives a "null pointer exception" or other unpredictable errors. IMPACT: The query cannot be executed or may return invalid results. CIRCUMVENTION: Make some other change to the SQL source text when switching between the use of literals and parameter markers. For example, switch the order of predicate operands, or add "AND 1 = 1", etc. CA Datacom SQL Release 15.0 CA Datacom SQL Release 15.1 CA Datacom/Server Release 14.0 CA Datacom/Server Release 15.0 SQL 2084 Copyright (C) 2017 CA. All rights reserved. R00407-DCM150-SP2 DESC(NULL POINTER EXCEPTION WITH SOURCE CACHE). ++VER (Z038) FMID () PRE ( RO71668 RO73988 RO74322 RO84892 ) SUP ( RO69022 TR69022 TR94915 )

15 CA Datacom/DB CA RS PTF RO95035 Details Service RO95035 RO95035 Details M.C.S. ENTRIES = ++PTF (RO95035) ABEND S0C4 IN DBCGSPR PROCESSING DB 10.0 URT PROBLEM DESCRIPTION: While processing a URT that was originally created by Datacom 10.0, DBCGSPR gets an ABEND S0C4 when trying to extract the link date from the URT load module. The last line in the SYSPRINT output indicates which CUSLIB module was being processed when the ABEND S0C4 occurs. A new control parameter SKIPMEM was added to allow the user to skip over a problem CUSLIB member. In the SYSIN, "SKIPMEM memname" could be coded to skip the named member and process the remaining library members. Any number of SKIPMEM control statements may be specified. SYMPTOMS: Module DBCGSPR gets an ABEND S0C4. IMPACT: DBCGSPR is not able to be run successfully. CIRCUMVENTION: None. CA Datacom/DB Version 15.0 CA Datacom/DB Release 15.1 DB 5264 Copyright (C) 2017 CA. All rights reserved. R00409-DCM150-SP2 DESC(ABEND S0C4 IN DBCGSPR PROCESSING DB 10.0 URT). ++VER (Z038) FMID () PRE ( RO91393 ) SUP ( TR95035 )

16 CA Datacom/DB CA RS 1704 Product/Component Listing Product Family Product Release DATACOM CA DATACOM DATADICTIONARY CA DATACOM FAST RESTORE CA DATACOM PRESSPACK CA DATACOM SQL CA DATAQUERY FOR CA DATACOM CA-DATACOM/DB The CA RS 1704 Product/Component Count for this release is 6

17 CA Datacom/DB All CA RS Levels Service List CA RS Level Service FMID CAR1704 RO95035 RO94915 RO94778 RO94468 RO94463 RO94148 RO93676 RO93453 RO93402 RO93323 RO93267 CAR1703 RO94442 RO94434 RO94404 RO94304 RO94178 RO94164 RO93845 RO92676 RO90832 CADQF00 CAR1702 RO94172 CADQF00 RO94089 RO93667 RO93604 RO93555 RO93515 CAR1701 RO93505 RO93407 RO93379 RO93366 RO93306 RO93211 RO93179 RO93083 RO92900 RO92700 RO92484 CAR1612 RO93097 RO93089 RO93062 RO93026 RO92890 RO92776 RO92285 RO91837 CADQF00 CAR1611 RO92737 RO92399 RO92281 RO92248 RO92170 RO92103 RO91449 RO91393 CAADF05 CAR1610 RO92172 RO92008

18 CA Datacom/DB All CA RS Levels Service List CA RS Level Service FMID RO91991 RO91812 RO91649 RO91580 RO91216 CAR1609 RO91685 RO91496 RO91474 RO91426 RO91354 RO91295 RO91164 RO90997 RO90972 RO90728 CAR1608 RO91112 RO90970 RO90968 RO90966 RO90939 RO90915 RO90877 RO90405 RO89818 RO88304 RO86742 CAR1607 RO90822 RO90730 RO90557 RO90470 RO90272 RO90221 RO90187 CAR1606 RO90178 RO90157 RO90067 RO90043 RO90011 RO89957 RO89598 RO89593 RO89588 RO89276 CADQF00 CAR1605 RO89519 RO89518 RO89473 RO89348 RO89338 RO89163 RO88610 RO85296 CADQF00 CAR1604 RO89125 RO89021 RO88959 RO88911

19 CA Datacom/DB All CA RS Levels Service List CA RS Level Service FMID RO88875 RO88868 RO88813 RO88616 RO88542 RO88440 RO88393 RO88391 RO88365 RO88293 CAR1603 RO88227 RO88189 RO88176 RO88154 RO88132 RO88081 RO87989 RO87938 RO87913 RO87861 RO87765 RO87554 RO87529 RO86589 CAR1602 RO87800 RO87686 RO87518 RO87495 RO87472 RO87471 RO87452 RO87444 RO87282 RO87274 RO87217 RO87023 CAR1601 RO87088 RO87047 RO86854 RO86717 RO86614 CAR1512 RO86588 RO86400 RO86346 RO86318 RO86101 RO85869 RO85846 CAR1511 RO85798 RO85671 RO85592 RO85559 RO85518 RO85408 RO85366

20 CA Datacom/DB All CA RS Levels Service List CA RS Level Service FMID RO85363 RO85202 RO85201 RO85024 RO84959 RO84950 RO84928 RO84892 RO84885 RO84876 RO84825 RO84805 RO84797 RO84670 RO84658 RO84647 RO84398 RO84145 RO81210 RO79826 CADQF00 CAR1510 RO84934 RO84793 RO84762 RO84703 RO84635 RO84605 RO84452 RO84442 RO84436 RO84356 RO84293 RO84240 RO83755 RO81529 CAR1509 RO83799 RO83721 RO83547 RO83461 RO83425 RO83154 RO83102 RO83077 CAR1508 RO83166 RO83027 RO82947 RO82922 RO82864 RO82860 RO81162 RO78702 CAR1507 RO82479 RO82205 RO82156 RO82108 RO81931

21 CA Datacom/DB All CA RS Levels Service List CA RS Level Service FMID RO81820 RO81612 RO78807 CAR1506 RO81525 RO81285 RO81240 RO81155 RO81127 RO81000 RO80917 RO80872 RO80123 CAR1505 RO80804 RO80771 RO80767 RO80634 RO80556 RO80417 RO80374 RO80173 RO80084 RO79989 RO77832 RO74448 CAR1504 RO79688 RO79678 RO79539 RO79439 RO79425 RO79086 RO78796 RO77114 CAR1503 RO78731 RO78730 RO78697 RO78683 RO78557 RO78206 RO78150 RO78133 RO77658 CAR1502 RO77621 RO77246 RO77089 CAR1501 RO77059 RO76058 RO75752 RO75689 RO73037 CAR1412 RO75649 RO75643 RO75411 RO75194 RO74331 RO74322

22 CA Datacom/DB All CA RS Levels Service List CA RS Level Service FMID CAR1411 RO75289 RO75038 RO74875 RO74860 RO74608 RO74092 RO74085 RO74070 RO74060 RO74058 RO74018 RO74017 RO74016 RO74004 RO73989 RO73988 RO73987 RO73777 RO73490 RO73389 RO73203 RO73094 RO72842 RO72714 RO72582

CA Datacom/AD CA RS 1704 Service List

CA Datacom/AD CA RS 1704 Service List CA Datacom/AD 15.0 1 CA RS 1704 Service List Service Description Type RO93267 CURSOR 'XXX' NOT FOUND IN CURSOR TABLE PTF RO93323 S0C4 IN DBSRPPR MODULE DBSERV+928 PTF RO93402 TIMESTAMPCOLUMN 'TIMESTAMP

More information

CA Datacom/DB 15.1 **Incremental INC00** 1 CA RS 1703 Service List

CA Datacom/DB 15.1 **Incremental INC00** 1 CA RS 1703 Service List CA Datacom/DB 15.1 **Incremental INC00** 1 CA RS 1703 Service List Description Type 15.1 RO90834 CICS STORAGE VIOLATION CREATING AN SQL REPORT FORMAT PTF RO93613 DECIMALCOLEVEN = DECIMALCOLODD MADE RQAABLE

More information

CA Datacom/DB CA RS 1703 Service List

CA Datacom/DB CA RS 1703 Service List CA Datacom/DB 15.0 1 CA RS 1703 Service List Description Type 15.0 RO90832 CICS STORAGE VIOLATION CREATING AN SQL REPORT FORMAT PTF RO92676 DBUTLTY BACKUP/EXTRACT ABORT WITH RC 13(31) WITH MULTUSE=YES

More information

CA Datacom/DB CA RS 1806 Service List

CA Datacom/DB CA RS 1806 Service List CA Datacom/DB 15.1 1 CA RS 1806 List Description Type SO00167 ESTIMATED TIME REMAINING FORMATTED INCORRECTLY PTF SO00890 INTERNAL SECURITY ACCESS FOR DATACOM SERVER ENHANCEMENT *HIP/PRP* SO00902 S0C4 IN

More information

CA Datacom/DB CA RS 1305 Service List

CA Datacom/DB CA RS 1305 Service List CA Datacom/DB 14.0 1 CA RS 1305 Service List Description Hiper 14.0 RO49483 ABEND, MIGRATE_TO_SHADOW RUNNING CHANGE DATA CAPTURE RO53265 PROVIDE FRAMEWORK FOR FUTURE OLREORG ENHANCEMENT RO53693 ALIGNMENT

More information

CA Datacom/DB CA RS 1810 Service List

CA Datacom/DB CA RS 1810 Service List CA Datacom/DB 15.1 1 CA RS 1810 List Description Type SO04565 ENHANCEMENT DB00625I CXX ALTER MESSAGE FOR CXX CHANGES PTF SO04867 SQLSCI_PLAN HAS MORE ROWS THAN EXPECTED PTF SO04931 INTERNALLY GENERATED

More information

CA Datacom/DB CA RS 1510 Service List

CA Datacom/DB CA RS 1510 Service List CA Datacom/DB 15.0 1 CA RS 1510 Service List Description Type 15.0 RO81529 PROVIDE REMOTE REPLICATION USING MQ SERIES AS TRANSPORT PTF RO83755 PREVENT RESTART PROBLEMS IN SIMPLIFY MODE *HIP/PRP* RO84240

More information

CA Datacom/DB CA RS 1604 Service List

CA Datacom/DB CA RS 1604 Service List CA Datacom/DB 15.0 1 CA RS 1604 Service List Description Type 15.0 RO88293 DBUTLTY BACKUP FAILS WITH RC 21 WITH USER COMPRESSION *HIP/PRP* RO88365 ENHANCEMENT: DIAGNOSTIC FOR MEMORY USAGE PTF RO88391 S0C4

More information

CA Datacom/AD CA RS 1504 Service List

CA Datacom/AD CA RS 1504 Service List CA Datacom/AD 14.0 1 CA RS 1504 Service List Description Type 14.0 RO59932 DATAQUERY FIELD DISPLAY PROBLEMS PTF RO69931 INVALID THE DATA MESSAGE USING BACKWARD RECOVERY PTF RO73725 ADD URT NUMBER AS AN

More information

CA Datacom/DB CA RS 1507 Service List

CA Datacom/DB CA RS 1507 Service List CA Datacom/DB 15.0 1 CA RS 1507 Service List Description Type 15.0 RO78807 S0C4 IN DELEXEC WITH DELETE FROM CURSOR AFTER RO40578 PTF RO81612 CHANGE DATA CAPTURE IMPROPER RESTART AFTER EOJ *HIP/PRP* RO81820

More information

CA Datacom/AD CA RS 1305 Service List

CA Datacom/AD CA RS 1305 Service List CA Datacom/AD 14.0 1 CA RS 1305 Service List Description Hiper 14.0 RO49483 ABEND, MIGRATE_TO_SHADOW RUNNING CHANGE DATA CAPTURE RO53265 PROVIDE FRAMEWORK FOR FUTURE OLREORG ENHANCEMENT RO53693 ALIGNMENT

More information

CA Datacom/DB CA RS 1511 Service List

CA Datacom/DB CA RS 1511 Service List CA Datacom/DB 15.0 1 CA RS 1511 Service List Description Type 15.0 RO79826 DATAREPORTER S0C4 DRCXXPR OR S0C6 DRAXXPR PTF RO81210 DATAQUERY FIELD DISPLAY PROBLEMS WITH SIGNED DATA PTF RO84145 ADD SUPPORT

More information

CA Datacom/DB CA RS 1606 Service List

CA Datacom/DB CA RS 1606 Service List CA Datacom/DB 14.0 1 CA RS 1606 Service List Description Type 14.0 RO87877 RETURN CODE 13(16) AFTER EXTEND CBS HEURISTIC BASE PTF RO88913 DQ025E ERROR USING JOIN PROCESSING DURING EXPORT ** PRP ** RO89157

More information

CA Datacom/AD CA RS 1605 Service List

CA Datacom/AD CA RS 1605 Service List CA Datacom/AD 14.0 1 CA RS 1605 Service List Description Type 14.0 RO85169 DATAQUERY JOIN PROCESSING GETS ERROR DQ025E PTF RO88280 DDUTILTY GETS ERROR MESSAGE DDT005034 DURING ORPHAN REPORT PTF RO88461

More information

CA Datacom/DB CA RS 1602 Service List

CA Datacom/DB CA RS 1602 Service List CA Datacom/DB 14.0 1 CA RS 1602 Service List Description Type 14.0 RO86865 S0C4 IN DBSRPPR SYSVIEW+001750 PTF RO87076 DBSQLPR S0C4 WITH LARGE OUTPUT REQUESTED PTF RO87316 DB CONSOLE COMMAND "QUIESCE RST"

More information

CA Datacom/DB CA RS 1506 Service List

CA Datacom/DB CA RS 1506 Service List CA Datacom/DB 15.0 1 CA RS 1506 Service List Description Type 15.0 RO80123 INCOMPLETE BACKWARD RECOVERY WITH MULTIPLE RECJOB CARDS PTF RO80872 SQLCODE -161 OR -4 AFTER RO80292/RO80771 ** PRP ** RO80917

More information

CA Datacom/AD CA RS 1701 Service List

CA Datacom/AD CA RS 1701 Service List CA Datacom/AD 15.0 1 CA RS 1701 Service List Description Type 15.0 RO92484 MUF HUNG DURING RESTART WITH "WAIT DB MISC" STATUS *HIP/PRP* RO92663 USS: ADD /LARGEADDRESSAWARE (TRUE 64BIT ADDRESSING)-WINDOWS

More information

CA Datacom/DB CA RS 1412 Service List

CA Datacom/DB CA RS 1412 Service List CA Datacom/DB 15.0 1 CA RS 1412 Service List Description Type 15.0 RO74322 UNRECOGNIZED STATEMENT-TYPE EXECUTING EXTERNALLY SECURED PTF RO74331 MUF ABEND USER COMPLETION CODE=0008 IN DBU08PR PTF RO75194

More information

CA Datacom/AD CA RS 1503 Service List

CA Datacom/AD CA RS 1503 Service List CA Datacom/AD 14.0 1 CA RS 1503 Service List Description Type 14.0 RO54870 CLOSE OPEN URTS WITH SQL_STATUS_URT DYNAMIC SYSTEM TABLE PTF RO74442 PDF ASRA DISPLAY/EDIT IDEAL PANEL PTF RO76078 UNCONDITIONAL

More information

CA Datacom/DB CA RS 1308 Service List

CA Datacom/DB CA RS 1308 Service List CA Datacom/DB 14.0 1 CA RS 1308 Service List Description Hiper 14.0 RO57425 S0C4 AT DBINRPR+23AC USING EXTENDED PROGRAMMING OPTION RO60177 EOJ_OK SUPPORT IN EXTENDED OPTION DOES NOT TAKE EFFECT The CA

More information

CA Datacom/DB CA RS 1411 Service List

CA Datacom/DB CA RS 1411 Service List CA Datacom/DB 15.0 1 CA RS 1411 Service List Description Type 15.0 RO72582 NSV1 ERROR CODE IN SQL OR DDVKEY0015 IN DDUPDATE OR DDOL PTF RO72714 S0C4 IN DBIDXPR RUNNING RETIX VERIFY=YES PTF RO72842 SVL

More information

CA Datacom/DB CA RS 1410 Service List

CA Datacom/DB CA RS 1410 Service List CA Datacom/DB 14.0 1 CA RS 1410 Service List Description Type 14.0 RO70964 RC 94(66) DURING EXTEND WITH DATA SET EXTENT VALIDATION ON ** PRP ** RO71035 DDTRSLM TRACE FILE ALWAYS OPENED PTF RO71759 S413-1C/RC

More information

CA Datacom/AD CA RS 1702 Service List

CA Datacom/AD CA RS 1702 Service List CA Datacom/AD 15.0 1 CA RS 1702 Service List Description Type 15.0 RO93486 MF: PREVENT HIGH CPU WHEN UNKNOWN TCP/IP TRAFFIC SENT PTF RO93515 DISPLAY LXX PERCENT FULL WITH STATUS_LOG CONSOLE COMMAND PTF

More information

CA Datacom/AD CA RS 1707 Service List

CA Datacom/AD CA RS 1707 Service List CA Datacom/AD 15.0 1 CA RS 1707 Service List Service Description Type RO93880 DATAVIEW ELEMENTS LOST ON COPY TO PROD ** PRP ** RO94563 DIAGNOSTIC TO CAPTURE BETTER INFORMATION FOR RC 72(001) PTF RO95925

More information

CA Datacom/AD CA RS 1408 Service List

CA Datacom/AD CA RS 1408 Service List CA Datacom/AD 14.0 1 CA RS 1408 Service List Description Type 14.0 RO69853 UNABLE TO APF AUTHORIZE SMS MANAGED LIBRARIES USING CSM PTF RO69919 VLS CORRUPTION RESULTING FROM INCORRECT ENQUEUE CONVERSION

More information

CA Datacom/DB CA RS 1212 Service List

CA Datacom/DB CA RS 1212 Service List CA Datacom/DB 14.0 1 CA RS 1212 Service List Release Service Description Hiper 14.0 RO45087 LARGE UNSIGNED NUMBERS NOT DISPLAYING CORRECTLY IN DBSQLPR RO46449 DBSQLPR NOT ALLOWING BLANK DELIMITED PARAMETERS

More information

CA Datacom/AD CA RS 1409 Service List

CA Datacom/AD CA RS 1409 Service List CA Datacom/AD 14.0 1 CA RS 1409 Service List Description Type 14.0 RO57031 MEMBER NOT FOUND ERROR EXECUTING DDDDULM PTF RO65981 CORRECT ALTERNATE BASIS PTF RO67690 'DCL' IN COBOL COPYBOOK FROM SOURCE LANGUAGE

More information

CA Datacom/DB CA RS 1510 Service List

CA Datacom/DB CA RS 1510 Service List CA Datacom/DB 14.0 1 CA RS 1510 Service List Description Type 14.0 RO58558 RETURN CODE 15(139) ON CA DATAQUERY PRODUCT FILES PTF RO79827 DATAREPORTER S0C4 DRCXXPR OR S0C6 DRAXXPR PTF RO81655 PROVIDE REMOTE

More information

CA Datacom/AD CA RS 1411 Service List

CA Datacom/AD CA RS 1411 Service List CA Datacom/AD 14.0 1 CA RS 1411 Service List Description Type 14.0 RO63612 QUERY TEXT NOT PRINTED WHEN ONLINE SUBMIT TO BATCH PTF RO71060 ISOWEEK - WRONG YEAR - 1ST WEEK OF YEAR PTF RO71372 PROVIDE NEW

More information

CA Datacom/AD CA RS 1403 Service List

CA Datacom/AD CA RS 1403 Service List CA Datacom/AD 14.0 1 CA RS 1403 Service List Description Hiper 14.0 RO56304 CORRECT ELEMENT LENGTH CALCULATION WITH REDEFINES RO56349 EXPAND INTERNAL COMAND BUFFER RO59103 VLS CICS INQUIRE FILE INCORRECT

More information

CA Datacom/AD CA RS 1312 Service List

CA Datacom/AD CA RS 1312 Service List CA Datacom/AD 14.0 1 CA RS 1312 Service List Description Hiper 14.0 RO51282 DBUTLTY EOJ_REPORT/REPORT_X MAY ABEND WITH S0C4 IN DBMRPPR RO53769 RC 13(05),21(04) AND OTHERS WITH DATANE REPORT RO58591 NO

More information

CA Datacom/AD CA RS 1405 Service List

CA Datacom/AD CA RS 1405 Service List CA Datacom/AD 14.0 1 CA RS 1405 Service List Description Hiper 14.0 RO67063 SCF CVT CLEARED INCORRECTLY RO67340 REMOVE INCORRECT COMMENTS FROM INSTJCL MEMBER 'BDFBK01' RO67694 MF: MS-ACCESS LINKED TABLE

More information

CA Workload Automation CA 7 Edtion CA RS 1709 Service List

CA Workload Automation CA 7 Edtion CA RS 1709 Service List CA Workload Automation CA 7 Edtion 12.0 1 CA RS 1709 List Description Type RO95870 LOAD PROCESS HANGS *HIP/PRP* RO96721 CAL2DCV2 - #SCC NOT WORKING AFTER REVERSION PTF RO96803 CAL2Q0600E AND CAL2Q0610E

More information

CA Datacom/DB CA RS 1204 Service List

CA Datacom/DB CA RS 1204 Service List CA Datacom/DB 14.0 1 CA RS 1204 Service List Release Service Description Hiper 14.0 RO37304 DB30030E MESSAGE HAS INCORRECT RELEASE LEVEL FOR MUF RO37617 DBUTLTY ABORTS WITH A S0C4 IN DBIDXPR RO37997 CATALOG

More information

CA Disk Backup and Restore CA RS 1809 Service List

CA Disk Backup and Restore CA RS 1809 Service List CA Disk Backup and Restore 12.5 1 1809 Service List Service Description Type RO99837 SVC 99 ERROR IN RESTORE/RECOVER - TIOT FULL PTF SO01880 ALLOW64KY MAY CAUSE JOBS TO HANG WHEN DATACOM MUF NOT UP PTF

More information

CA Workload Automation CA 7 Edtion CA RS 1606 Service List

CA Workload Automation CA 7 Edtion CA RS 1606 Service List CA Workload Automation CA 7 Edtion 11.3 1 CA RS 1606 Service List Description Type 11.3 RO89375 IDASH REJECTS EVENTS DUE TO INVALID INSTANCE ID PTF RO89563 CA-7 SERVER FOR IDASH SEED DATA EVENTS LACK LPAR

More information

CA InterTest Batch CA RS 1510 Service List

CA InterTest Batch CA RS 1510 Service List CA InterTest Batch 8.5 1 CA RS 1510 Service List Release Service Description Type 8.5 RO75934 U4036 OR S0C4 ABEND IN CAMRTMON; S200 IN CAMRTEXI; LOOP PTF RO81700 JCL CONVERSION ERRORS/ABENDS WHEN JCL IS

More information

CA TLMS Tape Management CA RS 1709 Service List

CA TLMS Tape Management CA RS 1709 Service List CA TLMS Tape Management 12.6 1 CA RS 1709 Service List Service Description Type RO94174 SUPPORT FOR Z/OS 2.3 PTF RO97219 S413-50 ABEND WITH DFSMSHSM AFTER UPGRADE PTF RO97593 SYSZTIOT LOCK IS NOT CORRECTLY

More information

CA Top Secret Security for z/os CA RS 1412 Service List

CA Top Secret Security for z/os CA RS 1412 Service List CA Top Secret Security for z/os 15.0 1 CA RS 1412 Service List Release Service Description Type 15.0 RO73379 ACID RECORD DEGRADATION POSSIBLE W/ SIGNON PSWD CHANGES *HIP/PRP* RO73933 ABEND S0C4 ON TSS

More information

CA IDMS CA RS 1705 Service List

CA IDMS CA RS 1705 Service List CA IDMS 19.0 1 CA RS 1705 List Description Type RO94717 S0C4 IN OLQSDMLE USING AUTHORIZED LIBRARIES PTF RO94965 PROGRAM CHECK IN OLQSDMLE PTF RO95021 OLQ GROUP BY DBKEY INCORRECT PTF RO95076 LOOP INSERTING

More information

CA Common Services CA RS 1702 Service List

CA Common Services CA RS 1702 Service List CA Common Services 14.1 1 CA RS 1702 Service List Release Service Description Type 14.1 RO81979 CASRVSYM RECURSIVE S0C4 ABENDS PTF RO91834 ABEND S0C4-3B DURING CICS INITIALIZATION. PTF RO92559 ABEND AEE0

More information

CA Ideal for Datacom CA RS 1407 Service List

CA Ideal for Datacom CA RS 1407 Service List CA Ideal for Datacom 14.0 1 CA RS 1407 Service List Description Type 14.0 RO62114 $INQU2/$INQU3 DO NOT RETURN PROGRAMM DATA PTF RO65771 RESOURCE EDITOR VERSION INVALID PTF RO69068 DB2 - S0C4 IN @ICMAS

More information

CA IDMS CA RS 1706 Service List

CA IDMS CA RS 1706 Service List CA IDMS 19.0 1 CA RS 1706 List Description Type RO92219 ALLOW FACTOTUM TYPE 21 (VTAM QUERY BIT) TASKS TO TIMEOUT PTF RO95214 DSCCACHE NOT RELEASING ILESQL LOCK PTF RO95241 CLEAR KEY NOT EFFECTIVE DURING

More information

CA Mainframe Application Tuner CA RS 1708 Service List

CA Mainframe Application Tuner CA RS 1708 Service List CA Mainframe Application Tuner 11.0 1 CA RS 1708 List Description Type RO96565 FALSE TN0499E MESSAGE DURING MONITOR INITIALIZATION PTF RO96766 TN6969E XCF MESSAGE EXIT FAILED. INTERNAL MCE QUEUEING ERROR

More information

CA ACF CA RS 1501 Service List

CA ACF CA RS 1501 Service List CA ACF2 15.0 1 CA RS 1501 Service List Description Type 15.0 RO73478 IMPROVE ACFRPTXR PERFORMANCE PTF RO74801 CICS: BAD ACFAE723 ABEND ANALYSIS ON BRANCH TO LOC ZERO PTF RO75852 ACFESAGE MISHANDLES NEXTKEY

More information

CA InterTest/SymDump Batch/CICS CA RS 1710 Service List

CA InterTest/SymDump Batch/CICS CA RS 1710 Service List CA InterTest/SymDump Batch/CICS 10.0 1 CA RS 1710 Service List Service Description Type RO97588 HELP DISPLAYS WRONG MESSAGE PTF RO97736 CAPU399E INTERNAL ERROR CAIPRINT FORMATTER IN CONTROL PTF RO97737

More information

CA View CA RS 1312 Service List

CA View CA RS 1312 Service List CA View 12.0 1 CA RS 1312 Service List Description Hiper 12.0 RO53066 SARTIA09 MESSAGE ENHANCEMENT - REPORT IDENTIFICATION RO57767 S0C4 ON DRAS TASK WITH WEB VIEWER V12 RO57866 SARCPI02 ERROR INDEXING

More information

CA JCLCheck Workload Automation CA RS 1705 Service List

CA JCLCheck Workload Automation CA RS 1705 Service List CA JCLCheck Workload Automation 12.0 1 CA RS 1705 Service List Service Description Type RO94518 ADRDSSU ERRORS - CAY6550E ON LVOL(**)/SYMBOLS NOT RESOLVED PTF RO94753 CA7(0) OPTION CAUSES LOOP PTF RO94966

More information

CA OPS/MVS for JES CA RS 1511 Service List

CA OPS/MVS for JES CA RS 1511 Service List CA OPS/MVS for JES3 12.1 1 CA RS 1511 Service List Description Type 12.1 RO84404 SUPPORT FOR APACHE BASED HTTP WEB SERVER PTF RO85160 ABEND S0C3 OPINAS +2D1C ON Z/OS 2.2 PTF RO85161 ABEND S0C3 OPINAS +2D1C

More information

CA Mainframe Advanced Authentication CA RS 1702 Service List

CA Mainframe Advanced Authentication CA RS 1702 Service List CA Mainframe Advanced Authentication 2.0 1 CA RS 1702 Service List Description Type 2.0 RO89614 ADD SUPPORT FOR BETA TO GA TRANSITION PTF RO90663 ADVANCED AUTHENTICATION MAINFRAME (AAM) SUPPORT FOR RACF

More information

CA MIM Resource Sharing CA RS 1402 Service List

CA MIM Resource Sharing CA RS 1402 Service List CA MIM Resource Sharing 11.9 1 CA RS 1402 Service List Release Service Description Hiper 11.9 RO65928 U0051 RC7 ABEND DURING VCF INITIALIZATION **HIPER** RO67045 MIM0100A MSG CAUSES FATAL SD23 ABEND The

More information

CA Easytrieve Report Generator CA RS 1406 Service List

CA Easytrieve Report Generator CA RS 1406 Service List CA Easytrieve Report Generator 11.6 1 CA RS 1406 Service List Release Service Description Type 11.6 RO66115 ADD 8-BYTE BINARY DATA TYPE. FIX XML REPORT REC LEN PTF RO66127 ADD 8-BYTE BINARY DATA TYPE.

More information

CA InterTest Batch CA RS 1309 Service List

CA InterTest Batch CA RS 1309 Service List CA InterTest Batch 8.5 1 CA RS 1309 Service List Description Hiper 8.5 RO46793 CAMRDB2S IS MISSING FROM CAISRC PDS RO48373 878 ABENDS RO48572 S0F8 ABEND WITH TABLES MEMORY MANAGER RO53931 SUPPORT JCL CHECK

More information

CA View/Deliver/DRAS 14.0 **INCREMENTAL** 1 CA RS 1712 Service List

CA View/Deliver/DRAS 14.0 **INCREMENTAL** 1 CA RS 1712 Service List CA View/Deliver/DRAS 14.0 **INCREMENTAL** 1 CA RS 1712 Service List Service Description Type RO97958 CORRECT DRAS/WEBVIEWER AGENT METRICS CALLS PTF RO98741 MTC-CV: AFP TO PDF TRANSFORMER SUPPORT (NEW FEATURE)

More information

CA IDMS CA RS 1505 Service List

CA IDMS CA RS 1505 Service List CA IDMS 18.0 1 CA RS 1505 Service List Description Type 18.0 RO79649 AFTER AN ARCHIVE JOURNAL AUTOALL, JOURNALS ARE NOT EMPTY. PTF RO79994 NEW MSG DC200280 INDICATING QUIESCE OPERATION HAS TERMINATED PTF

More information

CA Disk Backup and Restore CA RS 1801 Service List

CA Disk Backup and Restore CA RS 1801 Service List CA Disk Backup and Restore 12.5 1 CA RS 1801 Service List Service Description Type RO95940 TSTHOOK JOB FAILS IN AMASPZAP VERIFY PTF RO97466 OPEN SVC ZAP IGGDAU01 AT UA92610 FOR Z/OS 2.2 PTF RO97766 INCORRECT

More information

CA LDAP CA RS 1701 Service List

CA LDAP CA RS 1701 Service List CA LDAP 15.0 1 CA RS 1701 Service List Description Type 15.0 RO83519 TSS FILTER SUPPORT UPDATES PTF RO87020 ACF2 0 OBJECTS RETURNED/ACF2 FIELDS UPPERCASED PTF RO88323 LDAP S878 ABEND W/ IBM RACF PTF RO90742

More information

CA Datacom CICS Services CA RS 1404 Service List

CA Datacom CICS Services CA RS 1404 Service List CA Datacom CICS Services 14.0 1 CA RS 1404 Service List Description Hiper 14.0 RO64568 NEW GENERALIZED SKPSYNC OPTION ENHANCEMENT RO64674 AN MRO/ISC TRANS INCORRECTLY GETS MSG DC00127E & THEN LOOPS RO65866

More information

CA Endevor Software Change Manager CA RS 1402 Service List

CA Endevor Software Change Manager CA RS 1402 Service List CA Endevor Software Change Manager 16.0 1 CA RS 1402 Service List Description Hiper 16.0 NO-SRV3 CA RS 1402 Contains No Service For This Release of This Product. The CA RS 1402 service count for this release

More information

CA Common Services CA RS 1604 Service List

CA Common Services CA RS 1604 Service List CA Common Services 14.1 1 CA RS 1604 Service List Description Type 14.1 RO78799 S0C4 ABEND CCSFEDTF+FC PTF RO84241 DB2 COMMANDS HANG PTF RO86292 CAIRIM SUPPORT FOR CTS 5.3 SUPPORT UNDER RACF PTF RO88062

More information

CA Disk Backup and Restore CA RS 1609 Service List

CA Disk Backup and Restore CA RS 1609 Service List CA Disk Backup and Restore 12.5 1 CA RS 1609 Service List Release Service Description Type 12.5 RO90201 ARCHIVE U0100 ABEND DUE TO INCORRECT RCF KEYS PTF RO90374 DINXUFEX EXIT DOES NOT WORK WITH BACKUPCC

More information

CA Common Services CA RS 1704 Service List

CA Common Services CA RS 1704 Service List CA Common Services 14.1 1 CA RS 1704 Service List Service Description Type RO91389 ADD PASSPHRASE SUPPORT TO CCI SPAWN PTF RO91686 UNNECESSARY BROADCASTS FROM CCI PTF RO92852 CCI API FRR ABEND PTF RO93293

More information

CA OPS/MVS for JES CA RS 1805 Service List

CA OPS/MVS for JES CA RS 1805 Service List CA OPS/MVS for JES2 12.3 1 CA RS 1805 Service List Service Description Type SO01213 CROSS SYSTEM SQL ERRORS PTF SO01227 OPSDEV 32000 LIMIT. PTF SO01304 OPSCPU MAY REPORT INCORRECT CPU TYPE PTF SO01319

More information

CA Top Secret Security for z/os CA RS 1509 Service List

CA Top Secret Security for z/os CA RS 1509 Service List CA Top Secret Security for z/os 15.0 1 CA RS 1509 Service List Description Type 15.0 RO77780 S0C4 ABEND TSSFSB +AD2 WITH JES3 AND Z/OS 2.2 PTF RO81817 NEW CIA DATACOM DATA MODEL AND MAINTENANCE JOBS PTF

More information

CA OPS/MVS for JES CA RS 1501 Service List

CA OPS/MVS for JES CA RS 1501 Service List CA OPS/MVS for JES2 12.2 1 CA RS 1501 Service List Description Type 12.2 RO76554 ADDRESS POODLE VULNERABILITY FOR SSL V3 PTF RO76787 S0C1 ABEND IN OPUSSSV PTF RO76836 MESSAGE OPS7593O ISSUED TO EDQ ONLY

More information

CA File Master Plus for IMS CA RS 1403 Service List

CA File Master Plus for IMS CA RS 1403 Service List CA File Master Plus for IMS 8.5 1 CA RS 1403 Service List Description Hiper 8.5 RO62915 SELECT CRIT VS CRL RO63260 BROWSE OR EDIT HANG USING A SELECTION CRITERIA RO63320 LOGICAL DB POSITION PROBLEM WITH

More information

CA IDMS CA RS 1403 Service List

CA IDMS CA RS 1403 Service List CA IDMS 18.5 1 CA RS 1403 Service List Description Hiper 18.5 RO63312 S0C4 ABEND IN RHDCOESA DURING STARTUP RO63736 ZIIP ENHANCEMENTS RO63817 ADD TRACE ENTRIES FOR XES LOCKING RO63913 DC040200 ABEND TRACING

More information

CA OPS/MVS WebCenter CA RS 1408 Service List

CA OPS/MVS WebCenter CA RS 1408 Service List CA OPS/MVS WebCenter 12.1 1 CA RS 1408 Service List Release Service Description Type 12.1 RO71623 BSYS LOGON FAILED. DEFAULTS TAKEN. PTF RO71960 TOP 10 JOBS BY CPU% SHOWS NO DATA POINTS TO PLOT PTF RO72253

More information

CA Endevor SCM 18.0 **Incremental INC00** 1 CA RS 1701 Service List

CA Endevor SCM 18.0 **Incremental INC00** 1 CA RS 1701 Service List CA Endevor SCM 18.0 **Incremental INC00** 1 CA RS 1701 Service List Description Type 18.0 RO92912 ECLIPSE UI: PASSWORD CHANGE IS NOT REFLECTED FOR PKG ACTIONS PTF RO93153 INCREMENTAL DELIVERY PTF VERSION

More information

CA Deliver CA RS 1403 Service List

CA Deliver CA RS 1403 Service List CA Deliver 12.1 1 CA RS 1403 Service List Description Hiper 12.1 RO65149 PROBLEM VERSIONING BACK TO 11.7 The CA RS 1403 service count for this release is 1 CA Deliver 12.0 2 CA RS 1403 Service List Description

More information

CA NetMaster 12.2 **Incremental INC01** 1 CA RS 1701 Service List

CA NetMaster 12.2 **Incremental INC01** 1 CA RS 1701 Service List CA NetMaster 12.2 **Incremental INC01** 1 CA RS 1701 Service List Description Type 12.2 RO93288 NF1M51 CONN INFO REQ FOR STACK: TCPIP FAILED. REASON: -1 PTF RO93476 SIGNON COMMAND DOES NOT REFRESH REGION

More information

CA IDMS CA RS 1506 Service List

CA IDMS CA RS 1506 Service List CA IDMS 18.5 1 CA RS 1506 Service List Description Type 18.5 RO79669 ADSA STALLS WHEN USED WITH SQL PROCEDURE PTF RO79740 INVALID 598529 MESSAGES FROM IDMSDBAN PTF RO80165 REDUCE LKP'S TO SHORTEN SHUTDOWN

More information

CA IMS Tools 18.0 / Chorus 4.0 for IMS Tools 1 CA RS 1703 Service List

CA IMS Tools 18.0 / Chorus 4.0 for IMS Tools 1 CA RS 1703 Service List CA IMS Tools 18.0 / Chorus 4.0 for IMS Tools 1 CA RS 1703 Service List Description Type 18.0 RO93914 CHA DOES NOT CONVERT OLD LOG RECORD STCK TIMES CORRECTLY PTF RO94193 ABEND S0C4 IN DBAANIB0 UNDER DBCOPY

More information

CA XCOM Data Transport for z/os CA RS 1509 Service List

CA XCOM Data Transport for z/os CA RS 1509 Service List CA XCOM Data Transport for z/os 11.6 1 CA RS 1509 Service List Description Type 11.6 RO81040 XCOMM0780E TXPI 215 RC 140 OR TXPI 228 PTF RO82092 SURCLS CONFIG PARM NOT ALLOWING SPECIAL CHARACTERS PTF RO82953

More information

CA IDMS CA RS 1611 Service List

CA IDMS CA RS 1611 Service List CA IDMS 19.0 1 CA RS 1611 Service List Description Type 19.0 RO90671 SHORT ON STORAGE MESSAGES AFTER VARY SYSGEN POOLS PTF RO91223 TIMED TASK IS NOT AUTOMATICALLY STARTED PTF RO91328 IDMS UNABLE TO FIND

More information

CA Optimizer/II CA RS 1312 Service List

CA Optimizer/II CA RS 1312 Service List CA Optimizer/II 8.5 1 CA RS 1312 Service List Description Hiper 8.5 RO45428 UPDATE CAOUSINI DCB MSM CONFIGURATION RO47732 UPDATE OPT/II SDS OF AH5 REMOVE AOX SDS XML RO47733 UPDATE OPT/II SDS OF AH5 REMOVE

More information

CA Jobtrac Job Management CA RS 1410 Service List

CA Jobtrac Job Management CA RS 1410 Service List CA Jobtrac Job Management 11.0 1 CA RS 1410 Service List Release Service Description Type 11.0 RO66320 NO END TIME SPECIFIED IN THE RANGE OF ADR,AMR,SCS ENTRY PTF RO72780 EMAIL TCPIP CONNECTION FAILURE

More information

CA MIM Resource Sharing CA RS 1307 Service List

CA MIM Resource Sharing CA RS 1307 Service List CA MIM Resource Sharing 11.9 1 CA RS 1307 Service List Release Service Description Hiper 11.9 RO60355 ABENDU0095 RC=1817 MIMTPNTR UNEXPECTED CSVDYNEX FAILURE **HIPER** The CA RS 1307 service count for

More information

CA Easytrieve Report Generator CA RS 1408 Service List

CA Easytrieve Report Generator CA RS 1408 Service List CA Easytrieve Report Generator 11.6 1 CA RS 1408 Service List Release Service Description Type 11.6 RO68528 REPORT FILES ARE NOT OPENED IF THE REPORT IS NOT GENERATED PTF RO70187 HEAP VALIDATION ERROR

More information

CA PDSMAN PDS Library Management CA RS 1309 Service List

CA PDSMAN PDS Library Management CA RS 1309 Service List CA PDSMAN PDS Library Management 7.7 1 CA RS 1309 Service List Description Hiper 7.7 RO57158 OLD MEMBER VERSION BEYOND LOGICAL END OF LIBRARY RO57358 SUPPORT FOR ISPF EDITOR'S EDIT LINE COMMAND TABLES

More information

CA Optimizer/II CA RS 1510 Service List

CA Optimizer/II CA RS 1510 Service List CA Optimizer/II 8.5 1 CA RS 1510 Service List Description Type 8.5 RO75940 RECORD MISSING FROM ABEND REPORT PTF RO80283 S0C4 IN CAOESNAP AND/OR CAOECEEI PTF RO83578 COBOL 5 POST PROCESSOR - INCORRECT STATEMENT

More information

CA DB2 Tools CA RS 1505 Service List

CA DB2 Tools CA RS 1505 Service List CA DB2 Tools 16.0 1 CA RS 1505 Service List Release Service Description Type 16.0 RO80053 DT109E PLAN NOT AUTHORIZED MESSAGE IS CONFUSING PTF RO80094 DISPLAY FORM BEFORE QUERY IN CICS S0C4 IN PIEFLWC PTF

More information

CA Top Secret Security for z/os CA RS 1607 Service List

CA Top Secret Security for z/os CA RS 1607 Service List CA Top Secret Security for z/os 16.0 1 CA RS 1607 Service List Description Type 16.0 RO89828 WITH OPTIONS(38) AND RO79619 CICS EXTRACT IS NOT CACHED *HIP/PRP* RO89936 DEFINE NEW CACEM PRODUCT RESOURCE

More information

CA DB2 Tools 20.0 **INCREMENTAL** 1 CA RS 1706 Service List

CA DB2 Tools 20.0 **INCREMENTAL** 1 CA RS 1706 Service List CA DB2 Tools 20.0 **INCREMENTAL** 1 CA RS 1706 Service List Service Description Type RO95918 CA RAPID REORG UPDATE PTF RO95972 CA RAPID REORG UPDATE PTF RO96002 ADD MISSING PQC CDBAPARM MEMBER PTF RO96005

More information

CA Workload Automation CA 7 Edtion CA RS 1509 Service List

CA Workload Automation CA 7 Edtion CA RS 1509 Service List CA Workload Automation CA 7 Edtion 12.0 1 CA RS 1509 Service List Description Type 12.0 RO82692 ENHANCE DBIO DIAGNOSTICS FOR QUEUES PTF RO82911 DATABASE VALIDATION ISSUES PTF RO83095 SASSSPOR - HANG AFTER

More information

CA Repository for z/os CA RS 1511 Service List

CA Repository for z/os CA RS 1511 Service List CA Repository for z/os 7.2 1 CA RS 1511 Service List Release Service Description Type 7.2 RO85297 CONVERT SOC7 IN COBOL SCAN TO RC=12 PTF RO85308 CORRELATION ID ON SQL COLUMNS PTF RO85459 RESOLVING PROBLEM

More information

CA File Master Plus for IMS CA RS 1306 Service List

CA File Master Plus for IMS CA RS 1306 Service List CA File Master Plus for IMS 8.5 1 CA RS 1306 Service List Description Hiper 8.5 RO53029 PERFORMANCE IMPROVEMENT FOR STARTUP - DBD DECODE RO53452 PRINTLOG S0C4 IF MULTIPLE ACTIONS AND NO TRAILER RO53650

More information

CA ACF CA RS 1709 Service List

CA ACF CA RS 1709 Service List CA ACF2 16.0 1 CA RS 1709 List Description Type RO96906 DATASET ENCRYPTION SUPPORT PTF RO96914 SUPPORT Z/OS 2.3 WORKATTR EMAIL ADDRESS PTF RO97142 INTERNAL STC TABLE HAS A LIMIT OF 1364 STC RECORDS PTF

More information

CA Mainframe Application Tuner CA RS 1403 Service List

CA Mainframe Application Tuner CA RS 1403 Service List CA Mainframe Application Tuner 9.0 1 CA RS 1403 Service List Description Hiper 9.0 RO60641 MISSING INFORMATION FOR BATCH CALLING JVM RO61289 COMMAND AA ON PMA DM NOT WORKING RO62623 MISSING HELP MEMBERS

More information

CA Allocate DASD Space and Placement CA RS 1708 Service List

CA Allocate DASD Space and Placement CA RS 1708 Service List CA Allocate DASD Space and Placement 12.5 1 CA RS 1708 Service List Service Description Type RO94847 V37VSAM2 0C4 EOV RECOVERY SLIP TRAP WITH RO92959 APPLIED ** PRP ** RO96060 OPTIONAL BYPASS SECURITY

More information

CA JCLCheck Workload Automation CA RS 1403 Service List

CA JCLCheck Workload Automation CA RS 1403 Service List CA JCLCheck Workload Automation 12.0 1 CA RS 1403 Service List Description Hiper 12.0 RO60035 JCLNEAT INCORRECTLY SHIFTS 'DD' STATEMENT RO60996 JCLNEAT REFORMAT ERROR RO65785 LOOP IN JCLCHECK RO66178 INCORRECT

More information

CA View CA RS 1409 Service List

CA View CA RS 1409 Service List CA View 12.1 1 CA RS 1409 Service List Release Service Description Type 12.1 RO69206 UNCAUGHT ERRORS CAUSE S0C4 ABENDS PTF RO71917 SARBCH ARCHDATE UPDATED REPORTS DELETED BY INTERIM BACKUP PTF RO71925

More information

CA OPS/MVS for JES **INCREMENTAL** 1 CA RS 1807 Service List

CA OPS/MVS for JES **INCREMENTAL** 1 CA RS 1807 Service List CA OPS/MVS for JES2 13.5 **INCREMENTAL** 1 CA RS 1807 Service List Service Description Type SO01859 REPLACE OBSOLETE CCS EVENT MANAGEMENT COMPONENTRY PTF SO03594 STARTTIME INCORRECT AFTER DYNAMIC TIME

More information

CA Disk Backup and Restore CA RS 1712 Service List

CA Disk Backup and Restore CA RS 1712 Service List CA Disk Backup and Restore 12.5 1 CA RS 1712 Service List Service Description Type RO96234 FIX BACKUP OF PDSE RECFM U DATA SETS PTF RO97916 S878-14 ABEND DURING IXMAINT WITH SMSPRINT PTF RO98526 ARCHIVE

More information

CA MIM Resource Sharing CA RS 1511 Service List

CA MIM Resource Sharing CA RS 1511 Service List CA MIM Resource Sharing 12.1 1 CA RS 1511 Service List Description Type 12.1 RO84987 MIM MESSAGES NOT IN MIMLOG PTF RO84993 DDN HEALTH CHECK COMPATLEVEL PTF RO85010 VCF OPTIONS MAY NOT BE DISPLAYED WHEN

More information

CA ACF CA RS 1512 Service List

CA ACF CA RS 1512 Service List CA ACF2 15.0 1 CA RS 1512 Service List Description Type 15.0 RO77913 S0C4 SAFOESMF+960 PTF RO79190 ACCESS SUBCOMMAND - IMPROVE PERFORMANCE AFTER ROLE SUPPORT PTF RO82273 STORAGE CREEP SP 0 & 252 LEN X'388'

More information

CA IDMS CA RS 1506 Service List

CA IDMS CA RS 1506 Service List CA IDMS 18.0 1 CA RS 1506 Service List Description Type 18.0 RO79668 ADSA STALLS WHEN USED WITH SQL PROCEDURE PTF RO80147 SQL LO-ROW SORTS CAN GO NEGATIVE IN PMIM PTF RO80293 DBX: PGM=USVPCCX S0C4 PTF

More information

CA IMS Tools 18.0 / Chorus 4.0 for IMS Tools 1 CA RS 1511 Service List

CA IMS Tools 18.0 / Chorus 4.0 for IMS Tools 1 CA RS 1511 Service List CA IMS Tools 18.0 / Chorus 4.0 for IMS Tools 1 CA RS 1511 Service List Description Type 18.0 RO84996 DBO3902E FOR CONCURRENT IMAGE COPY WHEN MMGRIO=Y PTF RO85019 IEC251I 124-108 OR IEC161I 156-061 ON RECON

More information

CA Common Services CA RS 1701 Service List

CA Common Services CA RS 1701 Service List CA Common Services 14.1 1 CA RS 1701 Service List Description Type 14.1 RO90331 CCIPC: UPGRADE OPENSSL TO 1.0.2H PTF RO92793 ABEND S0C4 IN CCSFETTL AT +X'704'. PTF RO92926 ZIIP ENABLEMENT - HANG IF IEAVRLS

More information

CA OPS/MVS for JES **INCREMENTAL** 1 CA RS 1711 Service List

CA OPS/MVS for JES **INCREMENTAL** 1 CA RS 1711 Service List CA OPS/MVS for JES2 13.0 **INCREMENTAL** 1 CA RS 1711 List Description Type RO96478 MAINFRAME TEAM CENTER - AUTOMATION PTF RO96479 MAINFRAME TEAM CENTER - AUTOMATION PTF RO97912 OPS WEB SERVICES JACKSON

More information