Tagged Questions

2
votes
1answer
18 views

How to check whether a file is open already in COBOL?

I am trying to find out a way to check whether a file is already opened in COBOL, so that I can open it if it is closed or close it if it is opened. Thnx.
0
votes
1answer
34 views

Where can i find COBOL MAINFRAME JCL CICS Video Tutorials?

Please give me the links where I can find video tutorials for COBOL MAINFRAME JCL CICS Video Tutorials. Please help.
2
votes
1answer
32 views

COBOL: SYSIN JCL for compiling source from PDS.

I'm just starting COBOL, and ran into this with JCL... How do I compile a basic cobol program from my PDS, I know through instream it would just be //SYSIN DD * code code code /* I tried something …
1
vote
1answer
79 views

Two-dimensional variable-length array in Cobol

How do you go about defining a two-dimensional MxN array in Cobol of which both M and N are of variable length? Here's the message I get in Net Express when attempting to have a variable array inside …
3
votes
3answers
95 views

XML in COBOL with nested tables and varying children

Is it possible to use XML GENERATE to create XML with multi-level nested elements of different sizes? For example: 01 SOURCE-REC. 05 REPEATING-PARENT OCCURS 5 TIMES. 10 PARENT-NAME …
4
votes
3answers
97 views

Standard way to remove spaces from input in cobol?

I'm just learning COBOL; I'm writing a program that simply echos back user input. I have defined a variable as: User-Input PIC X(30). Later when I ACCEPT User-Input, then DISPLAY User-Input " plus …
2
votes
2answers
55 views

Allocation of Memory in Variable-Length Tables

Say I have the following variable-length table defined in WORKING-STORAGE... 01 SOAP-RECORD. 05 SOAP-INPUT PIC X(8) VALUE SPACES. …
7
votes
2answers
200 views

Why is COBOL still a preferred language in the business world?

Even though we have languages like C++, Java, Python etc., why is COBOL still a preferred language in the business world? EDIT: Why was it so popular? Sorry for not creating a separate thread for …
21
votes
8answers
412 views

How can duplicates be removed from a file using COBOL?

The input file have records as: 8712351,8712353,8712353,8712354,8712356,8712352,8712355 8712352,8712355 Using COBOL I need to remove duplicates from the above file and write to an output file. I …
2
votes
3answers
172 views

Porting from Cobol to Java

What differences are there between the top level architectures of Cobol and Java? What are the styles and cultures that programmers adopt in these two languages? How can one best port from Cobol to …
-1
votes
1answer
114 views

architectures of COBOL and Java

Can anyone tell me the differnces in styles and architectures between these very differenct approaches please?
1
vote
2answers
69 views

MSBuild: Conditional Construct (Project Reference | File Reference)

I´m still trying to eleminate the need of a cobol compiler in a Project with cobol-Projects in it. Is it possible to create following build behaviour: If the Configuration is Debug then use …
2
votes
2answers
93 views

cobol Open-IO: create file if it doesn’t exist

Does anyone have an idea how you can catch the exception that cobol throws if you try to open an IO file if it doesn't exist, and then create a new file?
0
votes
1answer
36 views

How to reference on cobol projects without compiler?

Is it possible to make different Configuration of one project one with and other without a installed cobol compiler? I have a big project general written in VB.Net with some underprojects written in …
3
votes
5answers
252 views

Reasons to start a new project in COBOL

Are there any feasible reasons to start a new project in COBOL? What benefits of this language one would find convincing enough to start a new project in it? I'm thinking more about viewing the …

1 2 3 4 5 7
15 30 50 per page