Search found 537 matches

by Natarajan
Wed Dec 08, 2010 3:05 pm
Forum: CICS
Topic: Equalient to LINK and XCTL
Replies: 3
Views: 6701

Question : What is the cobol equalient to LINK and XCTL ? Answer : LINK transfer the control to sub program and expects the control back. XCTL exclusive control transfer.. wont expect control back to main program if you want equalient COBOL command... it should be CALL statement. it is eualient to L...
by Natarajan
Wed Dec 08, 2010 11:32 am
Forum: General Discussion
Topic: db2 certification!!
Replies: 1
Views: 3397

by Natarajan
Mon Dec 06, 2010 5:12 pm
Forum: Personality Development
Topic: SELF CONFIDENCE BOOSTERS
Replies: 2
Views: 7241

SELF CONFIDENCE BOOSTERS

INSPIRATION Getting inspired, lets you ignite the fuel of life called 'motivation' GOAL SETTING Setting S imple, M easurable, A chievable , R easonable and T imebound SMART goals is the key for unlocking the treasure of self improment and motivation at large. NETWORKING One of the most incredible w...
by Natarajan
Mon Dec 06, 2010 1:15 pm
Forum: COBOL
Topic: STRING in cobol
Replies: 11
Views: 18321

Cool....

It is always good to start a new thread instead of replying to existing thread even there is a similartiy.
by Natarajan
Mon Dec 06, 2010 1:08 pm
Forum: CHANGE MAN
Topic: changeman
Replies: 3
Views: 11101

change man tutorial

refer following changeman tutorial on this site.

http://www.mainframegurukul.com/srcsinc/changeman.html

check step3 & step 4.
by Natarajan
Mon Nov 29, 2010 12:39 pm
Forum: COBOL
Topic: Comp-3 variables to Comp variables.
Replies: 5
Views: 9255

For 2nd point... you may try below.

Code: Select all

MOVE B to temp-alpha-numeric-var.
MOVE temp-alpha-numeric-var(18:10) TO A(18:10).
by Natarajan
Fri Nov 26, 2010 5:26 pm
Forum: JCL
Topic: Zip the File on Mainframe and send as E-Mail Attachment
Replies: 8
Views: 18728

i have tried this 2 years back and it is worked out.
Let me try to get that info for you. In my next post, i will try to give that info to you.
by Natarajan
Fri Nov 26, 2010 5:19 pm
Forum: Entertainment
Topic: EVER WONDER where we are headed...
Replies: 1
Views: 5432

EVER WONDER where we are headed...

Why the sun lightens our hair, but darkens our skin? Why women can't put on mascara with their mouth closed? Why you don't ever see the headline: "Psychic Wins Lottery"? Why "abbreviated" is such a long word? Why Doctors call what they do "practice"? Why you have to click on "Start" to stop Windows ...
by Natarajan
Tue Nov 16, 2010 7:31 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: how to mention the output file in cobo-db2 BIND
Replies: 2
Views: 4044

We dont required to mention output files used in cobol-db2 during pre-compilation or compilation stage.. you need to mention input/output files during running that program.

Let me know, if i am not understood your question.
by Natarajan
Fri Nov 12, 2010 5:01 pm
Forum: CICS
Topic: CICS case study
Replies: 6
Views: 10510

We can populate data from flat file to VSAM file using REPRO command , IDCAMS utility. EXEC PGM=IDCAMS //SYSPRINT DD SYSOUT=A //INDD DD DSN=... //OUTDD DD DSN=... //SYSIN DD * REPRO - INFILE(INDD) - OUTFILE (OUTDD) /* If you have FILE AID utitlity , you can directly edit your VSAM fi...
by Natarajan
Fri Nov 12, 2010 4:41 am
Forum: CICS
Topic: CICS case study
Replies: 6
Views: 10510

sample CICS program flow

Here is the basic structure of CICS program for your cics case study. You need to write down actual code based on below logical flow. ****************************************************************** LINKAGE SECTION. ****************************************************************** 01 DFHCOMMAREA ...
by Natarajan
Wed Nov 10, 2010 4:48 pm
Forum: CICS
Topic: CICS PROJECT :D
Replies: 3
Views: 5966

karthikkingh wrote:same old atm,insurance,banking..
:) :)
other than banking, insurnace .. what other projects you have in your mind?

Many companies working on same old banking, insurance... projects from last 20 - 40 years... :)
by Natarajan
Wed Nov 10, 2010 4:41 pm
Forum: CICS
Topic: CICS case study
Replies: 6
Views: 10510

CICS bms casestudy

Hi Priya, Welcome to mainframegurul forums. you are asking about CICS program.. are you completed BMS maps using BMS macros? If you want to learn , how to code BMS maps.. please refer ibm manuals from below link. http://www.mainframegurukul.com/ibm/manuals.php If you have any questions on BMS.. You ...
by Natarajan
Wed Nov 10, 2010 4:37 pm
Forum: CICS
Topic: hai
Replies: 1
Views: 6308

PAGE UP and PAGE DOWN logic in CICS

Request : Please change the subject from hai to PAGE UP PAGE DOWN logic in CICS. Anser to your question : I am assuming your are asking about following requirement. - User should be able to scroll the screen using PF7 PF8 keys on CICS screen. ( PAGE UP , PAGE DOWN ) For this first you need to define...
by Natarajan
Wed Nov 10, 2010 3:48 pm
Forum: COBOL
Topic: how to invoke jcl from cobol program
Replies: 3
Views: 5008