Re: How to create a pdf file from Mainframe

2024-01-08 Thread sudershan ravi
ZOS Tony
Thanks,
Sudershan


On Mon, Jan 8, 2024 at 12:40 PM Tony Thigpen  wrote:

> Which operating system?
>
> Tony Thigpen
>
> sudershan ravi wrote on 1/8/24 12:51 PM:
> > Hi Everyone,
> >
> > Could someone help me on creating a pdf file from the mainframe job. What
> > are the options we have?
> >
> > Thanks,
> > Sudershan
>


How to create a pdf file from Mainframe

2024-01-08 Thread sudershan ravi
Hi Everyone,

Could someone help me on creating a pdf file from the mainframe job. What
are the options we have?

Thanks,
Sudershan


Access registers

2017-12-03 Thread Sudershan Ravi
Hi,
Why do we use access registers?


BDAM files

2017-11-27 Thread Sudershan Ravi
Why BDAM files are infrequently used? what are the complexities we face when we 
do Direct Access of a file.

Thanks,
Sudershan.


CICS with Assembler Books

2017-11-18 Thread Sudershan Ravi
Hi, Can any please share CICS with Assembler books.

Thanks,
Sudershan.


Re: Load module

2017-11-14 Thread sudershan ravi
Hi David,
Yes. My question was "In a called module, how do we determine if it was
called dynamically or statically"

On Tue, Nov 14, 2017 at 6:15 PM, David Staudacher 
wrote:

> "...static or dynamic linked modules within a program".
>
>  Ouch!  This will only add to the confusion (a "dynamic linked module" is
> never within a [calling] program).  ;-)
>
> As also will this COBOL (off topic for this Listserv) example:
>
>   CALL 'WS-PROG1' USING XXX, as DYNAMIC
>
> ... which (1) has invalid syntax for an IBM COBOL call, (2) has an invalid
> module name for IBM COBOL and (3) even if it were valid would only work as
> a dynamic call if the DYNAM compiler option were in effect. If the author
> was talking about IBM COBOL, he probably meant to say: CALL WS-PROG1 USING
> XXX,
>
> If the question is "In a called module, how do we determine if it was
> called dynamicall or statically?", now that would be very interesting!  ;-)
>


Re: Load module

2017-11-12 Thread sudershan ravi
Hi David,

Sorry for the confusion caused. I strongly agree this is a basic question
and I too understand the Static, all the loads will be loaded in to main
memory and the load will be placed in to the main memory during execution
time, Dynamic. We can give Call macro and Load macro for the same. My
question was, what are all the possible options where we can say Static /
Dynamic by seeing anything? once again, am sorry for the confusion caused.
Thanks

On Mon, Nov 13, 2017 at 6:44 AM, David Staudacher 
wrote:

> > How can I say that the module is dynamic or Static? where can I find the
> info?
>
> Dynamic vs Static is *not* a characteristic of the module itself.
> It's about how the module gets loaded into memory.
> The same module can be both "static" or "dynamic", depending on the
> context.
> If it's linked with the main routine so it gets loaded along with it, it's
> "static".
> If it gets loaded at runtime by another application program, it's
> "dynamic".
> I have to agree with Rob - this is basic stuff described in many textbooks
> and many places on the 'net.
> When is your interview/exam?  (sheesh!)
>


Re: Hex and Decimal

2017-11-11 Thread Sudershan Ravi
Excellent explanation. Thanks a lot Gil


Load module

2017-11-11 Thread Sudershan Ravi
How can I say that the module is dynamic or Static? where can I find the info?


Re: Hex and Decimal

2017-11-10 Thread sudershan ravi
Excellent . Thanks Bob

On Sat, 11 Nov 2017 at 9:51 AM, Robert Netzlof <rnetz...@gmail.com> wrote:

> The decimal term is signed, binary and hexadecimal are unsigned.
> Therefore, the decimal term has only 31 bits available to record
> magnitude, binary and hex can use 32 bits since there is no sign.
>
> On 11/10/17, Sudershan Ravi <sudershanr...@gmail.com> wrote:
> > The maximum value of a decimal self-defining term is 231−1, while the
> > maximum
> > value a binary or hexadecimal self-defining term is 232−1. Why are they
> > different?
> >
>
>
> --
> Bob Netzlof a/k/a Sweet Old Bob
>


Hex and Decimal

2017-11-10 Thread Sudershan Ravi
The maximum value of a decimal self-defining term is 231−1, while the maximum
value a binary or hexadecimal self-defining term is 232−1. Why are they 
different?