Search found 537 matches

by Natarajan
Tue Sep 14, 2010 4:52 pm
Forum: CICS
Topic: VERTICAL ARRAY IN CICS
Replies: 12
Views: 21829

ok. i agree with you. it is diffiucul task to modify the symbolic map and make it work. If you want to just display the transaction, you still can use OCCURS. Just try following... define 79 bytes field, OCCURS 10 TIMES. you can populate your data to local working storage and copy each record into o...
by Natarajan
Tue Sep 14, 2010 6:35 am
Forum: CICS
Topic: VERTICAL ARRAY IN CICS
Replies: 12
Views: 21829

Hi, You can create array in the map using OCCURS option in DFHMDF macro, it will create an array in the map. marks DFHMDF POS= LENGTH= OCCURS=6 Using above syntax, you can create array in the map. You can refer above field as marks(1) , marks(2).. marks(6) in your CICS program.
by Natarajan
Mon Sep 13, 2010 4:52 pm
Forum: COBOL
Topic: how to initialize the dataitem having depending on clause
Replies: 3
Views: 4933

Did you defined the variable used in the depending on clause?
by Natarajan
Mon Sep 13, 2010 4:50 pm
Forum: CICS
Topic: pseudo conversational
Replies: 1
Views: 4020

There is no sunch conflict happen in CICS programming. It is fully depends on how you have done programing. You can add handling F1 , F2.. Fn without impacting functionality of other. CICS gives this facility. If there is a issue with this, that should with the way you write your program. If you fac...
by Natarajan
Tue Aug 31, 2010 5:41 pm
Forum: EASYTRIEVE
Topic: Easytrieve arthematic operations finding reaminder
Replies: 1
Views: 7201

I dont know, whether easytrieve has that ornot.. but following code may help you in getting this done, using your own logic * WS-A = 100 WS-B = 6 WS-C = 000 * WS-C = WS-A / WS-B WS-D = WS-C * WS-B IF WS-D NE WS-A WS-D = WS-D - WS-A END-IF * DISPLAY 'WS-A = ' WS-A DISPLAY 'WS-B = ' WS-B DISPLAY 'WS-C...
by Natarajan
Thu Aug 12, 2010 4:00 pm
Forum: COBOL
Topic: COBOL MOVE CORRESPONDING DOUBT
Replies: 15
Views: 28302

My guess is it should move the values from input WS-FIELD-2 to output WS-FIELD-2.
by Natarajan
Thu Aug 12, 2010 3:51 pm
Forum: Admin Announcements
Topic: DB2 QUICK START - E-Book Release - only for $5
Replies: 45
Views: 104129

Look like there is a issue with their mail box. send a Private Message from this board to krishna with passwordNumber details.
by Natarajan
Thu Aug 05, 2010 7:55 pm
Forum: JCL
Topic: How to generate a report.
Replies: 7
Views: 11385

If you have latest version of DB2.. you can write one query.. contains.. select... and update.. in this statement.. update will happen to database.. and it will select all updated records.
by Natarajan
Thu Aug 05, 2010 7:51 pm
Forum: JCL
Topic: How to generate a report.
Replies: 7
Views: 11385

if you have only this query.. then it is clear that rows updated where BUS_CDE = 200.. you can write the same in the report. if you want to write what is the previous state of data base , before updation.. then first use select based on BUS_CDE = 200.. write it to o/p. do update... select the record...
by Natarajan
Thu Aug 05, 2010 11:30 am
Forum: INTERVIEW QUESTIONS
Topic: United Health group Interview ?
Replies: 4
Views: 18996

UHG Interview Questions

What i hear from friends.. is.. they mainly concentrate on DB2, optimization of applications.. In DB2, like, explain, performance tuning, unload, load, check pending, copy pending, image copy , PLAN_TABLE.. etc...
by Natarajan
Tue Aug 03, 2010 3:22 pm
Forum: JCL
Topic: How to generate a report.
Replies: 7
Views: 11385

Please let us know, what exact help you required.

I assume, your question, shold go to DB2 Forum.
by Natarajan
Mon Aug 02, 2010 10:31 am
Forum: CICS
Topic: Alpha Numeric
Replies: 7
Views: 10630

Based my understanding, your question is how we can stop sending junk data back to front end / calling program. Before populating output data fields.. initialize those items. This will take care of problem of junck being sent back to calling program/front end. If my understanding your problem is not...
by Natarajan
Sun Jul 18, 2010 4:52 pm
Forum: JCL
Topic: Help Suggest
Replies: 6
Views: 9508

maintech and some other mainframe training centers gives the mainframe connection on monthly rentals. try calling those training centers.
by Natarajan
Sun Jul 18, 2010 10:54 am
Forum: COBOL
Topic: record greater than 80char
Replies: 4
Views: 6480

define new ps file with more length and copy this file into that.
by Natarajan
Fri Jul 16, 2010 10:48 am
Forum: COBOL
Topic: Doubt in cobol declaration
Replies: 3
Views: 5644

To retrieve given value from COBOL program.. declare variable as 9(3)v99.
When you want to display the amount move that value to 9(3).99.