Search found 20 matches

by JACK
Thu Jun 25, 2009 12:59 pm
Forum: COBOL
Topic: Replacing space with NULL value
Replies: 5
Views: 10481

Hi Chanti,

Thanks for your response...
I have tried using UNSTRING.. but i am facing issues with that.
If you have time, can you provide COBOL code for this. :?:

Thanks for help.
:|
by JACK
Wed Jun 24, 2009 2:40 pm
Forum: COBOL
Topic: Replacing space with NULL value
Replies: 5
Views: 10481

Replacing space with NULL value

Hi All,

Please provide the COBOL code to replace spaces will NULL. i.e, if i have the string like 'COMMON BUSINESS' . space in the string to bre removed.
and string in the output shoul be 'COMMONBUSINESS'.
by JACK
Wed Jun 24, 2009 2:36 pm
Forum: FILE-AID
Topic: i want to know how to copy 10 records from...............
Replies: 8
Views: 23145

FILE-AID commands

try using following code

Code: Select all

$$DD01  COPY OUT=60 

Refer following thread posted by Anuj

http://www.mainframegurukul.com/Mainfra ... t3669.html
by JACK
Wed Jun 03, 2009 7:05 pm
Forum: Admin Announcements
Topic: STAR MEMBER AWARD - FOR MAY 2009
Replies: 27
Views: 51923

Congratulations Natarajan :D
by JACK
Thu Nov 06, 2008 5:18 pm
Forum: COBOL
Topic: Cobol study material
Replies: 2
Views: 7498

go thru above links provided, if you have any questions on concepts.
Post your queries.
by JACK
Thu Oct 23, 2008 5:23 pm
Forum: JCL
Topic: MDCAMS
Replies: 3
Views: 8066

i am assuming, your question is related to IDCAMS.

it may return MAXCC=4. Please check this topic, check last post for example

http://www.mainframegurukul.com/Mainfra ... 0192b1764e
by JACK
Thu Oct 23, 2008 4:07 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: Checking for empty files
Replies: 2
Views: 9142

DFSORT - ICETOOL - EMPTY FILE CHECK.

Using ICETOOL, we can do this.

Code: Select all

//STEP1 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//IN DD DSN=...
//TOOLIN DD *
COUNT FROM(IN) EMPTY
/*
This step return RC=12, if file IN is empty.
by JACK
Wed Oct 22, 2008 1:18 pm
Forum: COBOL
Topic: doubt - COMP in COBOL
Replies: 3
Views: 9540

COMP VS COMP-3

More info on COMP in COBOL.

comparison between COMP and COMP-3
- Binary format might not be suited for decimal alignment as packed
decimal format.
- Binary format is not converted to and from DISPLAY format as easily as
packed decimal format.
by JACK
Wed Oct 22, 2008 12:29 pm
Forum: COBOL
Topic: what is pointer in cobol what situation i am using pointer
Replies: 1
Views: 4784

Pointer data items may contain virtual storage addresses. You define them explicitly with the USAGE IS POINTER clause in the Data Division.

Pointer data items can be:
- Passed between programs
- Moved to other pointers (Using SET statement)
by JACK
Wed Oct 22, 2008 12:22 pm
Forum: Admin Announcements
Topic: STAR MEMBER AWARD - SEPTEMBER 2008
Replies: 9
Views: 20124

Cheers.... :lol: :lol: :lol:
by JACK
Tue Nov 14, 2006 11:32 am
Forum: IMS DB
Topic: Certification for IMS DB/DC.
Replies: 1
Views: 6895

Certification for IMS DB/DC.

Hi,

Can anyone let me know the certification details for IMS DB/DC.


Regards,
JACK.
by JACK
Thu Nov 09, 2006 7:57 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: DB2 Certification Guidelines
Replies: 9
Views: 58597

DB2 Certification - Road Map

Thanks Krishna. Information is very useful. :D


Thanks,
JACK.
by JACK
Wed Nov 08, 2006 11:21 am
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: DB2 Certification Guidelines
Replies: 9
Views: 58597

DB2 Certification Guidelines

I am preparing for IBM DB2 Certification.
Can anyone give the references, suggest the books for the test.

It will be good if you share your experiences.


Regards,
JACK.
by JACK
Thu Nov 02, 2006 5:32 pm
Forum: TSO, CLIST & REXX
Topic: NEED REXX CODE FOR CAPTURING ABEND INSTRUCTION FROM SDSF
Replies: 4
Views: 16086

REXX tool to copy abend job details.

Hi Prasad,

If I am not wrong, you can do this using CA-7 tool. It will send
the e-mail/SMS when job abends.


Regards,
JACK.
by JACK
Thu Nov 02, 2006 4:05 pm
Forum: JCL
Topic: Need a jcl for sending email and SMS.
Replies: 3
Views: 12935

email from mainframe

Hi Prasad, I can answer first point , sending e-mail. Following code is useful to send an email to specified user. //STEP1 EXEC PGM=IEBGENER //SYSIN DD DUMMY //SYSPRINT DD SYSOUT=* //SYSUT2 DD SYSOUT=(B,SMTP) //SYSUT1 DD * helo HOST mail from:<XXXX@ibmmainframeguru.com> rcpt to:<yyyy@ibmmain...