COBOL (COmmon Business Oriented Language) was the product of a US Department of Defense initiative to develop a standard and portable programming language for business applications. COBOL celebrated its 50th birthday in 2009. It is generally believed that new COBOL development is in decline but a ...
3
votes
1answer
41 views
Structures in VB .NET like COBOL
I'm converting a COBOL program to VB .NET.
Is there any way to use the structures in VB NET like COBOL does?
In example:
COBOL:
01 VAR1
10 VAR11 PIC X
10 VAR12 PIC X
MOVE 'AA' TO VAR1
...
1
vote
3answers
60 views
What's wrong with this alphanumeric to numeric move?
When I move a number in a PIC X to a PIC 9 the numeric field's value is 0.
FOO, a PIC X(400), has '1' in the first byte and spaces in the remaining 399. Moving into the PIC 9(02) BAR like so
...
0
votes
1answer
74 views
Data isn't retrieved from database (SQLCODE 100) even though data exists
I'm fetching data from my database where one of the conditions will always be the same, and the other one will have a value from 1 to 13. The query has to be executed 13 times, once for each value.
...
2
votes
1answer
62 views
Is it possible to use variables for Display in COBOL?
For example if we want to display "HELLO world " at position 10, 10 in screen we use
DISPLAY (10 10 ) "HELLO world " .
now instead of 10, 10 is it possible to use variables?
DISPLAY ( x y ) " ...
-1
votes
2answers
98 views
How to access single character from a string in COBOL?
How to access a particular character in a string in COBOL?
For example if a string is "work" i have to access a character say 'w' in the string and store it in a character. How can I do it ?...and i ...
0
votes
1answer
54 views
In XML PARSE using COBOL the FUNCTION LENGTH (XML-TEXT) calculating 1 for XML-TEXT = blanks
I am trying to parse an XML document in COBOL using XML PARSE, one segment at a time. In the CONTENT-CHARACTERS check I am doing COMPUTE WS-XML-LEN = FUNCTION LENGTH (XML-TEXT).
There are some START ...
2
votes
3answers
62 views
Cobol scoped terminators
Consider the following piece of code. What is the result of B? My question is which terminator does the NEXT-SENTENCE statement affect?
A = 1
B = 1
C = 1
IF A = B
...
0
votes
0answers
40 views
how to view images saved in BNK format files
I have around 50,000 BNK format files and each files has a image embedded in it. I was wondering what will be the best and easiest way to extract 50000 images(pictures) from this files.
I was ...
0
votes
2answers
66 views
MSMQ access from mainframe? REST API maybe?
I need to put and get messages to/from our remote MSMQ, but because we will do the put s from our mainframe, we need a way that can be implemented in COBOL(or PL/1 maybe). My questions are;
1) Is it ...
0
votes
1answer
72 views
Nested Perform Loops in COBOL?
Why can I not do this nested perform loop in COBOL?
If I put END-PERFORM. in any line sooner than where I have the last one just before EXIT PROGRAM - it works. But I need the program to display the ...
0
votes
3answers
95 views
Call function in COBOL more than once
I have my main calling two functions.
The second function called (Decrypt) calls the first function (Encrypt) inside of it. So here Encrypt is being called twice. Once in the main, and then once ...
0
votes
3answers
67 views
COBOL 85 END PROGRAM Error
PROCEDURE DIVISION USING Input Cipher Temp.
INSPECT Input
CONVERTING Alpha-String(1) TO Alpha-String(Cipher)
MOVE Input TO Temp.
EXIT PROGRAM.
COBOL 85 is not taking EXIT PROGRAM. ...
1
vote
1answer
80 views
Inserting data into table returns error code 195
This question results from advice I received in this one, namely the changing of my error code definition and going from there.
My problem: when trying to insert data into a table, I receive SQLCODE ...
2
votes
3answers
88 views
Why is the second if statement in this Cobol code not being evaluated (OpenCOBOL)?
identification division.
program-id. quick.
environment division.
data division.
working-storage section.
01 temp-val1 pic 9 value 1.
01 temp-val2 pic 9 value 2.
procedure ...
3
votes
1answer
98 views
Inserting data into SQL Server returns error code 00q
First of all: the biggest part of my code was working a few weeks ago. In the mean time, we've swapped from a MySQL server to a SQL server and we've changed the schema design a little.
I use ...
0
votes
1answer
97 views
What is a control break? (COBOL)
OK so I'm taking an online COBOL class now and this week the content is control break and control field... For previous lectures I can understand easily but I have no idea what this lecture talks ...
2
votes
2answers
102 views
How to add page numbers (COBOL)
OK so I'm doing assignment but then I found that I was asked to add page numbers and change pages for each 4 records. Since it's an online course and I don't think there is anything about page numbers ...
1
vote
2answers
101 views
Printing records out in order using an array
I am wondering if what I want to do can be accomplished in COBOL. I am trying to read in hospital and patient data from a file that is not in order. Instead of using Sort (like everyone would in real ...
0
votes
1answer
64 views
Netcobol cobol command reply “Argument is not valid”
On Solaris10 x86 64bit version, I installed Fujistu NetCobol, and executed "cobol" command. Result OS replies "Argument is not valid".
I used this cobol command, following the example in the user's ...
0
votes
0answers
63 views
COBOL File Directory Not Found
I have a COBOL program (CH5PPB.cblproj) that attempts to read CH5PP.DAT with no success; the file is not found. I have tried the following ASSIGN lines separately.
Each run gives me a COBOL ...
0
votes
2answers
49 views
AS400 Cobol File Sharing
We want to add a load of records to an AS400 database file using COBOL several times a day. This file is also continually being updated and added to by 30 users through an online cobol screen, (albeit ...
-4
votes
1answer
73 views
writing my COBOL program [closed]
I need help writing a program for my Cobol class and my teacher sucks.
here are all the things he wants
Program displays some output to the screen.
Program displays correct number of detail lines ...
0
votes
2answers
168 views
Field validation in COBOL/CICS
I'm editing some source code for my college Transaction Processing course. We're working with COBOL/CICS, and the program is a video tape rental system. We have a list of changes to make, and one item ...
0
votes
1answer
123 views
initialize an index variable in cobol
We have a COBOL program in which we populate values into a COBOL internal table and then search this table to find out a certain value. Prior to this search, we initialize tables index variable.
SET ...
1
vote
3answers
169 views
COBOL copybook column numbers
Does anyone have a quick method for finding a COBOL copybook column count? For example:
000100 01 BGG-FILE-REC.
000200 03 BGG-RCD-KEY. ...
0
votes
4answers
142 views
use SHA1 with COBOL
I was wondering if there's any way to apply SHA1 hash with COBOL.
If there's at least some info of how the SHA1 algorithm works it will be usefull.
Thanks
1
vote
2answers
172 views
Counting the number of spaces between words in a file using python?
I'm really close. I read through "number of space between each word" and it does provide this line:
counts = [(len(list(cpart))) for c,cpart in groupby(s) if c == ' ']
but I really don't ...
0
votes
1answer
92 views
open extend in COBOL not working
I'm trying to write a subprogram in COBOL to make a logfile called from my main program. I don't want the logfile is cleared every time I call the subprogram so I use 'open extend'. The problem is ...
0
votes
2answers
71 views
RecordEditor - Field describes the layout for the line
I'm using Record Editor to read a COBOL file. Works fine, one problem, though. The 3rd field (column, fixed width) describes the type of record. Doing this, also the layout for the rest of that line.
...
0
votes
2answers
101 views
Sql Directives error in visual cobol
i am currently creating my project in cobol2 .. i am using a visual cobol of microfocus and was used a Ado.net for my database.. On the interface of openesql assistant i can insert values in my ...
0
votes
2answers
117 views
Random function always returns same result, despite different seeds
I'm trying to create a random number generator (from which some random numbers will later be converted into an [A-Z] character). I've got the main part of the random generator working, but I ...
2
votes
2answers
253 views
Having trouble writing a Cobol program that pulls information from separate vsam files
I have three VSAM Files. One for customers, videos, and rentals. In these VSAM files each customer, video and rental has an id. Below is an example of the customer file:
300, Bob, 315-123-1414
...
1
vote
1answer
120 views
is COBOL still worth learning [closed]
I want to know the answer to this question from a technical point of view,
Is COBOL still worth leaning?
What I mean is this: there are some languages you can learn to become a better programmer, for ...
1
vote
1answer
93 views
COBOL report at end of program
I am trying to finish a program that I have started but am confused as to what I need to do and how to do the last step. The instructions are to:
At the end of report:
A. Print the number of ...
1
vote
1answer
187 views
Create a File in COBOL
Using COBOL, how can I create a line sequential .dat file if a file of the specified name does not exist?
0
votes
1answer
74 views
Send JMS message from mainframe
I was wondering if it's possible to send a JMS message from a mainframe application running COBOL and/or JCL. I see there are adapters for .Net and other technologies such as JNBridge ...
0
votes
2answers
88 views
How to treat the first line of a file differently in COBOL?
In COBOL i want to read a line sequential file. The first line occurs one time. The second and the thirth line can be repeated multiple (unknown) times. I really don't know how to do it.
I think the ...
1
vote
2answers
278 views
COBOL DATATYPE CONVERSION: Number to Packed Numeric, Packed Date COMP-3
I am trying to convert Number to PACKED DEMCIMAL, from web research number 123 will be 123D (C if negative number) as packed number, My question is "is this a correct PACKED DECIMAL?" because ...
1
vote
1answer
368 views
MySQL JDBC driver connection string?
How do I connect to a MySQL Database with the JDBC Driver?
This for Cobol, using Percobol software.
DO-CONNECT.
STRING "jdbc:mysql://gpiw.be/db;"
DELIMITED BY SIZE
...
0
votes
1answer
214 views
COBOL expression as index in table array
just a short quick question.
How do you index an expression into a COBOL array?
For example, if my index k=1, I would like to do the following to find an element of k=2
element(k+1)
Unfortunately ...
0
votes
3answers
169 views
Cobol storing file to table
I'm trying to store a pattern received from text file into a table in COBOL.
I am using READ.. INTO.. statement to do so, and here is what I have so far.
WORKING-STORAGE SECTION.
01 ROWCOL.
...
1
vote
2answers
95 views
Trouble using Intrinsic function in COBOL
I am a new comer to programming in COBOL and I am having difficulty at something that probably should be trivial. I am wanting to find the min and max of what the user enters. When the user hits 0 the ...
0
votes
1answer
76 views
why am I getting an error in the identification division?
The following code :
IDENTIFICATION DIVISION.
PROGRAM-ID. tester.
PROCEDURE DIVISION.
greet_program.
DISPLAY "HELLO WORLD !".
STOP RUN.
produces a compiler error which says : Error: syntax ...
2
votes
4answers
108 views
I need assistance with cobol
We are supposed to form an array of names that occur 108 times. We are supposed to have name 1-54 in a left column and names 54-108 in a right colum. After there have been 108 names to one page, we ...
0
votes
0answers
58 views
fcgi_stdio.h and behaviour change from stdio.h
While discussing OpenCOBOL being utilized for FastCGI, I posted that replacing
#include <stdio.h>
with
#include <fcgi_stdio.h>
should exhibit no behaviour change for the vast ...
1
vote
3answers
139 views
Read and jump first line and anothers lines in file
How I can read a .dat file with struct like that: ( A = ALPHANUMERIC && N = NUMERIC )
0AAAAAAAANNNN (233 BLANK SPACES ) 999999 ( SEQUENTIAL NUMBER ONE BY ONE )
...
0
votes
4answers
120 views
Calling C from COBOL: trouble with stderr
From my COBOL program, I'm calling my C module which itself makes calls to a proprietary library. This library insists on writing to stderr, although there's no stderr available since the main program ...
0
votes
2answers
80 views
How to pass a real decimal value into a virtual decimal value?
I have a PIC 9(14).9(2) variable that receives data from an incoming file. I wish to pass it into a report variable that is a PIC 9(14)V9(2). The format of incoming data can't be altered. Is there any ...
0
votes
3answers
220 views
Exclude a record from sort
Is there a parameter for sort programme to exclude (ignore) the first line of a file from sorting in jcl.
Thanks,
1
vote
2answers
102 views
Writing to indexed file returns success but fails
In the following program I perform a basic interaction with an indexed file. When executed everything works as expected when I try to add a record, I even receive the success message. However when the ...
