about IEWL parameters or so

2008-05-23 Thread K Zafirop
Hi dear all, In IEWL link-edit procedures we have specified for parameters PARM='XREF,LIST,AMODE(31),RMODE(ANY),CALL,MAP,LET'. When we have an RC=8 we have noticed that in ‘SAVE OPERATION SUMMMARY’ part of LKED sysprint the DISPOSITION REPLACED. I think that the member should not be replaced

Enterprise COBOL v3.4.1 run time issue

2008-08-25 Thread K Zafirop
Hi all, One of our most curious programmers noticed that when he uses READ or READ INTO statement to parse alphanumeric data, a translation is made. The value passed is the arithmetic truncation of the string. For example a string 'FOW123' is passed with value '666123'. As you can see X'F1' =

Re: Enterprise COBOL v3.4.1 run time issue

2008-10-03 Thread K Zafirop
Dear all, Thank you for your answers. IBM recomend us so our programmers make the data validation. Please review following link below: http://www-01.ibm.com/support/docview.wss?uid=swg21238919 Best regards, K. Zafiropoulos

Evaluating BMC Batch Impact Manager

2009-05-08 Thread K Zafirop
Hi dear listers, I am sending you my greetings from sunny Greece. I am planning my morning swimming schedule for the summer and I want not to have troubles with our night batch proccess... Do you have any experience about 'batch Impact Manager' tool by BMC? Every answer should be very

Accessing a big sequential file

2009-05-08 Thread K Zafirop
Hi listers! Do you have any idea on how to get only the last record of a very big file using either REXX or some other method? I will want to prevent reading all file records in any any case. Best regards and thanks! -- For

Re: Accessing a big sequential file

2009-05-12 Thread K Zafirop
Thank you all for your answers. K. Zafiropoulos -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the archives at

Re: OMVS data not found in dump

2009-07-03 Thread K Zafirop
Thank you all for your suggestions. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the archives at

Re: ASG tools?

2010-09-22 Thread K Zafirop
Hi all We are using SmartTest (CICS TS32) for COBOL debugging. The only main issue is related to DB2 locks on tables accessed in parallel by two or more of our programmers during debug session. K Zafirop Euro-Bank -- For IBM

Dynamic calls in Binder sysprint

2011-10-20 Thread K Zafirop
Dear Listers I am using IBM Enterprise COBOL for z/OS 3.4.1 and z/OS V1 R11 binder. How can I see all dynamic calls to subroutins in linkage editor sysprint? I can only see static calls to subroutines (e.g. CALL 'MYSUBRTN' but there is no information for dynamic calls (e.g. CALL

Re: Dynamic calls in Binder sysprint

2011-10-26 Thread K Zafirop
Thank you all for your responses. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the archives at

Convert CPU time to MSUs

2012-05-08 Thread K Zafirop
Hello all We would like to convert CPU seconds copnsumed by an address space in 1 hour (CPUSECs) to Service Units (SU). Our machine has 5 engines. Is it true that we have available 18000 CPU seconds? SU = CPUSECs * SU_SEC where SU_SEC = SU_HOUR / (ENGINES * 60 * 60) Where SU_HOUR is the

Re: Convert CPU time to MSUs

2012-05-21 Thread K Zafirop
Hal Merritt wrote: SU_SEC = SU_HOUR / (ENGINES * 60 * 60) Not quite, I think. You don't get the full 60 seconds for each additional engine. Better: SU_SEC = SU_HOUR / ((ENGINES * 60 * 60)*FACTOR) Where FACTOR is less than 1.0. thank you all for your replies, Our machine type is 2097-605.

Re: Convert CPU time to MSUs

2012-05-21 Thread K Zafirop
Please correct the formula in my previous email to: The MSUS provided in a second could be: MSU_SEC = MSU_HOUR / (ENGINES * 60 * 60)* FACTOR Thanks -- For IBM-MAIN subscribe / signoff / archive access instructions, send email